Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> |
| 3 | * Released under the terms of the GNU GPL v2.0. |
| 4 | */ |
| 5 | |
Boris Barbulovski | 68ccb7e | 2015-09-22 11:36:15 -0700 | [diff] [blame] | 6 | #include <QTextBrowser> |
| 7 | #include <QTreeWidget> |
Boris Barbulovski | b1f8a45 | 2015-09-22 11:36:02 -0700 | [diff] [blame] | 8 | #include <QMainWindow> |
Boris Barbulovski | 68ccb7e | 2015-09-22 11:36:15 -0700 | [diff] [blame] | 9 | #include <QHeaderView> |
Alexander Stein | 133c5f7 | 2010-08-31 17:34:37 +0200 | [diff] [blame] | 10 | #include <qsettings.h> |
Boris Barbulovski | 68ccb7e | 2015-09-22 11:36:15 -0700 | [diff] [blame] | 11 | #include <QPushButton> |
| 12 | #include <QSettings> |
| 13 | #include <QLineEdit> |
| 14 | #include <QSplitter> |
| 15 | #include <QCheckBox> |
| 16 | #include <QDialog> |
| 17 | #include "expr.h" |
Alexander Stein | 133c5f7 | 2010-08-31 17:34:37 +0200 | [diff] [blame] | 18 | |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 19 | class ConfigView; |
Boris Barbulovski | 1019f1a | 2015-09-22 11:36:17 -0700 | [diff] [blame^] | 20 | class ConfigList; |
| 21 | class ConfigItem; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | class ConfigLineEdit; |
| 23 | class ConfigMainWindow; |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | class ConfigSettings : public QSettings { |
| 26 | public: |
Ben Hutchings | 00d4f8f | 2013-10-06 19:21:31 +0100 | [diff] [blame] | 27 | ConfigSettings(); |
Boris Barbulovski | 041fbdc | 2015-09-22 11:36:05 -0700 | [diff] [blame] | 28 | QList<int> readSizes(const QString& key, bool *ok); |
| 29 | bool writeSizes(const QString& key, const QList<int>& value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | }; |
| 31 | |
| 32 | enum colIdx { |
| 33 | promptColIdx, nameColIdx, noColIdx, modColIdx, yesColIdx, dataColIdx, colNr |
| 34 | }; |
| 35 | enum listMode { |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 36 | singleMode, menuMode, symbolMode, fullMode, listMode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; |
Li Zefan | 39a4897 | 2010-05-10 16:33:41 +0800 | [diff] [blame] | 38 | enum optionMode { |
| 39 | normalOpt = 0, allOpt, promptOpt |
| 40 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Boris Barbulovski | 1019f1a | 2015-09-22 11:36:17 -0700 | [diff] [blame^] | 42 | class ConfigList : public QTreeWidget { |
| 43 | Q_OBJECT |
| 44 | typedef class QTreeWidget Parent; |
| 45 | public: |
| 46 | ConfigList(ConfigView* p, const char *name = 0); |
| 47 | }; |
| 48 | |
| 49 | class ConfigItem : public QTreeWidgetItem { |
| 50 | typedef class QTreeWidgetItem Parent; |
| 51 | public: |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | class ConfigLineEdit : public QLineEdit { |
| 77 | Q_OBJECT |
| 78 | typedef class QLineEdit Parent; |
| 79 | public: |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 80 | ConfigLineEdit(ConfigView* parent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | ConfigView* parent(void) const |
| 82 | { |
| 83 | return (ConfigView*)Parent::parent(); |
| 84 | } |
Boris Barbulovski | 1019f1a | 2015-09-22 11:36:17 -0700 | [diff] [blame^] | 85 | void show(ConfigItem *i); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | void keyPressEvent(QKeyEvent *e); |
| 87 | |
| 88 | public: |
Boris Barbulovski | 1019f1a | 2015-09-22 11:36:17 -0700 | [diff] [blame^] | 89 | ConfigItem *item; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | }; |
| 91 | |
Boris Barbulovski | 34d6320 | 2015-09-22 11:36:09 -0700 | [diff] [blame] | 92 | class ConfigView : public QWidget { |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 93 | Q_OBJECT |
Boris Barbulovski | 34d6320 | 2015-09-22 11:36:09 -0700 | [diff] [blame] | 94 | typedef class QWidget Parent; |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 95 | public: |
| 96 | ConfigView(QWidget* parent, const char *name = 0); |
| 97 | ~ConfigView(void); |
Boris Barbulovski | 1019f1a | 2015-09-22 11:36:17 -0700 | [diff] [blame^] | 98 | static void updateList(ConfigItem* item); |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 99 | static void updateListAll(void); |
| 100 | |
Boris Barbulovski | 7653866 | 2015-09-22 11:36:14 -0700 | [diff] [blame] | 101 | 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 Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 104 | public slots: |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 105 | void setShowName(bool); |
| 106 | void setShowRange(bool); |
| 107 | void setShowData(bool); |
Li Zefan | 39a4897 | 2010-05-10 16:33:41 +0800 | [diff] [blame] | 108 | void setOptionMode(QAction *); |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 109 | signals: |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 110 | void showNameChanged(bool); |
| 111 | void showRangeChanged(bool); |
| 112 | void showDataChanged(bool); |
| 113 | public: |
Boris Barbulovski | 1019f1a | 2015-09-22 11:36:17 -0700 | [diff] [blame^] | 114 | ConfigList* list; |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 115 | ConfigLineEdit* lineEdit; |
| 116 | |
| 117 | static ConfigView* viewList; |
| 118 | ConfigView* nextView; |
Li Zefan | 39a4897 | 2010-05-10 16:33:41 +0800 | [diff] [blame] | 119 | |
| 120 | static QAction *showNormalAction; |
| 121 | static QAction *showAllAction; |
| 122 | static QAction *showPromptAction; |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 123 | }; |
| 124 | |
Boris Barbulovski | 924bbb5 | 2015-09-22 11:36:06 -0700 | [diff] [blame] | 125 | class ConfigInfoView : public QTextBrowser { |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 126 | Q_OBJECT |
Boris Barbulovski | 924bbb5 | 2015-09-22 11:36:06 -0700 | [diff] [blame] | 127 | typedef class QTextBrowser Parent; |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 128 | public: |
| 129 | ConfigInfoView(QWidget* parent, const char *name = 0); |
| 130 | bool showDebug(void) const { return _showDebug; } |
| 131 | |
| 132 | public slots: |
| 133 | void setInfo(struct menu *menu); |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 134 | void saveSettings(void); |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 135 | void setShowDebug(bool); |
| 136 | |
| 137 | signals: |
| 138 | void showDebugChanged(bool); |
Roman Zippel | b65a47e | 2006-06-08 22:12:47 -0700 | [diff] [blame] | 139 | void menuSelected(struct menu *); |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 140 | |
| 141 | protected: |
Roman Zippel | ab45d19 | 2006-06-08 22:12:47 -0700 | [diff] [blame] | 142 | void symbolInfo(void); |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 143 | void menuInfo(void); |
| 144 | QString debug_info(struct symbol *sym); |
| 145 | static QString print_filter(const QString &str); |
Roman Zippel | ab45d19 | 2006-06-08 22:12:47 -0700 | [diff] [blame] | 146 | static void expr_print_help(void *data, struct symbol *sym, const char *str); |
Boris Barbulovski | 924bbb5 | 2015-09-22 11:36:06 -0700 | [diff] [blame] | 147 | QMenu *createStandardContextMenu(const QPoint & pos); |
| 148 | void contextMenuEvent(QContextMenuEvent *e); |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 149 | |
Roman Zippel | ab45d19 | 2006-06-08 22:12:47 -0700 | [diff] [blame] | 150 | struct symbol *sym; |
Alexander Stein | 133c5f7 | 2010-08-31 17:34:37 +0200 | [diff] [blame] | 151 | struct menu *_menu; |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 152 | bool _showDebug; |
| 153 | }; |
| 154 | |
| 155 | class ConfigSearchWindow : public QDialog { |
| 156 | Q_OBJECT |
| 157 | typedef class QDialog Parent; |
| 158 | public: |
Marco Costalba | 63431e7 | 2006-10-05 19:12:59 +0200 | [diff] [blame] | 159 | ConfigSearchWindow(ConfigMainWindow* parent, const char *name = 0); |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 160 | |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 161 | public slots: |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 162 | void saveSettings(void); |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 163 | void search(void); |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 164 | |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 165 | protected: |
| 166 | QLineEdit* editField; |
| 167 | QPushButton* searchButton; |
Roman Zippel | 7fc925f | 2006-06-08 22:12:46 -0700 | [diff] [blame] | 168 | QSplitter* split; |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 169 | ConfigView* list; |
| 170 | ConfigInfoView* info; |
| 171 | |
| 172 | struct symbol **result; |
| 173 | }; |
| 174 | |
Boris Barbulovski | b1f8a45 | 2015-09-22 11:36:02 -0700 | [diff] [blame] | 175 | class ConfigMainWindow : public QMainWindow { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | Q_OBJECT |
Karsten Wiese | 3b354c55 | 2006-12-13 00:34:08 -0800 | [diff] [blame] | 177 | |
Boris Barbulovski | 85eaf28 | 2015-09-22 11:36:03 -0700 | [diff] [blame] | 178 | static QAction *saveAction; |
Karsten Wiese | 3b354c55 | 2006-12-13 00:34:08 -0800 | [diff] [blame] | 179 | static void conf_changed(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | public: |
| 181 | ConfigMainWindow(void); |
| 182 | public slots: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | void changeMenu(struct menu *); |
Roman Zippel | b65a47e | 2006-06-08 22:12:47 -0700 | [diff] [blame] | 184 | void setMenuLink(struct menu *); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | void listFocusChanged(void); |
| 186 | void goBack(void); |
| 187 | void loadConfig(void); |
Michal Marek | bac6aa8 | 2011-05-25 15:10:25 +0200 | [diff] [blame] | 188 | bool saveConfig(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | void saveConfigAs(void); |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 190 | void searchConfig(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | void showSingleView(void); |
| 192 | void showSplitView(void); |
| 193 | void showFullView(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | void showIntro(void); |
| 195 | void showAbout(void); |
| 196 | void saveSettings(void); |
| 197 | |
| 198 | protected: |
| 199 | void closeEvent(QCloseEvent *e); |
| 200 | |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 201 | ConfigSearchWindow *searchWindow; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | ConfigView *menuView; |
Boris Barbulovski | 1019f1a | 2015-09-22 11:36:17 -0700 | [diff] [blame^] | 203 | ConfigList *menuList; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 204 | ConfigView *configView; |
Boris Barbulovski | 1019f1a | 2015-09-22 11:36:17 -0700 | [diff] [blame^] | 205 | ConfigList *configList; |
Roman Zippel | 43bf612 | 2006-06-08 22:12:45 -0700 | [diff] [blame] | 206 | ConfigInfoView *helpText; |
Boris Barbulovski | b1f8a45 | 2015-09-22 11:36:02 -0700 | [diff] [blame] | 207 | QToolBar *toolBar; |
Boris Barbulovski | 85eaf28 | 2015-09-22 11:36:03 -0700 | [diff] [blame] | 208 | QAction *backAction; |
Boris Barbulovski | 780505e | 2015-09-22 11:36:13 -0700 | [diff] [blame] | 209 | QAction *singleViewAction; |
| 210 | QAction *splitViewAction; |
| 211 | QAction *fullViewAction; |
Boris Barbulovski | 7653866 | 2015-09-22 11:36:14 -0700 | [diff] [blame] | 212 | QSplitter *split1; |
| 213 | QSplitter *split2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 214 | }; |