Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 9656 in orxonox.OLD for trunk/src/lib/gui/gl/glgui_box.h


Ignore:
Timestamp:
Aug 4, 2006, 11:01:28 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: merged the proxy bache back with no conflicts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/gui/gl/glgui_box.h

    r8145 r9656  
    11/*!
    2  * @file glgui_.h
     2 * @file glgui_box.h
    33 * The gl_box widget of th openglGUI
    44 *
     
    3030
    3131    virtual void pack(GLGuiWidget* widget);
     32    void pack(GLGuiWidget* widget, unsigned int position);
     33    void pack(GLGuiWidget* widget, const GLGuiWidget* widgetPointer);
     34    void packFront(GLGuiWidget* widget);
     35    void packBack(GLGuiWidget* widget);
    3236    virtual void unpack(GLGuiWidget* widget);
     37
    3338    virtual void clear();
    3439
     
    4348  private:
    4449    void init();
     50    void packing(GLGuiWidget* widget); // the action executing when packing a widget.
     51    void pack(GLGuiWidget* widget, std::list<GLGuiWidget*>::iterator pos);
     52
     53  private:
     54
    4555
    4656    Orientation                _orientation;
    47     std::vector<GLGuiWidget*>  children;
     57    std::list<GLGuiWidget*>    _children;
    4858  };
    4959}
Note: See TracChangeset for help on using the changeset viewer.