![]() |
Eclipse SUMO - Simulation of Urban MObility
|
#include <MFXComboBoxAttrProperty.h>
Public Types | |
enum | { ID_LIST = FXPacker::ID_LAST , ID_TEXT , ID_SEARCH , ID_LAST } |
FOX declaration. More... | |
Public Member Functions | |
FXint | appendAttrItem (const GNEAttributeProperties *attrProperties, FXColor bgColor=FXRGB(255, 255, 255), void *ptr=nullptr) |
append item | |
void | clearItems () |
Remove all items from the list. | |
void | create () |
Create server-side resources. | |
void | destroy () |
Destroy server-side resources. | |
void | detach () |
Detach server-side resources. | |
void | disable () |
Disable combo box. | |
void | enable () |
Enable combo box. | |
FXint | findItem (const FXString &text) const |
find item | |
const GNEAttributeProperties * | getAttrProperties (FXint index) const |
get attribute properties | |
const GNEAttributeProperties * | getCurrentAttrProperty () const |
get current attribute property | |
FXint | getCurrentItem () const |
Get the current item's index. | |
FXint | getDefaultHeight () |
Return default height. | |
FXint | getDefaultWidth () |
Return default width. | |
std::string | getItemText (FXint index) const |
Get text for specified item. | |
FXint | getNumItems () const |
Return the number of items in the list. | |
FXString | getText () const |
Get the text. | |
FXColor | getTextColor () const |
Return text color. | |
const FXString & | getTipText () const |
Get the tool tip message for this combobox. | |
bool | hasAttrProperty (const GNEAttributeProperties *attrProperties) |
check if the given attribute exist in comboBox | |
FXbool | isItemCurrent (FXint index) const |
Return true if current item. | |
void | layout () |
Perform layout. | |
MFXComboBoxAttrProperty (FXComposite *p, FXint cols, const bool canSearch, const int visibleItems, FXObject *tgt, FXSelector sel=0, FXuint opts=COMBOBOX_NORMAL, FXint x=0, FXint y=0, FXint w=0, FXint h=0, FXint pl=DEFAULT_PAD, FXint pr=DEFAULT_PAD, FXint pt=DEFAULT_PAD, FXint pb=DEFAULT_PAD) | |
Construct a Combo Box widget with room to display cols columns of text. | |
void | removeItem (FXint index) |
Remove this item from the list. | |
void | setBackColor (FXColor clr) |
Set window background color. | |
long | setCurrentItem (const FXint index, FXbool notify=FALSE) |
Set the current item (index is zero-based) | |
long | setCurrentItem (const FXString &text, FXbool notify=FALSE) |
Set the current item. | |
long | setCurrentItem (const GNEAttributeProperties *attrProperties, FXbool notify=FALSE) |
Set the current item. | |
void | setNumVisible (FXint nvis) |
Set the number of visible items in the drop down list. | |
void | setText (const FXString &text, FXbool notify=FALSE) |
Set the text in the textField. | |
void | setTextColor (FXColor clr) |
Change text color. | |
void | setTipText (const FXString &txt) |
Set the tool tip message for this combobox. | |
~MFXComboBoxAttrProperty () | |
Destructor. | |
long | onFocusUp (FXObject *, FXSelector, void *) |
Commands. | |
long | onFocusDown (FXObject *, FXSelector, void *) |
long | onFocusSelf (FXObject *, FXSelector, void *) |
long | onMouseWheel (FXObject *, FXSelector, void *) |
long | onTextButton (FXObject *, FXSelector, void *) |
long | onTextChanged (FXObject *, FXSelector, void *) |
long | onTextCommand (FXObject *, FXSelector, void *) |
long | onListClicked (FXObject *, FXSelector, void *) |
long | onFwdToText (FXObject *, FXSelector, void *) |
long | onUpdFmText (FXObject *, FXSelector, void *) |
long | onCmdFilter (FXObject *, FXSelector, void *) |
Protected Attributes | |
FXMenuButton * | myButton = nullptr |
myButton | |
MFXListIcon * | myList = nullptr |
list with all items | |
FXLabel * | myNoItemsLabel = nullptr |
no items label | |
FXPopup * | myPane = nullptr |
popup in which place search label and list | |
MFXTextFieldIcon * | myTextFieldIcon = nullptr |
textField icon | |
MFXTextFieldSearch * | myTextFieldSearch = nullptr |
text field search | |
Private Member Functions | |
FXint | appendIconItem (const FXString &text, FXIcon *icon=nullptr, FXColor bgColor=FXRGB(255, 255, 255), void *ptr=nullptr)=delete |
delete original append icon item in the last position | |
FXint | insertIconItem (FXint index, const FXString &text, FXIcon *icon=nullptr, FXColor bgColor=FXRGB(255, 255, 255), void *ptr=nullptr)=delete |
delete original insert icon item in the given position | |
MFXComboBoxAttrProperty (const MFXComboBoxAttrProperty &)=delete | |
invalidate copy constructor | |
MFXComboBoxAttrProperty & | operator= (const MFXComboBoxAttrProperty &)=delete |
invalidate assignment operator | |
FXint | updateIconItem (FXint index, const FXString &text, FXIcon *icon=nullptr, FXColor bgColor=FXRGB(255, 255, 255), void *ptr=nullptr)=delete |
delete original replace the item at index | |
Private Attributes | |
std::vector< const GNEAttributeProperties * > | myAttrProperties |
vector with tag properties | |
Definition at line 35 of file MFXComboBoxAttrProperty.h.
|
inherited |
FOX declaration.
enum for ID
Enumerator | |
---|---|
ID_LIST | |
ID_TEXT | |
ID_SEARCH | |
ID_LAST |
Definition at line 37 of file MFXComboBoxIcon.h.
MFXComboBoxAttrProperty::MFXComboBoxAttrProperty | ( | FXComposite * | p, |
FXint | cols, | ||
const bool | canSearch, | ||
const int | visibleItems, | ||
FXObject * | tgt, | ||
FXSelector | sel = 0 , |
||
FXuint | opts = COMBOBOX_NORMAL , |
||
FXint | x = 0 , |
||
FXint | y = 0 , |
||
FXint | w = 0 , |
||
FXint | h = 0 , |
||
FXint | pl = DEFAULT_PAD , |
||
FXint | pr = DEFAULT_PAD , |
||
FXint | pt = DEFAULT_PAD , |
||
FXint | pb = DEFAULT_PAD |
||
) |
Construct a Combo Box widget with room to display cols columns of text.
Definition at line 30 of file MFXComboBoxAttrProperty.cpp.
MFXComboBoxAttrProperty::~MFXComboBoxAttrProperty | ( | ) |
Destructor.
Definition at line 36 of file MFXComboBoxAttrProperty.cpp.
|
privatedelete |
invalidate copy constructor
FXint MFXComboBoxAttrProperty::appendAttrItem | ( | const GNEAttributeProperties * | attrProperties, |
FXColor | bgColor = FXRGB(255, 255, 255) , |
||
void * | ptr = nullptr |
||
) |
append item
Definition at line 40 of file MFXComboBoxAttrProperty.cpp.
References MFXComboBoxIcon::appendIconItem(), GNEAttributeProperties::getAttrStr(), and myAttrProperties.
Referenced by GNEMatchAttribute::refreshMatchAttribute().
|
privatedelete |
delete original append icon item in the last position
|
virtual |
Remove all items from the list.
Reimplemented from MFXComboBoxIcon.
Definition at line 81 of file MFXComboBoxAttrProperty.cpp.
References MFXComboBoxIcon::clearItems(), and myAttrProperties.
Referenced by GNEMatchAttribute::refreshMatchAttribute().
|
inherited |
Create server-side resources.
Definition at line 121 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myPane.
|
inherited |
Destroy server-side resources.
Definition at line 135 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myPane.
|
inherited |
Detach server-side resources.
Definition at line 128 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myPane.
|
inherited |
Disable combo box.
Definition at line 152 of file MFXComboBoxIcon.cpp.
References MFXTextFieldIcon::disable(), MFXComboBoxIcon::myButton, and MFXComboBoxIcon::myTextFieldIcon.
Referenced by GUIDialog_ViewSettings::buildStreetsFrame(), GNEAttributesEditorRow::disable(), GNEMatchAttribute::disableMatchAttribute(), GNEAttributesEditorRow::enableElements(), GNEMatchAttribute::refreshMatchAttribute(), GNEAttributesEditorRow::showValueComboBox(), GNETLSEditorFrame::TLSDefinition::TLSDefinition(), and GNETagSelector::updateTagTypes().
|
inherited |
Enable combo box.
Definition at line 142 of file MFXComboBoxIcon.cpp.
References MFXTextFieldIcon::enable(), MFXComboBoxIcon::myButton, and MFXComboBoxIcon::myTextFieldIcon.
Referenced by GNEMatchAttribute::enableMatchAttribute(), GUIDialog_ViewSettings::rebuildColorMatrices(), GNEMatchAttribute::refreshMatchAttribute(), GNEAttributesEditorRow::showValueComboBox(), and GNETagSelector::updateTagTypes().
|
inherited |
find item
Definition at line 333 of file MFXComboBoxIcon.cpp.
References MFXListIcon::findItem(), and MFXComboBoxIcon::myList.
Referenced by GUIApplicationWindow::eventOccurred(), GUIApplicationWindow::handleEvent_SimulationLoaded(), GUIDialog_ViewSettings::onCmdColorChange(), GUIDialog_ViewSettings::onCmdSaveSetting(), GNEAttributesEditorRow::showValueComboBox(), and GNECalibratorFlowDialog::updateCalibratorFlowValues().
const GNEAttributeProperties * MFXComboBoxAttrProperty::getAttrProperties | ( | FXint | index | ) | const |
get attribute properties
Definition at line 47 of file MFXComboBoxAttrProperty.cpp.
References myAttrProperties.
const GNEAttributeProperties * MFXComboBoxAttrProperty::getCurrentAttrProperty | ( | ) | const |
get current attribute property
Definition at line 53 of file MFXComboBoxAttrProperty.cpp.
References MFXComboBoxIcon::getCurrentItem(), and myAttrProperties.
Referenced by GNEMatchAttribute::onCmdAttributeSelected(), and GNEMatchAttribute::refreshMatchAttribute().
|
inherited |
Get the current item's index.
Definition at line 262 of file MFXComboBoxIcon.cpp.
References MFXListIcon::getCurrentItemIndex(), and MFXComboBoxIcon::myList.
Referenced by GUITLLogicPhasesTrackerWindow::drawValues(), getCurrentAttrProperty(), GUIDialog_ViewSettings::getCurrentScheme(), MFXComboBoxTagProperty::getCurrentTagProperty(), GUITLLogicPhasesTrackerWindow::loadSettings(), GUIParameterTracker::onCmdChangeAggregation(), GUIDialog_ViewSettings::onCmdColorChange(), GUIDialog_ViewSettings::onCmdDeleteSetting(), GUIDialog_ViewSettings::onCmdSaveSetting(), MFXComboBoxIcon::onFocusDown(), MFXComboBoxIcon::onFocusUp(), MFXComboBoxIcon::onMouseWheel(), GUIDialog_ViewSettings::onUpdDeleteSetting(), GUIDialog_ViewSettings::onUpdExportSetting(), GUIDialog_ViewSettings::onUpdSaveSetting(), GUITLLogicPhasesTrackerWindow::saveSettings(), and GUIDialog_ViewSettings::setCurrentScheme().
|
inherited |
Return default height.
Definition at line 170 of file MFXComboBoxIcon.cpp.
References MFXTextFieldIcon::getDefaultHeight(), MFXComboBoxIcon::myButton, and MFXComboBoxIcon::myTextFieldIcon.
|
inherited |
Return default width.
Definition at line 162 of file MFXComboBoxIcon.cpp.
References MFXTextFieldIcon::getDefaultWidth(), MFXComboBoxIcon::myButton, MFXComboBoxIcon::myPane, and MFXComboBoxIcon::myTextFieldIcon.
|
inherited |
Get text for specified item.
Definition at line 339 of file MFXComboBoxIcon.cpp.
References MFXListIcon::getItem(), MFXListIconItem::getText(), and MFXComboBoxIcon::myList.
Referenced by GUIDialog_ViewSettings::getCurrentScheme(), GUIDialog_ViewSettings::onCmdDeleteSetting(), GUIDialog_ViewSettings::onCmdNameChange(), GUIDialog_ViewSettings::rebuildColorMatrices(), GNEDemandElementSelector::refreshDemandElementSelector(), GUIDialog_ViewSettings::setCurrentScheme(), and GNETagSelector::setCurrentTag().
|
inherited |
Return the number of items in the list.
Definition at line 201 of file MFXComboBoxIcon.cpp.
References MFXListIcon::getNumItems(), and MFXComboBoxIcon::myList.
Referenced by MFXComboBoxIcon::appendIconItem(), GUIViewTraffic::buildViewToolBars(), GNEViewNet::buildViewToolBars(), GUIDialog_ViewSettings::onCmdNameChange(), MFXComboBoxIcon::onFocusDown(), MFXComboBoxIcon::onFocusUp(), MFXComboBoxIcon::onMouseWheel(), GUIDialog_ViewSettings::rebuildColorMatrices(), GNEDemandElementSelector::refreshDemandElementSelector(), GNEMatchAttribute::refreshMatchAttribute(), MFXComboBoxIcon::setCurrentItem(), GUIDialog_ViewSettings::setCurrentScheme(), GNETagSelector::setCurrentTag(), GNEAttributesEditorRow::showValueComboBox(), MFXComboBoxIcon::updateIconItem(), and GNETagSelector::updateTagTypes().
|
inherited |
Get the text.
Definition at line 195 of file MFXComboBoxIcon.cpp.
References MFXTextFieldIcon::getText(), and MFXComboBoxIcon::myTextFieldIcon.
Referenced by GNEAttributesEditorRow::fillSumoBaseObject(), GNEAttributesEditorRow::getCurrentValue(), GUIDialog_ViewSettings::onCmdColorChange(), GNEDemandElementSelector::onCmdSelectDemandElement(), GNEPlanSelector::onCmdSelectPlan(), GNETagSelector::onCmdSelectTag(), GNEAttributesEditorRow::onCmdSetAttribute(), GNECalibratorFlowDialog::onCmdSetVariable(), MFXComboBoxIcon::onListClicked(), GUIDialog_ViewSettings::rebuildColorMatrices(), and GNEVehicleTypeDialog::VTypeAttributes::VClassRow::setVariable().
|
inherited |
Return text color.
Definition at line 359 of file MFXComboBoxIcon.cpp.
References MFXTextFieldIcon::getTextColor(), and MFXComboBoxIcon::myTextFieldIcon.
Referenced by GNEAttributesEditorRow::fillSumoBaseObject(), GNEPlanSelector::isPlanValid(), and GNEAttributesEditorRow::isValueValid().
|
inherited |
Get the tool tip message for this combobox.
Definition at line 371 of file MFXComboBoxIcon.cpp.
References MFXTextFieldIcon::getTipText(), and MFXComboBoxIcon::myTextFieldIcon.
bool MFXComboBoxAttrProperty::hasAttrProperty | ( | const GNEAttributeProperties * | attrProperties | ) |
check if the given attribute exist in comboBox
Definition at line 76 of file MFXComboBoxAttrProperty.cpp.
References myAttrProperties.
Referenced by GNEMatchAttribute::refreshMatchAttribute().
|
privatedelete |
delete original insert icon item in the given position
|
inherited |
Return true if current item.
Definition at line 219 of file MFXComboBoxIcon.cpp.
References MFXListIcon::isItemCurrent(), and MFXComboBoxIcon::myList.
Referenced by MFXComboBoxIcon::appendIconItem(), MFXComboBoxIcon::insertIconItem(), and MFXComboBoxIcon::updateIconItem().
|
inherited |
Perform layout.
Definition at line 179 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myButton, MFXComboBoxIcon::myNoItemsLabel, MFXComboBoxIcon::myPane, MFXComboBoxIcon::myTextFieldIcon, and MFXComboBoxIcon::myTextFieldSearch.
|
inherited |
Definition at line 383 of file MFXComboBoxIcon.cpp.
References MFXTextFieldIcon::getText(), MFXComboBoxIcon::myList, MFXComboBoxIcon::myNoItemsLabel, MFXComboBoxIcon::myPane, MFXComboBoxIcon::myTextFieldSearch, and MFXListIcon::setFilter().
Referenced by FXDEFMAP().
|
inherited |
Definition at line 481 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::getCurrentItem(), MFXComboBoxIcon::getNumItems(), and MFXComboBoxIcon::setCurrentItem().
Referenced by FXDEFMAP().
|
inherited |
Definition at line 457 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myTextFieldIcon.
Referenced by FXDEFMAP().
|
inherited |
Commands.
Definition at line 463 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::getCurrentItem(), MFXComboBoxIcon::getNumItems(), and MFXComboBoxIcon::setCurrentItem().
Referenced by FXDEFMAP().
|
inherited |
Definition at line 393 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myTextFieldIcon.
Referenced by FXDEFMAP().
|
inherited |
Definition at line 399 of file MFXComboBoxIcon.cpp.
References MFXListIconItem::getBackGroundColor(), MFXListIconItem::getIcon(), MFXComboBoxIcon::getText(), MFXListIconItem::getText(), MFXComboBoxIcon::myButton, MFXComboBoxIcon::myTextFieldIcon, MFXTextFieldIcon::selectAll(), MFXTextFieldIcon::setIcon(), and MFXTextFieldIcon::setText().
Referenced by FXDEFMAP().
|
inherited |
Definition at line 498 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::getCurrentItem(), MFXComboBoxIcon::getNumItems(), and MFXComboBoxIcon::setCurrentItem().
Referenced by FXDEFMAP().
|
inherited |
Definition at line 422 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myButton.
Referenced by FXDEFMAP().
|
inherited |
Definition at line 433 of file MFXComboBoxIcon.cpp.
Referenced by FXDEFMAP().
|
inherited |
Definition at line 439 of file MFXComboBoxIcon.cpp.
References CANCEL, GUIIconSubSys::getIcon(), MFXListIcon::getItem(), MFXListIcon::getNumItems(), MFXListIconItem::getText(), MFXTextFieldIcon::getText(), MFXComboBoxIcon::myList, MFXComboBoxIcon::myTextFieldIcon, MFXComboBoxIcon::setCurrentItem(), MFXTextFieldIcon::setIcon(), and MFXListIcon::tolowerString().
Referenced by FXDEFMAP().
|
inherited |
Definition at line 377 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myPane.
Referenced by FXDEFMAP().
|
privatedelete |
invalidate assignment operator
|
inherited |
Remove this item from the list.
Definition at line 310 of file MFXComboBoxIcon.cpp.
References MFXListIcon::getNumItems(), MFXListIcon::isItemCurrent(), MFXComboBoxIcon::myList, MFXListIcon::removeItem(), and MFXComboBoxIcon::setCurrentItem().
Referenced by GUIDialog_ViewSettings::onCmdDeleteSetting(), and GUIDialog_ViewSettings::onCmdNameChange().
|
inherited |
Set window background color.
Definition at line 345 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myList, and MFXComboBoxIcon::myTextFieldIcon.
Referenced by GNEAttributesEditorRow::onCmdSetAttribute(), and GNEAttributesEditorRow::showValueComboBox().
|
inherited |
Set the current item (index is zero-based)
Definition at line 225 of file MFXComboBoxIcon.cpp.
References MFXListIconItem::getBackGroundColor(), MFXListIconItem::getIcon(), MFXListIcon::getItem(), MFXComboBoxIcon::getNumItems(), MFXListIconItem::getText(), MFXListIcon::makeItemVisible(), MFXComboBoxIcon::myList, MFXComboBoxIcon::myTextFieldIcon, MFXListIcon::setCurrentItem(), MFXTextFieldIcon::setIcon(), and MFXTextFieldIcon::setText().
Referenced by GUISettingsHandler::addSettings(), GUIDialog_ViewSettings::buildContainersFrame(), GUIDialog_ViewSettings::buildHeader(), GUIDialog_ViewSettings::buildPersonsFrame(), GUIDialog_ViewSettings::buildVehiclesFrame(), GUIViewTraffic::buildViewToolBars(), GNEViewNet::buildViewToolBars(), GUIApplicationWindow::eventOccurred(), GUIPropertySchemeStorage< T >::fill(), GUIApplicationWindow::handleEvent_SimulationLoaded(), GUITLLogicPhasesTrackerWindow::loadSettings(), GUIDialog_ViewSettings::loadSettings(), GUIDialog_ViewSettings::onCmdColorChange(), GUIDialog_ViewSettings::onCmdNameChange(), GUIDialog_ViewSettings::onCmdSaveSetting(), MFXComboBoxIcon::onFocusDown(), MFXComboBoxIcon::onFocusUp(), MFXComboBoxIcon::onMouseWheel(), MFXComboBoxIcon::onTextCommand(), GNEDemandElementSelector::refreshDemandElementSelector(), GNEPlanSelector::refreshPlanSelector(), MFXComboBoxIcon::removeItem(), MFXComboBoxIcon::setCurrentItem(), setCurrentItem(), MFXComboBoxTagProperty::setCurrentItem(), GUIDialog_ViewSettings::setCurrentScheme(), GNETagSelector::setCurrentTag(), GNEDemandElementSelector::setDemandElement(), GNEDemandElementSelector::showDemandElementSelector(), GNEAttributesEditorRow::showValueComboBox(), and GNECalibratorFlowDialog::updateCalibratorFlowValues().
|
inherited |
Set the current item.
Definition at line 248 of file MFXComboBoxIcon.cpp.
References MFXListIcon::getItem(), MFXListIcon::getNumItems(), MFXListIconItem::getText(), MFXComboBoxIcon::myList, MFXComboBoxIcon::setCurrentItem(), and MFXListIcon::tolowerString().
long MFXComboBoxAttrProperty::setCurrentItem | ( | const GNEAttributeProperties * | attrProperties, |
FXbool | notify = FALSE |
||
) |
Set the current item.
Definition at line 64 of file MFXComboBoxAttrProperty.cpp.
References myAttrProperties, and MFXComboBoxIcon::setCurrentItem().
Referenced by GNEMatchAttribute::refreshMatchAttribute().
|
inherited |
Set the number of visible items in the drop down list.
Definition at line 207 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myList, and MFXListIcon::setNumVisible().
|
inherited |
Set the text in the textField.
Definition at line 213 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myTextFieldIcon, and MFXTextFieldIcon::setText().
|
inherited |
Change text color.
Definition at line 352 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myList, MFXComboBoxIcon::myTextFieldIcon, MFXListIcon::setTextColor(), and MFXTextFieldIcon::setTextColor().
Referenced by GNEMatchAttribute::disableMatchAttribute(), GNEDemandElementSelector::onCmdSelectDemandElement(), GNEPlanSelector::onCmdSelectPlan(), GNETagSelector::onCmdSelectTag(), GNEAttributesEditorRow::onCmdSetAttribute(), GNECalibratorFlowDialog::onCmdSetVariable(), GNETagSelector::setCurrentTag(), GNEVehicleTypeDialog::VTypeAttributes::VClassRow::setVariable(), and GNEAttributesEditorRow::showValueComboBox().
|
inherited |
Set the tool tip message for this combobox.
Definition at line 365 of file MFXComboBoxIcon.cpp.
References MFXComboBoxIcon::myTextFieldIcon, and MFXTextFieldIcon::setTipText().
|
privatedelete |
delete original replace the item at index
|
private |
vector with tag properties
Definition at line 68 of file MFXComboBoxAttrProperty.h.
Referenced by appendAttrItem(), clearItems(), getAttrProperties(), getCurrentAttrProperty(), hasAttrProperty(), and setCurrentItem().
|
protectedinherited |
myButton
Definition at line 162 of file MFXComboBoxIcon.h.
Referenced by MFXComboBoxIcon::disable(), MFXComboBoxIcon::enable(), MFXComboBoxIcon::getDefaultHeight(), MFXComboBoxIcon::getDefaultWidth(), MFXComboBoxIcon::layout(), MFXComboBoxIcon::onListClicked(), MFXComboBoxIcon::onTextButton(), and MFXComboBoxIcon::~MFXComboBoxIcon().
|
protectedinherited |
list with all items
Definition at line 165 of file MFXComboBoxIcon.h.
Referenced by MFXComboBoxIcon::appendIconItem(), MFXComboBoxIcon::clearItems(), MFXComboBoxIcon::findItem(), MFXComboBoxIcon::getCurrentItem(), MFXComboBoxIcon::getItemText(), MFXComboBoxIcon::getNumItems(), MFXComboBoxIcon::insertIconItem(), MFXComboBoxIcon::isItemCurrent(), MFXComboBoxIcon::onCmdFilter(), MFXComboBoxIcon::onTextCommand(), MFXComboBoxIcon::removeItem(), MFXComboBoxIcon::setBackColor(), MFXComboBoxIcon::setCurrentItem(), MFXComboBoxIcon::setCurrentItem(), MFXComboBoxIcon::setNumVisible(), MFXComboBoxIcon::setTextColor(), MFXComboBoxIcon::updateIconItem(), and MFXComboBoxIcon::~MFXComboBoxIcon().
|
protectedinherited |
no items label
Definition at line 174 of file MFXComboBoxIcon.h.
Referenced by MFXComboBoxIcon::layout(), MFXComboBoxIcon::onCmdFilter(), and MFXComboBoxIcon::~MFXComboBoxIcon().
|
protectedinherited |
popup in which place search label and list
Definition at line 171 of file MFXComboBoxIcon.h.
Referenced by MFXComboBoxIcon::create(), MFXComboBoxIcon::destroy(), MFXComboBoxIcon::detach(), MFXComboBoxIcon::getDefaultWidth(), MFXComboBoxIcon::layout(), MFXComboBoxIcon::onCmdFilter(), MFXComboBoxIcon::onUpdFmText(), and MFXComboBoxIcon::~MFXComboBoxIcon().
|
protectedinherited |
textField icon
Definition at line 159 of file MFXComboBoxIcon.h.
Referenced by MFXComboBoxIcon::appendIconItem(), MFXComboBoxIcon::clearItems(), MFXComboBoxIcon::disable(), MFXComboBoxIcon::enable(), MFXComboBoxIcon::getDefaultHeight(), MFXComboBoxIcon::getDefaultWidth(), MFXComboBoxIcon::getText(), MFXComboBoxIcon::getTextColor(), MFXComboBoxIcon::getTipText(), MFXComboBoxIcon::insertIconItem(), MFXComboBoxIcon::layout(), MFXComboBoxIcon::onFocusSelf(), MFXComboBoxIcon::onFwdToText(), MFXComboBoxIcon::onListClicked(), MFXComboBoxIcon::onTextCommand(), MFXComboBoxIcon::setBackColor(), MFXComboBoxIcon::setCurrentItem(), MFXComboBoxIcon::setText(), MFXComboBoxIcon::setTextColor(), MFXComboBoxIcon::setTipText(), MFXComboBoxIcon::updateIconItem(), and MFXComboBoxIcon::~MFXComboBoxIcon().
|
protectedinherited |
text field search
Definition at line 168 of file MFXComboBoxIcon.h.
Referenced by MFXComboBoxIcon::layout(), MFXComboBoxIcon::onCmdFilter(), and MFXComboBoxIcon::~MFXComboBoxIcon().