This commit is contained in:
Fabio Bas 2016-06-24 10:39:44 +02:00
parent e81a6d497b
commit 8db10be892
9 changed files with 178 additions and 12 deletions

View file

@ -0,0 +1,20 @@
#ifndef DLG_VIEWLOG_H
#define DLG_VIEWLOG_H
#include <QDialog>
class QPlainTextEdit;
class DlgViewLog : public QDialog {
Q_OBJECT
public:
DlgViewLog(QWidget *parent);
private:
QPlainTextEdit *logArea;
void loadInitialLogBuffer();
private slots:
void logEntryAdded(QString message);
};
#endif