2009-10-26 07:57:53 +00:00
|
|
|
#if !defined(LOGDIALOG_H)
|
|
|
|
|
|
|
|
#define LOGDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
#include "ui_LogDialogBase.h"
|
|
|
|
|
|
|
|
class QProcess;
|
|
|
|
|
|
|
|
class LogDialog : public QDialog, public Ui::LogDialogBase
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
LogDialog(QWidget* parent, QProcess*& synergy);
|
|
|
|
|
|
|
|
public:
|
|
|
|
void append(const QString& s);
|
2010-06-12 17:20:54 +00:00
|
|
|
void clear() { m_pLogOutput->clear(); }
|
2009-10-26 07:57:53 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void readSynergyOutput();
|
|
|
|
|
|
|
|
private:
|
|
|
|
QProcess*& m_pSynergy;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|