亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? edit.h

?? 這是ARM嵌入式系統的實驗教程中的MINIGUI的實驗源代碼!
?? H
?? 第 1 頁 / 共 2 頁
字號:
#define EM_SETLINEHEIGHT        0xF0BE//#define EM_LINEINDEX            0xF0BD//#define EM_GETTHUMB             0xF0BE/* internal used now */#define EM_LINESCROLL           0xF0BF /** * \def EM_INSERTTEXT * \brief Inserts the specified text to the current caret position * * Normally used to input a long string. * * \code * EM_INSERTTEXT * int len; * const char *string; * * wParam = len; * lParam = (LPARAM)string; * \endcode * * \param len Length of string * \param string Pointer to the text string */#define EM_INSERTTEXT           0xF0C0#define EM_LINELENGTH           0xF0C1#define EM_REPLACESEL           0xF0C2#define EM_GETLINE              0xF0C4/** * \def EM_LIMITTEXT * \brief Set text limit of an edit control. * * \code * EM_LIMITTEXT * int newLimit; * * wParam = (WPARAM)newLimit; * lParam = 0; * \endcode * * \param newLimit The new text limit of an edit control. */#define EM_LIMITTEXT            0xF0C5/** * \def EM_REDO * \brief Redo operation. * * \code * * wParam = 0; * lParam = 0; * \endcode * */#define EM_REDO                 0xF0C6//#define EM_CANUNDO              0xF0C6 /** * \def EM_UNDO * \brief Undo operation. * * \code * * wParam = 0; * lParam = 0; * \endcode * */#define EM_UNDO                 0xF0C7#define EM_FMTLINES             0xF0C8#define EM_LINEFROMCHAR         0xF0C9#define EM_SETTABSTOPS          0xF0CB/** * \def EM_SETPASSWORDCHAR * \brief Defines the character that edit control uses in conjunction with  * the ES_PASSWORD style. * * \code * EM_SETPASSWORDCHAR * char passwdChar; * * wParam = (WPARAM)passwdChar; * lParam = 0; * \endcode */#define EM_SETPASSWORDCHAR      0xF0CC#define EM_EMPTYUNDOBUFFER      0xF0CD#define EM_GETFIRSTVISIBLELINE  0xF0CE/** * \def EM_SETREADONLY * \brief Sets or removes the read-only style (ES_READONLY) in an edit control. * * \code * EM_SETREADONLY * int readonly; * * wParam = (WPARAM)readonly; * lParam = 0; * \endcode * * \param readonly Indicates whether the edit control is read-only: *      - Zero\n *        Not read-only. *      - Non zero\n *        Read-only. */#define EM_SETREADONLY          0xF0CF/** * \var typedef int (*ED_DRAWSEL_FUNC) (HWND hWnd, HDC hdc, int startx, int starty, const char* content, int len, int selout) * \brief Type of the edit control callback function on drawing selected strings. * * \param hWnd Handle of the edit control. * \param startx x value of the beginning drawing position. * \param starty y value of the beginning drawing position. * \param content the string which will be drawed. * \param len Length of the string which should be drawed by this callback. * \param selout Length of the selected string that have been drawed before calling this callback function. *  * \return Width of the outputed strings. */typedef int (*ED_DRAWSEL_FUNC) (HWND, HDC, int, int, const char*, int, int);/** * \def EM_SETDRAWSELECTFUNC * \brief Sets the callback function on drawing selected chars * * \code * EM_SETDRAWSELECTFUNC * ED_DRAWSEL_FUNC drawsel; * * wParam = 0; * lParam = (LPARAM)drawsel; * \endcode * * \param drawsel The callback function used to draw selected strings. */#define EM_SETDRAWSELECTFUNC    0xF0D0/** * \def EM_SETGETCARETWIDTHFUNC * \brief Sets the callback function on getting caret width * * \code * EM_SETGETCARETWIDTHFUNC * int (*get_caret_width) (HWND, int); * * wParam = 0; * lParam = (LPARAM)get_caret_width; * \endcode * * \param get_caret_width The callback function used to get caret width. *                        The window handle and the maximum caret width are passed as arguments. * * \return The desired caret width. */#define EM_SETGETCARETWIDTHFUNC 0xF0D1/*#define EM_SETWORDBREAKPROC     0xF0D0#define EM_GETWORDBREAKPROC     0xF0D1*//** * \def EM_GETPASSWORDCHAR * \brief Returns the character that edit controls uses in conjunction with  * the ES_PASSWORD style. * * \code * EM_GETPASSWORDCHAR * * wParam = 0; * lParam = 0; * \endcode * * \return The currently used password character */#define EM_GETPASSWORDCHAR      0xF0D2#define EM_SETLIMITTEXT         EM_LIMITTEXT/** * \def ED_CARETSHAPE_LINE * \brief Line-shaped caret */#define ED_CARETSHAPE_LINE      0/** * \def ED_CARETSHAPE_BLOCK * \brief Block-shaped caret */#define ED_CARETSHAPE_BLOCK     1/** * \def EM_CHANGECARETSHAPE * \brief Changes the shape of the caret * * \code * EM_CHANGECARETSHAPE * * int caret_shape; *  * wParam = caret_shape; * lParam = 0; * \endcode * * \param caret_shape Shape index of the caret, can be ED_CARETSHAPE_LINE or ED_CARETSHAPE_BLOCK. * * \return The old create shape */#define EM_CHANGECARETSHAPE     0xF0D3/** * \def EM_REFRESHCARET * \brief Refresh caret of the edit control */#define EM_REFRESHCARET         0xF0D4/** * \def EM_ENABLECARET * \brief To enable or disable the input caret * * \code * EM_ENABLECARET * * BOOL bEnable; * * wParam = bEnable; * lParam = 0; * \endcode * * \param bEnable TRUE to enable caret. * * \return The previous caret enabled status. */#define EM_ENABLECARET          0xF0D5/*#define EM_SETMARGINS           0xF0D3#define EM_GETMARGINS           0xF0D4#define EM_GETLIMITTEXT         0xF0D5#define EM_POSFROMCHAR          0xF0D6#define EM_CHARFROMPOS          0xF0D7#define EM_SETIMESTATUS         0xF0D8#define EM_GETIMESTATUS         0xF0D9#define MEM_SCROLLCHANGE        0xF0DB*/#define MED_STATE_YES           0x0#define MED_STATE_NOUP          0x1#define MED_STATE_NODN          0x2#define MED_STATE_NO            0x3/** * \def EM_SETTITLETEXT * \brief Sets the title text displayed before content text.  * * \code * EM_SETTITLETEXT * const char *title; * int len; * * wParam = len; * lParam = (LPARAM)title; * \endcode * * \note Implemented for TextEdit control. */#define EM_SETTITLETEXT         0xF0DC/** * \def EM_GETTITLETEXT * \brief Gets the title text displayed before content text.  * * \code * EM_GETTITLETEXT * const char *buffer; * int len; * * wParam = len; * lParam = (LPARAM)buffer; * \endcode * * \param len should be length of buffer minus 1, left space for '\\0' * \param buffer string buffer * * * \return length of title * \note Implemented for TextEdit control. */#define EM_GETTITLETEXT         0xF0DD/** * \def EM_SETTIPTEXT * \brief Sets the tip text displayed when content is empty.  * * \code * EM_SETTIPTEXT * const char *buffer; * int len; * * wParam = len; * lParam = (LPARAM)buffer; * \endcode * */#define EM_SETTIPTEXT           0xF0DE/** * \def EM_GETTIPTEXT * \brief Gets the tip text displayed when content is empty.  * * \code * EM_GETTIPTEXT * const char *buffer; * int len; * * wParam = len; * lParam = (LPARAM)buffer; * \endcode * * \param len should be length of buffer minus 1, left space for '\\0' * \param buffer string buffer * * \return length of tip text */#define EM_GETTIPTEXT           0xF0DF#define EM_MSGMAX               0xF0E0    /** @} end of ctrl_edit_msgs */    /**     * \defgroup ctrl_edit_ncs Notification codes of edit control     * @{     */#define EN_ERRSPACE         255/** * \def EN_CLICKED * \brief Notifies a click in an edit control. * * An edit control sends the EN_CLICKED notification code when the user clicks * in an edit control. */#define EN_CLICKED          0x0001/** * \def EN_DBLCLK * \brief Notifies a double click in an edit control. * * An edit control sends the EN_CLICKED notification code when the user  * double clicks in an edit control. */#define EN_DBLCLK           0x0002/** * \def EN_SETFOCUS * \brief Notifies the receipt of the input focus. * * The EN_SETFOCUS notification code is sent when an edit control receives  * the input focus. */#define EN_SETFOCUS         0x0100/** * \def EN_KILLFOCUS * \brief Notifies the lost of the input focus. * * The EN_KILLFOCUS notification code is sent when an edit control loses  * the input focus. */#define EN_KILLFOCUS        0x0200/** * \def EN_CHANGE * \brief Notifies that the text is altered. * * An edit control sends the EN_CHANGE notification code when the user takes  * an action that may have altered text in an edit control. */#define EN_CHANGE           0x0300#define EN_UPDATE           0x0400/** * \def EN_MAXTEXT * \brief Notifies reach of maximum text limitation. * * The EN_MAXTEXT notification message is sent when the current text  * insertion has exceeded the specified number of characters for the edit control. */#define EN_MAXTEXT          0x0501#define EN_HSCROLL          0x0601#define EN_VSCROLL          0x0602/** * \def EN_ENTER * \brief Notifies the user has type the ENTER key in a single-line edit control. */#define EN_ENTER            0x0700    /** @} end of ctrl_edit_ncs *//* Edit control EM_SETMARGIN parameters *//** * \def EC_LEFTMARGIN * \brief Value of wParam. Specifies the margins to set. */#define EC_LEFTMARGIN       0x0001/** * \def EC_RIGHTMARGIN * \brief Value of wParam. Specifies the margins to set. */#define EC_RIGHTMARGIN      0x0002/** * \def EC_USEFONTINFO * \brief Value of wParam. Specifies the margins to set. */#define EC_USEFONTINFO      0xffff/* wParam of EM_GET/SETIMESTATUS  *//** * \def EMSIS_COMPOSITIONSTRING * \brief Indicates the type of status to retrieve. */#define EMSIS_COMPOSITIONSTRING        0x0001/* lParam for EMSIS_COMPOSITIONSTRING  *//** * \def EIMES_GETCOMPSTRATONCE * \brief lParam for EMSIS_COMPOSITIONSTRING. */#define EIMES_GETCOMPSTRATONCE         0x0001/** * \def EIMES_CANCELCOMPSTRINFOCUS * \brief lParam for EMSIS_COMPOSITIONSTRING. */#define EIMES_CANCELCOMPSTRINFOCUS     0x0002/** * \def EIMES_COMPLETECOMPSTRKILLFOCUS * \brief lParam for EMSIS_COMPOSITIONSTRING. */#define EIMES_COMPLETECOMPSTRKILLFOCUS 0x0004    /** @} end of ctrl_edit */    /** @} end of controls */#ifdef __cplusplus}#endif  /* __cplusplus */#endif /* _MGUI_CTRL_EDIT_H */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久99国产乱子伦精品免费| 亚洲人一二三区| 国产综合久久久久久鬼色| 日韩免费观看高清完整版在线观看| 香蕉加勒比综合久久| 91麻豆精品国产自产在线| 日韩二区在线观看| 久久精品一区四区| 91网站最新地址| 图片区小说区国产精品视频| 欧美一区二区三区四区五区| 国产在线不卡视频| 亚洲卡通动漫在线| 日韩欧美激情四射| 成人免费毛片aaaaa**| 亚洲亚洲精品在线观看| 欧美videofree性高清杂交| 国产999精品久久久久久绿帽| 亚洲一区二三区| 欧美精品一区二区三区一线天视频 | 中文字幕欧美国产| 在线一区二区观看| 国内精品免费在线观看| 亚洲男同性恋视频| 亚洲精品在线网站| 欧美网站一区二区| 国产精品99久久久久久有的能看| 中文字幕亚洲在| 欧美成人一区二区三区片免费 | 欧美二区三区的天堂| 国产一区视频网站| 亚洲午夜一区二区| 久久精子c满五个校花| 欧美日韩大陆一区二区| 成人午夜激情影院| 日本最新不卡在线| 亚洲日本青草视频在线怡红院| 日韩一区二区电影| 色94色欧美sute亚洲线路一久| 麻豆精品在线看| 亚洲午夜精品久久久久久久久| 久久久久久久久免费| 欧美精品免费视频| 91热门视频在线观看| 国产成人在线观看免费网站| 日韩**一区毛片| 亚洲综合在线免费观看| 国产精品日韩成人| 精品国产电影一区二区| 欧美精品三级日韩久久| 一本久道久久综合中文字幕| 从欧美一区二区三区| 裸体歌舞表演一区二区| 日日欢夜夜爽一区| 一区二区三区在线观看欧美| 亚洲欧洲美洲综合色网| 久久久久99精品一区| 日韩精品一区二区在线| 91麻豆精品国产| 精品视频一区 二区 三区| www.性欧美| 99久久国产综合精品色伊| 国产精品一级片| 国产福利一区在线| 国产九九视频一区二区三区| 琪琪一区二区三区| 日本亚洲视频在线| 日韩精品一区第一页| 日韩精品欧美成人高清一区二区| 亚洲一区二区三区四区的| 日精品一区二区三区| 欧美日韩中文国产| 色狠狠一区二区三区香蕉| 99久精品国产| 色婷婷av一区二区三区之一色屋| www.激情成人| 91片在线免费观看| 日本黄色一区二区| 欧美亚洲一区二区在线观看| 欧美在线看片a免费观看| 欧美最新大片在线看 | 欧美久久久久中文字幕| 欧美日本视频在线| 日韩欧美一级精品久久| 精品国产91乱码一区二区三区| 欧美mv和日韩mv的网站| www日韩大片| 国产欧美一区二区精品性色 | 91成人在线观看喷潮| 一本大道久久a久久综合婷婷| 色综合久久中文字幕综合网| 欧美亚洲精品一区| 欧美日本韩国一区| 精品国产91乱码一区二区三区 | 亚洲精品成a人| 亚洲444eee在线观看| 美国精品在线观看| 成人性生交大片免费看在线播放| 成人av免费在线播放| 欧洲一区二区三区免费视频| 欧美精品欧美精品系列| 久久久精品国产免费观看同学| 欧美国产日韩a欧美在线观看| 亚洲裸体在线观看| 免费欧美在线视频| 国产不卡视频一区| 欧美色窝79yyyycom| 91精品国产福利| 精品国产乱码久久久久久闺蜜| 欧美麻豆精品久久久久久| 精品视频1区2区| 久久综合狠狠综合久久激情 | 国产精品久久久久久久久免费樱桃| 日韩毛片精品高清免费| 男女男精品网站| www.视频一区| 精品国产1区二区| 一区二区三区精品久久久| 久久99精品久久只有精品| 99视频一区二区| 日韩精品资源二区在线| 亚洲欧美综合网| 韩国精品久久久| 欧美少妇性性性| 国产精品女同一区二区三区| 日韩高清不卡一区二区三区| av亚洲产国偷v产偷v自拍| 日韩精品中文字幕一区| 一区二区在线电影| 国产一区二区三区免费观看| 欧美日精品一区视频| 国产精品色哟哟网站| 久久精品国产99国产精品| 欧洲av一区二区嗯嗯嗯啊| 亚洲国产电影在线观看| 另类的小说在线视频另类成人小视频在线 | 欧美日本精品一区二区三区| 国产精品久久毛片av大全日韩| 免费精品视频最新在线| 在线观看欧美黄色| 亚洲欧美日韩中文播放| 国产成人精品免费| 日韩欧美一二三区| 日精品一区二区三区| 欧美影视一区在线| 一个色综合av| 91亚洲精品久久久蜜桃网站 | 欧美久久免费观看| 亚洲黄网站在线观看| 成人一二三区视频| 久久青草国产手机看片福利盒子| 日韩中文字幕区一区有砖一区 | 精品久久国产字幕高潮| 婷婷久久综合九色国产成人| 一本色道亚洲精品aⅴ| 亚洲视频电影在线| 99精品久久只有精品| 欧美国产乱子伦| 成人午夜视频免费看| 国产日韩一级二级三级| 国产精品99久久久久久有的能看| 精品国产网站在线观看| 国产一区二区三区在线观看精品| 日韩视频在线永久播放| 日本在线不卡视频一二三区| 欧美一区二区三区视频| 免播放器亚洲一区| 日韩一区二区三区免费看 | 亚洲综合激情网| 欧美三区在线观看| 亚欧色一区w666天堂| 欧美精品色一区二区三区| 美女视频免费一区| 久久看人人爽人人| 波多野结衣欧美| 一区二区三区四区国产精品| 色婷婷av一区| 午夜精品福利久久久| 欧美一区在线视频| 国产米奇在线777精品观看| 国产欧美精品在线观看| 91在线视频网址| 亚洲v中文字幕| 亚洲精品一区二区三区99| 成人黄色电影在线| 亚洲福利视频三区| 日韩午夜激情av| 成人国产精品免费观看| 亚洲精品成人在线| 日韩一卡二卡三卡四卡| 高清不卡在线观看av| 一区二区三区四区高清精品免费观看 | 日韩欧美国产综合一区| 国产成人免费视频一区| 亚洲色图在线视频| 91麻豆精品国产91久久久久久久久 | 久久精品无码一区二区三区| 97久久精品人人爽人人爽蜜臀| 亚洲国产视频网站| 精品美女在线观看|