mirror of
https://gitee.com/vnotex/vnote.git
synced 2025-07-05 13:59:52 +08:00
71 lines
1.4 KiB
C++
71 lines
1.4 KiB
C++
#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
|