blob: 636a74b23bf93bba0eeb2a3e263d21891a60889b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
3 * Released under the terms of the GNU GPL v2.0.
4 */
5
6#include <qlistview.h>
7#if QT_VERSION >= 300
8#include <qsettings.h>
9#else
Roman Zippel7fc925f2006-06-08 22:12:46 -070010class QSettings {
11public:
12 void beginGroup(const QString& group) { }
13 void endGroup(void) { }
14 bool readBoolEntry(const QString& key, bool def = FALSE, bool* ok = 0) const
15 { if (ok) *ok = FALSE; return def; }
16 int readNumEntry(const QString& key, int def = 0, bool* ok = 0) const
17 { if (ok) *ok = FALSE; return def; }
18 QString readEntry(const QString& key, const QString& def = QString::null, bool* ok = 0) const
19 { if (ok) *ok = FALSE; return def; }
20 QStringList readListEntry(const QString& key, bool* ok = 0) const
21 { if (ok) *ok = FALSE; return QStringList(); }
22 template <class t>
23 bool writeEntry(const QString& key, t value)
24 { return TRUE; }
25};
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#endif
27
Roman Zippel7fc925f2006-06-08 22:12:46 -070028class ConfigView;
Linus Torvalds1da177e2005-04-16 15:20:36 -070029class ConfigList;
30class ConfigItem;
31class ConfigLineEdit;
32class ConfigMainWindow;
33
34
35class ConfigSettings : public QSettings {
36public:
Dave Jones19144d02006-01-08 01:05:02 -080037 QValueList<int> readSizes(const QString& key, bool *ok);
38 bool writeSizes(const QString& key, const QValueList<int>& value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039};
40
41enum colIdx {
42 promptColIdx, nameColIdx, noColIdx, modColIdx, yesColIdx, dataColIdx, colNr
43};
44enum listMode {
Roman Zippel43bf6122006-06-08 22:12:45 -070045 singleMode, menuMode, symbolMode, fullMode, listMode
Linus Torvalds1da177e2005-04-16 15:20:36 -070046};
Li Zefan39a48972010-05-10 16:33:41 +080047enum optionMode {
48 normalOpt = 0, allOpt, promptOpt
49};
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51class ConfigList : public QListView {
52 Q_OBJECT
53 typedef class QListView Parent;
54public:
Roman Zippel7fc925f2006-06-08 22:12:46 -070055 ConfigList(ConfigView* p, const char *name = 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 void reinit(void);
57 ConfigView* parent(void) const
58 {
59 return (ConfigView*)Parent::parent();
60 }
Roman Zippelb65a47e2006-06-08 22:12:47 -070061 ConfigItem* findConfigItem(struct menu *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062
63protected:
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 void keyPressEvent(QKeyEvent *e);
65 void contentsMousePressEvent(QMouseEvent *e);
66 void contentsMouseReleaseEvent(QMouseEvent *e);
67 void contentsMouseMoveEvent(QMouseEvent *e);
68 void contentsMouseDoubleClickEvent(QMouseEvent *e);
69 void focusInEvent(QFocusEvent *e);
Roman Zippel7fc925f2006-06-08 22:12:46 -070070 void contextMenuEvent(QContextMenuEvent *e);
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072public slots:
73 void setRootMenu(struct menu *menu);
74
75 void updateList(ConfigItem *item);
76 void setValue(ConfigItem* item, tristate val);
77 void changeValue(ConfigItem* item);
78 void updateSelection(void);
Roman Zippel7fc925f2006-06-08 22:12:46 -070079 void saveSettings(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080signals:
Roman Zippel43bf6122006-06-08 22:12:45 -070081 void menuChanged(struct menu *menu);
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 void menuSelected(struct menu *menu);
83 void parentSelected(void);
Roman Zippelb65a47e2006-06-08 22:12:47 -070084 void gotFocus(struct menu *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
86public:
87 void updateListAll(void)
88 {
89 updateAll = true;
90 updateList(NULL);
91 updateAll = false;
92 }
93 ConfigList* listView()
94 {
95 return this;
96 }
97 ConfigItem* firstChild() const
98 {
99 return (ConfigItem *)Parent::firstChild();
100 }
101 int mapIdx(colIdx idx)
102 {
103 return colMap[idx];
104 }
105 void addColumn(colIdx idx, const QString& label)
106 {
107 colMap[idx] = Parent::addColumn(label);
108 colRevMap[colMap[idx]] = idx;
109 }
110 void removeColumn(colIdx idx)
111 {
112 int col = colMap[idx];
113 if (col >= 0) {
114 Parent::removeColumn(col);
115 colRevMap[col] = colMap[idx] = -1;
116 }
117 }
118 void setAllOpen(bool open);
119 void setParentMenu(void);
120
Li Zefan39a48972010-05-10 16:33:41 +0800121 bool menuSkip(struct menu *);
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 template <class P>
Dave Jones19144d02006-01-08 01:05:02 -0800124 void updateMenuList(P*, struct menu*);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126 bool updateAll;
127
128 QPixmap symbolYesPix, symbolModPix, symbolNoPix;
129 QPixmap choiceYesPix, choiceNoPix;
130 QPixmap menuPix, menuInvPix, menuBackPix, voidPix;
131
Li Zefan39a48972010-05-10 16:33:41 +0800132 bool showName, showRange, showData;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 enum listMode mode;
Li Zefan39a48972010-05-10 16:33:41 +0800134 enum optionMode optMode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 struct menu *rootEntry;
136 QColorGroup disabledColorGroup;
137 QColorGroup inactivedColorGroup;
Roman Zippel7fc925f2006-06-08 22:12:46 -0700138 QPopupMenu* headerPopup;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140private:
141 int colMap[colNr];
142 int colRevMap[colNr];
143};
144
145class ConfigItem : public QListViewItem {
146 typedef class QListViewItem Parent;
147public:
148 ConfigItem(QListView *parent, ConfigItem *after, struct menu *m, bool v)
149 : Parent(parent, after), menu(m), visible(v), goParent(false)
150 {
151 init();
152 }
153 ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m, bool v)
154 : Parent(parent, after), menu(m), visible(v), goParent(false)
155 {
156 init();
157 }
158 ConfigItem(QListView *parent, ConfigItem *after, bool v)
159 : Parent(parent, after), menu(0), visible(v), goParent(true)
160 {
161 init();
162 }
163 ~ConfigItem(void);
164 void init(void);
165#if QT_VERSION >= 300
166 void okRename(int col);
167#endif
168 void updateMenu(void);
169 void testUpdateMenu(bool v);
170 ConfigList* listView() const
171 {
172 return (ConfigList*)Parent::listView();
173 }
174 ConfigItem* firstChild() const
175 {
176 return (ConfigItem *)Parent::firstChild();
177 }
178 ConfigItem* nextSibling() const
179 {
180 return (ConfigItem *)Parent::nextSibling();
181 }
182 void setText(colIdx idx, const QString& text)
183 {
184 Parent::setText(listView()->mapIdx(idx), text);
185 }
186 QString text(colIdx idx) const
187 {
188 return Parent::text(listView()->mapIdx(idx));
189 }
190 void setPixmap(colIdx idx, const QPixmap& pm)
191 {
192 Parent::setPixmap(listView()->mapIdx(idx), pm);
193 }
194 const QPixmap* pixmap(colIdx idx) const
195 {
196 return Parent::pixmap(listView()->mapIdx(idx));
197 }
198 void paintCell(QPainter* p, const QColorGroup& cg, int column, int width, int align);
199
200 ConfigItem* nextItem;
201 struct menu *menu;
202 bool visible;
203 bool goParent;
204};
205
206class ConfigLineEdit : public QLineEdit {
207 Q_OBJECT
208 typedef class QLineEdit Parent;
209public:
Roman Zippel43bf6122006-06-08 22:12:45 -0700210 ConfigLineEdit(ConfigView* parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 ConfigView* parent(void) const
212 {
213 return (ConfigView*)Parent::parent();
214 }
215 void show(ConfigItem *i);
216 void keyPressEvent(QKeyEvent *e);
217
218public:
219 ConfigItem *item;
220};
221
Roman Zippel7fc925f2006-06-08 22:12:46 -0700222class ConfigView : public QVBox {
223 Q_OBJECT
224 typedef class QVBox Parent;
225public:
226 ConfigView(QWidget* parent, const char *name = 0);
227 ~ConfigView(void);
228 static void updateList(ConfigItem* item);
229 static void updateListAll(void);
230
Roman Zippel7fc925f2006-06-08 22:12:46 -0700231 bool showName(void) const { return list->showName; }
232 bool showRange(void) const { return list->showRange; }
233 bool showData(void) const { return list->showData; }
234public slots:
Roman Zippel7fc925f2006-06-08 22:12:46 -0700235 void setShowName(bool);
236 void setShowRange(bool);
237 void setShowData(bool);
Li Zefan39a48972010-05-10 16:33:41 +0800238 void setOptionMode(QAction *);
Roman Zippel7fc925f2006-06-08 22:12:46 -0700239signals:
Roman Zippel7fc925f2006-06-08 22:12:46 -0700240 void showNameChanged(bool);
241 void showRangeChanged(bool);
242 void showDataChanged(bool);
243public:
244 ConfigList* list;
245 ConfigLineEdit* lineEdit;
246
247 static ConfigView* viewList;
248 ConfigView* nextView;
Li Zefan39a48972010-05-10 16:33:41 +0800249
250 static QAction *showNormalAction;
251 static QAction *showAllAction;
252 static QAction *showPromptAction;
Roman Zippel7fc925f2006-06-08 22:12:46 -0700253};
254
Roman Zippel43bf6122006-06-08 22:12:45 -0700255class ConfigInfoView : public QTextBrowser {
256 Q_OBJECT
257 typedef class QTextBrowser Parent;
258public:
259 ConfigInfoView(QWidget* parent, const char *name = 0);
260 bool showDebug(void) const { return _showDebug; }
261
262public slots:
263 void setInfo(struct menu *menu);
Roman Zippel7fc925f2006-06-08 22:12:46 -0700264 void saveSettings(void);
Roman Zippel43bf6122006-06-08 22:12:45 -0700265 void setShowDebug(bool);
266
267signals:
268 void showDebugChanged(bool);
Roman Zippelb65a47e2006-06-08 22:12:47 -0700269 void menuSelected(struct menu *);
Roman Zippel43bf6122006-06-08 22:12:45 -0700270
271protected:
Roman Zippelab45d192006-06-08 22:12:47 -0700272 void symbolInfo(void);
Roman Zippel43bf6122006-06-08 22:12:45 -0700273 void menuInfo(void);
274 QString debug_info(struct symbol *sym);
275 static QString print_filter(const QString &str);
Roman Zippelab45d192006-06-08 22:12:47 -0700276 static void expr_print_help(void *data, struct symbol *sym, const char *str);
Roman Zippel7fc925f2006-06-08 22:12:46 -0700277 QPopupMenu* createPopupMenu(const QPoint& pos);
278 void contentsContextMenuEvent(QContextMenuEvent *e);
Roman Zippel43bf6122006-06-08 22:12:45 -0700279
Roman Zippelab45d192006-06-08 22:12:47 -0700280 struct symbol *sym;
Roman Zippel43bf6122006-06-08 22:12:45 -0700281 struct menu *menu;
282 bool _showDebug;
283};
284
285class ConfigSearchWindow : public QDialog {
286 Q_OBJECT
287 typedef class QDialog Parent;
288public:
Marco Costalba63431e72006-10-05 19:12:59 +0200289 ConfigSearchWindow(ConfigMainWindow* parent, const char *name = 0);
Roman Zippel7fc925f2006-06-08 22:12:46 -0700290
Roman Zippel43bf6122006-06-08 22:12:45 -0700291public slots:
Roman Zippel7fc925f2006-06-08 22:12:46 -0700292 void saveSettings(void);
Roman Zippel43bf6122006-06-08 22:12:45 -0700293 void search(void);
Roman Zippel7fc925f2006-06-08 22:12:46 -0700294
Roman Zippel43bf6122006-06-08 22:12:45 -0700295protected:
296 QLineEdit* editField;
297 QPushButton* searchButton;
Roman Zippel7fc925f2006-06-08 22:12:46 -0700298 QSplitter* split;
Roman Zippel43bf6122006-06-08 22:12:45 -0700299 ConfigView* list;
300 ConfigInfoView* info;
301
302 struct symbol **result;
303};
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305class ConfigMainWindow : public QMainWindow {
306 Q_OBJECT
Karsten Wiese3b354c52006-12-13 00:34:08 -0800307
308 static QAction *saveAction;
309 static void conf_changed(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310public:
311 ConfigMainWindow(void);
312public slots:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 void changeMenu(struct menu *);
Roman Zippelb65a47e2006-06-08 22:12:47 -0700314 void setMenuLink(struct menu *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 void listFocusChanged(void);
316 void goBack(void);
317 void loadConfig(void);
318 void saveConfig(void);
319 void saveConfigAs(void);
Roman Zippel43bf6122006-06-08 22:12:45 -0700320 void searchConfig(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 void showSingleView(void);
322 void showSplitView(void);
323 void showFullView(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 void showIntro(void);
325 void showAbout(void);
326 void saveSettings(void);
327
328protected:
329 void closeEvent(QCloseEvent *e);
330
Roman Zippel43bf6122006-06-08 22:12:45 -0700331 ConfigSearchWindow *searchWindow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 ConfigView *menuView;
333 ConfigList *menuList;
334 ConfigView *configView;
335 ConfigList *configList;
Roman Zippel43bf6122006-06-08 22:12:45 -0700336 ConfigInfoView *helpText;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 QToolBar *toolBar;
338 QAction *backAction;
339 QSplitter* split1;
340 QSplitter* split2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341};