blob: d1b04b7f27cc69451a91b9b014ff97043b0f8e39 (
plain) (
blame)
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
|
#ifndef UIDEBUG_H
#define UIDEBUG_H
#include "guiSQLiteStudio_global.h"
#include <QtDebug>
class GUI_API_EXPORT MsgHandlerThreadProxy : public QObject
{
Q_OBJECT
public:
explicit MsgHandlerThreadProxy(QObject* parent = 0);
public slots:
void debug(const QString& msg);
void warn(const QString& msg);
void critical(const QString& msg);
void fatal(const QString& msg);
signals:
void debugRequested(const QString& msg);
void warnRequested(const QString& msg);
void criticalRequested(const QString& msg);
void fatalRequested(const QString& msg);
private slots:
void print(const QString& txt);
};
GUI_API_EXPORT void uiMessageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg);
GUI_API_EXPORT void setUiDebug(bool enabled, bool useUiConsole = true);
GUI_API_EXPORT void showUiDebugConsole();
GUI_API_EXPORT bool isDebugEnabled();
GUI_API_EXPORT bool isDebugConsoleEnabled();
#endif // UIDEBUG_H
|