forked from pyrite-dev/milsko
treeview works
git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@766 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
parent
9dee24f7bc
commit
38b5876fba
4 changed files with 79 additions and 13 deletions
|
|
@ -61,6 +61,26 @@ MwInline const char* MwTreeViewGet(MwWidget handle, void* item) {
|
|||
return out;
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Sets the label of ithe item
|
||||
* @param handle Widget
|
||||
* @param item Item
|
||||
* @param label Label
|
||||
*/
|
||||
MwInline void MwTreeViewSetLabel(MwWidget handle, void* item, const char* label) {
|
||||
MwVaWidgetExecute(handle, "mwTreeViewSetLabel", NULL, item, label);
|
||||
}
|
||||
|
||||
/*!
|
||||
* @brief Sets the pixmap of ithe item
|
||||
* @param handle Widget
|
||||
* @param item Item
|
||||
* @param pixmap Pixmap
|
||||
*/
|
||||
MwInline void MwTreeViewSetPixmap(MwWidget handle, void* item, MwLLPixmap pixmap) {
|
||||
MwVaWidgetExecute(handle, "mwTreeViewSetPixmap", NULL, item, pixmap);
|
||||
}
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue