author | sheepluva |
Mon, 10 Aug 2015 03:53:11 +0200 | |
changeset 11046 | 47a8c19ecb60 |
parent 10108 | c68cf030eded |
permissions | -rw-r--r-- |
8377 | 1 |
/* |
2 |
* Hedgewars, a free turn based strategy game |
|
11046 | 3 |
* Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com> |
8377 | 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; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
9998
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
8377 | 17 |
*/ |
18 |
||
19 |
#ifndef SEEDPROMPT_H |
|
20 |
#define SEEDPROMPT_H |
|
21 |
||
22 |
#include <QDialog> |
|
23 |
||
24 |
class QLineEdit; |
|
25 |
||
26 |
class SeedPrompt : public QDialog |
|
27 |
{ |
|
28 |
Q_OBJECT |
|
29 |
||
30 |
public: |
|
31 |
SeedPrompt(QWidget* parent, const QString & seed, bool editable); |
|
32 |
||
33 |
signals: |
|
8434 | 34 |
void seedSelected(const QString & seed); |
8377 | 35 |
|
36 |
private slots: |
|
8434 | 37 |
void setSeed(); |
8377 | 38 |
|
39 |
private: |
|
8434 | 40 |
QLineEdit * editBox; |
8377 | 41 |
}; |
42 |
||
43 |
#endif // SEEDPROMPT_H |