| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- #ifndef VEDITSNIPPETDIALOG_H
- #define VEDITSNIPPETDIALOG_H
- #include <QDialog>
- #include <QVector>
- #include "vsnippet.h"
- class VLineEdit;
- class QLineEdit;
- class QLabel;
- class QDialogButtonBox;
- class QComboBox;
- class QTextEdit;
- class QCheckBox;
- class VEditSnippetDialog : public QDialog
- {
- Q_OBJECT
- public:
- VEditSnippetDialog(const QString &p_title,
- const QString &p_info,
- const QVector<VSnippet> &p_snippets,
- const VSnippet &p_snippet,
- QWidget *p_parent = nullptr);
- QString getNameInput() const;
- VSnippet::Type getTypeInput() const;
- QString getCursorMarkInput() const;
- QString getSelectionMarkInput() const;
- QString getContentInput() const;
- QChar getShortcutInput() const;
- bool getAutoIndentInput() const;
- private slots:
- void handleInputChanged();
- private:
- void setupUI(const QString &p_title, const QString &p_info);
- void setContentEditByType();
- QString getContentEditByType() const;
- QVector<QChar> getAvailableShortcuts() const;
- VLineEdit *m_nameEdit;
- QComboBox *m_typeCB;
- QComboBox *m_shortcutCB;
- QLineEdit *m_cursorMarkEdit;
- QLineEdit *m_selectionMarkEdit;
- QCheckBox *m_autoIndentCB;
- QTextEdit *m_contentEdit;
- QLabel *m_warnLabel;
- QDialogButtonBox *m_btnBox;
- const QVector<VSnippet> &m_snippets;
- const VSnippet &m_snippet;
- };
- #endif // VEDITSNIPPETDIALOG_H
|