27 lines
359 B
C++
27 lines
359 B
C++
#ifndef LOGVIEW_H
|
|
#define LOGVIEW_H
|
|
|
|
#include <QtGui>
|
|
#include <QTextEdit>
|
|
#include "Bridge.h"
|
|
|
|
class LogView : public QTextEdit
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit LogView(QWidget *parent = 0);
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
void addMsgToLogSlot(QString msg);
|
|
void clearLogSlot();
|
|
|
|
private:
|
|
|
|
|
|
|
|
};
|
|
|
|
#endif // LOGVIEW_H
|