aboutsummaryrefslogtreecommitdiff
path: root/src/util/directiontables.cpp
diff options
context:
space:
mode:
authorsapier <Sapier at GMX dot net>2013-11-13 21:49:50 +0100
committerkwolekr <kwolekr@minetest.net>2013-11-17 12:46:43 -0500
commiteadc9431592f1e21a9211c3487334cd31ed54db1 (patch)
tree566f5551aa007e4d55b86173a9c31e7893dc8f6c /src/util/directiontables.cpp
parentdc407e219f8b0394f3a4d10ea8379b8678d98d1c (diff)
downloadminetest-eadc9431592f1e21a9211c3487334cd31ed54db1.tar.gz
minetest-eadc9431592f1e21a9211c3487334cd31ed54db1.tar.bz2
minetest-eadc9431592f1e21a9211c3487334cd31ed54db1.zip
Add missing RequestQueue doc
Diffstat (limited to 'src/util/directiontables.cpp')
0 files changed, 0 insertions, 0 deletions
n> "modalMenu.h" #include "IGUIFileOpenDialog.h" #include "guiFormSpecMenu.h" //required because of TextDest only !!! class GUIFileSelectMenu: public GUIModalMenu { public: GUIFileSelectMenu(gui::IGUIEnvironment* env, gui::IGUIElement* parent, s32 id, IMenuManager *menumgr, std::string title, std::string formid); ~GUIFileSelectMenu(); void removeChildren(); /* Remove and re-add (or reposition) stuff */ void regenerateGui(v2u32 screensize); void drawMenu(); bool OnEvent(const SEvent& event); bool isRunning() { return m_running; } void setTextDest(TextDest * dest) { m_text_dst = dest; } private: void acceptInput(); std::wstring m_title; bool m_accepted; gui::IGUIElement* m_parent; std::string m_selectedPath; gui::IGUIFileOpenDialog* m_fileOpenDialog; bool m_running; TextDest *m_text_dst; std::string m_formname; }; #endif /* GUIFILESELECTMENU_H_ */