servatrice/cockatrice/src/dlg_viewlog.h
2016-06-27 22:18:39 +02:00

20 lines
304 B
C++

#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