ManaPlus
editdialog.h
Go to the documentation of this file.
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 
32 
33 #define ACTION_EDIT_OK "edit ok"
34 
40 class EditDialog final : public Window,
41  public ActionListener
42 {
43  public:
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 
57 
58  void postInit() override final;
59 
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;
71 };
72 
73 #endif // GUI_WINDOWS_EDITDIALOG_H
void postInit()
Definition: editdialog.cpp:48
TextField * mTextField
Definition: editdialog.h:70
void action(const ActionEvent &event)
Definition: editdialog.cpp:77
std::string getMsg() const
Definition: editdialog.h:65
EditDialog(const std::string &title, const std::string &msg, const std::string &eventOk, const int width, Window *const parent, const Modal modal)
Definition: editdialog.cpp:32
std::string mEventOk
Definition: editdialog.h:69
const std::string & getText() const
Definition: textfield.h:224
Definition: window.h:102
#define restrict
Definition: localconsts.h:165
#define A_WARN_UNUSED
Definition: localconsts.h:161
#define A_NONNULLPOINTER
Definition: localconsts.h:266
#define final
Definition: localconsts.h:46
#define A_DELETE_COPY(func)
Definition: localconsts.h:53
bool Modal
Definition: modal.h:30
bool msg(InputEvent &event)
Definition: chat.cpp:39