1 |
|
|
/* |
2 |
|
|
* The ManaPlus Client |
3 |
|
|
* Copyright (C) 2004-2009 The Mana World Development Team |
4 |
|
|
* Copyright (C) 2009-2010 The Mana Developers |
5 |
|
|
* Copyright (C) 2011-2019 The ManaPlus Developers |
6 |
|
|
* Copyright (C) 2019-2021 Andrei Karas |
7 |
|
|
* |
8 |
|
|
* This file is part of The ManaPlus Client. |
9 |
|
|
* |
10 |
|
|
* This program is free software; you can redistribute it and/or modify |
11 |
|
|
* it under the terms of the GNU General Public License as published by |
12 |
|
|
* the Free Software Foundation; either version 2 of the License, or |
13 |
|
|
* any later version. |
14 |
|
|
* |
15 |
|
|
* This program is distributed in the hope that it will be useful, |
16 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
17 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
18 |
|
|
* GNU General Public License for more details. |
19 |
|
|
* |
20 |
|
|
* You should have received a copy of the GNU General Public License |
21 |
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
22 |
|
|
*/ |
23 |
|
|
|
24 |
|
|
#ifndef GUI_WINDOWS_TEXTSELECTDIALOG_H |
25 |
|
|
#define GUI_WINDOWS_TEXTSELECTDIALOG_H |
26 |
|
|
|
27 |
|
|
#include "gui/widgets/window.h" |
28 |
|
|
|
29 |
|
|
#include "enums/simpletypes/allowquit.h" |
30 |
|
|
|
31 |
|
|
#include "listeners/actionlistener.h" |
32 |
|
|
#include "listeners/selectionlistener.h" |
33 |
|
|
|
34 |
|
|
class Button; |
35 |
|
|
class ScrollArea; |
36 |
|
|
class NamesModel; |
37 |
|
|
class ListBox; |
38 |
|
|
|
39 |
|
|
class TextSelectDialog notfinal : public Window, |
40 |
|
|
public ActionListener, |
41 |
|
|
private SelectionListener |
42 |
|
|
{ |
43 |
|
|
public: |
44 |
|
|
/** |
45 |
|
|
* Constructor. |
46 |
|
|
*/ |
47 |
|
|
TextSelectDialog(const std::string &name, |
48 |
|
|
const std::string &selectButton, |
49 |
|
|
const AllowQuit allowQuit); |
50 |
|
|
|
51 |
|
|
A_DELETE_COPY(TextSelectDialog) |
52 |
|
|
|
53 |
|
|
/** |
54 |
|
|
* Destructor |
55 |
|
|
*/ |
56 |
|
|
~TextSelectDialog() override final; |
57 |
|
|
|
58 |
|
|
/** |
59 |
|
|
* Called when receiving actions from the widgets. |
60 |
|
|
*/ |
61 |
|
|
void action(const ActionEvent &event) override final; |
62 |
|
|
|
63 |
|
|
/** |
64 |
|
|
* Updates labels according to selected item. |
65 |
|
|
* |
66 |
|
|
* @see SelectionListener::selectionChanged |
67 |
|
|
*/ |
68 |
|
|
void valueChanged(const SelectionEvent &event) override final; |
69 |
|
|
|
70 |
|
|
/** |
71 |
|
|
* Sets the visibility of this window. |
72 |
|
|
*/ |
73 |
|
|
void setVisible(Visible visible) override final; |
74 |
|
|
|
75 |
|
|
void postInit() override; |
76 |
|
|
|
77 |
|
|
void addText(const std::string &text); |
78 |
|
|
|
79 |
|
|
std::string getText() const noexcept2 A_WARN_UNUSED |
80 |
|
|
{ return mText; } |
81 |
|
|
|
82 |
|
|
void setTag(const int tag) noexcept2 |
83 |
|
|
{ mTag = tag; } |
84 |
|
|
|
85 |
|
|
int getTag() const noexcept2 A_WARN_UNUSED |
86 |
|
|
{ return mTag; } |
87 |
|
|
|
88 |
|
|
protected: |
89 |
|
|
/** |
90 |
|
|
* Updates the state of buttons and labels. |
91 |
|
|
*/ |
92 |
|
|
void updateButtonsAndLabels(); |
93 |
|
|
|
94 |
|
|
std::string mSelectButtonName; |
95 |
|
|
std::string mText; |
96 |
|
|
Button *mSelectButton A_NONNULLPOINTER; |
97 |
|
|
Button *mQuitButton A_NONNULLPOINTER; |
98 |
|
|
ListBox *mItemList A_NONNULLPOINTER; |
99 |
|
|
ScrollArea *mScrollArea A_NONNULLPOINTER; |
100 |
|
|
NamesModel *mModel A_NONNULLPOINTER; |
101 |
|
|
AllowQuit mAllowQuit; |
102 |
|
|
int mTag; |
103 |
|
|
}; |
104 |
|
|
|
105 |
|
|
#endif // GUI_WINDOWS_TEXTSELECTDIALOG_H |