#include <xlistbox.h>
Collaboration diagram for Ars::XListItem:

Public Member Functions | |
| XListItem (std::string sItemTextIn, void *pItemDataIn, RGBColor ItemColorIn, FontEngine *aFontEngine) | |
| Standard constructor. | |
Data Fields | |
| std::string | itemText |
| The displayed text for the item. | |
| void * | pItemData |
| A pointer to void that can be used as a data pointer. | |
| RGBColor | ItemColor |
| The color to display the item in. | |
| FontEngine * | fontEngine |
|
||||||||||||||||||||
|
Standard constructor.
Definition at line 10 of file xlistbox.h. References fontEngine, ItemColor, itemText, and pItemData.
00011 : itemText( sItemTextIn ) , pItemData( pItemDataIn ) , ItemColor( ItemColorIn ) , fontEngine( aFontEngine ) 00012 { 00013 } |
|
|
Definition at line 18 of file xlistbox.h. Referenced by XListItem(). |
|
|
The color to display the item in.
Definition at line 17 of file xlistbox.h. Referenced by XListItem(). |
|
|
The displayed text for the item.
Definition at line 15 of file xlistbox.h. Referenced by Ars::XDropDown::evValueChange(), and XListItem(). |
|
|
A pointer to void that can be used as a data pointer.
Definition at line 16 of file xlistbox.h. Referenced by XListItem(). |
1.3.3