diff options
| author | 2023-04-30 18:30:36 -0400 | |
|---|---|---|
| committer | 2023-04-30 18:30:36 -0400 | |
| commit | 3565aad630864ecdbe53fdaa501ea708555b3c7c (patch) | |
| tree | c743e4ad0bad39ebdb2f514c7cc52d34a257ebbe /SQLiteStudio3/guiSQLiteStudio/windows/codesnippeteditor.h | |
| parent | 1fdc150116cad39aae5c5da407c3312b47a59e3a (diff) | |
New upstream version 3.4.4+dfsg.upstream/3.4.4+dfsg
Diffstat (limited to 'SQLiteStudio3/guiSQLiteStudio/windows/codesnippeteditor.h')
| -rw-r--r-- | SQLiteStudio3/guiSQLiteStudio/windows/codesnippeteditor.h | 91 |
1 files changed, 91 insertions, 0 deletions
diff --git a/SQLiteStudio3/guiSQLiteStudio/windows/codesnippeteditor.h b/SQLiteStudio3/guiSQLiteStudio/windows/codesnippeteditor.h new file mode 100644 index 0000000..2247960 --- /dev/null +++ b/SQLiteStudio3/guiSQLiteStudio/windows/codesnippeteditor.h @@ -0,0 +1,91 @@ +#ifndef CODESNIPPETEDITOR_H +#define CODESNIPPETEDITOR_H + +#include "mdichild.h" +#include <QWidget> + +namespace Ui { +class CodeSnippetEditor; +} + +class CodeSnippetEditorModel; +class QSortFilterProxyModel; +class QSyntaxHighlighter; +class QItemSelection; + +CFG_KEY_LIST(CodeSnippetEditor, QObject::tr("A code snippets editor window"), + CFG_KEY_ENTRY(COMMIT, QKeySequence::Save, QObject::tr("Commit the pending changes")) + CFG_KEY_ENTRY(ROLLBACK, QKeySequence::Cancel, QObject::tr("Rollback the pending changes")) +) + +class CodeSnippetEditor : public MdiChild +{ + Q_OBJECT + + public: + enum Action + { + COMMIT, + ROLLBACK, + ADD, + DELETE, + MOVE_UP, + MOVE_DOWN, + HELP + }; + Q_ENUM(Action) + + enum ToolBar + { + TOOLBAR + }; + + explicit CodeSnippetEditor(QWidget *parent = nullptr); + ~CodeSnippetEditor(); + + bool restoreSessionNextTime(); + bool isUncommitted() const; + QString getQuitUncommittedConfirmMessage() 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 getCurrentSnippetRow() const; + void snippetDeselected(int row); + void snippetSelected(int row); + void selectSnippet(int row, bool forRowMovement = false); + void clearEdits(); + + Ui::CodeSnippetEditor *ui; + CodeSnippetEditorModel* model = nullptr; + QSortFilterProxyModel* snippetFilterModel = nullptr; + bool currentModified = false; + bool updatesForSelection = false; + bool skipModelUpdatesDuringSelection = false; + + private slots: + void commit(); + void rollback(); + void newSnippet(); + void deleteSnippet(); + void moveSnippetUp(); + void moveSnippetDown(); + void updateModified(); + void updateCurrentSnippetState(); + void updateState(); + void snippetSelected(const QItemSelection& selected, const QItemSelection& deselected); + void applyFilter(const QString& value); + void changeFont(const QVariant& font); + void clearAssistantShortcutPressed(); + void help(); +}; + +#endif // CODESNIPPETEDITOR_H |
