From 7167ce41b61d2ba2cdb526777a4233eb84a3b66a Mon Sep 17 00:00:00 2001 From: Unit 193 Date: Sat, 6 Dec 2014 17:33:25 -0500 Subject: Imported Upstream version 2.99.6 --- SQLiteStudio3/guiSQLiteStudio/debugconsole.h | 44 ++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 SQLiteStudio3/guiSQLiteStudio/debugconsole.h (limited to 'SQLiteStudio3/guiSQLiteStudio/debugconsole.h') diff --git a/SQLiteStudio3/guiSQLiteStudio/debugconsole.h b/SQLiteStudio3/guiSQLiteStudio/debugconsole.h new file mode 100644 index 0000000..e13525c --- /dev/null +++ b/SQLiteStudio3/guiSQLiteStudio/debugconsole.h @@ -0,0 +1,44 @@ +#ifndef DEBUGCONSOLE_H +#define DEBUGCONSOLE_H + +#include "guiSQLiteStudio_global.h" +#include +#include + +namespace Ui { +class DebugConsole; +} + +class GUI_API_EXPORT DebugConsole : public QDialog +{ + Q_OBJECT + + public: + explicit DebugConsole(QWidget *parent = 0); + ~DebugConsole(); + + protected: + void showEvent(QShowEvent*); + + private: + void initFormats(); + void message(const QString& msg, const QTextCharFormat& format); + + Ui::DebugConsole *ui = nullptr; + QTextCharFormat dbgFormat; + QTextCharFormat wrnFormat; + QTextCharFormat criFormat; + QTextCharFormat fatFormat; + QTextBlockFormat blockFormat; + + private slots: + void reset(); + + public slots: + void debug(const QString& msg); + void warning(const QString& msg); + void critical(const QString& msg); + void fatal(const QString& msg); +}; + +#endif // DEBUGCONSOLE_H -- cgit v1.2.3