2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>
|
|
|
|
* Released under the terms of the GNU GPL v2.0.
|
|
|
|
*/
|
|
|
|
|
2015-09-23 02:36:15 +08:00
|
|
|
#include <QTextBrowser>
|
|
|
|
#include <QTreeWidget>
|
2015-09-23 02:36:02 +08:00
|
|
|
#include <QMainWindow>
|
2015-09-23 02:36:15 +08:00
|
|
|
#include <QHeaderView>
|
2010-08-31 23:34:37 +08:00
|
|
|
#include <qsettings.h>
|
2015-09-23 02:36:15 +08:00
|
|
|
#include <QPushButton>
|
|
|
|
#include <QSettings>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QSplitter>
|
|
|
|
#include <QCheckBox>
|
|
|
|
#include <QDialog>
|
|
|
|
#include "expr.h"
|
2010-08-31 23:34:37 +08:00
|
|
|
|
2006-06-09 13:12:46 +08:00
|
|
|
class ConfigView;
|
2005-04-17 06:20:36 +08:00
|
|
|
class ConfigLineEdit;
|
|
|
|
class ConfigMainWindow;
|
|
|
|
|
|
|
|
class ConfigSettings : public QSettings {
|
|
|
|
public:
|
2013-10-07 02:21:31 +08:00
|
|
|
ConfigSettings();
|
2015-09-23 02:36:05 +08:00
|
|
|
QList<int> readSizes(const QString& key, bool *ok);
|
|
|
|
bool writeSizes(const QString& key, const QList<int>& value);
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
enum colIdx {
|
|
|
|
promptColIdx, nameColIdx, noColIdx, modColIdx, yesColIdx, dataColIdx, colNr
|
|
|
|
};
|
|
|
|
enum listMode {
|
2006-06-09 13:12:45 +08:00
|
|
|
singleMode, menuMode, symbolMode, fullMode, listMode
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
2010-05-10 16:33:41 +08:00
|
|
|
enum optionMode {
|
|
|
|
normalOpt = 0, allOpt, promptOpt
|
|
|
|
};
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
class ConfigLineEdit : public QLineEdit {
|
|
|
|
Q_OBJECT
|
|
|
|
typedef class QLineEdit Parent;
|
|
|
|
public:
|
2006-06-09 13:12:45 +08:00
|
|
|
ConfigLineEdit(ConfigView* parent);
|
2005-04-17 06:20:36 +08:00
|
|
|
ConfigView* parent(void) const
|
|
|
|
{
|
|
|
|
return (ConfigView*)Parent::parent();
|
|
|
|
}
|
2015-09-23 02:36:15 +08:00
|
|
|
void show(QTreeWidgetItem *i);
|
2005-04-17 06:20:36 +08:00
|
|
|
void keyPressEvent(QKeyEvent *e);
|
|
|
|
|
|
|
|
public:
|
2015-09-23 02:36:15 +08:00
|
|
|
QTreeWidgetItem *item;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|
|
|
|
|
2015-09-23 02:36:09 +08:00
|
|
|
class ConfigView : public QWidget {
|
2006-06-09 13:12:46 +08:00
|
|
|
Q_OBJECT
|
2015-09-23 02:36:09 +08:00
|
|
|
typedef class QWidget Parent;
|
2006-06-09 13:12:46 +08:00
|
|
|
public:
|
|
|
|
ConfigView(QWidget* parent, const char *name = 0);
|
|
|
|
~ConfigView(void);
|
2015-09-23 02:36:15 +08:00
|
|
|
static void updateList(QTreeWidgetItem* item);
|
2006-06-09 13:12:46 +08:00
|
|
|
static void updateListAll(void);
|
|
|
|
|
2015-09-23 02:36:14 +08:00
|
|
|
bool showName(void) const { return false; } // TODO: Implement me.
|
|
|
|
bool showRange(void) const { return false; } // TODO: Implement me.
|
|
|
|
bool showData(void) const { return false; } // TODO: Implement me.
|
2006-06-09 13:12:46 +08:00
|
|
|
public slots:
|
|
|
|
void setShowName(bool);
|
|
|
|
void setShowRange(bool);
|
|
|
|
void setShowData(bool);
|
2010-05-10 16:33:41 +08:00
|
|
|
void setOptionMode(QAction *);
|
2006-06-09 13:12:46 +08:00
|
|
|
signals:
|
|
|
|
void showNameChanged(bool);
|
|
|
|
void showRangeChanged(bool);
|
|
|
|
void showDataChanged(bool);
|
|
|
|
public:
|
2015-09-23 02:36:15 +08:00
|
|
|
QTreeWidget* list;
|
2006-06-09 13:12:46 +08:00
|
|
|
ConfigLineEdit* lineEdit;
|
|
|
|
|
|
|
|
static ConfigView* viewList;
|
|
|
|
ConfigView* nextView;
|
2010-05-10 16:33:41 +08:00
|
|
|
|
|
|
|
static QAction *showNormalAction;
|
|
|
|
static QAction *showAllAction;
|
|
|
|
static QAction *showPromptAction;
|
2006-06-09 13:12:46 +08:00
|
|
|
};
|
|
|
|
|
2015-09-23 02:36:06 +08:00
|
|
|
class ConfigInfoView : public QTextBrowser {
|
2006-06-09 13:12:45 +08:00
|
|
|
Q_OBJECT
|
2015-09-23 02:36:06 +08:00
|
|
|
typedef class QTextBrowser Parent;
|
2006-06-09 13:12:45 +08:00
|
|
|
public:
|
|
|
|
ConfigInfoView(QWidget* parent, const char *name = 0);
|
|
|
|
bool showDebug(void) const { return _showDebug; }
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
void setInfo(struct menu *menu);
|
2006-06-09 13:12:46 +08:00
|
|
|
void saveSettings(void);
|
2006-06-09 13:12:45 +08:00
|
|
|
void setShowDebug(bool);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void showDebugChanged(bool);
|
2006-06-09 13:12:47 +08:00
|
|
|
void menuSelected(struct menu *);
|
2006-06-09 13:12:45 +08:00
|
|
|
|
|
|
|
protected:
|
2006-06-09 13:12:47 +08:00
|
|
|
void symbolInfo(void);
|
2006-06-09 13:12:45 +08:00
|
|
|
void menuInfo(void);
|
|
|
|
QString debug_info(struct symbol *sym);
|
|
|
|
static QString print_filter(const QString &str);
|
2006-06-09 13:12:47 +08:00
|
|
|
static void expr_print_help(void *data, struct symbol *sym, const char *str);
|
2015-09-23 02:36:06 +08:00
|
|
|
QMenu *createStandardContextMenu(const QPoint & pos);
|
|
|
|
void contextMenuEvent(QContextMenuEvent *e);
|
2006-06-09 13:12:45 +08:00
|
|
|
|
2006-06-09 13:12:47 +08:00
|
|
|
struct symbol *sym;
|
2010-08-31 23:34:37 +08:00
|
|
|
struct menu *_menu;
|
2006-06-09 13:12:45 +08:00
|
|
|
bool _showDebug;
|
|
|
|
};
|
|
|
|
|
|
|
|
class ConfigSearchWindow : public QDialog {
|
|
|
|
Q_OBJECT
|
|
|
|
typedef class QDialog Parent;
|
|
|
|
public:
|
2006-10-06 01:12:59 +08:00
|
|
|
ConfigSearchWindow(ConfigMainWindow* parent, const char *name = 0);
|
2006-06-09 13:12:46 +08:00
|
|
|
|
2006-06-09 13:12:45 +08:00
|
|
|
public slots:
|
2006-06-09 13:12:46 +08:00
|
|
|
void saveSettings(void);
|
2006-06-09 13:12:45 +08:00
|
|
|
void search(void);
|
2006-06-09 13:12:46 +08:00
|
|
|
|
2006-06-09 13:12:45 +08:00
|
|
|
protected:
|
|
|
|
QLineEdit* editField;
|
|
|
|
QPushButton* searchButton;
|
2006-06-09 13:12:46 +08:00
|
|
|
QSplitter* split;
|
2006-06-09 13:12:45 +08:00
|
|
|
ConfigView* list;
|
|
|
|
ConfigInfoView* info;
|
|
|
|
|
|
|
|
struct symbol **result;
|
|
|
|
};
|
|
|
|
|
2015-09-23 02:36:02 +08:00
|
|
|
class ConfigMainWindow : public QMainWindow {
|
2005-04-17 06:20:36 +08:00
|
|
|
Q_OBJECT
|
2006-12-13 16:34:08 +08:00
|
|
|
|
2015-09-23 02:36:03 +08:00
|
|
|
static QAction *saveAction;
|
2006-12-13 16:34:08 +08:00
|
|
|
static void conf_changed(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
public:
|
|
|
|
ConfigMainWindow(void);
|
|
|
|
public slots:
|
|
|
|
void changeMenu(struct menu *);
|
2006-06-09 13:12:47 +08:00
|
|
|
void setMenuLink(struct menu *);
|
2005-04-17 06:20:36 +08:00
|
|
|
void listFocusChanged(void);
|
|
|
|
void goBack(void);
|
|
|
|
void loadConfig(void);
|
2011-05-25 21:10:25 +08:00
|
|
|
bool saveConfig(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
void saveConfigAs(void);
|
2006-06-09 13:12:45 +08:00
|
|
|
void searchConfig(void);
|
2005-04-17 06:20:36 +08:00
|
|
|
void showSingleView(void);
|
|
|
|
void showSplitView(void);
|
|
|
|
void showFullView(void);
|
|
|
|
void showIntro(void);
|
|
|
|
void showAbout(void);
|
|
|
|
void saveSettings(void);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void closeEvent(QCloseEvent *e);
|
|
|
|
|
2006-06-09 13:12:45 +08:00
|
|
|
ConfigSearchWindow *searchWindow;
|
2005-04-17 06:20:36 +08:00
|
|
|
ConfigView *menuView;
|
2015-09-23 02:36:15 +08:00
|
|
|
QTreeWidget *menuList;
|
2005-04-17 06:20:36 +08:00
|
|
|
ConfigView *configView;
|
2015-09-23 02:36:15 +08:00
|
|
|
QTreeWidget *configList;
|
2006-06-09 13:12:45 +08:00
|
|
|
ConfigInfoView *helpText;
|
2015-09-23 02:36:02 +08:00
|
|
|
QToolBar *toolBar;
|
2015-09-23 02:36:03 +08:00
|
|
|
QAction *backAction;
|
2015-09-23 02:36:13 +08:00
|
|
|
QAction *singleViewAction;
|
|
|
|
QAction *splitViewAction;
|
|
|
|
QAction *fullViewAction;
|
2015-09-23 02:36:14 +08:00
|
|
|
QSplitter *split1;
|
|
|
|
QSplitter *split2;
|
2005-04-17 06:20:36 +08:00
|
|
|
};
|