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

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

?? listview.h

?? mini gui 1.6.8 lib and source
?? H
?? 第 1 頁 / 共 2 頁
字號:
/** * \file listview.h * \author Wei Yongming <ymwei@minigui.org> * \date 2002/01/06 *  * The header file of MiniGUI extension library. * \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: listview.h,v 1.6 2005/09/04 06:58:21 jpzhang Exp $ * *             MiniGUI for Linux/uClinux, eCos, uC/OS-II, VxWorks,  *                     and ThreadX version 1.6.x *             Copyright (C) 2002-2005 Feynman Software. *             Copyright (C) 1998-2002 Wei Yongming. */#ifndef EXT_LISTVIEW_H#define EXT_LISTVIEW_H#ifdef  __cplusplusextern "C" {#endif    /**     * \addtogroup mgext_fns     * @{     */    /**     * \addtogroup mgext_controls     * @{     */    /**     * \defgroup mgext_ctrl_listview ListView control     * @{     */#define CTRL_LISTVIEW       ("ListView")/** Listview return value */#define LV_OKAY                 0#define LV_ERR                  (-1)#define LV_ERRSPACE             (-2)typedef GHANDLE HLVITEM;/** list view item flags */#define LVIF_FOLD               0x0001L/**  * Structure of the listview item info, contains information about an item. * This structure is used for creating or retrieving an item.  */typedef struct _LVITEM{    /**     * the rows of the item     */    int nItem;    /** height of the item */    int nItemHeight;    /** attached additional data of this item */    DWORD itemData;    /**     * State flags of the item, can be OR'ed by the following values:     *     * - LVIF_FOLD\n     *   The item is folded.     *     * When adding an item to the listview control, only LVIF_FOLD     * flag is valid.     */    DWORD dwFlags;} LVITEM;typedef LVITEM *PLVITEM;/** listview icon flags */#define LVFLAG_BITMAP	0x0001#define LVFLAG_ICON	    0x0002/**  * Struct of the listview subitem info, contains information about a subitem. * This structure is used for creating or retrieving a subitem. */ typedef struct _LVSUBITEM{    /** flags of the subitem, can be OR'ed by the following values:     *     * - LVFLAG_BITMAP     *   The sub item has a bitmap icon.     * - LVFLAG_ICON     *   The sub item has an icon.     */    DWORD flags;    /** the Subitem vertical position(rows) */    int nItem;    /** the Subitem horizontal position(columns) */    int subItem;    /** text content of this subitem */    char *pszText;    /** max text len */    int nTextMax;    /** text color of the subitem */    int nTextColor;    /** image of the subitem, can be bitmap or icon, determined by flags */    DWORD image; } LVSUBITEM;typedef LVSUBITEM *PLVSUBITEM;/** Contains information for sorting listview */typedef struct _LVSORTDATA{    /** Sorting column index */    int ncol;    /** low sorted or high sorted */    int losorted;    /** listview handle */    HWND hLV;} LVSORTDATA;typedef LVSORTDATA *PLVSORTDATA;/** type of listview comparision fuction */typedef int (*PFNLVCOMPARE) (HLVITEM nItem1, HLVITEM nItem2, PLVSORTDATA sortData);/** Column flags *//** column text left align, default */#define LVCF_LEFTALIGN	        0x0000/** column text right align */#define LVCF_RIGHTALIGN	        0x0001/** column text center align */#define LVCF_CENTERALIGN        0x0002/** column treeview style */#define LVCF_TREEVIEW           0x0004/** header flags *//** header text left align, default */#define LVHF_LEFTALIGN		0x0000/** header text right align */#define LVHF_RIGHTALIGN		0x0004/** header text center align */#define LVHF_CENTERALIGN	0x0008/**  * Struct of the listview column info, contains information about a column. * This structure is used for creating or retrieving a column. */typedef struct _LVCOLUMN{    /** the horizontal position */    int nCols;    /** column's width */    int width;    /** the title of this column */    char *pszHeadText;    /** max text len */    int nTextMax;    /** image of the column header, can be bitmap or icon */    DWORD image;     /** Comparision function associated with the column */    PFNLVCOMPARE pfnCompare;    /** Column and header flags */    DWORD colFlags;} LVCOLUMN;typedef LVCOLUMN *PLVCOLUMN;/** listview search flags *//** search by text */#define LVFF_TEXT	    0x0001/** search by addtional data */#define LVFF_ADDDATA	0x0002/** Contains information for finding a certain item info */typedef struct _LVFINDINFO{    /**      * Type of search to perform.      * This member can be set to one or more of the following values:     * - LVFF_TEXT     *   Searches based on the item(subitems) text.     * - LVFF_ADDDATA     *   Searches based on the attached additional item data.     */    DWORD flags;    /** Search index to begin with, 0 from the beginning */    int iStart;    /** pszInfo containing nCols columns' text */    int nCols;    /** all the subitem's content of this item */    char **pszInfo;    /** the additional item data */    DWORD addData;    /** The found item's row, reserved */    int nItem;    /** The found subitem's column, reserved */    int nSubitem;} LVFINDINFO;typedef LVFINDINFO *PLVFINDINFO;/** Contains listview general notification information */typedef struct _LVNM_NORMAL{    /** wParam parameter of the message */    WPARAM wParam;    /** lParam parameter of the message */    LPARAM lParam;} LVNM_NORMAL;typedef LVNM_NORMAL *PLVNM_NORMAL;/** keydown notification information */typedef LVNM_NORMAL LVNM_KEYDOWN;typedef LVNM_KEYDOWN *PLVNM_KEYDOWN;/** Contains listview notification information when mouse down on the header  */typedef LVNM_NORMAL LVNM_HEADRDOWN;typedef LVNM_HEADRDOWN *PLVNM_HEADRDOWN;/** Contains listview notification information when mouse up on the header  */typedef LVNM_NORMAL LVNM_HEADRUP;typedef LVNM_HEADRUP *PLVNM_HEADUP;/** Contains listview notification information when mouse down on the item area */typedef LVNM_NORMAL LVNM_ITEMRDOWN;typedef LVNM_ITEMRDOWN *PLVNM_ITEMRDOWN;/** Contains listview notification information when mouse up on the item area */typedef LVNM_NORMAL LVNM_ITEMRUP;typedef LVNM_ITEMRUP *PLVNM_ITEMRUP;    /**     * \defgroup mgext_ctrl_listview_styles Styles of listview control     * @{     *//** * \def LVS_UPNOTIFY * \brief Notifies the parent window when mouse is up (default is down). * * Causes the listview to notify the listview parent window  * with a notification message when the user make actions, such as clicks, doubleclicks, ...,etc. */#define LVS_UPNOTIFY            0x0001L             /* must be the same with SVS_UPNOTIFY */#define LVS_NOTIFY              LVS_UPNOTIFY/** * \def LVS_SORT * \brief Sorts strings automatically. * * Causes the listview to sort strings automatically.  */#define LVS_SORT                0x0002L/** * \def LVS_MULTIPLESEL * \brief Causes the listview to allow the user to select multiple items. */#define LVS_MULTIPLESEL         0x0008L              /* reserved *//** * \def LVS_CHECKBOX * \brief Displays a check box in an item. */#define LVS_CHECKBOX            0x1000L              /* reserved *//** * \def LVS_AUTOCHECK * \brief If the list box has LVS_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 LVS_AUTOCHECK           0x2000L              /* reserved */#define LVS_AUTOCHECKBOX        (LVS_CHECKBOX | LVS_AUTOCHECK)    /* reserved *//** * \def LVS_TREEVIEW * \brief Uses listview in a treeview style. */#define LVS_TREEVIEW            0x4000L    /** @} end of mgext_ctrl_listview_styles */    /**     * \defgroup mgext_ctrl_listview_msgs Messages of ListView control     * @{     *//** *  \def LVM_ADDITEM *  \brief Adds a item to listview, this item is also called a row.  *   *  \code  *  LVM_ADDITEM *  PLVITEM p *  HLVITEM parent; * *  wParam = (WPARAM)parent; *  p =(LPARAM)lParam; *  \endcode * *  \param p Pointes to a LVITEM structure that contains the information of  *           the new item to be added. nItem member of the LVITEM struct speficied  *           the item position in its parent item, beginning with zero. *  \param parent handle of the parent item into which the new item is about to insert. *           If parent equals zero, the parent item will be the root of listview. * *  \return Returns the handle of the new item if successful, or 0 otherwise. */#define LVM_ADDITEM            0xF110/** * \def LVM_FILLSUBITEM * \brief Sets the content of a subitem, indentified by rows and columns. *  * \code * LVM_FILLSUBITEM * PLVSUBITEM p; * HLVITEM pi; * * lParam = (LPARAM)p; * wParam = (WPARAM)pi; * \endcode * * \param p  Pointes to a PLVSUBITEM structure that contains the information of  *           the subitem to set. If pi is not zero, nItem member of this struct *           has no meaning. * \param pi handle of the target item. *           If pi equals zero, the row position of the target item is  *           specified by nItem member of p structure. * * \return Returns LV_OKAY if successful, or LV_ERR otherwise. */#define LVM_FILLSUBITEM        0xF111/** * \def LVM_ADDCOLUMN * \brief Adds a new column to listview, indentified by column. *  * \code *  LVM_ADDCOLUMN *  PLVCOLUMN p; * *  wParam = 0; *  lParam =(LPARAM)p; * \endcode * * \param p Pointes to a LVCOLUMN structure that contains the information about the new  *          column to be added. */#define LVM_ADDCOLUMN          0xF112/** * \def LVM_DELITEM * \brief Deletes an item form listview. * * \code * LVM_DELITEM * int nRow; * HLVITEM pi; * * wParam = (WPARAM)nRow; * lParam = (LPARAM)pi; * \endcode * * \param nRow If pi is zero, nRow specified the row index of the target item to delete. * \param pi handle of the target item. * * \return Returns LV_OKAY if successful, or LV_ERR otherwise. */#define LVM_DELITEM            0xF113/** * \def LVM_CLEARSUBITEM * \brief Clears the content of a subitem. *  * \code * LVM_CLEARSUBITEM * PLVSUBITEM p; * HLVITEM pi; * * lParam = (LPARAM)p; * wParam = (WPARAM)pi; * \endcode * * \param p  Pointes to a PLVSUBITEM structure that contains the information of  *           the subitem to clear. If pi is not zero, nItem member of this struct *           has no meaning. * \param pi handle of the target item. *           If pi equals zero, the row position of the target item is  *           specified by nItem member of p structure. * * \return Returns LV_OKAY if successful, or LV_ERR otherwise. */#define LVM_CLEARSUBITEM       0xF114/** * \def LVM_DELCOLUMN * \brief Deletes a column from listview, all subitem in this column will be removed.   * * \code * LVM_DELCOLUMN * int nCols; * * wParam = (WPARAM)nCol; * lParam = 0; * \endcode * * \param nCol the index of the column to be removed. * \return Returns LV_OKAY if successful, or LV_ERR otherwise. */#define LVM_DELCOLUMN          0xF115/** * \def LVM_COLSORT * \brief Sorts all subitems according to a certain column.  * * \code * LVM_COLSORT * int ncol; * * wParam = (WPARAM)ncol; * lParam = 0; * \endcode * * \param ncol Index of the column. * \return Returns LV_OKAY if successful, or LV_ERR otherwise. */#define LVM_COLSORT            0xF116/** * \def LVM_SETSUBITEMCOLOR * \brief Sets the text color of a subitem. * * \code * LVM_SETSUBITEMCOLOR * PLVSUBITEM p; * HLVITEM pi; * * lParam = (LPARAM)p; * wParam = (WPARAM)pi; * \endcode * * \param p  Pointes to a PLVSUBITEM structure that contains the information of  *           the subitem to set. If pi is not zero, nItem member of this struct *           has no meaning. * \param pi handle of the target item. *           If pi equals zero, the row position of the target item is  *           specified by nItem member of p structure. * * \return Always returns 0; */#define LVM_SETSUBITEMCOLOR       0xF117/** * \def LVM_FINDITEM * * \code * LVM_FINDITEM * PLVFINDINFO plvfi; * HLVITEM parent; * * wParam = (WPARAM)parent; * lParam = (LPARAM)plvfi; * \endcode * * \param parent Handle of the item to search in. * \param plvfi Points to a LVFINDINFO structure containing information for searching. *              If parent is zero, iStart member of plvfi specifieds the start position *              on search. * * \return Returns the handle of the found item if successful, or 0 otherwise. */#define LVM_FINDITEM           0xF118/** * * \def LVM_GETSUBITEMTEXT * \brief Retrieves the text of a listview subitem. * * \code  * LVM_GETSUBITEMTEXT * PLVSUBITEM p; * HLVITEM pi; * * lParam = (LPARAM)p; * wParam = (WPARAM)pi; * \endcode * * \param p  Pointes to a PLVSUBITEM structure that contains the information of  *           the subitem to set. If pi is not zero, nItem member of this struct *           has no meaning. * \param pi handle of the target item. *           If pi equals zero, the row position of the target item is  *           specified by nItem member of p structure. * * \return Returns len of the text if successful, -1 otherwise. */#define LVM_GETSUBITEMTEXT         0xF119/** * \def LVM_GETITEMCOUNT * \brief Gets the number of all the items(rows) in a listview. * * \code * LVM_GETITEMCOUNT * * wParam = 0; * lParam = 0; * \endcode * * \return The number of the items. */#define LVM_GETITEMCOUNT       0xF11A/** * \def LVM_GETCOLUMNCOUNT * \brief Gets the number of all the columns in listview. * * \code * LVM_GETCOLUMNCOUNT * * wParam = 0; * lParam = 0; * \endcode * * \return the number of all the columns in listview. */#define LVM_GETCOLUMNCOUNT     0xF11B/** * \def LVM_GETSELECTEDITEM * \brief Gets the current selected item. * * \code * LVM_GETSELECTEDITEM * * wParam = 0; * lParam = 0; * \endcode * * \return handle of the current selected item. */#define LVM_GETSELECTEDITEM    0xF11C/** * \def LVM_DELALLITEM * \brief Removes all the items in listview. * * \code * LVM_DEALLITEM * * wParam = 0; * lParam = 0; * \endcode * * \return Returns TRUE if successful, or FALSE otherwise. */#define LVM_DELALLITEM           0xF11D/** * \def LVM_MODIFYHEAD * \brief Changes the title of a column. * * \code * LVM_MODIFYHEAD * PLVCOLUMN pcol; *

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品色在线| 寂寞少妇一区二区三区| 国产一区二区三区免费观看| 欧美伊人久久久久久午夜久久久久| 国产一区二区成人久久免费影院| 国产一区在线不卡| 国产91在线|亚洲| 国产伦精品一区二区三区视频青涩 | 中文一区二区完整视频在线观看| 国内精品久久久久影院色| 青青草原综合久久大伊人精品优势| 欧美高清视频不卡网| 免费观看在线综合| 欧美日韩1234| 青椒成人免费视频| 亚洲成人资源网| 青青草视频一区| 蜜臀久久久99精品久久久久久| 午夜影院久久久| 91精品国产91久久久久久最新毛片| 久久er99精品| 911精品产国品一二三产区| 日本免费新一区视频| 高清shemale亚洲人妖| 国产精品久久久久一区| 国产成人小视频| 亚洲国产婷婷综合在线精品| 日韩一二三四区| 亚洲一本大道在线| av在线不卡观看免费观看| 欧美在线一区二区| 91福利国产成人精品照片| 精品美女在线观看| 日本韩国视频一区二区| 国产欧美一区二区三区沐欲| 2017欧美狠狠色| 中文字幕在线免费不卡| 国产精品素人视频| 久久久99久久精品欧美| 国产xxx精品视频大全| 91精品一区二区三区久久久久久| 51午夜精品国产| 国产精品 日产精品 欧美精品| 亚洲天堂久久久久久久| 日韩女优电影在线观看| 亚洲18影院在线观看| 国产丝袜美腿一区二区三区| 精品对白一区国产伦| 午夜视频一区二区| 精品一区二区三区av| 国产一区二区三区免费观看| 久久久综合视频| 69久久99精品久久久久婷婷| 欧美人牲a欧美精品| 成人免费黄色在线| 午夜精品久久久久影视| 欧美大片在线观看| 成人国产精品免费观看视频| 中文乱码免费一区二区| 国产日韩欧美精品综合| 丝袜亚洲另类欧美综合| 成人性生交大合| 91国产成人在线| 一区二区三区日韩欧美| 日韩精品一区在线观看| 欧美三级一区二区| 国产成人免费视频网站 | 不卡的av中国片| 亚洲在线中文字幕| 成人免费高清在线| 欧美日韩激情在线| 亚洲综合一二三区| 欧美另类一区二区三区| 亚洲资源中文字幕| 精品少妇一区二区| 欧美日韩国产成人在线免费| 在线观看日韩电影| 国产视频在线观看一区二区三区| 2020日本不卡一区二区视频| 国产欧美一区二区三区沐欲| 亚洲欧美日韩国产综合在线| 婷婷成人激情在线网| 久久久久久久久久久久久夜| 国产麻豆9l精品三级站| 国产色婷婷亚洲99精品小说| 国产精品污网站| 久久午夜国产精品| 在线观看亚洲一区| 成人免费黄色大片| 精品成人一区二区三区四区| 精品免费视频一区二区| 99久久夜色精品国产网站| 中文字幕一区二区在线观看| 国产欧美日本一区二区三区| 中文一区在线播放| 国产精品嫩草99a| 免费黄网站欧美| 91麻豆视频网站| 日韩 欧美一区二区三区| 久久一夜天堂av一区二区三区| 国产欧美综合在线观看第十页 | 欧洲一区二区三区在线| 免费观看在线综合| 久久精品久久精品| 欧美色爱综合网| 日韩一区二区三区免费看| 天天综合网天天综合色| 免费在线观看日韩欧美| 国产成人亚洲综合a∨婷婷图片| 成人午夜精品在线| 亚洲蜜臀av乱码久久精品蜜桃| 日韩一区二区免费视频| 久久嫩草精品久久久精品| 成人免费视频视频在线观看免费| 国产日产欧美一区| 黄色小说综合网站| 黑人精品欧美一区二区蜜桃| 成人黄色免费短视频| 亚洲精品成人天堂一二三| 国产日韩欧美精品在线| 国产精品99久久久久久似苏梦涵| 欧美群妇大交群的观看方式| 日韩午夜av电影| 国内不卡的二区三区中文字幕 | 日韩欧美在线123| 91精品国产免费久久综合| 国产成人在线视频播放| 6080日韩午夜伦伦午夜伦| 亚洲线精品一区二区三区八戒| 欧美丰满一区二区免费视频 | 国产精品久久久久永久免费观看 | 美腿丝袜亚洲三区| 中文字幕中文字幕中文字幕亚洲无线| 欧美顶级少妇做爰| 一本久道久久综合中文字幕| 蜜芽一区二区三区| 亚洲精品成a人| 亚洲手机成人高清视频| 精品美女被调教视频大全网站| 欧美日韩一区三区四区| 国产精品小仙女| 国产成人av一区| 国产福利精品一区二区| 久久99国产精品免费网站| 日韩高清国产一区在线| 亚洲午夜久久久久中文字幕久| 亚洲人吸女人奶水| 亚洲美女在线国产| 亚洲综合区在线| 亚洲一级片在线观看| 亚洲尤物在线视频观看| 一区二区三区**美女毛片| 亚洲精品福利视频网站| 亚洲自拍偷拍av| 久久精品国产一区二区三区免费看| 五月天激情小说综合| 日韩va欧美va亚洲va久久| 麻豆免费精品视频| 国产一区二区三区免费| 成人国产在线观看| 99麻豆久久久国产精品免费| 一本色道久久综合亚洲aⅴ蜜桃| av电影在线观看一区| 欧洲一区在线电影| 欧美一区二区成人| 欧美成人国产一区二区| 国产色产综合色产在线视频 | 91精品久久久久久久91蜜桃| 日韩一级免费观看| 国产欧美精品一区二区色综合| 国产欧美一区二区在线观看| 亚洲欧美日韩综合aⅴ视频| 亚洲电影你懂得| 五月天视频一区| 亚洲一区电影777| 韩国三级中文字幕hd久久精品| 国产91精品一区二区| 在线观看不卡视频| 久久综合久久99| 一区二区三区在线观看网站| 日韩成人dvd| jlzzjlzz亚洲日本少妇| 欧美日韩国产高清一区二区三区| 精品视频1区2区| 精品国产乱码久久久久久浪潮| 国产精品久久久久久久蜜臀| 日韩主播视频在线| 国产成人亚洲综合色影视| 欧美视频在线观看一区二区| 精品国产污网站| 一区二区成人在线视频| 久久99精品久久久久久动态图| 99久久精品国产精品久久| 日韩亚洲欧美在线| 亚洲人xxxx| 国产成人精品一区二区三区四区| 欧美日韩国产免费一区二区| 中文字幕精品一区二区精品绿巨人| 午夜国产精品影院在线观看| 成人国产亚洲欧美成人综合网|