Lines Matching defs:parent

293 ConfigLineEdit::ConfigLineEdit(ConfigView* parent)
294 : Parent(parent)
318 parent()->updateList(item);
325 parent()->list->setFocus();
461 (mode == symbolMode && rootEntry->parent != &rootmenu))) {
504 parent()->updateList(item);
538 parent()->updateList(item);
546 parent()->lineEdit->show(item);
575 setRootMenu(menu_get_parent_menu(rootEntry->parent));
589 * removes/adds the entries from the parent widget as necessary
591 * parent: either the menu list widget or a menu entry widget
595 void ConfigList::updateMenuList(P* parent, struct menu* menu)
604 while ((item = parent->firstChild()))
609 last = parent->firstChild();
613 item = last ? last->nextSibling() : parent->firstChild();
634 item = new ConfigItem(parent, last, child, visible);
647 last = parent->firstChild();
831 parent(), SLOT(setShowName(bool)));
832 connect(parent(), SIGNAL(showNameChanged(bool)),
839 parent(), SLOT(setShowRange(bool)));
840 connect(parent(), SIGNAL(showRangeChanged(bool)),
847 parent(), SLOT(setShowData(bool)));
848 connect(parent(), SIGNAL(showDataChanged(bool)),
864 ConfigView::ConfigView(QWidget* parent, const char *name)
865 : Parent(parent, name)
950 ConfigInfoView::ConfigInfoView(QWidget* parent, const char *name)
951 : Parent(parent, name), sym(0), _menu(0)
1182 ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow* parent, const char *name)
1183 : Parent(parent, name), result(NULL)
1207 parent, SLOT(setMenuLink(struct menu *)));
1216 width = configSettings->readNumEntry("/window width", parent->width() / 2);
1217 height = configSettings->readNumEntry("/window height", parent->height() / 2);
1508 if (configList->rootEntry->parent == &rootmenu)
1516 struct menu *parent;
1526 parent = menu_get_parent_menu(menu);
1527 if (!parent)
1529 list->setRootMenu(parent);
1538 parent = menu_get_parent_menu(menu->parent);
1539 if (!parent)
1541 item = menuList->findConfigItem(parent);
1546 list->setRootMenu(parent);
1585 item = (ConfigItem*)item->parent();