mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
27 lines
717 B
C++
27 lines
717 B
C++
#pragma once
|
|
|
|
#include <QtWidgets/QWidget>
|
|
#include <QtCore/QString>
|
|
#include "ui_SeerLogWidget.h"
|
|
|
|
class SeerLogWidget : public QWidget, protected Ui::SeerLogWidgetForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerLogWidget (QWidget* parent = 0);
|
|
~SeerLogWidget ();
|
|
|
|
virtual void processText (const QString& text);
|
|
|
|
public slots:
|
|
void handleText (const QString& text);
|
|
void handleClearButton ();
|
|
void handlePrintButton ();
|
|
void handleSaveButton ();
|
|
void handleWrapTextCheckBox ();
|
|
|
|
protected:
|
|
};
|
|
|