Linux Audio

Check our new training course

Loading...
v3.15
 
  1/*
  2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
  3 * Released under the terms of the GNU GPL v2.0.
  4 */
  5
  6#if QT_VERSION < 0x040000
  7#include <qlistview.h>
  8#else
  9#include <q3listview.h>
 10#endif
 11#include <qsettings.h>
 12
 13#if QT_VERSION < 0x040000
 14#define Q3ValueList             QValueList
 15#define Q3PopupMenu             QPopupMenu
 16#define Q3ListView              QListView
 17#define Q3ListViewItem          QListViewItem
 18#define Q3VBox                  QVBox
 19#define Q3TextBrowser           QTextBrowser
 20#define Q3MainWindow            QMainWindow
 21#define Q3Action                QAction
 22#define Q3ToolBar               QToolBar
 23#define Q3ListViewItemIterator  QListViewItemIterator
 24#define Q3FileDialog            QFileDialog
 25#endif
 26
 27class ConfigView;
 28class ConfigList;
 29class ConfigItem;
 30class ConfigLineEdit;
 31class ConfigMainWindow;
 32
 33class ConfigSettings : public QSettings {
 34public:
 35	ConfigSettings();
 36	Q3ValueList<int> readSizes(const QString& key, bool *ok);
 37	bool writeSizes(const QString& key, const Q3ValueList<int>& value);
 38};
 39
 40enum colIdx {
 41	promptColIdx, nameColIdx, noColIdx, modColIdx, yesColIdx, dataColIdx, colNr
 42};
 43enum listMode {
 44	singleMode, menuMode, symbolMode, fullMode, listMode
 45};
 46enum optionMode {
 47	normalOpt = 0, allOpt, promptOpt
 48};
 49
 50class ConfigList : public Q3ListView {
 51	Q_OBJECT
 52	typedef class Q3ListView Parent;
 53public:
 54	ConfigList(ConfigView* p, const char *name = 0);
 
 55	void reinit(void);
 56	ConfigView* parent(void) const
 57	{
 58		return (ConfigView*)Parent::parent();
 59	}
 60	ConfigItem* findConfigItem(struct menu *);
 
 
 
 
 
 
 61
 62protected:
 63	void keyPressEvent(QKeyEvent *e);
 64	void contentsMousePressEvent(QMouseEvent *e);
 65	void contentsMouseReleaseEvent(QMouseEvent *e);
 66	void contentsMouseMoveEvent(QMouseEvent *e);
 67	void contentsMouseDoubleClickEvent(QMouseEvent *e);
 68	void focusInEvent(QFocusEvent *e);
 69	void contextMenuEvent(QContextMenuEvent *e);
 70
 71public slots:
 72	void setRootMenu(struct menu *menu);
 73
 74	void updateList(ConfigItem *item);
 75	void setValue(ConfigItem* item, tristate val);
 76	void changeValue(ConfigItem* item);
 77	void updateSelection(void);
 78	void saveSettings(void);
 
 
 
 79signals:
 80	void menuChanged(struct menu *menu);
 81	void menuSelected(struct menu *menu);
 
 82	void parentSelected(void);
 83	void gotFocus(struct menu *);
 
 84
 85public:
 86	void updateListAll(void)
 87	{
 88		updateAll = true;
 89		updateList(NULL);
 90		updateAll = false;
 91	}
 92	ConfigList* listView()
 93	{
 94		return this;
 95	}
 96	ConfigItem* firstChild() const
 97	{
 98		return (ConfigItem *)Parent::firstChild();
 99	}
100	int mapIdx(colIdx idx)
101	{
102		return colMap[idx];
103	}
104	void addColumn(colIdx idx, const QString& label)
105	{
106		colMap[idx] = Parent::addColumn(label);
107		colRevMap[colMap[idx]] = idx;
108	}
109	void removeColumn(colIdx idx)
110	{
111		int col = colMap[idx];
112		if (col >= 0) {
113			Parent::removeColumn(col);
114			colRevMap[col] = colMap[idx] = -1;
115		}
116	}
117	void setAllOpen(bool open);
118	void setParentMenu(void);
119
120	bool menuSkip(struct menu *);
121
122	template <class P>
123	void updateMenuList(P*, struct menu*);
124
125	bool updateAll;
126
127	QPixmap symbolYesPix, symbolModPix, symbolNoPix;
128	QPixmap choiceYesPix, choiceNoPix;
129	QPixmap menuPix, menuInvPix, menuBackPix, voidPix;
130
131	bool showName, showRange, showData;
132	enum listMode mode;
133	enum optionMode optMode;
134	struct menu *rootEntry;
135	QColorGroup disabledColorGroup;
136	QColorGroup inactivedColorGroup;
137	Q3PopupMenu* headerPopup;
 
 
 
 
138
139private:
140	int colMap[colNr];
141	int colRevMap[colNr];
142};
143
144class ConfigItem : public Q3ListViewItem {
145	typedef class Q3ListViewItem Parent;
146public:
147	ConfigItem(Q3ListView *parent, ConfigItem *after, struct menu *m, bool v)
148	: Parent(parent, after), menu(m), visible(v), goParent(false)
149	{
150		init();
151	}
152	ConfigItem(ConfigItem *parent, ConfigItem *after, struct menu *m, bool v)
153	: Parent(parent, after), menu(m), visible(v), goParent(false)
154	{
155		init();
156	}
157	ConfigItem(Q3ListView *parent, ConfigItem *after, bool v)
158	: Parent(parent, after), menu(0), visible(v), goParent(true)
159	{
160		init();
161	}
162	~ConfigItem(void);
163	void init(void);
164	void okRename(int col);
165	void updateMenu(void);
166	void testUpdateMenu(bool v);
167	ConfigList* listView() const
168	{
169		return (ConfigList*)Parent::listView();
170	}
171	ConfigItem* firstChild() const
172	{
173		return (ConfigItem *)Parent::firstChild();
174	}
175	ConfigItem* nextSibling() const
176	{
177		return (ConfigItem *)Parent::nextSibling();
178	}
179	void setText(colIdx idx, const QString& text)
180	{
181		Parent::setText(listView()->mapIdx(idx), text);
182	}
183	QString text(colIdx idx) const
184	{
185		return Parent::text(listView()->mapIdx(idx));
186	}
187	void setPixmap(colIdx idx, const QPixmap& pm)
188	{
189		Parent::setPixmap(listView()->mapIdx(idx), pm);
190	}
191	const QPixmap* pixmap(colIdx idx) const
192	{
193		return Parent::pixmap(listView()->mapIdx(idx));
 
 
194	}
195	void paintCell(QPainter* p, const QColorGroup& cg, int column, int width, int align);
196
197	ConfigItem* nextItem;
198	struct menu *menu;
199	bool visible;
200	bool goParent;
201};
202
203class ConfigLineEdit : public QLineEdit {
204	Q_OBJECT
205	typedef class QLineEdit Parent;
206public:
207	ConfigLineEdit(ConfigView* parent);
208	ConfigView* parent(void) const
209	{
210		return (ConfigView*)Parent::parent();
211	}
212	void show(ConfigItem *i);
213	void keyPressEvent(QKeyEvent *e);
214
215public:
216	ConfigItem *item;
217};
218
219class ConfigView : public Q3VBox {
220	Q_OBJECT
221	typedef class Q3VBox Parent;
222public:
223	ConfigView(QWidget* parent, const char *name = 0);
224	~ConfigView(void);
225	static void updateList(ConfigItem* item);
226	static void updateListAll(void);
227
228	bool showName(void) const { return list->showName; }
229	bool showRange(void) const { return list->showRange; }
230	bool showData(void) const { return list->showData; }
231public slots:
232	void setShowName(bool);
233	void setShowRange(bool);
234	void setShowData(bool);
235	void setOptionMode(QAction *);
236signals:
237	void showNameChanged(bool);
238	void showRangeChanged(bool);
239	void showDataChanged(bool);
240public:
241	ConfigList* list;
242	ConfigLineEdit* lineEdit;
243
244	static ConfigView* viewList;
245	ConfigView* nextView;
246
247	static QAction *showNormalAction;
248	static QAction *showAllAction;
249	static QAction *showPromptAction;
250};
251
252class ConfigInfoView : public Q3TextBrowser {
253	Q_OBJECT
254	typedef class Q3TextBrowser Parent;
 
255public:
256	ConfigInfoView(QWidget* parent, const char *name = 0);
257	bool showDebug(void) const { return _showDebug; }
258
259public slots:
260	void setInfo(struct menu *menu);
261	void saveSettings(void);
262	void setShowDebug(bool);
 
263
264signals:
265	void showDebugChanged(bool);
266	void menuSelected(struct menu *);
267
268protected:
269	void symbolInfo(void);
270	void menuInfo(void);
271	QString debug_info(struct symbol *sym);
272	static QString print_filter(const QString &str);
273	static void expr_print_help(void *data, struct symbol *sym, const char *str);
274	Q3PopupMenu* createPopupMenu(const QPoint& pos);
275	void contentsContextMenuEvent(QContextMenuEvent *e);
276
277	struct symbol *sym;
278	struct menu *_menu;
279	bool _showDebug;
280};
281
282class ConfigSearchWindow : public QDialog {
283	Q_OBJECT
284	typedef class QDialog Parent;
285public:
286	ConfigSearchWindow(ConfigMainWindow* parent, const char *name = 0);
287
288public slots:
289	void saveSettings(void);
290	void search(void);
291
292protected:
293	QLineEdit* editField;
294	QPushButton* searchButton;
295	QSplitter* split;
296	ConfigView* list;
297	ConfigInfoView* info;
298
299	struct symbol **result;
300};
301
302class ConfigMainWindow : public Q3MainWindow {
303	Q_OBJECT
304
305	static Q3Action *saveAction;
306	static void conf_changed(void);
 
307public:
308	ConfigMainWindow(void);
309public slots:
310	void changeMenu(struct menu *);
 
311	void setMenuLink(struct menu *);
312	void listFocusChanged(void);
313	void goBack(void);
314	void loadConfig(void);
315	bool saveConfig(void);
316	void saveConfigAs(void);
317	void searchConfig(void);
318	void showSingleView(void);
319	void showSplitView(void);
320	void showFullView(void);
321	void showIntro(void);
322	void showAbout(void);
323	void saveSettings(void);
324
325protected:
326	void closeEvent(QCloseEvent *e);
327
328	ConfigSearchWindow *searchWindow;
329	ConfigView *menuView;
330	ConfigList *menuList;
331	ConfigView *configView;
332	ConfigList *configList;
333	ConfigInfoView *helpText;
334	Q3ToolBar *toolBar;
335	Q3Action *backAction;
336	QSplitter* split1;
337	QSplitter* split2;
 
 
338};
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};