Changeset 8509 in orxonox.OLD for branches/gui/src/story_entities
- Timestamp:
- Jun 16, 2006, 12:22:35 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/story_entities/simple_game_menu.cc
r8479 r8509 42 42 43 43 #include "glgui.h" 44 #include "gui/gl/specials/glgui_notifier.h" 44 45 45 46 //! This creates a Factory to fabricate a SimpleGameMenu … … 88 89 { 89 90 91 OrxGui::GLGuiNotifier* notifier = new OrxGui::GLGuiNotifier(); 92 notifier->show(); 93 notifier->setAbsCoor2D(300, 300); 94 95 96 90 97 OrxGui::GLGuiBox* box = new OrxGui::GLGuiBox(); 91 98 { … … 107 114 OrxGui::GLGuiInputLine* input = new OrxGui::GLGuiInputLine(); 108 115 input->setText("input some text here"); 109 input->connect(SIGNAL(input, textChanged), this, SLOT(SimpleGameMenu, TEST)); 116 input->connect(SIGNAL(input, textChanged), notifier, SLOT(OrxGui::GLGuiNotifier, pushNotifyMessage)); 117 110 118 box->pack(input); 111 119
Note: See TracChangeset
for help on using the changeset viewer.