Lines Matching refs:ConfigItem
21 class ConfigItem; variable
48 ConfigItem* findConfigItem(struct menu *);
69 void setValue(ConfigItem* item, tristate val);
70 void changeValue(ConfigItem* item);
96 void updateMenuList(ConfigItem *parent, struct menu*);
116 class ConfigItem : public QTreeWidgetItem {
119 ConfigItem(ConfigList *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem() function
124 ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m, bool v) in ConfigItem() function
129 ConfigItem(ConfigList *parent, ConfigItem *after, bool v) in ConfigItem() function
134 ~ConfigItem(void);
142 ConfigItem* firstChild() const in firstChild()
144 return (ConfigItem *)Parent::child(0); in firstChild()
146 ConfigItem* nextSibling() in nextSibling()
148 ConfigItem *ret = NULL; in nextSibling()
149 ConfigItem *_parent = (ConfigItem *)parent(); in nextSibling()
152 ret = (ConfigItem *)_parent->child(_parent->indexOfChild(this)+1); in nextSibling()
155 ret = (ConfigItem *)_treeWidget->topLevelItem(_treeWidget->indexOfTopLevelItem(this)+1); in nextSibling()
162 ConfigItem* nextItem;