Linux Audio

Check our new training course

Loading...
v5.9
  1/* SPDX-License-Identifier: GPL-2.0 */
  2/*
  3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
  4 */
  5
  6#include <QCheckBox>
  7#include <QDialog>
  8#include <QHeaderView>
  9#include <QLineEdit>
 10#include <QMainWindow>
 11#include <QPushButton>
 12#include <QSettings>
 13#include <QSplitter>
 
 14#include <QTextBrowser>
 15#include <QTreeWidget>
 16
 17#include "expr.h"
 18
 19class ConfigView;
 20class ConfigList;
 21class ConfigItem;
 22class ConfigLineEdit;
 23class ConfigMainWindow;
 24
 25class ConfigSettings : public QSettings {
 26public:
 27	ConfigSettings();
 28	QList<int> readSizes(const QString& key, bool *ok);
 29	bool writeSizes(const QString& key, const QList<int>& value);
 30};
 31
 32enum colIdx {
 33	promptColIdx, nameColIdx, noColIdx, modColIdx, yesColIdx, dataColIdx
 34};
 35enum listMode {
 36	singleMode, menuMode, symbolMode, fullMode, listMode
 37};
 38enum optionMode {
 39	normalOpt = 0, allOpt, promptOpt
 40};
 41
 42class ConfigList : public QTreeWidget {
 43	Q_OBJECT
 44	typedef class QTreeWidget Parent;
 45public:
 46	ConfigList(ConfigView* p, const char *name = 0);
 
 47	void reinit(void);
 48	ConfigItem* findConfigItem(struct menu *);
 49	ConfigView* parent(void) const
 50	{
 51		return (ConfigView*)Parent::parent();
 52	}
 53	void setSelected(QTreeWidgetItem *item, bool enable) {
 54		for (int i = 0; i < selectedItems().size(); i++)
 55			selectedItems().at(i)->setSelected(false);
 56
 57		item->setSelected(enable);
 58	}
 59
 60protected:
 61	void keyPressEvent(QKeyEvent *e);
 62	void mousePressEvent(QMouseEvent *e);
 63	void mouseReleaseEvent(QMouseEvent *e);
 64	void mouseMoveEvent(QMouseEvent *e);
 65	void mouseDoubleClickEvent(QMouseEvent *e);
 66	void focusInEvent(QFocusEvent *e);
 67	void contextMenuEvent(QContextMenuEvent *e);
 68
 69public slots:
 70	void setRootMenu(struct menu *menu);
 71
 72	void updateList();
 73	void setValue(ConfigItem* item, tristate val);
 74	void changeValue(ConfigItem* item);
 75	void updateSelection(void);
 76	void saveSettings(void);
 77	void setOptionMode(QAction *action);
 
 78
 79signals:
 80	void menuChanged(struct menu *menu);
 81	void menuSelected(struct menu *menu);
 82	void itemSelected(struct menu *menu);
 83	void parentSelected(void);
 84	void gotFocus(struct menu *);
 
 85
 86public:
 87	void updateListAll(void)
 88	{
 89		updateAll = true;
 90		updateList();
 91		updateAll = false;
 92	}
 93	void setAllOpen(bool open);
 94	void setParentMenu(void);
 95
 96	bool menuSkip(struct menu *);
 97
 98	void updateMenuList(ConfigItem *parent, struct menu*);
 99	void updateMenuList(struct menu *menu);
100
101	bool updateAll;
102
103	bool showName, showRange, showData;
104	enum listMode mode;
105	enum optionMode optMode;
106	struct menu *rootEntry;
107	QPalette disabledColorGroup;
108	QPalette inactivedColorGroup;
109	QMenu* headerPopup;
110
 
 
 
 
111	static QAction *showNormalAction, *showAllAction, *showPromptAction;
112};
113
114class ConfigItem : public QTreeWidgetItem {
115	typedef class QTreeWidgetItem Parent;
116public:
117	ConfigItem(ConfigList *parent, ConfigItem *after, struct menu *m, bool v)
118	: Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false)
119	{
120		init();
121	}
122	ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m, bool v)
123	: Parent(parent, after), nextItem(0), menu(m), visible(v), goParent(false)
124	{
125		init();
126	}
127	ConfigItem(ConfigList *parent, ConfigItem *after, bool v)
128	: Parent(parent, after), nextItem(0), menu(0), visible(v), goParent(true)
129	{
130		init();
131	}
132	~ConfigItem(void);
133	void init(void);
134	void okRename(int col);
135	void updateMenu(void);
136	void testUpdateMenu(bool v);
137	ConfigList* listView() const
138	{
139		return (ConfigList*)Parent::treeWidget();
140	}
141	ConfigItem* firstChild() const
142	{
143		return (ConfigItem *)Parent::child(0);
144	}
145	ConfigItem* nextSibling()
146	{
147		ConfigItem *ret = NULL;
148		ConfigItem *_parent = (ConfigItem *)parent();
149
150		if(_parent) {
151			ret = (ConfigItem *)_parent->child(_parent->indexOfChild(this)+1);
152		} else {
153			QTreeWidget *_treeWidget = treeWidget();
154			ret = (ConfigItem *)_treeWidget->topLevelItem(_treeWidget->indexOfTopLevelItem(this)+1);
155		}
156
157		return ret;
158	}
159	// TODO: Implement paintCell
160
161	ConfigItem* nextItem;
162	struct menu *menu;
163	bool visible;
164	bool goParent;
165
166	static QIcon symbolYesIcon, symbolModIcon, symbolNoIcon;
167	static QIcon choiceYesIcon, choiceNoIcon;
168	static QIcon menuIcon, menubackIcon;
169};
170
171class ConfigLineEdit : public QLineEdit {
172	Q_OBJECT
173	typedef class QLineEdit Parent;
174public:
175	ConfigLineEdit(ConfigView* parent);
176	ConfigView* parent(void) const
177	{
178		return (ConfigView*)Parent::parent();
179	}
180	void show(ConfigItem *i);
181	void keyPressEvent(QKeyEvent *e);
182
183public:
184	ConfigItem *item;
185};
186
187class ConfigView : public QWidget {
188	Q_OBJECT
189	typedef class QWidget Parent;
190public:
191	ConfigView(QWidget* parent, const char *name = 0);
192	~ConfigView(void);
193	static void updateList();
194	static void updateListAll(void);
195
196	bool showName(void) const { return list->showName; }
197	bool showRange(void) const { return list->showRange; }
198	bool showData(void) const { return list->showData; }
199public slots:
200	void setShowName(bool);
201	void setShowRange(bool);
202	void setShowData(bool);
203signals:
204	void showNameChanged(bool);
205	void showRangeChanged(bool);
206	void showDataChanged(bool);
207public:
208	ConfigList* list;
209	ConfigLineEdit* lineEdit;
210
211	static ConfigView* viewList;
212	ConfigView* nextView;
 
 
213};
214
215class ConfigInfoView : public QTextBrowser {
216	Q_OBJECT
217	typedef class QTextBrowser Parent;
218	QMenu *contextMenu;
219public:
220	ConfigInfoView(QWidget* parent, const char *name = 0);
221	bool showDebug(void) const { return _showDebug; }
222
223public slots:
224	void setInfo(struct menu *menu);
225	void saveSettings(void);
226	void setShowDebug(bool);
227	void clicked (const QUrl &url);
228
229signals:
230	void showDebugChanged(bool);
231	void menuSelected(struct menu *);
232
233protected:
234	void symbolInfo(void);
235	void menuInfo(void);
236	QString debug_info(struct symbol *sym);
237	static QString print_filter(const QString &str);
238	static void expr_print_help(void *data, struct symbol *sym, const char *str);
239	void contextMenuEvent(QContextMenuEvent *event);
240
241	struct symbol *sym;
242	struct menu *_menu;
243	bool _showDebug;
244};
245
246class ConfigSearchWindow : public QDialog {
247	Q_OBJECT
248	typedef class QDialog Parent;
249public:
250	ConfigSearchWindow(ConfigMainWindow *parent);
251
252public slots:
253	void saveSettings(void);
254	void search(void);
255
256protected:
257	QLineEdit* editField;
258	QPushButton* searchButton;
259	QSplitter* split;
260	ConfigView* list;
261	ConfigInfoView* info;
262
263	struct symbol **result;
264};
265
266class ConfigMainWindow : public QMainWindow {
267	Q_OBJECT
268
269	char *configname;
270	static QAction *saveAction;
271	static void conf_changed(void);
272public:
273	ConfigMainWindow(void);
274public slots:
275	void changeMenu(struct menu *);
276	void changeItens(struct menu *);
277	void setMenuLink(struct menu *);
278	void listFocusChanged(void);
279	void goBack(void);
280	void loadConfig(void);
281	bool saveConfig(void);
282	void saveConfigAs(void);
283	void searchConfig(void);
284	void showSingleView(void);
285	void showSplitView(void);
286	void showFullView(void);
287	void showIntro(void);
288	void showAbout(void);
289	void saveSettings(void);
290
291protected:
292	void closeEvent(QCloseEvent *e);
293
294	ConfigSearchWindow *searchWindow;
295	ConfigView *menuView;
296	ConfigList *menuList;
297	ConfigView *configView;
298	ConfigList *configList;
299	ConfigInfoView *helpText;
300	QAction *backAction;
301	QAction *singleViewAction;
302	QAction *splitViewAction;
303	QAction *fullViewAction;
304	QSplitter *split1;
305	QSplitter *split2;
306};
v6.13.7
  1/* SPDX-License-Identifier: GPL-2.0 */
  2/*
  3 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
  4 */
  5
  6#include <QCheckBox>
  7#include <QDialog>
  8#include <QHeaderView>
  9#include <QLineEdit>
 10#include <QMainWindow>
 11#include <QPushButton>
 12#include <QSettings>
 13#include <QSplitter>
 14#include <QStyledItemDelegate>
 15#include <QTextBrowser>
 16#include <QTreeWidget>
 17
 18#include "expr.h"
 19
 
 20class ConfigList;
 21class ConfigItem;
 
 22class ConfigMainWindow;
 23
 24class ConfigSettings : public QSettings {
 25public:
 26	ConfigSettings();
 27	QList<int> readSizes(const QString& key, bool *ok);
 28	bool writeSizes(const QString& key, const QList<int>& value);
 29};
 30
 31enum colIdx {
 32	promptColIdx, nameColIdx, dataColIdx
 33};
 34enum listMode {
 35	singleMode, menuMode, symbolMode, fullMode, listMode
 36};
 37enum optionMode {
 38	normalOpt = 0, allOpt, promptOpt
 39};
 40
 41class ConfigList : public QTreeWidget {
 42	Q_OBJECT
 43	typedef class QTreeWidget Parent;
 44public:
 45	ConfigList(QWidget *parent, const char *name = 0);
 46	~ConfigList();
 47	void reinit(void);
 48	ConfigItem* findConfigItem(struct menu *);
 
 
 
 
 49	void setSelected(QTreeWidgetItem *item, bool enable) {
 50		for (int i = 0; i < selectedItems().size(); i++)
 51			selectedItems().at(i)->setSelected(false);
 52
 53		item->setSelected(enable);
 54	}
 55
 56protected:
 57	void keyPressEvent(QKeyEvent *e);
 
 58	void mouseReleaseEvent(QMouseEvent *e);
 
 59	void mouseDoubleClickEvent(QMouseEvent *e);
 60	void focusInEvent(QFocusEvent *e);
 61	void contextMenuEvent(QContextMenuEvent *e);
 62
 63public slots:
 64	void setRootMenu(struct menu *menu);
 65
 66	void updateList();
 67	void setValue(ConfigItem* item, tristate val);
 68	void changeValue(ConfigItem* item);
 69	void updateSelection(void);
 70	void saveSettings(void);
 71	void setOptionMode(QAction *action);
 72	void setShowName(bool on);
 73
 74signals:
 75	void menuChanged(struct menu *menu);
 76	void menuSelected(struct menu *menu);
 77	void itemSelected(struct menu *menu);
 78	void parentSelected(void);
 79	void gotFocus(struct menu *);
 80	void showNameChanged(bool on);
 81
 82public:
 83	void updateListAll(void)
 84	{
 85		updateAll = true;
 86		updateList();
 87		updateAll = false;
 88	}
 89	void setAllOpen(bool open);
 90	void setParentMenu(void);
 91
 92	bool menuSkip(struct menu *);
 93
 94	void updateMenuList(ConfigItem *parent, struct menu*);
 95	void updateMenuList(struct menu *menu);
 96
 97	bool updateAll;
 98
 99	bool showName;
100	enum listMode mode;
101	enum optionMode optMode;
102	struct menu *rootEntry;
103	QPalette disabledColorGroup;
104	QPalette inactivedColorGroup;
105	QMenu* headerPopup;
106
107	static QList<ConfigList *> allLists;
108	static void updateListForAll();
109	static void updateListAllForAll();
110
111	static QAction *showNormalAction, *showAllAction, *showPromptAction;
112};
113
114class ConfigItem : public QTreeWidgetItem {
115	typedef class QTreeWidgetItem Parent;
116public:
117	ConfigItem(ConfigList *parent, ConfigItem *after, struct menu *m)
118	: Parent(parent, after), nextItem(0), menu(m), goParent(false)
119	{
120		init();
121	}
122	ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m)
123	: Parent(parent, after), nextItem(0), menu(m), goParent(false)
124	{
125		init();
126	}
127	ConfigItem(ConfigList *parent, ConfigItem *after)
128	: Parent(parent, after), nextItem(0), menu(0), goParent(true)
129	{
130		init();
131	}
132	~ConfigItem(void);
133	void init(void);
 
