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
|
#ifndef MULTIEDITORBOOL_H
#define MULTIEDITORBOOL_H
#include "guiSQLiteStudio_global.h"
#include "multieditorwidget.h"
#include "multieditorwidgetplugin.h"
#include "plugins/builtinplugin.h"
#include <QStringList>
class QCheckBox;
class GUI_API_EXPORT MultiEditorBool : public MultiEditorWidget
{
Q_OBJECT
public:
explicit MultiEditorBool(QWidget* parent = 0);
static void staticInit();
void setValue(const QVariant& boolValue);
QVariant getValue();
void setReadOnly(bool boolValue);
QList<QWidget*> getNoScrollWidgets();
void focusThisWidget();
private:
enum Format
{
TRUE_FALSE,
ON_OFF,
YES_NO,
ONE_ZERO,
BOOL
};
bool valueFromString(const QString& strValue);
void updateLabel();
static QStringList validValues;
QCheckBox* checkBox = nullptr;
Format valueFormat = ONE_ZERO;
bool upperCaseValue = false;
bool readOnly = false;
bool boolValue = false;
private slots:
void stateChanged(int state);
};
class GUI_API_EXPORT MultiEditorBoolPlugin : public BuiltInPlugin, public MultiEditorWidgetPlugin
{
Q_OBJECT
SQLITESTUDIO_PLUGIN_AUTHOR("sqlitestudio.pl")
SQLITESTUDIO_PLUGIN_DESC("Boolean data editor.")
SQLITESTUDIO_PLUGIN_TITLE("Boolean")
SQLITESTUDIO_PLUGIN_VERSION(10000)
public:
MultiEditorWidget* getInstance();
bool validFor(const DataType& dataType);
int getPriority(const DataType& dataType);
QString getTabLabel();
};
#endif // MULTIEDITORBOOL_H
|