1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
|
#ifndef FUNCTIONSEDITOR_H
#define FUNCTIONSEDITOR_H
#include "mdichild.h"
#include "common/extactioncontainer.h"
#include "services/config.h"
#include "services/functionmanager.h"
#include <QItemSelection>
#include <QSortFilterProxyModel>
namespace Ui {
class FunctionsEditor;
}
class FunctionsEditorModel;
class ScriptingPlugin;
class SyntaxHighlighterPlugin;
class DbTreeItem;
class QTreeWidgetItem;
class QSyntaxHighlighter;
class SelectableDbModel;
class GUI_API_EXPORT FunctionsEditor : public MdiChild
{
Q_OBJECT
public:
enum Action
{
COMMIT,
ROLLBACK,
ADD,
DELETE,
ARG_ADD,
ARG_EDIT,
ARG_DEL,
ARG_MOVE_UP,
ARG_MOVE_DOWN,
HELP
};
enum ToolBar
{
TOOLBAR
};
explicit FunctionsEditor(QWidget *parent = 0);
~FunctionsEditor();
bool restoreSessionNextTime();
bool isUncommited() const;
QString getQuitUncommitedConfirmMessage() const;
protected:
QVariant saveSession();
bool restoreSession(const QVariant &sessionValue);
Icon* getIconNameForMdiWindow();
QString getTitleForMdiWindow();
void createActions();
void setupDefShortcuts();
QToolBar* getToolBar(int toolbar) const;
private:
void init();
int getCurrentFunctionRow() const;
void functionDeselected(int row);
void functionSelected(int row);
void clearEdits();
void selectFunction(int row);
void setFont(const QFont& font);
QModelIndex getSelectedArg() const;
QStringList getCurrentArgList() const;
QStringList getCurrentDatabases() const;
FunctionManager::ScriptFunction::Type getCurrentFunctionType() const;
Ui::FunctionsEditor *ui = nullptr;
FunctionsEditorModel* model = nullptr;
QSortFilterProxyModel* functionFilterModel = nullptr;
bool currentModified = false;
QHash<QString,ScriptingPlugin*> scriptingPlugins;
QHash<QString,SyntaxHighlighterPlugin*> highlighterPlugins;
SelectableDbModel* dbListModel = nullptr;
QString currentHighlighterLang;
QSyntaxHighlighter* currentMainHighlighter = nullptr;
QSyntaxHighlighter* currentFinalHighlighter = nullptr;
QSyntaxHighlighter* currentInitHighlighter = nullptr;
bool updatesForSelection = false;
private slots:
void commit();
void rollback();
void newFunction();
void deleteFunction();
void updateModified();
void updateState();
void updateCurrentFunctionState();
void functionSelected(const QItemSelection& selected, const QItemSelection& deselected);
void addFunctionArg();
void editFunctionArg();
void delFunctionArg();
void moveFunctionArgUp();
void moveFunctionArgDown();
void updateArgsState();
void applyFilter(const QString& value);
void help();
void changeFont(const QVariant& font);
};
#endif // FUNCTIONSEDITOR_H
|