134	void updateMenu(void);
135	void testUpdateMenu(void);
136	ConfigList* listView() const
137	{
138		return (ConfigList*)Parent::treeWidget();
139	}
140	ConfigItem* firstChild() const
141	{
142		return (ConfigItem *)Parent::child(0);
143	}
144	ConfigItem* nextSibling()
145	{
146		ConfigItem *ret = NULL;
147		ConfigItem *_parent = (ConfigItem *)parent();
148
149		if(_parent) {
150			ret = (ConfigItem *)_parent->child(_parent->indexOfChild(this)+1);
151		} else {
152			QTreeWidget *_treeWidget = treeWidget();
153			ret = (ConfigItem *)_treeWidget->topLevelItem(_treeWidget->indexOfTopLevelItem(this)+1);
154		}
155
156		return ret;
157	}
158	// TODO: Implement paintCell
159
160	ConfigItem* nextItem;
161	struct menu *menu;
 
162	bool goParent;
163
164	static QIcon symbolYesIcon, symbolModIcon, symbolNoIcon;
165	static QIcon choiceYesIcon, choiceNoIcon;
166	static QIcon menuIcon, menubackIcon;
167};
168
169class ConfigItemDelegate : public QStyledItemDelegate
170{
171private:
172	struct menu *menu;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
173public:
174	ConfigItemDelegate(QObject *parent = nullptr)
175		: QStyledItemDelegate(parent) {}
176	QWidget *createEditor(QWidget *parent,
177			      const QStyleOptionViewItem &option,
178			      const QModelIndex &index) const override;
179	void setModelData(QWidget *editor, QAbstractItemModel *model,
180			  const QModelIndex &index) const override;
181};
182
183class ConfigInfoView : public QTextBrowser {
184	Q_OBJECT
185	typedef class QTextBrowser Parent;
186	QMenu *contextMenu;
187public:
188	ConfigInfoView(QWidget* parent, const char *name = 0);
189	bool showDebug(void) const { return _showDebug; }
190
191public slots:
192	void setInfo(struct menu *menu);
193	void saveSettings(void);
194	void setShowDebug(bool);
195	void clicked (const QUrl &url);
196
197signals:
198	void showDebugChanged(bool);
199	void menuSelected(struct menu *);
200
201protected:
202	void symbolInfo(void);
203	void menuInfo(void);
204	QString debug_info(struct symbol *sym);
205	static QString print_filter(const QString &str);
206	static void expr_print_help(void *data, struct symbol *sym, const char *str);
207	void contextMenuEvent(QContextMenuEvent *event);
208
209	struct symbol *sym;
210	struct menu *_menu;
211	bool _showDebug;
212};
213
214class ConfigSearchWindow : public QDialog {
215	Q_OBJECT
216	typedef class QDialog Parent;
217public:
218	ConfigSearchWindow(ConfigMainWindow *parent);
219
220public slots:
221	void saveSettings(void);
222	void search(void);
223
224protected:
225	QLineEdit* editField;
226	QPushButton* searchButton;
227	QSplitter* split;
228	ConfigList *list;
229	ConfigInfoView* info;
230
231	struct symbol **result;
232};
233
234class ConfigMainWindow : public QMainWindow {
235	Q_OBJECT
236
237	QString configname;
238	static QAction *saveAction;
239	static void conf_changed(bool);
240public:
241	ConfigMainWindow(void);
242public slots:
243	void changeMenu(struct menu *);
244	void changeItens(struct menu *);
245	void setMenuLink(struct menu *);
246	void listFocusChanged(void);
247	void goBack(void);
248	void loadConfig(void);
249	bool saveConfig(void);
250	void saveConfigAs(void);
251	void searchConfig(void);
252	void showSingleView(void);
253	void showSplitView(void);
254	void showFullView(void);
255	void showIntro(void);
256	void showAbout(void);
257	void saveSettings(void);
258
259protected:
260	void closeEvent(QCloseEvent *e);
261
262	ConfigSearchWindow *searchWindow;
 
263	ConfigList *menuList;
 
264	ConfigList *configList;
265	ConfigInfoView *helpText;
266	QAction *backAction;
267	QAction *singleViewAction;
268	QAction *splitViewAction;
269	QAction *fullViewAction;
270	QSplitter *split1;
271	QSplitter *split2;
272};