1 /* |
|
2 * ZCinema: Zandronum demo launcher |
|
3 * Copyright (C) 2013-2015 Teemu Piippo |
|
4 * |
|
5 * This program is free software: you can redistribute it and/or modify |
|
6 * it under the terms of the GNU General Public License as published by |
|
7 * the Free Software Foundation, either version 3 of the License, or |
|
8 * (at your option) any later version. |
|
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 * You should have received a copy of the GNU General Public License |
|
16 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
17 */ |
|
18 |
|
19 #pragma once |
|
20 #include <QDialog> |
|
21 #include "types.h" |
|
22 |
|
23 // |
|
24 // ------------------------------------------------------------------------------------------------- |
|
25 // |
|
26 |
|
27 class UnknownVersionPrompt : public QDialog |
|
28 { |
|
29 Q_OBJECT |
|
30 |
|
31 public: |
|
32 UnknownVersionPrompt (QString fileName, QString binaryName, bool isRelease, |
|
33 QWidget* parent = NULL, Qt::WindowFlags f = 0); |
|
34 virtual ~UnknownVersionPrompt(); |
|
35 |
|
36 public slots: |
|
37 void findBinary(); |
|
38 void addBinary(); |
|
39 |
|
40 private: |
|
41 class Ui_UnknownVersion* ui; |
|
42 QString m_binaryString; |
|
43 bool m_isRelease; |
|
44 }; |
|
45 |
|
46 // |
|
47 // ------------------------------------------------------------------------------------------------- |
|
48 // |
|
49 |
|
50 class FindFilePrompt : public QDialog |
|
51 { |
|
52 Q_OBJECT |
|
53 |
|
54 public: |
|
55 FindFilePrompt (QWidget* parent = NULL, Qt::WindowFlags f = 0); |
|
56 virtual ~FindFilePrompt(); |
|
57 |
|
58 QString path() const; |
|
59 |
|
60 public slots: |
|
61 void findDemo(); |
|
62 |
|
63 private: |
|
64 class Ui_FindFile* m_ui; |
|
65 }; |
|