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

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

?? edit.h

?? 這是ARM嵌入式系統的實驗教程中的MINIGUI的實驗源代碼!
?? H
?? 第 1 頁 / 共 2 頁
字號:
/** * \file edit.h * \author Wei Yongming <ymwei@minigui.org> * \date 2001/12/29 *  \verbatim    Copyright (C) 2002-2005 Feynman Software.    Copyright (C) 1998-2002 Wei Yongming.    This file is part of MiniGUI, a compact cross-platform Graphics     User Interface (GUI) support system for real-time embedded systems.    This program is free software; you can redistribute it and/or modify    it under the terms of the GNU General Public License as published by    the Free Software Foundation; either version 2 of the License, or    (at your option) any later version.    This program is distributed in the hope that it will be useful,    but WITHOUT ANY WARRANTY; without even the implied warranty of    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    GNU General Public License for more details.    You should have received a copy of the GNU General Public License    along with this program; if not, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA    If you are using MiniGUI for developing commercial, proprietary, or other    software not covered by the GPL terms, you must have a commercial license    for MiniGUI. Please see http://www.minigui.com/product/index.html for     how to obtain this. If you are interested in the commercial MiniGUI     licensing, please write to sales@minigui.com.  \endverbatim *//* * $Id: edit.h,v 1.4 2005/02/15 05:00:08 weiym Exp $ * *             MiniGUI for Linux/uClinux, eCos, uC/OS-II, VxWorks,  *                     and ThreadX version 1.6.x *             Copyright (C) 2002-2005 Feynman Software. *             Copyright (C) 1999-2002 Wei Yongming. */#ifndef _MGUI_CTRL_EDIT_H#define _MGUI_CTRL_EDIT_H #ifdef __cplusplusextern "C" {#endif  /* __cplusplus */    /**     * \addtogroup controls     * @{     */    /**     * \defgroup ctrl_edit Edit/MEdit control     *     * \bug You can not pass caption argument for multi-line edit control     *      when you create it, just use null string:     *     * \code     *  CreateWindowEx (CTRL_MEDIT, ..., "", ...);     * \endcode     *     * @{     *//** * \def CTRL_EDIT * \brief The class name of simple single-line editor box. * * This edit control uses the system default fixed logical font. */#define CTRL_EDIT           ("edit")/** * \def CTRL_SLEDIT * \brief The class name of single-line editor box. * * This edit control uses the system logical font for control, * which may be variable-width font.. */#define CTRL_SLEDIT         ("sledit")/** * \def CTRL_MLEDIT * \brief The class name of multiple-line editor box. * * This edit control uses the system logical font for control, * which may be variable-width font.. */#define CTRL_MLEDIT         ("mledit")/** * \def CTRL_MEDIT * \brief Another class name of multiple-line editor box. * * This edit control uses the system logical font for control, * which may be variable-width font.. */#define CTRL_MEDIT          ("medit")#define CTRL_OLDMEDIT       ("oldmedit")    /**     * \defgroup ctrl_edit_styles Styles of edit control     * @{     *//** * \def ES_LEFT * \brief Left-aligns text. */#define ES_LEFT             0x00000000L#define ES_CENTER           0x00000001L#define ES_RIGHT            0x00000002L#define ES_MULTILINE        0x00000004L/** * \def ES_UPPERCASE * \brief Converts all characters to uppercase as they are typed into the edit control. */#define ES_UPPERCASE        0x00000008L/** * \def ES_LOWERCASE * \brief Converts all characters to lowercase as they are typed into the edit control. */#define ES_LOWERCASE        0x00000010L/** * \def ES_PASSWORD * \brief Displays an asterisk (*) for each character typed into the edit control. */#define ES_PASSWORD         0x00000020L#define ES_AUTOVSCROLL      0x00000040L#define ES_AUTOHSCROLL      0x00000080L/** * \def ES_NOHIDESEL * \brief Edit control with this style will remain selected when focus is lost */#define ES_NOHIDESEL        0x00000100L/** * \def ES_AUTOSELECT * \brief Selects all text when getting focus */#define ES_AUTOSELECT       0x00000400L//#define ES_OEMCONVERT       0x00000400L/** * \def ES_READONLY * \brief Prevents the user from typing or editing text in the edit control. */#define ES_READONLY         0x00000800L/** * \def ES_BASELINE * \brief Draws base line under input area instead of frame border. */#define ES_BASELINE         0x00001000L/** * \def ES_AUTOWRAP * \brief Automatically wraps against border when inputting. */#define ES_AUTOWRAP         0x00002000L/** * \def ES_TITLE * \brief Shows specified title texts. */#define ES_TITLE            0x00004000L/** * \def ES_TIP * \brief Shows specified tip texts. */#define ES_TIP              0x00008000L    /** @} end of ctrl_edit_styles */    /**     * \defgroup ctrl_edit_msgs Messages of edit control     * @{     *//** * \def EM_GETSEL * \brief Gets the selected string in the edit control. * * \code * EM_GETSEL * * char *buffer; * int len; * * wParam = len; * lParam = (LPARAM)buffer; * \endcode * * \param len Length of buffer. * \param buffer Pointer to the string buffer * * \return length of the selected string */#define EM_GETSEL               0xF0B0/** * \def EM_SETSEL * \brief Sets the selected point in the edit control and makes *        the text between insertion point and selection point selected. * *        Generally, you should send EM_SETCARETPOS first to set insertion *        point before you use EM_SETSEL to select text. * * \code * EM_SETSEL * * int line_pos; * int char_pos; * * wParam = (WPARAM)line_pos; * lParam = (LPARAM)char_pos; * \endcode * * \param line_pos line position of the selection point. *                 For single line editor, it is always zero. *                 Note : For multi-line editor, "line" means a text string ended with a line *                 seperator, not a single text line in wrap mode. So, char_pos *                 means the character position in a text string. * \param char_pos character(wide character) position of the selection point. * * \return length of the selected string */#define EM_SETSEL               0xF0B1#define EM_SETSELECTION         EM_SETSEL/** * \def EM_SELECTALL * \brief Selects all the texts, the same meaning as ctrl+a *         * \code * EM_SELECTALL * * wParam = 0; * lParam = 0; * \endcode */#define EM_SELECTALL              0xF0B2/** * \def EM_GETSELPOS * \brief Gets the position of the selection point. * * \code * EM_GETSELPOS * int* line_pos; * int* char_pos; * * wParam = (WPARAM)line_pos; * lParam = (LPARAM)char_pos; * \endcode * * \param line_pos Pointer to a integer buffer to save the selection line position. *                 For single line editor, it is always zero. *                 Note : Here "line" means a text string ended with a line *                 seperator, not a single text line in wrap mode. So, char_pos *                 means the character position in a text string. * \param char_pos Pointer to a integer buffer to save the selection character position. * * \return The string length of the text from the beginning to the selection point. */#define EM_GETSELPOS              0xF0B3/** * \def EM_INSERTCBTEXT * \brief Inserts the text in the clipboard to the current caret position * * \code * EM_INSERTCBTEXT * 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_INSERTCBTEXT           0xF0B4/** * \def EM_COPYTOCB * \brief Copies the currently selected text to the clipboard * * \code * EM_COPYTOCB * * wParam = 0; * lParam = 0 * \endcode * * \return Length of the text which is really copied to clipboard. */#define EM_COPYTOCB               0xF0B5/** * \def EM_CUTTOCB * \brief Cuts the currently selected text to the clipboard * * \code * EM_CUTTOCB * * wParam = 0; * lParam = 0 * \endcode * * \return Length of the text which is really copied to clipboard. */#define EM_CUTTOCB               0xF0B6/** * \def EM_SETLFDISPCHAR * \brief Sets the char used to represent the line seperator. *         * In default case, the line sperator will not be shown. * If the char used to represent the line seperator is not zero, *    this char will be shown in place of line seperator. * * \code * EM_SETLFDISPCHAR * unsigned char ch; * * wParam = 0; * lParam = ch; * \endcode * * \param ch the char used to represent the line seperator */#define EM_SETLFDISPCHAR          0xF0B7/** * \def EM_SETLINESEP * \brief Sets the line seperator. *         * In default case, the line sperator is '\n'. * * \code * EM_SETLINESEP * unsigned char ch; * * wParam = 0; * lParam = ch; * \endcode * * \param ch the new line seperator */#define EM_SETLINESEP             0xF0B8//#define EM_GETRECT              0xF0B2//#define EM_SETRECT              0xF0B3//#define EM_SETRECTNP            0xF0B4//#define EM_SCROLL               0xF0B5/** * \def EM_GETCARETPOS * \brief Gets the position of the caret. * * \code * EM_GETCARETPOS * int* line_pos; * int* char_pos; * * wParam = (WPARAM)line_pos; * lParam = (LPARAM)char_pos; * \endcode * * \param line_pos Pointer to a integer buffer to save the caret line position. *                 For single line editor, it is always zero. *                 Note : Here "line" means a text string ended with a line *                 seperator, not a single text line in wrap mode. So, char_pos *                 means the character position in a text string. * \param char_pos Pointer to a integer buffer to save the caret character position. * * \return The string length of the text from the beginning to the caret pos. */#define EM_GETCARETPOS          0xF0B9/** * \def EM_SETCARETPOS * \brief Sets the position of the caret. * * \code * EM_SETCARETPOS * int line_pos; * int char_pos; * * wParam = (WPARAM)line_pos; * lParam = (LPARAM)char_pos; * \endcode * * \param line_pos The new caret line position. For single line editor, it will be ignored. *                 Note : Here "line" means a text string ended with a line *                 seperator, not a single text line in wrap mode. So, char_pos *                 means the character position in a text string. * \param char_pos The new caret character position. * * \return length of the string from the beginning to the caret position  *         on success, otherwise -1. */#define EM_SETCARETPOS          0xF0BA#define EM_SETINSERTION         EM_SETCARETPOS//#define EM_SCROLLCARET          0xF0B9//#define EM_GETMODIFY            0xF0BA//#define EM_SETMODIFY            0xF0BB/** * \def EM_GETLINECOUNT * \brief Gets the line number. * * \code * EM_GETLINECOUNT * * wParam = 0; * lParam = 0; * \endcode * * \return Line number on success, otherwise -1. * \note Implemented for TextEdit control. */#define EM_GETLINECOUNT         0xF0BC/** * \def EM_GETLINEHEIGHT * \brief Gets the height of a line. * * \code * EM_GETLINEHEIGHT * * wParam = 0; * lParam = 0; * \endcode * * \return Height value. * \note Implemented for TextEdit control. */#define EM_GETLINEHEIGHT        0xF0BD/** * \def EM_SETLINEHEIGHT * \brief Sets the height of a line. * * \code * EM_SETLINEHEIGHT * * wParam = height; * lParam = 0; * \endcode * * \return the old height value. * \note Implemented for TextEdit control. */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一本色道久久综合狠狠躁的推荐| 一区二区三区高清不卡| 亚洲国产精品一区二区尤物区| 国产成人免费视频网站| 日韩精品中文字幕在线一区| 国产精品久久久久毛片软件| 国产精品影视在线| 久久久久国产精品人| 另类小说欧美激情| 精品电影一区二区三区| 韩国一区二区视频| 日韩视频国产视频| 日本麻豆一区二区三区视频| 色综合色狠狠综合色| 亚洲精品日韩一| 欧美色电影在线| 日本在线观看不卡视频| 91精品福利在线一区二区三区| 男男gaygay亚洲| 久久久亚洲精品石原莉奈| 国产精品资源网| 亚洲青青青在线视频| 欧美在线观看视频一区二区| 亚洲午夜电影在线观看| 91精品国产综合久久久蜜臀粉嫩| 蜜桃视频第一区免费观看| 精品国产一区二区国模嫣然| 另类小说综合欧美亚洲| 国产调教视频一区| 色综合天天做天天爱| 亚洲一区二区三区三| 日韩精品在线一区| 国产成人一级电影| 亚洲精品日产精品乱码不卡| 欧美日韩亚洲综合在线 欧美亚洲特黄一级 | 国产精品18久久久久久久久久久久 | 91亚洲永久精品| 亚洲综合图片区| 欧美videofree性高清杂交| 国产高清精品在线| 亚洲精品视频免费观看| 欧美日韩国产天堂| 国产大陆亚洲精品国产| 一二三四区精品视频| 精品久久一区二区| 色哟哟精品一区| 久久成人精品无人区| 中文字幕五月欧美| 91精品国产日韩91久久久久久| 国产精品一区三区| 亚洲一区二区视频在线| 久久综合视频网| 国产精品88av| 亚洲精选一二三| 久久午夜国产精品| 成人毛片在线观看| 久久精品久久综合| 亚洲欧美偷拍三级| 久久久三级国产网站| 91福利社在线观看| 国产成人日日夜夜| 五月天国产精品| 中文字幕一区三区| 精品国产凹凸成av人导航| 国产九色sp调教91| 亚洲一区免费观看| 久久一夜天堂av一区二区三区| 欧美三级韩国三级日本三斤| 国产一区二区三区四区五区入口| 亚洲午夜私人影院| 中文字幕一区在线观看| 国产亚洲欧美一区在线观看| 欧美精品欧美精品系列| 99久久婷婷国产综合精品电影| 免费不卡在线视频| 午夜影视日本亚洲欧洲精品| 国产精品久久久久9999吃药| 久久一二三国产| 日韩欧美久久一区| 91精品欧美一区二区三区综合在 | 欧美大片在线观看一区二区| 欧亚洲嫩模精品一区三区| 91在线视频在线| 风流少妇一区二区| 国产成人亚洲综合色影视| 黄页视频在线91| 青青草一区二区三区| 日韩精品乱码av一区二区| 亚洲影院久久精品| 亚洲一区在线观看视频| 亚洲色大成网站www久久九九| 中文子幕无线码一区tr | 亚洲国产高清在线| 久久免费看少妇高潮| 日韩亚洲欧美在线观看| 在线成人免费视频| 欧美久久久久久久久| 在线不卡欧美精品一区二区三区| 91国产成人在线| 欧美在线制服丝袜| 国产不卡视频一区| 成人免费三级在线| 成人国产精品免费网站| jlzzjlzz欧美大全| 在线观看亚洲a| 欧美色区777第一页| 91丨九色丨蝌蚪富婆spa| 色天天综合久久久久综合片| 色综合视频在线观看| 欧美唯美清纯偷拍| 欧美剧在线免费观看网站| 欧美体内she精高潮| 7777精品伊人久久久大香线蕉的 | 视频一区二区三区中文字幕| 日本va欧美va欧美va精品| 免费在线看成人av| 国产一区二区三区精品欧美日韩一区二区三区| 久久国产成人午夜av影院| 国产xxx精品视频大全| 成+人+亚洲+综合天堂| 在线观看成人免费视频| 91麻豆精品久久久久蜜臀| 欧美xxxxxxxxx| 日韩一区在线播放| 人禽交欧美网站| 国产风韵犹存在线视精品| 91在线精品一区二区三区| 欧美久久久久久久久中文字幕| 欧美va在线播放| 一区二区三区在线免费观看| 日本欧美加勒比视频| 丰满白嫩尤物一区二区| 色综合 综合色| 欧美大黄免费观看| 亚洲精品免费看| 黑人巨大精品欧美黑白配亚洲| 成人av在线资源网站| 91精品蜜臀在线一区尤物| 欧美激情一区二区| 日本午夜精品视频在线观看 | 亚洲chinese男男1069| 国产一区二区0| 色婷婷综合激情| 欧美精品一区二区三区久久久 | 亚洲一二三四在线| 韩国女主播成人在线| 99国产一区二区三精品乱码| 欧美男生操女生| 中文字幕精品一区二区精品绿巨人| 亚洲伊人伊色伊影伊综合网 | 国产一区二区三区国产| 欧美性猛交xxxxxx富婆| 国产精品热久久久久夜色精品三区| 亚洲成人午夜电影| 99久久婷婷国产综合精品| 精品久久久三级丝袜| 亚洲成人av电影| eeuss影院一区二区三区| 久久久国产精品麻豆| 日本美女一区二区| 欧美日韩三级视频| 亚洲美女偷拍久久| 成人av高清在线| 久久这里只有精品首页| 日本网站在线观看一区二区三区| 丁香另类激情小说| 欧美一区二区三区日韩视频| 一区二区三区久久久| av高清不卡在线| 久久久三级国产网站| 日韩av电影免费观看高清完整版 | 国产成人在线色| 久久综合精品国产一区二区三区| ...xxx性欧美| 国产成人免费av在线| 精品播放一区二区| 精品一区二区三区在线观看 | 日韩精品亚洲专区| 91精品国产综合久久精品图片| 日韩不卡一区二区三区| 欧美本精品男人aⅴ天堂| 久久国产视频网| 国产日本一区二区| 91色在线porny| 日韩激情一二三区| 欧美va天堂va视频va在线| 国产在线一区观看| 国产精品久久久久四虎| 欧美在线看片a免费观看| 免费一区二区视频| 国产欧美日韩另类一区| 91在线视频免费91| 日韩av电影免费观看高清完整版 | 99精品久久只有精品| 一区二区三区欧美视频| 日韩午夜在线观看| 成人午夜又粗又硬又大| 亚洲国产视频a| 久久亚区不卡日本| 欧美四级电影在线观看|