Changeset 8518 in orxonox.OLD for trunk/src/story_entities
- Timestamp:
- Jun 16, 2006, 10:23:05 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/story_entities/simple_game_menu.cc
r8376 r8518 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 { … … 100 107 box->pack(rdnpb); 101 108 109 OrxGui::GLGuiCheckButton* fullscreen = new OrxGui::GLGuiCheckButton("Fullscreen"); 110 fullscreen->connect(SIGNAL(fullscreen, toggled), GraphicsEngine::getInstance(), SLOT(GraphicsEngine, setFullscreen)); 111 112 box->pack(fullscreen); 113 102 114 OrxGui::GLGuiInputLine* input = new OrxGui::GLGuiInputLine(); 103 115 input->setText("input some text here"); 104 input->connect(SIGNAL(input, textChanged), this, SLOT(SimpleGameMenu, TEST)); 116 input->connect(SIGNAL(input, textChanged), notifier, SLOT(OrxGui::GLGuiNotifier, pushNotifyMessage)); 117 105 118 box->pack(input); 106 119
Note: See TracChangeset
for help on using the changeset viewer.