Lines Matching refs:parent
276 ConfigLineEdit::ConfigLineEdit(ConfigView* parent) in ConfigLineEdit() argument
277 : Parent(parent) in ConfigLineEdit()
301 parent()->updateList(item); in keyPressEvent()
308 parent()->list->setFocus(); in keyPressEvent()
449 (mode == symbolMode && rootEntry->parent != &rootmenu))) { in updateList()
494 parent()->updateList(item); in setValue()
528 parent()->updateList(item); in changeValue()
533 parent()->lineEdit->show(item); in changeValue()
564 setRootMenu(menu_get_parent_menu(rootEntry->parent)); in setParentMenu()
586 void ConfigList::updateMenuList(ConfigItem *parent, struct menu* menu) in updateMenuList() argument
595 while (parent->childCount() > 0) in updateMenuList()
597 delete parent->takeChild(0); in updateMenuList()
603 last = parent->firstChild(); in updateMenuList()
607 item = last ? last->nextSibling() : parent->firstChild(); in updateMenuList()
628 item = new ConfigItem(parent, last, child, visible); in updateMenuList()
641 last = parent->firstChild(); in updateMenuList()
651 void ConfigList::updateMenuList(ConfigList *parent, struct menu* menu) in updateMenuList() argument
660 while (parent->topLevelItemCount() > 0) in updateMenuList()
662 delete parent->takeTopLevelItem(0); in updateMenuList()
668 last = (ConfigItem*)parent->topLevelItem(0); in updateMenuList()
672 item = last ? last->nextSibling() : (ConfigItem*)parent->topLevelItem(0); in updateMenuList()
693 item = new ConfigItem(parent, last, child, visible); in updateMenuList()
706 last = (ConfigItem*)parent->topLevelItem(0); in updateMenuList()
889 parent(), SLOT(setShowName(bool))); in contextMenuEvent()
890 connect(parent(), SIGNAL(showNameChanged(bool)), in contextMenuEvent()
897 parent(), SLOT(setShowRange(bool))); in contextMenuEvent()
898 connect(parent(), SIGNAL(showRangeChanged(bool)), in contextMenuEvent()
905 parent(), SLOT(setShowData(bool))); in contextMenuEvent()
906 connect(parent(), SIGNAL(showDataChanged(bool)), in contextMenuEvent()
922 ConfigView::ConfigView(QWidget* parent, const char *name) in ConfigView() argument
923 : Parent(parent) in ConfigView()
1017 ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name) in ConfigInfoView() argument
1018 : Parent(parent), sym(0), _menu(0) in ConfigInfoView()
1252 ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow* parent, const char *name) in ConfigSearchWindow() argument
1253 : Parent(parent), result(NULL) in ConfigSearchWindow()
1282 parent, SLOT(setMenuLink(struct menu *))); in ConfigSearchWindow()
1292 width = configSettings->value("/window width", parent->width() / 2).toInt(); in ConfigSearchWindow()
1293 height = configSettings->value("/window height", parent->height() / 2).toInt(); in ConfigSearchWindow()
1568 if (configList->rootEntry->parent == &rootmenu) in changeMenu()
1576 struct menu *parent; in setMenuLink() local
1586 parent = menu_get_parent_menu(menu); in setMenuLink()
1587 if (!parent) in setMenuLink()
1589 list->setRootMenu(parent); in setMenuLink()
1598 parent = menu_get_parent_menu(menu->parent); in setMenuLink()
1599 if (!parent) in setMenuLink()
1601 item = menuList->findConfigItem(parent); in setMenuLink()
1606 list->setRootMenu(parent); in setMenuLink()
1651 item = (ConfigItem*)item->parent(); in goBack()