Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8003 in orxonox.OLD for branches/gui/src/lib/gui/gl_gui/glgui_box.h


Ignore:
Timestamp:
May 31, 2006, 12:21:36 AM (18 years ago)
Author:
bensch
Message:

gui: introducing a Box

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/gui/gl_gui/glgui_box.h

    r8002 r8003  
    2424    virtual ~GLGuiBox();
    2525
    26     void init();
    2726    /** @returns the Orientation of the Box */
    2827    OrxGui::Orientation orientation() const { return this->_orientation; };
     
    3837    virtual void draw() const;
    3938
    40   private:
     39  protected:
    4140    virtual void resize();
    4241
    43     Orientation              _orientation;
    44     std::list<GLGuiWidget*>  children;
     42  private:
     43    void init();
     44
     45    Orientation                _orientation;
     46    std::vector<GLGuiWidget*>  children;
    4547  };
    4648}
Note: See TracChangeset for help on using the changeset viewer.