#ifndef LOG_BROWSER_H #define LOG_BROWSER_H // Modified from https://wiki.qt.io/Browser_for_QDebug_output #include class LogBrowserDialog; class LogBrowser : public QObject { Q_OBJECT public: explicit LogBrowser(QObject *parent = 0); ~LogBrowser(); public slots: void outputMessage(QtMsgType type, const QString &msg, const QString &source, int line); void showDialog(); void hideDialog(); bool isDialogVisible(); signals: void sendMessage(QtMsgType type, const QString &msg, const QString &source, int line); private: LogBrowserDialog *m_browserDialog; }; #endif // LOGBROWSER_H