diff options
| author | 2015-05-12 16:19:40 -0400 | |
|---|---|---|
| committer | 2015-05-12 16:19:40 -0400 | |
| commit | 9618f0ebbf4b88045247c01ce8c8f58203508ebf (patch) | |
| tree | 20c9894691353ee8bab4eec668e9b0b6c6426e0f /SQLiteStudio3/guiSQLiteStudio/dialogs/cssdebugdialog.h | |
| parent | a308f430f694423064ebc86fd0506c8c6fdb3d93 (diff) | |
Imported Upstream version 3.0.6upstream/3.0.6
Diffstat (limited to 'SQLiteStudio3/guiSQLiteStudio/dialogs/cssdebugdialog.h')
| -rw-r--r-- | SQLiteStudio3/guiSQLiteStudio/dialogs/cssdebugdialog.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/SQLiteStudio3/guiSQLiteStudio/dialogs/cssdebugdialog.h b/SQLiteStudio3/guiSQLiteStudio/dialogs/cssdebugdialog.h new file mode 100644 index 0000000..d22dd74 --- /dev/null +++ b/SQLiteStudio3/guiSQLiteStudio/dialogs/cssdebugdialog.h @@ -0,0 +1,32 @@ +#ifndef CSSDEBUGDIALOG_H +#define CSSDEBUGDIALOG_H + +#include <QDialog> + +namespace Ui { + class CssDebugDialog; +} + +class QAbstractButton; + +class CssDebugDialog : public QDialog +{ + Q_OBJECT + + public: + explicit CssDebugDialog(QWidget *parent = 0); + ~CssDebugDialog(); + + protected: + void closeEvent(QCloseEvent*); + + private: + Ui::CssDebugDialog *ui; + QString appliedCss; + + private slots: + void buttonClicked(QAbstractButton* button); + void updateState(); +}; + +#endif // CSSDEBUGDIALOG_H |
