Receptacle
 All Classes Files Functions Variables Pages
about_dialog.h
1 /*
2 
3 Copyright 2014 William Wedler
4 
5 This file is part of Receptacle
6 
7 Receptacle is free software: you can redistribute it and/or modify
8 it under the terms of the GNU Lesser General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
11 
12 Receptacle is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU Lesser General Public License for more details.
16 
17 You should have received a copy of the GNU Lesser General Public License
18 along with Receptacle. If not, see <http://www.gnu.org/licenses/>.
19 
20 */
21 
22 
23 
24 #ifndef ABOUT_DIALOG_H
25 #define ABOUT_DIALOG_H
26 
27 #include <QApplication>
28 #include <QDialog>
29 #include <QIcon>
30 #include <QVBoxLayout>
31 #include <QLabel>
32 #include <QPushButton>
33 
34 
35 class QLabel;
36 class QPushButton;
37 
38 class AboutDialog : public QDialog{
39  Q_OBJECT
40 
41 public:
42  AboutDialog(const QString &plugins_path, const QStringList &plugin_fileNames,
43  QWidget *parent = 0);
44 
45 private:
46  QLabel *label;
47  QPushButton *okButton;
48 };
49 
50 #endif // ABOUT_DIALOG_H
Definition: about_dialog.h:38