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

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

?? listbox.h

?? 這是針對 Linux (i386)平臺的 minigui 3.6.2 開發包(MiniGUI-Processes 運行模式)。
?? H
?? 第 1 頁 / 共 2 頁
字號:
/** * \file listbox.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: listbox.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_LISTBOX_H#define _MGUI_CTRL_LISTBOX_H #ifdef __cplusplusextern "C" {#endif  /* __cplusplus */    /**     * \addtogroup controls     * @{     */    /**     * \defgroup ctrl_listbox ListBox control     * @{     *//** * \def CTRL_LISTBOX * \brief The class name of listbox control. */#define CTRL_LISTBOX        ("listbox")/* Listbox return value */#define LB_OKAY                 0#define LB_ERR                  (-1)#define LB_ERRSPACE             (-2)#define CMFLAG_BLANK            0x0000#define CMFLAG_CHECKED          0x0001#define CMFLAG_PARTCHECKED      0x0002#define CMFLAG_MASK             0x000F#define IMGFLAG_BITMAP          0x0010/** Structrue of the listbox item info */typedef struct _LISTBOXITEMINFO{    /** Item string */    char* string;    /**      * Check mark and image flag. It can be one of the following values:     * - CMFLAG_BLANK     *   The item is blank.     * - CMFLAG_CHECKED     *   The item is checked.     * - CMFLAG_PARTCHECKED     *   The item is partly checked.     *     * For LBS_ICON list box, if you want to display bitmap other than icon,      * you can OR'd \a cmFlag whit \a IMGFLAG_BITMAP.     */    DWORD   cmFlag;         /* check mark flag */    /** Handle to the icon (or pointer to bitmap object) of the item */    HICON   hIcon;          /* handle to icon */} LISTBOXITEMINFO;/**  * \var typedef LISTBOXITEMINFO* PLISTBOXITEMINFO; * \brief Data type of the pointer to a LISTBOXITEMINFO. */typedef LISTBOXITEMINFO* PLISTBOXITEMINFO;    /**     * \defgroup ctrl_listbox_styles Styles of listbox control     * @{     *//** * \def LBS_NOTIFY * \brief Notifies the parent window. * * Causes the list box to notify the list box parent window  * with a notification message when the user clicks or doubleclicks an item. */#define LBS_NOTIFY              0x0001L/** * \def LBS_SORT * \brief Sorts strings alphabetically. * * Causes the list box to sort strings alphabetically that are  * added to the list box with an LB_ADDSTRING message. */#define LBS_SORT                0x0002L/** * \def LBS_MULTIPLESEL * \brief Causes the list box to allow the user to select multiple items. */#define LBS_MULTIPLESEL         0x0008L/** * \def LBS_CHECKBOX * \brief Displays a check box in an item. */#define LBS_CHECKBOX            0x1000L/** * \def LBS_USEICON * \brief Displays an icon or bitmap in an item. */#define LBS_USEICON             0x2000L/** * \def LBS_AUTOCHECK * \brief If the list box has LBS_CHECKBOX style, this *        style tell the box to auto-switch the check box between  *        checked or un-checked when the user click the check mark box of an item. */#define LBS_AUTOCHECK           0x4000L#define LBS_AUTOCHECKBOX        (LBS_CHECKBOX | LBS_AUTOCHECK)/** * \def LBS_SBALWAYS * \brief The list box with LBS_SBALWAYS style will always show vertical scrollbar. */#define LBS_SBALWAYS            0x8000L#define LBS_OWNERDRAWFIXED      0x0010L#define LBS_OWNERDRAWVARIABLE   0x0020L#define LBS_USETABSTOPS         0x0080L#define LBS_MULTICOLUMN         0x0200L#define LBS_WANTKEYBOARDINPUT   0x0400L#define LBS_NOREDRAW            0x0004L#define LBS_HASSTRINGS          0x0040L#define LBS_NOINTEGRALHEIGHT    0x0100L#define LBS_EXTENDEDSEL         0x0800L    /** @} end of ctrl_listbox_styles */    /**     * \defgroup ctrl_listbox_msgs Messages of listbox control     * @{     *//** * \def LB_ADDSTRING * \brief Appends the specified string. * * An application sends an LB_ADDSTRING message to append an item * specified in the lParam parameter to a list box. * * For a text-only list box: * * \code * LB_ADDSTRING * const char* text; * * wParam = 0; * lParam = (LPARAM)text; * \endcode * * \param text Pointer to the string of the item to be added. * * For a list box with check box or icon  * (with LBS_CHECKBOX or LBS_USEICON styles): * * \code * LB_ADDSTRING * PLISTBOXITEMINFO plbii; * * wParam = 0; * lParam = (LPARAM)plbii; * \endcode * * \param plbii Pointer to the listbox item info to be added. * * \return The index of the new item on success, else the one of *         the following error codes: * *         - LB_ERRSPACE    No memory can be allocated for new item. *         - LB_ERR         Invalid passed arguments. * */#define LB_ADDSTRING            0xF180/** * \def LB_INSERTSTRING * \brief Inserts an item to the list box. * * An application sends an LB_INSERTSTRING message to insert an item  * into a list box. Unlike LB_ADDSTRING message, the LB_INSERTSTRING * message do not cause the list to be sorted. * * For a text-only list box: * * \code * LB_INSERTSTRING * const char* text; * * wParam = index; * lParam = (LPARAM)text; * \endcode * * \param index Specifies the index of the position at which to insert the item. * \param text Pointer to the string of the item to be inserted. * * For a list box with check box or icon  * (with LBS_CHECKBOX or LBS_USEICON styles): * * \code * LB_INSERTSTRING * int index; * PLISTBOXITEMINFO plbii; * * wParam = (WPARAM)index; * lParam = (LPARAM)plbii; * \endcode *  * \param index Specifies the index of the position at which to insert the item. * \param plbii Pointer to the listbox item info to be inserted. * * \return The index of the new item on success, else the one of *         the following error codes: * *         - LB_ERRSPACE    No memory can be allocated for new item. *         - LB_ERR         Invalid passed arguments. * */#define LB_INSERTSTRING         0xF181/** * \def LB_DELETESTRING * \brief Removes an item from the list box. * * An application sends an LB_DELETESTRING message to a list box  * to remove from the list box. * * \code * LB_DELETESTRING * int delete; * * wParam = (WPARAM)delete; * lParam = 0; * \endcode * * \param delete The index of the listbox item to be deleted. * * \return LB_OKAY on success, else LB_ERR to indicate you passed an invalid index. */#define LB_DELETESTRING         0xF182#define LB_SELITEMRANGEEX       0xF183/** * \def LB_RESETCONTENT * \brief Removes the contents of a list box. * * An application sends an LB_RESETCONTENT message to remove the all items * in a list box. * * \code * LB_RESETCONTENT * * wParam = 0; * lParam = 0; * \endcode * * \return Always be zero. */#define LB_RESETCONTENT         0xF184/** * \def LB_GETSEL * \brief Gets the selected state for an specified item. * * An application sends an LB_GETSEL message to a list box to get the selected  * state for an item specified in the wParam parameter. * * \code * LB_GETSEL * int index; * * wParam = (WPARAM)index; * lParam = 0; * \endcode * * \param index The index of the specified item. * * \return The state of the specified item: *         - 0\n        Not selected. *         - >0\n       Selected. *         - LB_ERR\n   Invalid index. */#define LB_GETSEL               0xF187/** * \def LB_SETSEL * \brief Selects an item in a multiple-selection list box. * * An application sends an LB_SETSEL message to select an item  * in a multiple-selection list box and scroll it into view if necessary. * * \code * LB_SETSEL * int index, sel * * wParam = (WPARAM)sel; * lParam = (LPARAM)index; * \endcode * * \param sel Indicates the changes to be made to the listbox item,  *        can be one of the following values: *             - -1\n      If the item has been selected, makes it unselected, vice versa. *             - 0\n       Makes the item unselected.  *             - other\n   Makes the item selected.  * \param index The index of the item. * * \return LB_OKAY on success, else LB_ERR to indicate you passed an invalid index *         or the list box has no LBS_MULTIPLESEL style. */#define LB_SETSEL               0xF185/** * \def LB_GETCURSEL * \brief Gets the index of the currently selected or highlighted item. * * An application sends an LB_GETCURSEL message to a list box to get the index of  * the currently selected item, if there is one, in a single-selection list box. * For multiple-selection list box, appliction send an LB_GETCURSEL message to a  * list box to get the index of the current highlighted item. * * \code * LB_GETCURSEL * * wParam = 0; * lParam = 0; * \endcode * * \return The index of the currently selected item for single-selection list box; *         Eles the index of the highlighted item for multiple-selection list box. */#define LB_GETCURSEL            0xF188/** * \def LB_SETCURSEL * \brief Selects an item. * * An application sends an LB_SETCURSEL message to a list box to  * select an item and scroll it into view, if necessary. * * \code * LB_SETCURSEL * int cursel; * * wParam = (WPARAM)cursel; * lParam = 0; * \endcode * * \param cursel The index of the item to be selected and hilighted. * * \return The old index of the item selected on error, else LB_ERR to *         indicate an error occurred. */#define LB_SETCURSEL            0xF186/** * \def LB_GETTEXT * \brief Retrieves the text of an item in list box. * * An application sends an LB_GETTEXT message to a list box to retrieve the text * of an item. * * \code * LB_GETTEXT * 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. The buffer should be large enough *        to contain the text of the item. * * \return One of the following values: *         - LB_OKAY\n  Success. *         - LB_ERR\n   Invalid item index. * * \sa LB_GETTEXTLEN */#define LB_GETTEXT              0xF189/** * \def LB_GETTEXTLEN * \brief Gets the length of text of item specified in a list box. * * An application sends an LB_GETTEXTLEN message to a list box to get the length  * of text of the item specified in the \a wParam parameter. * * \code * LB_GETTEXTLEN * int index; * * wParam = (WPARAM)index; * lParam = 0; * \endcode * * \param index The index of the specified item. * * \return The length of the strings on success, else LB_ERR to indicate invalid index. */#define LB_GETTEXTLEN           0xF18A/** * \def LB_GETCOUNT * \brief Gets the number of items in the list box. * * An application sends an LB_GETCOUNT message to a list box to get the number  * of items in the list box. * * \code * LB_GETCOUNT * * wParam = 0; * lParam = 0; * \endcode * * \return The number of items in the listbox. */#define LB_GETCOUNT             0xF18B#define LB_SELECTSTRING         0xF18C#define LB_DIR                  0xF18D/** * \def LB_GETTOPINDEX * \brief Gets the index to the first visible item in the list box. * * An application sends an LB_GETTOPINDEX message to get the index to the first  * visible item in the list box. Initially, the first visible item is item 0, but  * this changes as the list box is scrolled.  * * \code * LB_GETTOPINDEX * * wParam = 0; * lParam = 0; * \endcode * * \return The index of the first visible item in the listbox. */#define LB_GETTOPINDEX          0xF18E/** * \def LB_FINDSTRING * \brief Searchs a specified string. * * An application sends an LB_FINDSTRING message to search a list box for an item  * that begins with the characters specified in the lParam parameter. The wParam  * parameter specifies the zero-based index of the item before the first item to  * be searched; The lParam parameter specifies a pointer to a null-terminated  * string that contains the prefix to search for. * * \code * LB_FINDSTRING * int index; * char *string; * * wParam = (WPARAM)index; * lParam = (LPARAM)string; * \endcode * * \param index The index of the item to be searched. * \param string The string of the item to be searched.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩欧美三级在线| www国产精品av| 91美女在线视频| 不卡大黄网站免费看| 99re这里只有精品视频首页| www.日韩精品| 欧美在线一二三四区| 欧美日韩色综合| 91精品久久久久久蜜臀| 欧美成人在线直播| 国产无遮挡一区二区三区毛片日本| 久久久精品国产99久久精品芒果| 久久久精品免费免费| 中文字幕欧美一区| 五月天亚洲婷婷| 美女脱光内衣内裤视频久久网站 | 爽好多水快深点欧美视频| 午夜精品福利一区二区三区av | 亚洲一区二区三区三| 亚洲国产精品嫩草影院| 免费观看久久久4p| 国产成人综合精品三级| 色综合久久久久久久| 6080午夜不卡| 国产丝袜欧美中文另类| 亚洲午夜日本在线观看| 久久av老司机精品网站导航| 国产成人精品www牛牛影视| 日本韩国精品在线| 欧美α欧美αv大片| 亚洲天堂网中文字| 久久av资源网| 欧美午夜一区二区三区免费大片| 久久一夜天堂av一区二区三区| 国产精品白丝在线| 日韩一区欧美二区| 成人免费视频网站在线观看| 欧美日韩在线三区| 欧美激情在线免费观看| 日韩精品一卡二卡三卡四卡无卡| 国产99久久久精品| 777午夜精品免费视频| 国产精品久久久久aaaa樱花| 日本不卡一二三| 97久久精品人人澡人人爽| 欧美精品一区二区三区久久久| 中文字幕亚洲一区二区av在线| 蜜乳av一区二区| 在线观看亚洲成人| 成人欧美一区二区三区在线播放| 精品一区二区三区免费毛片爱| 91精品办公室少妇高潮对白| 国产日韩欧美精品综合| 日韩电影在线一区二区| 色菇凉天天综合网| 中文字幕国产精品一区二区| 国产在线视频一区二区三区| 69堂国产成人免费视频| 亚洲自拍偷拍九九九| 色综合久久中文综合久久牛| 久久女同性恋中文字幕| 美国毛片一区二区三区| 欧美日韩一区二区欧美激情 | 午夜欧美在线一二页| 成av人片一区二区| 国产蜜臀97一区二区三区| 麻豆国产精品777777在线| 欧美精品第1页| 亚洲国产乱码最新视频| 在线观看日韩电影| 伊人色综合久久天天人手人婷| 99视频超级精品| 亚洲视频狠狠干| 91蜜桃网址入口| 一区二区三区资源| 欧美日韩午夜精品| 亚洲福中文字幕伊人影院| 欧美日韩一区高清| 日本亚洲三级在线| 日韩无一区二区| 激情小说亚洲一区| 国产女同性恋一区二区| 成人av先锋影音| 亚洲日韩欧美一区二区在线| 91免费小视频| 亚洲国产精品久久艾草纯爱| 欧美日韩中文字幕精品| 天天综合网 天天综合色| 欧美一区二区三区电影| 国产一区 二区| 日韩一区欧美一区| 在线视频你懂得一区| 香蕉av福利精品导航| 日韩一区二区麻豆国产| 国产精品一区二区在线看| 国产精品初高中害羞小美女文| 91在线播放网址| 免费在线观看精品| 国产人久久人人人人爽| 日本高清不卡在线观看| 美国欧美日韩国产在线播放| 国产精品久久久久久久久果冻传媒| 日韩欧美一区二区不卡| 国产激情偷乱视频一区二区三区| 国产精品色在线| 欧美色成人综合| 国产精品小仙女| 亚洲国产婷婷综合在线精品| 精品第一国产综合精品aⅴ| 懂色av一区二区夜夜嗨| 亚洲成人在线免费| 中文字幕第一区综合| 欧美三级电影精品| 成人av网站在线观看免费| 五月激情综合婷婷| 国产精品电影院| 日韩一级免费观看| 99精品久久只有精品| 国产综合久久久久久久久久久久| 亚洲男人的天堂在线观看| 日韩欧美二区三区| 欧美专区在线观看一区| 成人蜜臀av电影| 精品一区二区三区欧美| 午夜精品久久久久影视| 国产精品福利在线播放| 精品久久人人做人人爽| 欧美三级视频在线观看| 北岛玲一区二区三区四区| 秋霞电影网一区二区| 一区二区高清在线| 日韩一区在线播放| 国产精品免费久久久久| 精品国产精品网麻豆系列| 欧美精品vⅰdeose4hd| 91色视频在线| 成人av网在线| 成人avav在线| 高清beeg欧美| 高清日韩电视剧大全免费| 久久精品国产99久久6| 婷婷综合在线观看| 亚洲一线二线三线久久久| 日韩美女视频一区二区| 国产精品国产成人国产三级 | 91精品国产黑色紧身裤美女| 在线亚洲+欧美+日本专区| 色综合久久久久综合| 91麻豆免费观看| 99国内精品久久| 91丨九色丨国产丨porny| www.亚洲人| 色系网站成人免费| 91蜜桃免费观看视频| 欧美亚洲国产怡红院影院| 在线观看视频91| 欧美日韩国产精品自在自线| 337p亚洲精品色噜噜噜| 欧美一区二区三区的| 日韩视频一区二区三区| 日韩精品专区在线| 精品盗摄一区二区三区| 欧美极品xxx| 一区二区三区国产豹纹内裤在线| 亚洲国产另类av| 美女诱惑一区二区| 国产成人精品网址| 99re视频精品| 欧美日韩mp4| 久久这里都是精品| **性色生活片久久毛片| 亚洲国产日日夜夜| 毛片av一区二区| 国产69精品久久久久毛片| 91婷婷韩国欧美一区二区| 欧美日韩中文字幕精品| 精品成a人在线观看| 最新日韩av在线| 日韩成人一级片| 成人激情免费视频| 欧美日韩亚洲高清一区二区| 日韩欧美国产麻豆| 自拍偷拍亚洲欧美日韩| 婷婷中文字幕一区三区| 国产传媒日韩欧美成人| 欧美专区亚洲专区| 久久久www成人免费无遮挡大片| 亚洲婷婷国产精品电影人久久| 五月婷婷激情综合| 波多野结衣中文字幕一区 | 91高清视频免费看| 欧美v亚洲v综合ⅴ国产v| 亚洲欧洲日韩综合一区二区| 日韩国产欧美在线播放| 国产成人在线网站| 91精品综合久久久久久| 国产精品久久久久久久久图文区 | 欧洲人成人精品| 久久久久久电影| 婷婷丁香激情综合|