Pencil2D  ff90c0872e88be3bf81c548cd60f01983012ec49
Pencil2D is an animation software for both bitmap and vector graphics. It is free, multi-platform, and open source.
 All Classes Functions
aboutdialog.h
1 /*
2 
3 Pencil - Traditional Animation Software
4 Copyright (C) 2012-2017 Matthew Chiawen Chang
5 
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; version 2 of the License.
9 
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
14 
15 */
16 
17 #ifndef ABOUTDIALOG_H
18 #define ABOUTDIALOG_H
19 
20 #include <QDialog>
21 
22 class QSpinBox;
23 class QLabel;
24 class QGridLayout;
25 class QGroupBox;
26 
27 class AboutDialog : public QDialog
28 {
29  Q_OBJECT
30 
31 public:
32  AboutDialog(QWidget *parent);
33 
34  void init();
35 
36 private:
37  QSpinBox *mSequenceSpaceBox;
38  QLabel *aboutText;
39  QLabel *logo;
40  QLabel *logoText;
41  QLabel *devInfoText;
42 };
43 
44 #endif // ABOUTDIALOG_H
45