1 |
|
|
/* |
2 |
|
|
* The ManaPlus Client |
3 |
|
|
* Copyright (C) 2009 The Mana World Development Team |
4 |
|
|
* Copyright (C) 2011-2019 The ManaPlus Developers |
5 |
|
|
* Copyright (C) 2009-2021 Andrei Karas |
6 |
|
|
* |
7 |
|
|
* This file is part of The ManaPlus Client. |
8 |
|
|
* |
9 |
|
|
* This program is free software; you can redistribute it and/or modify |
10 |
|
|
* it under the terms of the GNU General Public License as published by |
11 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
12 |
|
|
* any later version. |
13 |
|
|
* |
14 |
|
|
* This program is distributed in the hope that it will be useful, |
15 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17 |
|
|
* GNU General Public License for more details. |
18 |
|
|
* |
19 |
|
|
* You should have received a copy of the GNU General Public License |
20 |
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
21 |
|
|
*/ |
22 |
|
|
|
23 |
|
|
#ifndef GUI_WINDOWS_EDITDIALOG_H |
24 |
|
|
#define GUI_WINDOWS_EDITDIALOG_H |
25 |
|
|
|
26 |
|
|
#include "localconsts.h" |
27 |
|
|
|
28 |
|
|
#include "gui/widgets/window.h" |
29 |
|
|
#include "gui/widgets/textfield.h" |
30 |
|
|
|
31 |
|
|
#include "listeners/actionlistener.h" |
32 |
|
|
|
33 |
|
|
#define ACTION_EDIT_OK "edit ok" |
34 |
|
|
|
35 |
|
|
/** |
36 |
|
|
* An 'Ok' button dialog. |
37 |
|
|
* |
38 |
|
|
* \ingroup GUI |
39 |
|
|
*/ |
40 |
|
4 |
class EditDialog final : public Window, |
41 |
|
|
public ActionListener |
42 |
|
|
{ |
43 |
|
|
public: |
44 |
|
|
/** |
45 |
|
|
* Constructor. |
46 |
|
|
* |
47 |
|
|
* @see Window::Window |
48 |
|
|
*/ |
49 |
|
|
EditDialog(const std::string &restrict title, |
50 |
|
|
const std::string &restrict msg, |
51 |
|
|
const std::string &restrict eventOk, |
52 |
|
|
const int width, |
53 |
|
|
Window *const parent, |
54 |
|
|
const Modal modal); |
55 |
|
|
|
56 |
|
|
A_DELETE_COPY(EditDialog) |
57 |
|
|
|
58 |
|
|
void postInit() override final; |
59 |
|
|
|
60 |
|
|
/** |
61 |
|
|
* Called when receiving actions from the widgets. |
62 |
|
|
*/ |
63 |
|
|
void action(const ActionEvent &event) override final; |
64 |
|
|
|
65 |
|
|
std::string getMsg() const A_WARN_UNUSED |
66 |
|
|
{ return mTextField->getText(); } |
67 |
|
|
|
68 |
|
|
private: |
69 |
|
|
std::string mEventOk; |
70 |
|
|
TextField *mTextField A_NONNULLPOINTER; |
71 |
|
|
}; |
72 |
|
|
|
73 |
|
|
#endif // GUI_WINDOWS_EDITDIALOG_H |