direcs  2012-09-30
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
aboutDialog.h
Go to the documentation of this file.
1 /*************************************************************************
2  * Copyright (C) Markus Knapp *
3  * www.direcs.de *
4  * *
5  * This file is part of direcs. *
6  * *
7  * direcs is free software: you can redistribute it and/or modify it *
8  * under the terms of the GNU General Public License as published *
9  * by the Free Software Foundation, version 3 of the License. *
10  * *
11  * direcs is distributed in the hope that it will be useful, *
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14  * GNU General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU General Public License *
17  * along with direcs. If not, see <http://www.gnu.org/licenses/>. *
18  * *
19  *************************************************************************/
20 
21 #ifndef ABOUTDIALOG_H
22 #define ABOUTDIALOG_H
23 
24 #include <QtGui>
25 #include <QDialog>
26 
27 #include "ui_aboutDialog.h"
28 
29 
34 class AboutDialog : public QDialog
35 {
36  Q_OBJECT
37 
38  public:
39  AboutDialog(QWidget* parent = 0, Qt::WFlags fl = 0);
40 
41  public slots:
46  void setVersion(QString text);
47 
48  protected slots:
52  void on_btnAboutQt_clicked(bool checked);
53 
54  private:
55  Ui::aboutDialog ui;
56 };
57 
58 #endif