added gettext support
[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         {
108                 core::rect<s32> rect(0, 0, 140, 30);
109                 rect = rect + v2s32(size.X/2-140/2, size.Y/2-30/2+25);
110                 Environment->addButton(rect, this, 257, chartowchar_t(gettext("Proceed")));
111         }
112 }
113
114 void GUITextInputMenu::drawMenu()
115 {
116         gui::IGUISkin* skin = Environment->getSkin();
117         if (!skin)
118                 return;
119         video::IVideoDriver* driver = Environment->getVideoDriver();
120         
121         video::SColor bgcolor(140,0,0,0);
122         driver->draw2DRectangle(bgcolor, AbsoluteRect, &AbsoluteClippingRect);
123
124         gui::IGUIElement::draw();
125 }
126
127 void GUITextInputMenu::acceptInput()
128 {
129         if(m_dest)
130         {
131                 gui::IGUIElement *e = getElementFromId(256);
132                 if(e != NULL)
133                 {
134                         m_dest->gotText(e->getText());
135                 }
136                 delete m_dest;
137                 m_dest = NULL;
138         }
139 }
140
141 bool GUITextInputMenu::OnEvent(const SEvent& event)
142 {
143         if(event.EventType==EET_KEY_INPUT_EVENT)
144         {
145                 if(event.KeyInput.Key==KEY_ESCAPE && event.KeyInput.PressedDown)
146                 {
147                         quitMenu();
148                         return true;
149                 }
150                 if(event.KeyInput.Key==KEY_RETURN && event.KeyInput.PressedDown)
151                 {
152                         acceptInput();
153                         quitMenu();
154                         return true;
155                 }
156         }
157         if(event.EventType==EET_GUI_EVENT)
158         {
159                 if(event.GUIEvent.EventType==gui::EGET_ELEMENT_FOCUS_LOST
160                                 && isVisible())
161                 {
162                         if(!canTakeFocus(event.GUIEvent.Element))
163                         {
164                                 dstream<<"GUITextInputMenu: Not allowing focus change."
165                                                 <<std::endl;
166                                 // Returning true disables focus change
167                                 return true;
168                         }
169                 }
170                 if(event.GUIEvent.EventType==gui::EGET_BUTTON_CLICKED)
171                 {
172                         switch(event.GUIEvent.Caller->getID())
173                         {
174                         case 257:
175                                 acceptInput();
176                                 quitMenu();
177                                 // quitMenu deallocates menu
178                                 return true;
179                         }
180                 }
181                 if(event.GUIEvent.EventType==gui::EGET_EDITBOX_ENTER)
182                 {
183                         switch(event.GUIEvent.Caller->getID())
184                         {
185                         case 256:
186                                 acceptInput();
187                                 quitMenu();
188                                 // quitMenu deallocates menu
189                                 return true;
190                         }
191                 }
192         }
193
194         return Parent ? Parent->OnEvent(event) : false;
195 }
196