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

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

?? combobox.h

?? 這是針對 Linux (i386)平臺的 minigui 3.6.2 開發包(MiniGUI-Processes 運行模式)。
?? H
?? 第 1 頁 / 共 2 頁
字號:
/** * \file combobox.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: combobox.h,v 1.2 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_COMBOBOX_H#define _MGUI_CTRL_COMBOBOX_H #ifdef __cplusplusextern "C" {#endif  /* __cplusplus */    /**     * \addtogroup controls     * @{     */    /**     * \defgroup ctrl_combobox ComboBox control     * @{     *//** * \def CTRL_COMBOBOX * \brief The class name of combobox control. */#define CTRL_COMBOBOX       ("combobox")    /**     * \defgroup ctrl_combobox_styles Styles of combobox control     * @{     *//** * \def CBS_SIMPLE * \brief Displays the list box at all times. * * The current selection in the list box is displayed in the edit control. * * \note The argument \a dwAddData of \a CreateWindowEx function should be the * expected height of the list box. * * \code * int listbox_height = 100; * * CreateWindowEx (CTRL_COMBOBOX, ..., listbox_height); * \endcode */#define CBS_SIMPLE              0x0000L/** * \def CBS_AUTOSPIN * \brief Creates AutoSpin box. * * AutoSpin box has an input field with a spin button. The input field * displays an integer, and you can click spin button to increase or * decrease the value of the integer. */#define CBS_AUTOSPIN            0x0001L/** * \def CBS_SPINLIST * \brief Creates SpinList box. * * SpinList box has an input field with a spin button. The input field * displays some text, and you can click spin button to change the text. * The candidate text string comes from the strings you add to the box. */#define CBS_SPINLIST            0x0002L/** * \def CBS_DROPDOWNLIST * \brief Specifies a drop-down list box in the selection filed. * * \note The argument \a dwAddData of \a CreateWindowEx function should be the * expected height of the list box. * * \code * int listbox_height = 100; * * CreateWindowEx (CTRL_COMBOBOX, ..., listbox_height)); * \endcode */#define CBS_DROPDOWNLIST        0x0003L#define CBS_TYPEMASK            0x0007L/** * \def CBS_NOTIFY * \brief Notifies the parent window. * * Causes the combo box to notify the parent window  * with a notification message. */#define CBS_NOTIFY              0x0008L/** * \def CBS_SPINARROW_TOPBOTTOM * \brief The spin arrow */#define CBS_SPINARROW_TOPBOTTOM 0x0010L/** * \def CBS_SPINARROW_LEFTRIGHT * \brief The spin arrow */#define CBS_SPINARROW_LEFTRIGHT 0x0020L#define CBS_AUTOHSCROLL         0x0040L#define CBS_DISABLENOSCROLL     0x0080L/** * \def CBS_SORT * \brief Automatically sorts strings entered in the list box. */#define CBS_SORT                0x0100L/** * \def CBS_AUTOLOOP * \brief Loops the value automatically if the type of combobox is CBS_AUTOSPIN. */#define CBS_AUTOLOOP            0x0200L/** * \def CBS_EDITNOBORDER * \brief The edit box has no border. */#define CBS_EDITNOBORDER        0x0400L/** * \def CBS_EDITBASELINE * \brief The edit box has base line. */#define CBS_EDITBASELINE        0x0800L/** * \def CBS_READONLY * \brief The edit field is read-only. */#define CBS_READONLY            0x1000L/** * \def CBS_UPPERCASE * \brief The edit field is uppercase. */#define CBS_UPPERCASE           0x2000L/** * \def CBS_LOWERCASE * \brief The edit field is lowercase. */#define CBS_LOWERCASE           0x4000L/** * \def CBS_AUTOFOCUS * \brief The edit field will gain the focus automatically. */#define CBS_AUTOFOCUS           0x8000L    /** @} end of ctrl_combobox_styles */    /**     * \defgroup ctrl_combobox_msgs Messages of combobox control     * @{     *//** * \def CB_GETEDITSEL * \brief Gets the starting and ending character positions of the current  *        selection. * * An application sends a CB_GETEDITSEL message to get the starting and ending  * character positions of the current selection in the edit control of a combo box. * * \code * CB_GETEDITSEL * int start; * int end; * * wParam = (WPARAM)&start; * lParam = (LPARAM)&end; * \endcode * * \param start Pointer to a 32-bit value that receives the starting *           position of the selection. * \param end Pointer to a 32-bit value that receives the ending *           position of the selection. * * \note Not implemented yet. */#define CB_GETEDITSEL               0xF140/** * \def CB_LIMITTEXT * \brief Limits the length of text in the edit control. * * An application sends a CB_LIMITTEXT message to limit the length of the text * the user may type into the edit control of a combo box.  * * \code * CB_LIMITTEXT * int newLimit; * * wParam = (WPARAM)newLimit; * lParam = 0; * \endcode * * \param newLimit Specifies the maximum number of characters the user can enter. * * \return The return value is always zero. */#define CB_LIMITTEXT                0xF141/** * \def CB_SETEDITSEL * \brief Sets the starting and ending character positions of the current  *        selection. * * An application sends a CB_SETEDITSEL message to set the starting and ending  * character positions of the current selection in the edit control of a combo box. * * \code * CB_SETEDITSEL * int start; * int end; * * wParam = (WPARAM)start; * lParam = (LPARAM)end; * \endcode * * \param start The starting position of the selection. * \param end The ending position of the selection. * * \note Not implemented yet. */#define CB_SETEDITSEL               0xF142/** * \def CB_ADDSTRING * \brief Adds a string to the list box of a combo box. * * An application sends a CB_ADDSTRING message to add a string to the list box * of a combo box.  * * \code * CB_ADDSTRING * char* string; * * wParam = 0; * lParam = (LPARAM)string; * \endcode * * \param string Pointer to the null-terminated string to be added. * * \return The index of the new item on success, else the one of *         the following error codes: * *         - CB_ERRSPACE    No memory can be allocated for new item. *         - CB_ERR         Invalid passed arguments. */#define CB_ADDSTRING                0xF143/** * \def CB_DELETESTRING * \brief Deletes a string in the list box of a combo box. * * An application sends a CB_DELETESTRING message to delete a string in the list box * of a combo box.  * * \code * CB_DELETESTRING * int index; * * wParam = (WPARAM)index; * lParam = 0; * \endcode * * \param index Specifies the index of the string to delete. * * \return If succeed, return zero; otherwise CB_ERR. */#define CB_DELETESTRING             0xF144#define CB_DIR                      0xF145/** * \def CB_GETCOUNT * \brief Retreives the number of items in the list box of a combo box. * * An application sends a CB_GETCOUNT message to retreive the number of items  * in the list box of a combo box.  * * \code * CB_GETCOUNT * * wParam = 0; * lParam = 0; * \endcode * * \return The number of items in the list box. */#define CB_GETCOUNT                 0xF146/** * \def CB_GETCURSEL * \brief Retreives the index of the currently selected item in the list box. * * An application sends a CB_GETCURSEL message to retreive the index of the  * currently selected item in the list box of a combo box.  * * \code * CB_GETCURSEL * * wParam = 0; * lParam = 0; * \endcode * * \return The index of currently selected item in the list box if have one; *         otherwise CB_ERR. */#define CB_GETCURSEL                0xF147/** * \def CB_GETLBTEXT * \brief Retreives the string of an item in the list box. * * An application sends a CB_GETLBTEXT message to retreive the string of  * a specified item in the list box of a combo box.  * * \code * CB_GETLBTEXT * int index; * char* string; * * wParam = (WPARAM)index; * lParam = (LPARAM)string; * \endcode * * \param index The index of the selected item. * \param string Pointer to the string buffer. * * \return One of the following values: *         - CB_OKAY\n  Success. *         - CB_ERR\n   Invalid item index. */#define CB_GETLBTEXT                0xF148/** * \def CB_GETLBTEXTLEN * \brief Gets the string length of an item in the list box. * * An application sends a CB_GETLBTEXTLEN message to get the string length * of a specified item in the list box of a combo box.  * * \code * CB_GETLBTEXTLEN * int index; * * wParam = (WPARAM)index; * lParam = 0; * \endcode * * \param index The index of the specified item. * * \return The length of the string on success; otherwise CB_ERR. */#define CB_GETLBTEXTLEN             0xF149/** * \def CB_INSERTSTRING * \brief Inserts a string to the list box of a combo box. * * An application sends a CB_INSERTSTRING message to insert a string to the list  * box of a combo box. Unlike the CB_ADDSTRING message, the CB_INSERTSTRING message * do not cause a list to be sorted. * * \code * CB_INSERTSTRING * int index; * char* string; * * wParam = (WPARAM)index; * lParam = (LPARAM)string; * \endcode * * \param index The index of the position at which to insert the string. * \param string Pointer to the null-terminated string to be added. * * \return The index of the new item on success, else the one of *         the following error codes: * *         - CB_ERRSPACE    No memory can be allocated for new item. *         - CB_ERR         Invalid passed arguments. */#define CB_INSERTSTRING             0xF14A/** * \def CB_RESETCONTENT * \brief Removes all items from the list box and edit control. * * An application sends a CB_RESETCONTENT message remove all items from the list * box and edit control of a combo box.  * * \code * CB_RESETCONTENT * * wParam = 0; * lParam = 0; * \endcode * * \return Always be zero. */#define CB_RESETCONTENT             0xF14B/** * \def CB_FINDSTRING * \brief Searchs the list box for an item beginning with the characters in a  *         specified string. * * An application sends a CB_FINDSTRING message to search the list box for an  * item beginning with the characters in a specified string. * * \code * CB_FINDSTRING * int indexStart; * char* string; * * wParam = (WPARAM)indexStart; * lParam = (LPARAM)string; * \endcode * * \param indexStart Index of the item preceding the first item to be searched. * \param string Pointer to the null-terminated string that contains the prefix *             to search for. * * \return The index of the matching item or CB_ERR to indicate not found. */#define CB_FINDSTRING               0xF14C#define CB_SELECTSTRING             0xF14D/** * \def CB_SETCURSEL * \brief Selects a string in the list of a combo box. * * \code * CB_SETCURLSEL * int index; * * wParam = (WPARAM)index; * lParam = 0;

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
精品无码三级在线观看视频| 欧美麻豆精品久久久久久| 99riav久久精品riav| 欧美日韩精品三区| 中文字幕一区二区三区乱码在线| 亚洲一区视频在线| 丁香亚洲综合激情啪啪综合| 国产精品久久久久一区| 婷婷开心久久网| 91在线观看免费视频| 26uuu国产日韩综合| 偷窥少妇高潮呻吟av久久免费| 成人av在线网站| 久久久久久亚洲综合影院红桃| 丝瓜av网站精品一区二区| 日本韩国欧美一区二区三区| 国产精品网站在线观看| 国产在线播放一区| 欧美成人性战久久| 水蜜桃久久夜色精品一区的特点| 色8久久人人97超碰香蕉987| 中文字幕欧美激情一区| 国产成人综合自拍| 2021中文字幕一区亚洲| 激情综合网天天干| 精品日韩欧美一区二区| 日本aⅴ精品一区二区三区 | 日韩中文字幕区一区有砖一区| 成人听书哪个软件好| 久久女同精品一区二区| 激情成人午夜视频| 久久综合久色欧美综合狠狠| 九九精品视频在线看| 欧美r级在线观看| 九一久久久久久| 久久久久久久性| 国产精品亚洲一区二区三区在线 | 久久蜜桃av一区精品变态类天堂| 日韩av不卡在线观看| 欧美一三区三区四区免费在线看| 日韩中文字幕1| 日韩欧美亚洲国产精品字幕久久久| 日韩电影一区二区三区四区| 欧美一区二区三区成人| 久草热8精品视频在线观看| 精品国产一区二区三区av性色| 精品一二线国产| 久久久久久久久一| 成人黄色网址在线观看| 亚洲精品国产一区二区精华液 | 国产精品一区久久久久| 国产亚洲精品中文字幕| 粉嫩嫩av羞羞动漫久久久 | 成人免费视频caoporn| 国产欧美日韩久久| 色婷婷久久久亚洲一区二区三区| 亚洲一区日韩精品中文字幕| 日韩三级精品电影久久久 | 天堂一区二区在线| 欧美sm美女调教| 91免费在线视频观看| 亚洲第一激情av| 久久久久久久久97黄色工厂| av激情综合网| 日韩影院免费视频| 中文字幕免费在线观看视频一区| 色先锋aa成人| 蜜桃视频在线观看一区| 国产精品日韩精品欧美在线| 欧美性色aⅴ视频一区日韩精品| 日本免费新一区视频| 国产欧美日韩视频一区二区| 在线观看日韩毛片| 国产精品一区二区久久精品爱涩| 亚洲精品五月天| 久久综合狠狠综合久久激情| 色拍拍在线精品视频8848| 久久精品国产精品亚洲精品| 亚洲免费av网站| 2021中文字幕一区亚洲| 在线观看网站黄不卡| 国精产品一区一区三区mba桃花| 一区二区三区蜜桃网| 久久久久久久国产精品影院| 欧美日韩一区二区三区视频| 成人免费的视频| 激情六月婷婷久久| 日韩av中文字幕一区二区| 亚洲天堂免费在线观看视频| 久久免费美女视频| 欧美一级艳片视频免费观看| 日本丰满少妇一区二区三区| 国产一区二区伦理| 久久99久久99| 午夜伊人狠狠久久| 亚洲一区二区三区四区五区黄| 国产精品久久久久影院色老大| 精品乱人伦小说| 91精品国产一区二区三区蜜臀| 色呦呦日韩精品| 色天天综合色天天久久| 成人av先锋影音| 成人网男人的天堂| 风流少妇一区二区| 国产原创一区二区三区| 国产一区高清在线| 久久99国产精品麻豆| 麻豆国产欧美日韩综合精品二区| 亚洲成a人片在线观看中文| 亚洲一区二区偷拍精品| 亚洲黄色性网站| 一区二区三区在线观看欧美| 一区二区三区在线看| 亚洲女厕所小便bbb| 亚洲精品日产精品乱码不卡| 最新热久久免费视频| 亚洲欧美国产毛片在线| 亚洲女子a中天字幕| 亚洲精品乱码久久久久久久久 | 久久影音资源网| 久久一区二区三区国产精品| 精品国产乱码久久久久久久| 26uuu国产日韩综合| 久久久久久久久久久久久久久99 | 欧美一区二区二区| 精品日本一线二线三线不卡| 精品国产在天天线2019| 国产调教视频一区| 亚洲三级免费电影| 亚洲一区二区欧美日韩 | 91精品国产综合久久福利软件 | 欧美丝袜丝nylons| 欧美男男青年gay1069videost | 色婷婷久久久综合中文字幕 | 精品国产乱码久久久久久图片| 久久亚洲捆绑美女| 国产精品女主播在线观看| 亚洲欧美日韩久久精品| 亚洲高清视频在线| 韩国av一区二区三区在线观看| 国产精品1024| 欧美羞羞免费网站| 欧美成人激情免费网| 国产精品成人免费在线| 亚洲电影一区二区| 国产美女久久久久| 日本韩国视频一区二区| 精品国产人成亚洲区| 综合激情成人伊人| 美女mm1313爽爽久久久蜜臀| 丁香天五香天堂综合| 欧美人伦禁忌dvd放荡欲情| 久久女同互慰一区二区三区| 一区二区三区在线视频免费| 精彩视频一区二区三区| 色国产综合视频| 久久精品视频一区二区| 亚洲一区二区三区自拍| 国产精品18久久久久久久久久久久 | 日韩欧美的一区| 亚洲三级视频在线观看| 美女被吸乳得到大胸91| 色综合久久综合网97色综合| 日韩免费看网站| 亚洲影视资源网| 成人午夜激情片| 欧美精品一区二区三区在线| 亚洲激情图片小说视频| 国产一区二区三区最好精华液| 欧美色精品在线视频| 欧美国产禁国产网站cc| 久久国产精品99精品国产| 欧美吞精做爰啪啪高潮| 国产精品久久久久久久第一福利 | 日韩午夜激情视频| 亚洲综合视频在线| 成人av一区二区三区| 久久久99精品久久| 七七婷婷婷婷精品国产| 欧美色精品天天在线观看视频| 国产精品九色蝌蚪自拍| 国产盗摄女厕一区二区三区| 91精品国产综合久久久久| 亚洲国产精品麻豆| 91麻豆产精品久久久久久| 中文字幕精品三区| 国产精品一级黄| 久久久久久**毛片大全| 国内精品久久久久影院一蜜桃| 91精品国产综合久久久久| 午夜精品免费在线| 欧美日韩亚洲丝袜制服| 亚洲综合丝袜美腿| 欧美午夜一区二区| 亚洲综合色噜噜狠狠| 色综合久久99| 亚洲免费观看视频| 色婷婷av一区| 性做久久久久久免费观看| 欧美日免费三级在线|