mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 09:00:42 +08:00
31 lines
919 B
C++
31 lines
919 B
C++
#pragma once
|
|
|
|
#include "ui_SeerHelpPageDialog.h"
|
|
|
|
class SeerHelpPageDialog: public QDialog, protected Ui::SeerHelpPageDialogForm {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SeerHelpPageDialog(QDialog* parent = 0);
|
|
~SeerHelpPageDialog();
|
|
|
|
void loadFile (const QString& filename);
|
|
void loadText (const QString& text);
|
|
|
|
signals:
|
|
public slots:
|
|
protected:
|
|
void writeSettings ();
|
|
void readSettings ();
|
|
void resizeEvent (QResizeEvent* event);
|
|
|
|
protected slots:
|
|
void handlePrintToolButton ();
|
|
void handleOkPushButton ();
|
|
|
|
private:
|
|
};
|
|
|