?? simedit_impl.h
字號:
/*** $Id: simedit_impl.h,v 1.1 2005/01/31 09:12:48 clear Exp $**** simedit.h: the head file of Simple Edit Control module.**** Copyright (C) 2003, Feynman Software.** Copyright (C) 1999~2002, Wei Yongming.**** Create date: 1999/8/26*/#ifndef GUI_SIMEDIT_IMPL_H_#define GUI_SIMEDIT_IMPL_H_#ifdef __cplusplusextern "C" {#endif#define LEN_SIMEDIT_BUFFER 512typedef struct tagSIMEDITDATA{ DWORD status; // status of box int bufferLen; // length of buffer char* buffer; // buffer int dataEnd; // data end position int editPos; // current edit position int caretOff; // caret offset in box int startPos; // start display position int charWidth; // width of a character char passwdChar; // password character int leftMargin; // left margin int topMargin; // top margin int rightMargin; // right margin int bottomMargin; // bottom margin int hardLimit; // hard limit} SIMEDITDATA;typedef SIMEDITDATA* PSIMEDITDATA; BOOL RegisterSIMEditControl (void);void SIMEditControlCleanup (void);#ifdef __cplusplus}#endif#endif // GUI_SIMEDIT_IMPL_H_
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -