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

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

?? listview.h

?? mini gui 1.6.8 lib and source
?? H
?? 第 1 頁 / 共 2 頁
字號:
 * wParam = 0; * lParam = (LPARAM)pcol; * \endcode * * \param pcol Pointer to a LVCOLUMN struct. * \return Returns LV_OKAY if successfull, or LV_ERR otherwise. */#define LVM_MODIFYHEAD           0xF11E/** * \def LVM_SELECTITEM * \brief Selects an item. * * \code * LVM_SELECTITEM * 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 select. * \param pi handle of the target item. * * \return Always returns 0. */#define LVM_SELECTITEM		0xF11F /** * \def LVM_SHOWITEM * \brief Makes the item is entirely visible in the list view. * * \code * LVM_SHOWITEM * 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 show. * \param pi handle of the target item. * * \return Always returns 0. */#define LVM_SHOWITEM		0xF120 /** * \def LVM_GETSUBITEMLEN * \brief Gets the text len of the subitem. * * \code * LVM_GETSUBITEMLEN * 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 the text len if successful, or LV_ERR otherwise. */#define LVM_GETSUBITEMLEN   	0xF121/** * \def LVM_SETCOLUMN * \brief Sets the attributes of a listview column. * * \code * LVM_SETCOLUMN * PLVCOLUMN pcol; * * wParam = 0; * lParam = (LPARAM)pcol; * \endcode * * \param pcol Points to a LVCOLUMN structure containing the new column information. * * \return Returns LV_OKAY if successful, or LV_ERR otherwise. */#define LVM_SETCOLUMN		0xF122/** * \def LVM_SETSUBITEMTEXT * \brief Sets the text of a subitem. * * \code * LVM_SETSUBITEMTEXT * PLVSUBITEM p; * HLVITEM pi; * * wParam = (WPARAM)pi; * lParam = (LPARAM)p; * \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_SETSUBITEMTEXT	0xF123/** * \def LVM_SETSUBITEM * \brief Sets the attributes of a subitem. * * \code * LVM_SETSUBITEM * 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_SETSUBITEM		0xF124/** * \def LVM_GETCOLUMN * \brief Retrieves the information about a listview column. * * \code * LVM_GETCOLUMN * int nCol; * PLVCOLUMN pcol; * * wParam = (WPARAM)nCol; * lParam = (LPARAM)pcol; * \endcode * * \param nCol Index of the column. * \param pcol Points to a LVCOLUMN structure for retrieving the information  *             about the column. * * \return Returns TRUE if successful, or FALSE otherwise. */#define LVM_GETCOLUMN		0xF125 /** * \def LVM_GETCOLUMNWIDTH * \brief Retrieves the width of a listview column. * * \code * LVM_GETCOLUMNWIDTH * int nCol; * * wParam = (WPARAM)nCol; * lParam = (LPARAM)0; * \endcode * * \param nCol Index of the column. * * \return Returns the column width if successful, or -1 otherwise. */#define LVM_GETCOLUMNWIDTH	0xF126 /** * \def LVM_GETITEM * \brief Retrieves the item's attributes. * * \code * LVM_GETITEM * HLVITEM pi; * LVITEM item_info; * * wParam = (WPARAM)pi; * lParam = (LPARAM)&item_info; * \endcode * * \param pi handle of the target item. * \param item_info Used for storing the target item's attributes.                     If pi is zero, nItem field of item_info specified the row index                     of the target item to get. * * \return Returns LV_OKAY if successful, or LV_ERR otherwise. */#define LVM_GETITEM		0xF127 /** * \def LVM_GETITEMSTATE * \brief Retrieves the state of a listview item. * * \code * LVM_GETITEMSTATE * UINT mask; * HLVITEM pi; * * wParam = (WPARAM)pi; * lParam = (LPARAM)mask; * \endcode * * \param pi handle of the target item. * \param mask Contains state information to retrieve, can be the combination *             of the following values. * * \return Returns the current state of the specified item. */#define LVM_GETITEMSTATE	0xF128 /** * \def LVM_GETSELECTEDCOLUMN * \brief Retrieves the index of the currently selected column of a listview. * * \code * LVM_GETSELECTEDCOLUMN * * wParam = 0; * lParam = 0; * \endcode * * \return Returns the index of the selected column. */#define LVM_GETSELECTEDCOLUMN	0xF129 /** * \def LVM_GETSELECTEDCOUNT * \brief Retrieves the number of the selected items in a listview. * * \code * LVM_GETSELECTEDCOUNT * * wParam = 0; * lParam = 0; * \endcode * * \return Returns the number of the selected items. */#define LVM_GETSELECTEDCOUNT	0xF130 /** * \def LVM_GETTOPVISIBLE * \brief Retrieves the index of the topmost visible item in a listview. * * \code * LVM_GETTOPVISIBLE * * wParam = 0; * lParam = 0; * \endcode * * \return Returns the index of the topmost visible item if successful, or zero. */#define LVM_GETTOPVISIBLE	0xF131 #define LVM_NULL		0xF132 #define LVM_SETITEMSTATE	0xF133 /** * \def LVM_SORTITEMS * \brief Uses an application-defined comparision function to sort the items. * * \code * LVM_SORTITEMS * PLVSORTDATA sortData; * PFNLVCOMPARE pfnCompare; * * wParam = (WPARAM)sortData; * lParam = (LPARAM)pfnCompare; * \endcode * * \param sortData Sorting datas passed to the comparision function. * \param pfnCompare Pointer to the application-defined comparision function. The *                   comparision function is called during the sort operation *                   each time the relative order of the two items needs to be  *                   compared. * *                   The comparison function must return a negative value if the  *                   first item precedes the second, a positive value if  *                   the first item follows the second, or zero if the two  *                   items are equivalent. * *                   The comparision function has the following form: * *                   int CompareFunction(int nItem1, int nItem2, PLVSORTDATA sortData); * *                   nItem1 is the handle of the first item, nItem2 is the handle *                   of the second item, and sortData is passed to CompareFunction *                   as the third parameter. * * \return Returns TRUE if successful, or FALSE otherwise. */#define LVM_SORTITEMS		0xF134 /** * \def LVM_SETITEMHEIGHT * \brief Changes the height of a item. * * \code * LVM_SETITEMHEIGHT * int height; * HLVITEM pi; * * wParam = (WPARAM)pi; * lParam = (LPARAM)height; * \endcode * * \param height The new height of the item. * \param pi handle of the target item. * * \return Returns TRUE if successful, or FALSE otherwise. */#define LVM_SETITEMHEIGHT	0xF135 /** * \def LVM_SETHEADHEIGHT * \brief Changes the height of the header. * * \code * LVM_SETHEADHEIGHT * int height; * * wParam = (WPARAM)height; * lParam = 0; * \endcode * * \param height The new height of the header. * \return Returns TRUE if successful, or FALSE otherwise. */#define LVM_SETHEADHEIGHT	0xF136 /** * \def LVM_GETITEMADDDATA * \brief Gets the 32-bit data value associated with an item. *  * An application sends an LVM_GETITEMADDDATA message to a listview to get the  * 32-bit data value stored for the item with index of \a wParam;  * By default this is zero. An application must set the  * item data value by sending an LVM_SETITEMADDDATA message to the listview for  * this value to have meaning. * * \code * LVM_GETITEMADDDATA * int index; * HLVITEM pi; * * wParam = (WPARAM)index; * lParam = (LPARAM)pi; * \endcode * * \param pi handle of the target item. * \param index The index of the specified item. If pi is not zero, use pi instead. * * \return The 32-bit data value associated with an item on success, otherwise *         -1 to indicate an error. */#define LVM_GETITEMADDDATA       0xF137/** * \def LVM_SETITEMADDDATA * \brief Associates a 32-bit data value with an item. *  * An application sends an LVM_SETITEMADDDATA message to associate a 32-bit data  * value specified in the \a lParam parameter with an item in the listview. * * \code * LVM_SETITEMADDDATA * HLVITEM pi; * DWORD addData; * * wParam = (WPARAM)pi; * lParam = (LPARAM)addData; * \endcode * * \param pi handle of the target item. * \param addData the 32-bit data value which will associated with the item. * * \return One of the following values: *          - LV_OKAY\n         Success *          - LV_ERR\n          Invalid item index * */#define LVM_SETITEMADDDATA       0xF138/** * \def LVM_CHOOSEITEM * \brief Selects and shows an item. * * \code * LVM_CHOOSEITEM * 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 choose. * \param pi handle of the target item. * * \return Always returns 0. */#define LVM_CHOOSEITEM		0xF139/** * \def LVM_SETSTRCMPFUNC * \brief Sets the STRCMP function used to sort items. * * An application sends a LVM_SETSTRCMPFUNC message to set a  * new STRCMP function to sort items in the Listview control. * * Note that you should send this message before adding  * any item to the Listview control. * * \code * static int my_strcmp (const char* s1, const char* s2, size_t n) * { *      ... *      return 0; * } * * LVM_SETSTRCMPFUNC * * wParam = 0; * lParam = (LPARAM) my_strcmp; * \endcode * * \param my_strcmp Your own function to compare two strings. * * \return One of the following values: *          - 0\n     Success *          - -1\n    Not an empty TreeView control */#define LVM_SETSTRCMPFUNC       0xF140#define LVIR_PARENT             1#define LVIR_FIRSTCHILD         2#define LVIR_NEXTSIBLING        3#define LVIR_PREVSIBLING        4/** * \def LVM_GETRELATEDITEM * \brief Retrives related item of specific item. * * \code * LVM_GETRELATEDITEM * int related; * GHANDLE item; * * wParam = (WPARAM)related; * lParam = (LPARAM)item; * \endcode * * \param related A integer which indicates the relationship between  *        the item to retrive and the specified item, can be one of the following values: *          - TVIR_PARENT\n *              To retrive the parent item of the specified item. *          - TVIR_FIRSTCHILD\n *              To retrive the first child item of the specified item. *          - TVIR_NEXTSIBLING\n *              To retrive the next sibling item of the specified item. *          - TVIR_PREVSIBLING\n *              To retrive the previous sibling item of the specified item. * * \param item The handle to the known item. * * \return The handle of the related item on success, otherwise 0. */#define LVM_GETRELATEDITEM      0xF141/** * \def LVM_FOLDITEM * \brief Folds or unfolds an item. * * \code * LVM_FOLDITEM * int bFold; * HLVITEM pi; * * wParam = (WPARAM)bFold; * lParam = (LPARAM)pi; * \endcode * * \param bFold to fold or to unfold, TRUE is to fold. * \param pi handle of the target item. * * \return Always returns 0. */#define LVM_FOLDITEM            0xF142    /** @} end of mgext_ctrl_listview_msgs */    /**     * \defgroup mgext_ctrl_listview_ncs Notification code of ListView control     * @{     */#define LVN_CLICKED            1    /* must be the same as SVN_CLICKED *//** * \def LVN_SELCHANGE * \brief This notification code informs parent window the current selected item  *        has changed. */#define LVN_SELCHANGE          2    /* must be the same as SVN_SELCHANGED *//** * \def LVN_ITEMRDOWN * \brief This notification code informs parent window the right mouse button down *        on a listview item. */#define LVN_ITEMRDOWN          4/** * \def LVN_ITEMRUP * \brief This notification code informs parent window the right mouse button up *        on a listview item. */#define LVN_ITEMRUP            5/** * \def LVN_HEADRDOWN * \brief This notification code informs parent window the right mouse button down *        on the listview header. */#define LVN_HEADRDOWN          6/** * \def LVN_HEADRUP * \brief This notification code informs parent window the right mouse button up *        on the listview header. */#define LVN_HEADRUP            7/** * \def LVN_KEYDOWN * \brief This notification code informs parent window that a key has been pressed. */#define LVN_KEYDOWN            8/** * * \def LVN_ITEMDBCLK * \brief This notification code informs parent window the current selected item  *        has be double clicked. */#define LVN_ITEMDBCLK          9/** * \def LVN_ITEMCLK * \brief This notification code informs parent window the current selected item  *        has been clicked. */#define LVN_ITEMCLK            10/** * \def LVN_COLCHANGE * \brief This notification code informs parent window the current selected column  *        has changed. */#define LVN_COLCHANGE          11/** * \def LVN_FOLDED * \brief This notification code informs that user folds an item by mouse *        clicking. */#define LVN_FOLDED             12/** * \def LVN_UNFOLDED * \brief This notification code informs that user unfolds an item by mouse *        clicking. */#define LVN_UNFOLDED           13    /** @} end of mgext_ctrl_listview_ncs */    /** @} end of mgext_ctrl_listview */    /** @} end of mgext_controls */    /** @} end of mgext_fns */#ifdef  __cplusplus}#endif#endif /* EXT_LISTVIEW_H */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
