SimCenterCommon
Common functionality used within different SimCenter projects
dialogabout.h
Go to the documentation of this file.
1 #ifndef DIALOGABOUT_H
2 #define DIALOGABOUT_H
3 
4 #include <QDialog>
5 
6 namespace Ui {
7 class DialogAbout;
8 }
9 
10 class DialogAbout : public QDialog
11 {
12  Q_OBJECT
13 
14 public:
15  explicit DialogAbout(QWidget *parent = 0);
16  ~DialogAbout();
17  void setTextSource(const QString);
18  void setTitle(const QString);
19 
20 private slots:
21  void on_btn_backToTop_clicked();
22 
23 private:
24  Ui::DialogAbout *ui;
25 };
26 
27 #endif // DIALOGABOUT_H
Definition: dialogabout.h:6