blob: 54b3b925139ace63e7f9c4000c1d75555914f8a5 [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
Boris Barbulovski68ccb7e2015-09-22 11:36:15 -07006#include <QTextBrowser>
7#include <QTreeWidget>
Boris Barbulovskib1f8a452015-09-22 11:36:02 -07008#include <QMainWindow>
Boris Barbulovski68ccb7e2015-09-22 11:36:15 -07009#include <QHeaderView>
Alexander Stein133c5f72010-08-31 17:34:37 +020010#include <qsettings.h>
Boris Barbulovski68ccb7e2015-09-22 11:36:15 -070011#include <QPushButton>
12#include <QSettings>
13#include <QLineEdit>
14#include <QSplitter>
15#include <QCheckBox>
16#include <QDialog>
17#include "expr.h"
Alexander Stein133c5f72010-08-31 17:34:37 +020018
Roman Zippel7fc925f2006-06-08 22:12:46 -070019class ConfigView;
Boris Barbulovski1019f1a2015-09-22 11:36:17 -070020class ConfigList;
21class ConfigItem;
Linus Torvalds1da177e2005-04-16 15:20:36 -070022class ConfigLineEdit;
23class ConfigMainWindow;
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025class ConfigSettings : public QSettings {
26public:
Ben Hutchings00d4f8f2013-10-06 19:21:31 +010027 ConfigSettings();
Boris Barbulovski041fbdc2015-09-22 11:36:05 -070028 QList<int> readSizes(const QString& key, bool *ok);
29 bool writeSizes(const QString& key, const QList<int>& value);
Linus Torvalds1da177e2005-04-16 15:20:36 -070030};
31
32enum colIdx {
33 promptColIdx, nameColIdx, noColIdx, modColIdx, yesColIdx, dataColIdx, colNr
34};
35enum listMode {
Roman Zippel43bf6122006-06-08 22:12:45 -070036 singleMode, menuMode, symbolMode, fullMode, listMode
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
Li Zefan39a48972010-05-10 16:33:41 +080038enum optionMode {
39 normalOpt = 0, allOpt, promptOpt
40};
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Boris Barbulovski1019f1a2015-09-22 11:36:17 -070042class ConfigList : public QTreeWidget {
43 Q_OBJECT
44 typedef class QTreeWidget Parent;
45public:
46 ConfigList(ConfigView* p, const char *name = 0);
47};
48
49class ConfigItem : public QTreeWidgetItem {
50 typedef class QTreeWidgetItem Parent;
51public:
52 ConfigItem(QTreeWidgetItem *parent, ConfigItem *after, struct menu *m, bool v)
53 : Parent(parent, after), menu(m), visible(v), goParent(false)
54 {
55 init();
56 }
57 ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m, bool v)
58 : Parent(parent, after), menu(m), visible(v), goParent(false)
59 {
60 init();
61 }
62 ConfigItem(QTreeWidgetItem *parent, ConfigItem *after, bool v)
63 : Parent(parent, after), menu(0), visible(v), goParent(true)
64 {
65 init();
66 }
67 ~ConfigItem(void);
68 void init(void);
69
70 ConfigItem* nextItem;
71 struct menu *menu;
72 bool visible;
73 bool goParent;
74};
75
Linus Torvalds1da177e2005-04-16 15:20:36 -070076class ConfigLineEdit : public QLineEdit {
77 Q_OBJECT
78 typedef class QLineEdit Parent;
79public:
Roman Zippel43bf6122006-06-08 22:12:45 -070080 ConfigLineEdit(ConfigView* parent);
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 ConfigView* parent(void) const
82 {
83 return (ConfigView*)Parent::parent();
84 }
Boris Barbulovski1019f1a2015-09-22 11:36:17 -070085 void show(ConfigItem *i);
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 void keyPressEvent(QKeyEvent *e);
87
88public:
Boris Barbulovski1019f1a2015-09-22 11:36:17 -070089 ConfigItem *item;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090};
91
Boris Barbulovski34d63202015-09-22 11:36:09 -070092class ConfigView : public QWidget {
Roman Zippel7fc925f2006-06-08 22:12:46 -070093 Q_OBJECT
Boris Barbulovski34d63202015-09-22 11:36:09 -070094 typedef class QWidget Parent;
Roman Zippel7fc925f2006-06-08 22:12:46 -070095public:
96 ConfigView(QWidget* parent, const char *name = 0);
97 ~ConfigView(void);
Boris Barbulovski1019f1a2015-09-22 11:36:17 -070098 static void updateList(ConfigItem* item);
Roman Zippel7fc925f2006-06-08 22:12:46 -070099 static void updateListAll(void);
100
Boris Barbulovski76538662015-09-22 11:36:14 -0700101 bool showName(void) const { return false; } // TODO: Implement me.
102 bool showRange(void) const { return false; } // TODO: Implement me.
103 bool showData(void) const { return false; } // TODO: Implement me.
Roman Zippel7fc925f2006-06-08 22:12:46 -0700104public slots:
Roman Zippel7fc925f2006-06-08 22:12:46 -0700105 void setShowName(bool);
106 void setShowRange(bool);
107 void setShowData(bool);
Li Zefan39a48972010-05-10 16:33:41 +0800108 void setOptionMode(QAction *);
Roman Zippel7fc925f2006-06-08 22:12:46 -0700109signals:
Roman Zippel7fc925f2006-06-08 22:12:46 -0700110 void showNameChanged(bool);
111 void showRangeChanged(bool);
112 void showDataChanged(bool);
113public:
Boris Barbulovski1019f1a2015-09-22 11:36:17 -0700114 ConfigList* list;
Roman Zippel7fc925f2006-06-08 22:12:46 -0700115 ConfigLineEdit* lineEdit;
116
117 static ConfigView* viewList;
118 ConfigView* nextView;
Li Zefan39a48972010-05-10 16:33:41 +0800119
120 static QAction *showNormalAction;
121 static QAction *showAllAction;
122 static QAction *showPromptAction;
Roman Zippel7fc925f2006-06-08 22:12:46 -0700123};
124
Boris Barbulovski924bbb52015-09-22 11:36:06 -0700125class ConfigInfoView : public QTextBrowser {
Roman Zippel43bf6122006-06-08 22:12:45 -0700126 Q_OBJECT
Boris Barbulovski924bbb52015-09-22 11:36:06 -0700127 typedef class QTextBrowser Parent;
Roman Zippel43bf6122006-06-08 22:12:45 -0700128public:
129 ConfigInfoView(QWidget* parent, const char *name = 0);
130 bool showDebug(void) const { return _showDebug; }
131
132public slots:
133 void setInfo(struct menu *menu);
Roman Zippel7fc925f2006-06-08 22:12:46 -0700134 void saveSettings(void);
Roman Zippel43bf6122006-06-08 22:12:45 -0700135 void setShowDebug(bool);
136
137signals:
138 void showDebugChanged(bool);
Roman Zippelb65a47e2006-06-08 22:12:47 -0700139 void menuSelected(struct menu *);
Roman Zippel43bf6122006-06-08 22:12:45 -0700140
141protected:
Roman Zippelab45d192006-06-08 22:12:47 -0700142 void symbolInfo(void);
Roman Zippel43bf6122006-06-08 22:12:45 -0700143 void menuInfo(void);
144 QString debug_info(struct symbol *sym);
145 static QString print_filter(const QString &str);
Roman Zippelab45d192006-06-08 22:12:47 -0700146 static void expr_print_help(void *data, struct symbol *sym, const char *str);
Boris Barbulovski924bbb52015-09-22 11:36:06 -0700147 QMenu *createStandardContextMenu(const QPoint & pos);
148 void contextMenuEvent(QContextMenuEvent *e);
Roman Zippel43bf6122006-06-08 22:12:45 -0700149
Roman Zippelab45d192006-06-08 22:12:47 -0700150 struct symbol *sym;
Alexander Stein133c5f72010-08-31 17:34:37 +0200151 struct menu *_menu;
Roman Zippel43bf6122006-06-08 22:12:45 -0700152 bool _showDebug;
153};
154
155class ConfigSearchWindow : public QDialog {
156 Q_OBJECT
157 typedef class QDialog Parent;
158public:
Marco Costalba63431e72006-10-05 19:12:59 +0200159 ConfigSearchWindow(ConfigMainWindow* parent, const char *name = 0);
Roman Zippel7fc925f2006-06-08 22:12:46 -0700160
Roman Zippel43bf6122006-06-08 22:12:45 -0700161public slots:
Roman Zippel7fc925f2006-06-08 22:12:46 -0700162 void saveSettings(void);
Roman Zippel43bf6122006-06-08 22:12:45 -0700163 void search(void);
Roman Zippel7fc925f2006-06-08 22:12:46 -0700164
Roman Zippel43bf6122006-06-08 22:12:45 -0700165protected:
166 QLineEdit* editField;
167 QPushButton* searchButton;
Roman Zippel7fc925f2006-06-08 22:12:46 -0700168 QSplitter* split;
Roman Zippel43bf6122006-06-08 22:12:45 -0700169 ConfigView* list;
170 ConfigInfoView* info;
171
172 struct symbol **result;
173};
174
Boris Barbulovskib1f8a452015-09-22 11:36:02 -0700175class ConfigMainWindow : public QMainWindow {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 Q_OBJECT
Karsten Wiese3b354c552006-12-13 00:34:08 -0800177
Boris Barbulovski85eaf282015-09-22 11:36:03 -0700178 static QAction *saveAction;
Karsten Wiese3b354c552006-12-13 00:34:08 -0800179 static void conf_changed(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180public:
181 ConfigMainWindow(void);
182public slots:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 void changeMenu(struct menu *);
Roman Zippelb65a47e2006-06-08 22:12:47 -0700184 void setMenuLink(struct menu *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 void listFocusChanged(void);
186 void goBack(void);
187 void loadConfig(void);
Michal Marekbac6aa82011-05-25 15:10:25 +0200188 bool saveConfig(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 void saveConfigAs(void);
Roman Zippel43bf6122006-06-08 22:12:45 -0700190 void searchConfig(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 void showSingleView(void);
192 void showSplitView(void);
193 void showFullView(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 void showIntro(void);
195 void showAbout(void);
196 void saveSettings(void);
197
198protected:
199 void closeEvent(QCloseEvent *e);
200
Roman Zippel43bf6122006-06-08 22:12:45 -0700201 ConfigSearchWindow *searchWindow;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 ConfigView *menuView;
Boris Barbulovski1019f1a2015-09-22 11:36:17 -0700203 ConfigList *menuList;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 ConfigView *configView;
Boris Barbulovski1019f1a2015-09-22 11:36:17 -0700205 ConfigList *configList;
Roman Zippel43bf6122006-06-08 22:12:45 -0700206 ConfigInfoView *helpText;
Boris Barbulovskib1f8a452015-09-22 11:36:02 -0700207 QToolBar *toolBar;
Boris Barbulovski85eaf282015-09-22 11:36:03 -0700208 QAction *backAction;
Boris Barbulovski780505e2015-09-22 11:36:13 -0700209 QAction *singleViewAction;
210 QAction *splitViewAction;
211 QAction *fullViewAction;
Boris Barbulovski76538662015-09-22 11:36:14 -0700212 QSplitter *split1;
213 QSplitter *split2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};