Merge remote-tracking branch 'speedprog/banByIp'
[oweals/minetest.git] / src / guiTextInputMenu.cpp
1 /*
2 Minetest-c55
3 Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
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 2 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 along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #include "guiTextInputMenu.h"
21 #include "debug.h"
22 #include "serialization.h"
23 #include <string>
24
25 #include "gettext.h"
26
27 GUITextInputMenu::GUITextInputMenu(gui::IGUIEnvironment* env,
28                 gui::IGUIElement* parent, s32 id,
29                 IMenuManager *menumgr,
30                 TextDest *dest,
31                 std::wstring initial_text
32 ):
33         GUIModalMenu(env, parent, id, menumgr),
34         m_dest(dest),
35         m_initial_text(initial_text)
36 {
37 }
38
39 GUITextInputMenu::~GUITextInputMenu()
40 {
41         removeChildren();
42         if(m_dest)
43                 delete m_dest;
44 }
45
46 void GUITextInputMenu::removeChildren()
47 {
48         {
49                 gui::IGUIElement *e = getElementFromId(256);
50                 if(e != NULL)
51                         e->remove();
52         }
53         {
54                 gui::IGUIElement *e = getElementFromId(257);
55                 if(e != NULL)
56                         e->remove();
57         }
58 }
59
60 void GUITextInputMenu::regenerateGui(v2u32 screensize)
61 {
62         std::wstring text;
63
64         {
65                 gui::IGUIElement *e = getElementFromId(256);
66                 if(e != NULL)
67                 {
68                         text = e->getText();
69                 }
70                 else
71                 {
72                         text = m_initial_text;
73                         m_initial_text = L"";
74                 }
75         }
76
77         /*
78                 Remove stuff
79         */
80         removeChildren();
81         
82         /*
83                 Calculate new sizes and positions
84         */
85         core::rect<s32> rect(
86                         screensize.X/2 - 580/2,
87                         screensize.Y/2 - 300/2,
88                         screensize.X/2 + 580/2,
89                         screensize.Y/2 + 300/2
90         );
91         
92         DesiredRect = rect;
93         recalculateAbsolutePosition(false);
94
95         v2s32 size = rect.getSize();
96
97         /*
98                 Add stuff
99         */
100         {
101                 core::rect<s32> rect(0, 0, 300, 30);
102                 rect = rect + v2s32(size.X/2-300/2, size.Y/2-30/2-25);
103                 gui::IGUIElement *e = 
104                 Environment->addEditBox(text.c_str(), rect, true, this, 256);
105                 Environment->setFocus(e);
106         }
107         changeCtype("");
108         {
109                 core::rect<s32> rect(0, 0, 140, 30);
110                 rect = rect + v2s32(size.X/2-140/2, size.Y/2-30/2+25);
111                 Environment->addButton(rect, this, 257,
112                         wgettext("Proceed"));
113         }
114         changeCtype("C");
115 }
116
117 void GUITextInputMenu::drawMenu()
118 {
119         gui::IGUISkin* skin = Environment->getSkin();
120         if (!skin)
121                 return;
122         video::IVideoDriver* driver = Environment->getVideoDriver();
123         
124         video::SColor bgcolor(140,0,0,0);
125         driver->draw2DRectangle(bgcolor, AbsoluteRect, &AbsoluteClippingRect);
126
127         gui::IGUIElement::draw();
128 }
129
130 void GUITextInputMenu::acceptInput()
131 {
132         if(m_dest)
133         {
134                 gui::IGUIElement *e = getElementFromId(256);
135                 if(e != NULL)
136                 {
137                         m_dest->gotText(e->getText());
138                 }
139                 delete m_dest;
140                 m_dest = NULL;
141         }
142 }
143
144 bool GUITextInputMenu::OnEvent(const SEvent& event)
145 {
146         if(event.EventType==EET_KEY_INPUT_EVENT)
147         {
148                 if(event.KeyInput.Key==KEY_ESCAPE && event.KeyInput.PressedDown)
149                 {
150                         quitMenu();
151                         return true;
152                 }
153                 if(event.KeyInput.Key==KEY_RETURN && event.KeyInput.PressedDown)
154                 {
155                         acceptInput();
156                         quitMenu();
157                         return true;
158                 }
159         }
160         if(event.EventType==EET_GUI_EVENT)
161         {
162                 if(event.GUIEvent.EventType==gui::EGET_ELEMENT_FOCUS_LOST
163                                 && isVisible())
164                 {
165                         if(!canTakeFocus(event.GUIEvent.Element))
166                         {
167                                 dstream<<"GUITextInputMenu: Not allowing focus change."
168                                                 <<std::endl;
169                                 // Returning true disables focus change
170                                 return true;
171                         }
172                 }
173                 if(event.GUIEvent.EventType==gui::EGET_BUTTON_CLICKED)
174                 {
175                         switch(event.GUIEvent.Caller->getID())
176                         {
177                         case 257:
178                                 acceptInput();
179                                 quitMenu();
180                                 // quitMenu deallocates menu
181                                 return true;
182                         }
183                 }
184                 if(event.GUIEvent.EventType==gui::EGET_EDITBOX_ENTER)
185                 {
186                         switch(event.GUIEvent.Caller->getID())
187                         {
188                         case 256:
189                                 acceptInput();
190                                 quitMenu();
191                                 // quitMenu deallocates menu
192                                 return true;
193                         }
194                 }
195         }
196
197         return Parent ? Parent->OnEvent(event) : false;
198 }
199