Changeset 9607 in orxonox.OLD
- Timestamp:
- Jul 30, 2006, 10:37:15 AM (18 years ago)
- Location:
- branches/proxy/src/lib
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/gui/gl/glgui_fixedposition_box.h
r9554 r9607 14 14 //! This is BOX part of the openglGUI class 15 15 /** 16 * The Box is always positioned at the designated position on the screen 16 17 * 18 * @note If you pack the box or move it with setRel/AbsCoor2D the 19 * behaviour of positioning is not predictable! 17 20 */ 18 21 class GLGuiFixedpositionBox : public OrxGui::GLGuiBox, EventListener -
branches/proxy/src/lib/gui/gl/glgui_handler.cc
r9558 r9607 51 51 for (unsigned int i = 0; i < EV_NUMBER; i++) 52 52 { 53 this->subscribeEvent(ES_ALL, i); 53 this->subscribeEvent(ES_GAME, i); 54 this->subscribeEvent(ES_GAME_MENU, i); 55 this->subscribeEvent(ES_MENU, i); 54 56 } 55 57 } -
branches/proxy/src/lib/network/monitor/network_stats_widget.cc
r9577 r9607 23 23 #include "shell_command.h" 24 24 25 SHELL_COMMAND(gui, NetworkStatsWidget, toggleGUI) 26 ->setAlias("ProxyGui"); 25 // this fcuk does not work! 26 // SHELL_COMMAND(gui, NetworkStatsWidget, toggleGUI) 27 // ->setAlias("ProxyGui"); 27 28 28 29 -
branches/proxy/src/lib/network/monitor/network_stats_widget.h
r9577 r9607 15 15 16 16 class NetworkMonitor; 17 class NetworkNode; 17 18 18 19 … … 46 47 ProxyWidget(const std::string& proxyName, const IP& ip); 47 48 49 void addClient(const NetworkNode* node); 48 50 void addClient(const std::string& name, const IP& ip); 49 51
Note: See TracChangeset
for help on using the changeset viewer.