#pragma once #include #include #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: };