激情综合网激情| 88在线观看91蜜桃国自产| 狠狠色丁香久久婷婷综| 婷婷国产v国产偷v亚洲高清| 玉足女爽爽91| 亚洲综合在线五月| 亚洲国产一区二区视频| 亚洲自拍偷拍欧美| 亚洲国产精品一区二区久久| 亚洲二区在线视频| 亚洲成a人片在线不卡一二三区| 亚洲激情校园春色| 亚洲午夜电影在线| 午夜激情一区二区三区| 日韩成人免费电影| 韩国女主播一区二区三区| 久久99九九99精品| 国产成人日日夜夜| 99久久婷婷国产综合精品| 成+人+亚洲+综合天堂| 成人黄色小视频| 91麻豆国产香蕉久久精品| 色94色欧美sute亚洲线路一久 | 日韩av在线播放中文字幕| 无码av中文一区二区三区桃花岛| 日韩国产高清影视| 国产麻豆成人传媒免费观看| 99久久免费国产| 欧美视频精品在线| 精品99一区二区三区| 国产亚洲一区二区三区| 亚洲色图丝袜美腿| 亚洲成av人影院在线观看网| 美女任你摸久久| 成人黄色综合网站| 欧美理论在线播放| 久久精品这里都是精品| 亚洲免费观看高清| 免费久久精品视频| av在线不卡免费看| 欧美精品在线观看播放| 久久日一线二线三线suv| 中文字幕日韩av资源站| 日本在线不卡一区| 成人美女视频在线观看18| 91福利视频在线| 欧美精品一区视频| 亚洲精品成a人| 国产一区二区在线观看免费 | 国产欧美日韩另类视频免费观看| 亚洲欧美日韩人成在线播放| 视频一区二区三区入口| 国产老女人精品毛片久久| 色综合久久久久综合体桃花网| 精品视频免费看| 日韩精品一区二区三区视频播放 | 精品亚洲成av人在线观看| 国产91精品在线观看| 在线精品视频一区二区| 精品国产欧美一区二区| 中文字幕一区二| 久久精品二区亚洲w码| av电影天堂一区二区在线观看| 91传媒视频在线播放| 久久综合久久鬼色| 欧美国产成人在线| 九一九一国产精品| 色婷婷久久久亚洲一区二区三区| 2020国产精品自拍| 亚洲一区二区精品视频| 成人三级伦理片| 欧美福利视频一区| 国产精品久久久久天堂| 秋霞影院一区二区| 国产乱人伦偷精品视频不卡| 欧美性大战久久久久久久蜜臀| 久久综合五月天婷婷伊人| 亚洲男人的天堂在线观看| 久久国产精品99精品国产| 成人一区二区三区| 久久久久久久久一| 午夜精品福利在线| 91色在线porny| 2020国产精品久久精品美国| 日韩电影一区二区三区四区| 成人成人成人在线视频| 国产日韩av一区| 丝袜亚洲另类欧美综合| 欧美视频在线一区| 国产精品传媒入口麻豆| 国产精品亚洲一区二区三区妖精| 国产一区二区在线电影| 欧美电影免费观看完整版| 亚洲午夜视频在线观看| 在线视频你懂得一区| 中文字幕 久热精品 视频在线| 国产精品一区在线观看乱码| 欧美一区二区三区色| 亚洲一区二区在线观看视频| 成人一二三区视频| 日韩美女视频一区二区在线观看| 亚洲一二三四在线观看| heyzo一本久久综合| 欧美精品一区二区高清在线观看| 一区二区在线看| 91啦中文在线观看| 国产三级欧美三级日产三级99 | 免播放器亚洲一区| 欧美日免费三级在线| 亚洲免费电影在线| 色哟哟一区二区| 亚洲精品欧美激情| 91久久国产最好的精华液| 国产精品成人免费在线| 99久久精品国产一区二区三区 | 国产精品国产三级国产普通话99 | 日韩免费一区二区| 久久精品国产亚洲5555| 欧美一区二区三区免费观看视频| 视频在线观看91| 6080日韩午夜伦伦午夜伦| 婷婷开心激情综合| 欧美四级电影在线观看| 日本中文字幕一区| 日韩午夜在线观看视频| 激情综合五月天| 精品成人在线观看| 成人在线综合网| 国产精品伦一区| 在线亚洲精品福利网址导航| 一区二区三区高清不卡| 欧美亚洲国产怡红院影院| 樱桃国产成人精品视频| 欧美二区三区的天堂| 奇米影视在线99精品| 国产午夜精品一区二区三区视频 | 一区二区在线观看av| 欧美男男青年gay1069videost | 中文字幕欧美国产| 色先锋资源久久综合| 亚洲成人一区二区| 精品女同一区二区| 国产精品一区二区果冻传媒| 自拍偷拍国产亚洲| 欧美亚洲国产怡红院影院| 日韩激情视频在线观看| 欧美va亚洲va在线观看蝴蝶网| 国产精品综合一区二区三区| 中文成人av在线| 欧美日韩国产一级| 久久福利视频一区二区| 亚洲欧洲三级电影| 欧美精品亚洲一区二区在线播放| 国内精品久久久久影院一蜜桃| 国产清纯白嫩初高生在线观看91| 欧美亚洲综合一区| 乱中年女人伦av一区二区| 中文字幕一区二区三区乱码在线| 欧美性色综合网| 丁香亚洲综合激情啪啪综合| 亚洲免费观看高清完整| 欧美精品一区二区三区一线天视频| 白白色亚洲国产精品| 三级精品在线观看| 中文字幕乱码亚洲精品一区| 欧美高清视频www夜色资源网| 国产乱码精品一区二区三区忘忧草| 亚洲综合丝袜美腿| 久久影视一区二区| 欧美三级蜜桃2在线观看| 久久国产夜色精品鲁鲁99| 一区二区久久久| 精品sm在线观看| 欧美伦理影视网| 93久久精品日日躁夜夜躁欧美| 日韩精品一二三| 亚洲美女少妇撒尿| 亚洲精品一区二区三区影院| 欧美性大战久久| 成人精品国产福利| 久久99国内精品| 一二三区精品福利视频| 欧美国产日本韩| 日韩免费看网站| 在线播放国产精品二区一二区四区| 高清不卡一区二区在线| 老司机精品视频导航| 亚洲一区在线视频| 亚洲欧美欧美一区二区三区| 久久―日本道色综合久久| 在线观看91精品国产麻豆| www.久久精品| 国产高清久久久久| 亚洲18影院在线观看| 亚洲精品成人少妇| 亚洲乱码一区二区三区在线观看| www国产精品av| 26uuu精品一区二区| 91精品国产综合久久久久久久| 欧美午夜精品一区二区三区|