aboutsummaryrefslogtreecommitdiffstats
path: root/SQLiteStudio3/guiSQLiteStudio/constraints/columncollatepanel.h
diff options
context:
space:
mode:
Diffstat (limited to 'SQLiteStudio3/guiSQLiteStudio/constraints/columncollatepanel.h')
-rw-r--r--SQLiteStudio3/guiSQLiteStudio/constraints/columncollatepanel.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/SQLiteStudio3/guiSQLiteStudio/constraints/columncollatepanel.h b/SQLiteStudio3/guiSQLiteStudio/constraints/columncollatepanel.h
new file mode 100644
index 0000000..a7afb54
--- /dev/null
+++ b/SQLiteStudio3/guiSQLiteStudio/constraints/columncollatepanel.h
@@ -0,0 +1,40 @@
+#ifndef COLUMNCOLLATEPANEL_H
+#define COLUMNCOLLATEPANEL_H
+
+#include "constraintpanel.h"
+#include "guiSQLiteStudio_global.h"
+
+namespace Ui {
+ class ColumnCollatePanel;
+}
+
+class QStringListModel;
+
+class GUI_API_EXPORT ColumnCollatePanel : public ConstraintPanel
+{
+ Q_OBJECT
+
+ public:
+ explicit ColumnCollatePanel(QWidget *parent = 0);
+ ~ColumnCollatePanel();
+
+ bool validate();
+
+ protected:
+ void changeEvent(QEvent *e);
+ void constraintAvailable();
+ void storeConfiguration();
+
+ private:
+ void init();
+ void readConstraint();
+ void readCollations();
+
+ QStringListModel* collationModel = nullptr;
+ Ui::ColumnCollatePanel *ui = nullptr;
+
+ private slots:
+ void updateState();
+};
+
+#endif // COLUMNCOLLATEPANEL_H