From 9618f0ebbf4b88045247c01ce8c8f58203508ebf Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Tue, 12 May 2015 16:19:40 -0400 Subject: Imported Upstream version 3.0.6 --- .../guiSQLiteStudio/dialogs/cssdebugdialog.h | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 SQLiteStudio3/guiSQLiteStudio/dialogs/cssdebugdialog.h (limited to 'SQLiteStudio3/guiSQLiteStudio/dialogs/cssdebugdialog.h') 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 + +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 -- cgit v1.2.3