123 lines
5.2 KiB
C
123 lines
5.2 KiB
C
/*
|
|
*********************************************************************************************************
|
|
* uC/GUI
|
|
* Universal graphic software for embedded applications
|
|
*
|
|
* (c) Copyright 2002, Micrium Inc., Weston, FL
|
|
* (c) Copyright 2002, SEGGER Microcontroller Systeme GmbH
|
|
*
|
|
* µC/GUI is protected by international copyright laws. Knowledge of the
|
|
* source code may not be used to write a similar product. This file may
|
|
* only be used in accordance with a license and should not be redistributed
|
|
* in any way. We appreciate your understanding and fairness.
|
|
*
|
|
----------------------------------------------------------------------
|
|
File : MULTIEDIT.h
|
|
Purpose : MULTIEDIT include
|
|
--------------------END-OF-HEADER-------------------------------------
|
|
*/
|
|
|
|
#ifndef MULTIEDIT_H
|
|
#define MULTIEDIT_H
|
|
|
|
#include "WM.h"
|
|
#include "DIALOG.h" /* Req. for Create indirect data structure */
|
|
|
|
#if GUI_WINSUPPORT
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" { /* Make sure we have C-declarations in C++ programs */
|
|
#endif
|
|
|
|
#define MULTIEDIT_CF_READONLY (1 << 0)
|
|
#define MULTIEDIT_CF_INSERT (1 << 2)
|
|
#define MULTIEDIT_CF_AUTOSCROLLBAR_V (1 << 3)
|
|
#define MULTIEDIT_CF_AUTOSCROLLBAR_H (1 << 4)
|
|
#define MULTIEDIT_CF_PASSWORD (1 << 5)
|
|
|
|
#define MULTIEDIT_SF_READONLY MULTIEDIT_CF_READONLY
|
|
#define MULTIEDIT_SF_INSERT MULTIEDIT_CF_INSERT
|
|
#define MULTIEDIT_SF_AUTOSCROLLBAR_V MULTIEDIT_CF_AUTOSCROLLBAR_V
|
|
#define MULTIEDIT_SF_AUTOSCROLLBAR_H MULTIEDIT_CF_AUTOSCROLLBAR_H
|
|
#define MULTIEDIT_SF_PASSWORD MULTIEDIT_CF_PASSWORD
|
|
|
|
/*********************************************************************
|
|
*
|
|
* Color indices
|
|
*/
|
|
#define MULTIEDIT_CI_EDIT 0
|
|
#define MULTIEDIT_CI_READONLY 1
|
|
|
|
/*********************************************************************
|
|
*
|
|
* Public Types
|
|
*
|
|
**********************************************************************
|
|
*/
|
|
|
|
typedef WM_HMEM MULTIEDIT_HANDLE;
|
|
|
|
/*********************************************************************
|
|
*
|
|
* Create functions
|
|
*
|
|
**********************************************************************
|
|
*/
|
|
|
|
MULTIEDIT_HANDLE MULTIEDIT_CreateEx (int x0, int y0, int xsize, int ysize, WM_HWIN hParent, int WinFlags, int ExFlags,
|
|
int Id, int BufferSize, const char* pText);
|
|
MULTIEDIT_HANDLE MULTIEDIT_Create (int x0, int y0, int xsize, int ysize, WM_HWIN hParent,
|
|
int Id, int Flags, int ExFlags, const char* pText,
|
|
int BufferSize);
|
|
MULTIEDIT_HANDLE MULTIEDIT_CreateIndirect(const GUI_WIDGET_CREATE_INFO* pCreateInfo,
|
|
WM_HWIN hWinParent, int x0, int y0, WM_CALLBACK* cb);
|
|
|
|
/*********************************************************************
|
|
*
|
|
* Member functions
|
|
*
|
|
**********************************************************************
|
|
*/
|
|
|
|
int MULTIEDIT_AddKey (MULTIEDIT_HANDLE hObj, U16 Key);
|
|
void MULTIEDIT_GetPrompt (MULTIEDIT_HANDLE hObj, char* sDest, int MaxNumChars);
|
|
int MULTIEDIT_GetTextSize (MULTIEDIT_HANDLE hObj);
|
|
void MULTIEDIT_GetText (MULTIEDIT_HANDLE hObj, char* sDest, int MaxNumChars);
|
|
void MULTIEDIT_SetAutoScrollH (MULTIEDIT_HANDLE hObj, int OnOff);
|
|
void MULTIEDIT_SetAutoScrollV (MULTIEDIT_HANDLE hObj, int OnOff);
|
|
void MULTIEDIT_SetBkColor (MULTIEDIT_HANDLE hObj, unsigned Index, GUI_COLOR color);
|
|
void MULTIEDIT_SetCursorCharPos (MULTIEDIT_HANDLE hObj, int x, int y); /* Not yet implemented */
|
|
void MULTIEDIT_SetCursorPixelPos(MULTIEDIT_HANDLE hObj, int x, int y); /* Not yet implemented */
|
|
void MULTIEDIT_SetCursorOffset (MULTIEDIT_HANDLE hObj, int Offset);
|
|
void MULTIEDIT_SetHBorder (MULTIEDIT_HANDLE hObj, unsigned HBorder);
|
|
void MULTIEDIT_SetFont (MULTIEDIT_HANDLE hObj, const GUI_FONT GUI_UNI_PTR * pFont);
|
|
void MULTIEDIT_SetInsertMode (MULTIEDIT_HANDLE hObj, int OnOff);
|
|
void MULTIEDIT_SetBufferSize (MULTIEDIT_HANDLE hObj, int BufferSize);
|
|
void MULTIEDIT_SetMaxNumChars (MULTIEDIT_HANDLE hObj, unsigned MaxNumChars);
|
|
void MULTIEDIT_SetPrompt (MULTIEDIT_HANDLE hObj, const char* sPrompt);
|
|
void MULTIEDIT_SetReadOnly (MULTIEDIT_HANDLE hObj, int OnOff);
|
|
void MULTIEDIT_SetPasswordMode (MULTIEDIT_HANDLE hObj, int OnOff);
|
|
void MULTIEDIT_SetText (MULTIEDIT_HANDLE hObj, const char* s);
|
|
void MULTIEDIT_SetTextColor (MULTIEDIT_HANDLE hObj, unsigned Index, GUI_COLOR color);
|
|
void MULTIEDIT_SetWrapNone (MULTIEDIT_HANDLE hObj);
|
|
void MULTIEDIT_SetWrapChar (MULTIEDIT_HANDLE hObj);
|
|
void MULTIEDIT_SetWrapWord (MULTIEDIT_HANDLE hObj);
|
|
|
|
/*********************************************************************
|
|
*
|
|
* Macros for compatibility with older versions
|
|
*
|
|
**********************************************************************
|
|
*/
|
|
|
|
#define MULTIEDIT_SetMaxLen(hObj, MaxLen) MULTIEDIT_SetBufferSize(hObj, MaxLen)
|
|
#define MULTIEDIT_GetStringSize MULTIEDIT_GetTextSize
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif /* if GUI_WINSUPPORT */
|
|
|
|
#endif /* MULTIEDIT_H */
|