mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-07 16:53:00 -07:00
Log UI
This commit is contained in:
parent
e81a6d497b
commit
8db10be892
9 changed files with 178 additions and 12 deletions
20
cockatrice/src/dlg_viewlog.h
Normal file
20
cockatrice/src/dlg_viewlog.h
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue