Changeset 9549 in orxonox.OLD for branches/proxy/src/lib
- Timestamp:
- Jul 28, 2006, 11:43:02 AM (18 years ago)
- Location:
- branches/proxy/src/lib
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/proxy/src/lib/gui/gl/Makefile.am
r9546 r9549 13 13 \ 14 14 glgui_handler.cc \ 15 glgui_widget.cc \ 15 16 glgui_mainwidget.cc \ 16 glgui_widget.cc \17 17 glgui_button.cc \ 18 18 glgui_pushbutton.cc \ … … 41 41 glgui_defs.h \ 42 42 glgui_handler.h \ 43 glgui_widget.h \ 43 44 glgui_mainwidget.h \ 44 glgui_widget.h \45 45 glgui_button.h \ 46 46 glgui_pushbutton.h \ -
branches/proxy/src/lib/gui/gl/glgui.h
r9015 r9549 14 14 #include "glgui_bar.h" 15 15 #include "glgui_box.h" 16 #include "glgui_fixedposition_box.h" 16 17 #include "glgui_button.h" 17 18 #include "glgui_checkbutton.h" -
branches/proxy/src/lib/gui/gl/glgui_fixedposition_box.cc
r9547 r9549 18 18 #include "glgui_fixedposition_box.h" 19 19 #include "glgui_handler.h" 20 20 21 #include <cassert> 21 22 … … 28 29 : GLGuiBox(orientation) 29 30 {} 30 31 32 /**33 * standard deconstructor34 */35 GLGuiFixedpositionBox::~GLGuiFixedpositionBox()36 {}37 38 31 39 32 -
branches/proxy/src/lib/gui/gl/glgui_fixedposition_box.h
r9547 r9549 18 18 { 19 19 20 public: 21 GLGuiFixedpositionBox(OrxGui::Position position = OrxGui::Center, OrxGui::Orientation orientation = OrxGui::Vertical); 22 virtual ~GLGuiFixedpositionBox(); 20 public: 21 GLGuiFixedpositionBox(OrxGui::Position position = OrxGui::Center, OrxGui::Orientation orientation = OrxGui::Vertical); 23 22 24 inline OrxGui::Position position() const { return this->_position; };25 void setPosition(OrxGui::Position);23 inline OrxGui::Position position() const { return this->_position; }; 24 void setPosition(OrxGui::Position position); 26 25 26 protected: 27 virtual void resize(); 27 28 28 protected: 29 virtual void resize(); 30 31 32 private: 33 OrxGui::Position _position; //!< The Fixed position of the Widget. 29 private: 30 OrxGui::Position _position; //!< The Fixed position of the Widget. 34 31 }; 35 32 } -
branches/proxy/src/lib/network/monitor/network_stats_widget.h
r9547 r9549 20 20 public: 21 21 HostWidget(const std::string& name, const IP& ip); 22 ~HostWidget() {};23 22 24 23 void setName(const std::string& name) { this->_name.setText(name); }; … … 71 70 72 71 //! A class to display network Statistics. 73 class NetworkStatsWidget : public OrxGui::GLGui FixedpositionBox72 class NetworkStatsWidget : public OrxGui::GLGuiBox 74 73 { 75 74 public:
Note: See TracChangeset
for help on using the changeset viewer.