Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9607 in orxonox.OLD


Ignore:
Timestamp:
Jul 30, 2006, 10:37:15 AM (18 years ago)
Author:
bensch
Message:

prevents the gui to act in the SHELL mode

Location:
branches/proxy/src/lib
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • branches/proxy/src/lib/gui/gl/glgui_fixedposition_box.h

    r9554 r9607  
    1414  //! This is BOX part of the openglGUI class
    1515  /**
     16   * The Box is always positioned at the designated position on the screen
    1617   *
     18   * @note If you pack the box or move it with setRel/AbsCoor2D the
     19   * behaviour of positioning is not predictable!
    1720   */
    1821  class GLGuiFixedpositionBox : public OrxGui::GLGuiBox, EventListener
  • branches/proxy/src/lib/gui/gl/glgui_handler.cc

    r9558 r9607  
    5151    for (unsigned int i = 0; i < EV_NUMBER; i++)
    5252    {
    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);
    5456    }
    5557  }
  • branches/proxy/src/lib/network/monitor/network_stats_widget.cc

    r9577 r9607  
    2323#include "shell_command.h"
    2424
    25 SHELL_COMMAND(gui, NetworkStatsWidget, toggleGUI)
    26 ->setAlias("ProxyGui");
     25// this fcuk does not work!
     26// SHELL_COMMAND(gui, NetworkStatsWidget, toggleGUI)
     27// ->setAlias("ProxyGui");
    2728
    2829
  • branches/proxy/src/lib/network/monitor/network_stats_widget.h

    r9577 r9607  
    1515
    1616class NetworkMonitor;
     17class NetworkNode;
    1718
    1819
     
    4647    ProxyWidget(const std::string& proxyName, const IP& ip);
    4748
     49    void addClient(const NetworkNode* node);
    4850    void addClient(const std::string& name, const IP& ip);
    4951
Note: See TracChangeset for help on using the changeset viewer.