Home
last modified time | relevance | path

Searched refs:mapListBox (Results 1 – 5 of 5) sorted by relevance

/dports/games/xonotic/Xonotic/source/qcsrc/menu/xonotic/
H A Ddialog_multiplayer_create.qc173 me.mapListBox = makeXonoticMapList();
189 makeCallback(e, me.mapListBox, me.mapListBox.refilterCallback);
202 e.onChangeEntity = me.mapListBox;
210 e.onClickEntity = me.mapListBox;
214 e.onClickEntity = me.mapListBox;
220 e.onClickEntity = me.mapListBox;
224 e.onClickEntity = me.mapListBox;
231 e.onClickEntity = me.mapListBox;
232 me.mapListBox.startButton = e;
241 me.mapListBox.refilter(me.mapListBox);
[all …]
H A Ddialog_multiplayer_create.qh12 ATTRIB(XonoticServerCreateTab, mapListBox, entity);
H A Dmaplist.qc391 // in this section, note that onChangeEntity has the ref to mapListBox
397 // move the focus to the mapListBox
404 // pass the event to the mapListBox (to scroll up and down)
/dports/graphics/kimagemapeditor/kimagemapeditor-21.12.3/
H A Dimagemapchoosedialog.cpp68 mapListBox = new QListWidget; in ImageMapChooseDialog()
69 lbl->setBuddy(mapListBox); in ImageMapChooseDialog()
71 gridLayout->addWidget(mapListBox, 1, 0); in ImageMapChooseDialog()
104 mapListBox->addItem(i18n("No maps found")); in ImageMapChooseDialog()
105 mapListBox->setEnabled(false); in ImageMapChooseDialog()
108 mapListBox->addItem(maps.at(i)->name); in ImageMapChooseDialog()
118 mapListBox->setCurrentItem(nullptr); in ImageMapChooseDialog()
H A Dimagemapchoosedialog.h39 QListWidget *mapListBox; variable