MCPcopy Create free account
hub / github.com/MyGUI/mygui / notifyEditTextChange

Method notifyEditTextChange

MyGUIEngine/src/MyGUI_ComboBox.cpp:241–254  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239 }
240
241 void ComboBox::notifyEditTextChange(EditBox* _sender)
242 {
243 // сбрасываем выделенный элемент
244 if (ITEM_NONE != mItemIndex)
245 {
246 mItemIndex = ITEM_NONE;
247 mList->setIndexSelected(mItemIndex);
248 mList->beginToItemFirst();
249
250 _resetContainer(false);
251
252 eventComboChangePosition(this, mItemIndex);
253 }
254 }
255
256 void ComboBox::showList()
257 {

Callers

nothing calls this directly

Calls 2

setIndexSelectedMethod · 0.45
beginToItemFirstMethod · 0.45

Tested by

no test coverage detected