Lines Matching refs:parent
267 ConfigLineEdit::ConfigLineEdit(ConfigView* parent) in ConfigLineEdit() argument
268 : Parent(parent) in ConfigLineEdit()
292 parent()->updateList(item); in keyPressEvent()
299 parent()->list->setFocus(); in keyPressEvent()
440 (mode == symbolMode && rootEntry->parent != &rootmenu))) { in updateList()
485 parent()->updateList(item); in setValue()
519 parent()->updateList(item); in changeValue()
524 parent()->lineEdit->show(item); in changeValue()
555 setRootMenu(menu_get_parent_menu(rootEntry->parent)); in setParentMenu()
577 void ConfigList::updateMenuList(ConfigItem *parent, struct menu* menu) in updateMenuList() argument
586 while (parent->childCount() > 0) in updateMenuList()
588 delete parent->takeChild(0); in updateMenuList()
594 last = parent->firstChild(); in updateMenuList()
598 item = last ? last->nextSibling() : parent->firstChild(); in updateMenuList()
619 item = new ConfigItem(parent, last, child, visible); in updateMenuList()
632 last = parent->firstChild(); in updateMenuList()
642 void ConfigList::updateMenuList(ConfigList *parent, struct menu* menu) in updateMenuList() argument
651 while (parent->topLevelItemCount() > 0) in updateMenuList()
653 delete parent->takeTopLevelItem(0); in updateMenuList()
659 last = (ConfigItem*)parent->topLevelItem(0); in updateMenuList()
663 item = last ? last->nextSibling() : (ConfigItem*)parent->topLevelItem(0); in updateMenuList()
684 item = new ConfigItem(parent, last, child, visible); in updateMenuList()
697 last = (ConfigItem*)parent->topLevelItem(0); in updateMenuList()
880 parent(), SLOT(setShowName(bool))); in contextMenuEvent()
881 connect(parent(), SIGNAL(showNameChanged(bool)), in contextMenuEvent()
888 parent(), SLOT(setShowRange(bool))); in contextMenuEvent()
889 connect(parent(), SIGNAL(showRangeChanged(bool)), in contextMenuEvent()
896 parent(), SLOT(setShowData(bool))); in contextMenuEvent()
897 connect(parent(), SIGNAL(showDataChanged(bool)), in contextMenuEvent()
913 ConfigView::ConfigView(QWidget* parent, const char *name) in ConfigView() argument
914 : Parent(parent) in ConfigView()
1008 ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name) in ConfigInfoView() argument
1009 : Parent(parent), sym(0), _menu(0) in ConfigInfoView()
1242 ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow* parent, const char *name) in ConfigSearchWindow() argument
1243 : Parent(parent), result(NULL) in ConfigSearchWindow()
1272 parent, SLOT(setMenuLink(struct menu *))); in ConfigSearchWindow()
1282 width = configSettings->value("/window width", parent->width() / 2).toInt(); in ConfigSearchWindow()
1283 height = configSettings->value("/window height", parent->height() / 2).toInt(); in ConfigSearchWindow()
1588 if (configList->rootEntry->parent == &rootmenu) in changeMenu()
1596 struct menu *parent; in setMenuLink() local
1606 parent = menu_get_parent_menu(menu); in setMenuLink()
1607 if (!parent) in setMenuLink()
1609 list->setRootMenu(parent); in setMenuLink()
1618 parent = menu_get_parent_menu(menu->parent); in setMenuLink()
1619 if (!parent) in setMenuLink()
1621 item = menuList->findConfigItem(parent); in setMenuLink()
1626 list->setRootMenu(parent); in setMenuLink()
1671 item = (ConfigItem*)item->parent(); in goBack()