Catch SendFailedException when replying back in Connection::Receive()
[oweals/minetest.git] / src / guiTextInputMenu.cpp
index 38985cfa04e916a697df37dd0336e60d3c871085..364f69903290a07224d14802d999d2de1401aa2e 100644 (file)
@@ -21,6 +21,13 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include "debug.h"
 #include "serialization.h"
 #include <string>
+#include <IGUICheckBox.h>
+#include <IGUIEditBox.h>
+#include <IGUIButton.h>
+#include <IGUIStaticText.h>
+#include <IGUIFont.h>
+
+#include "gettext.h"
 
 GUITextInputMenu::GUITextInputMenu(gui::IGUIEnvironment* env,
                gui::IGUIElement* parent, s32 id,
@@ -101,12 +108,21 @@ void GUITextInputMenu::regenerateGui(v2u32 screensize)
                gui::IGUIElement *e = 
                Environment->addEditBox(text.c_str(), rect, true, this, 256);
                Environment->setFocus(e);
+
+               irr::SEvent evt;
+               evt.EventType = EET_KEY_INPUT_EVENT;
+               evt.KeyInput.Key = KEY_END;
+               evt.KeyInput.PressedDown = true;
+               e->OnEvent(evt);
        }
+       changeCtype("");
        {
                core::rect<s32> rect(0, 0, 140, 30);
                rect = rect + v2s32(size.X/2-140/2, size.Y/2-30/2+25);
-               Environment->addButton(rect, this, 257, L"Proceed");
+               Environment->addButton(rect, this, 257,
+                       wgettext("Proceed"));
        }
+       changeCtype("C");
 }
 
 void GUITextInputMenu::drawMenu()
@@ -172,7 +188,8 @@ bool GUITextInputMenu::OnEvent(const SEvent& event)
                        case 257:
                                acceptInput();
                                quitMenu();
-                               break;
+                               // quitMenu deallocates menu
+                               return true;
                        }
                }
                if(event.GUIEvent.EventType==gui::EGET_EDITBOX_ENTER)
@@ -182,7 +199,8 @@ bool GUITextInputMenu::OnEvent(const SEvent& event)
                        case 256:
                                acceptInput();
                                quitMenu();
-                               break;
+                               // quitMenu deallocates menu
+                               return true;
                        }
                }
        }