Files
seer/SeerLogWidget.h
T
2021-09-01 13:58:59 -05:00

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:
};