Lines Matching full:list

63  * Reads a list of integer values from the application settings.
86 * Writes a list of integer values to the application settings.
114 ConfigList* list; in updateMenu() local
121 list = listView(); in updateMenu()
123 setPixmap(promptColIdx, list->menuBackPix); in updateMenu()
134 if (list->mode == singleMode || list->mode == symbolMode) { in updateMenu()
138 if (sym && list->rootEntry == menu) in updateMenu()
140 setPixmap(promptColIdx, list->menuPix); in updateMenu()
164 if (!sym_is_changable(sym) && list->optMode == normalOpt) { in updateMenu()
175 setPixmap(promptColIdx, list->choiceYesPix); in updateMenu()
177 setPixmap(promptColIdx, list->symbolYesPix); in updateMenu()
182 setPixmap(promptColIdx, list->symbolModPix); in updateMenu()
188 setPixmap(promptColIdx, list->choiceNoPix); in updateMenu()
190 setPixmap(promptColIdx, list->symbolNoPix); in updateMenu()
234 /* the menu entry changed, so update all list items */ in testUpdateMenu()
249 ConfigList* list = listView(); in init() local
253 if (list->mode != fullMode) in init()
308 parent()->list->setFocus(); in keyPressEvent()
492 if (oldval == no && item->menu->list) in setValue()
510 if (item->menu->list) in changeValue()
521 if (item->menu->list) { in changeValue()
583 * parent: either the menu list widget or a menu entry widget
606 for (child = menu->list; child; child = child->next) { in updateMenuList()
625 if (!child->sym && !child->list && !child->prompt) in updateMenuList()
671 for (child = menu->list; child; child = child->next) { in updateMenuList()
690 if (!child->sym && !child->list && !child->prompt) in updateMenuList()
929 list = new ConfigList(this); in ConfigView()
930 verticalLayout->addWidget(list); in ConfigView()
954 list->optMode = normalOpt; in setOptionMode()
956 list->optMode = allOpt; in setOptionMode()
958 list->optMode = promptOpt; in setOptionMode()
960 list->updateListAll(); in setOptionMode()
965 if (list->showName != b) { in setShowName()
966 list->showName = b; in setShowName()
967 list->reinit(); in setShowName()
974 if (list->showRange != b) { in setShowRange()
975 list->showRange = b; in setShowRange()
976 list->reinit(); in setShowRange()
983 if (list->showData != b) { in setShowData()
984 list->showData = b; in setShowData()
985 list->reinit(); in setShowData()
1006 v->list->updateList(item); in updateList()
1014 v->list->updateListAll(); in updateListAll()
1276 list = new ConfigView(split, name); in ConfigSearchWindow()
1277 list->list->mode = listMode; in ConfigSearchWindow()
1279 connect(list->list, SIGNAL(menuChanged(struct menu *)), in ConfigSearchWindow()
1281 connect(list->list, SIGNAL(menuChanged(struct menu *)), in ConfigSearchWindow()
1327 list->list->clear(); in search()
1335 lastItem = new ConfigItem(list->list, lastItem, prop->menu, in search()
1372 menuList = menuView->list; in ConfigMainWindow()
1379 configList = configView->list; in ConfigMainWindow()
1577 ConfigList* list = NULL; in setMenuLink() local
1585 list = configList; in setMenuLink()
1589 list->setRootMenu(parent); in setMenuLink()
1595 list = menuList; in setMenuLink()
1597 list = configList; in setMenuLink()
1606 list->setRootMenu(parent); in setMenuLink()
1610 list = configList; in setMenuLink()
1616 if (list) { in setMenuLink()
1617 item = list->findConfigItem(menu); in setMenuLink()
1620 list->scrollToItem(item); in setMenuLink()
1621 list->setFocus(); in setMenuLink()
1815 for (child = menu->list; child; child = child->next) { in fixup_rootmenu()