Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 7130 in orxonox.OLD for trunk/src/lib/gui/gl_gui/glgui_box.cc


Ignore:
Timestamp:
Feb 13, 2006, 2:59:17 PM (18 years ago)
Author:
bensch
Message:

orxonox/trunk: removed some std::list

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/lib/gui/gl_gui/glgui_box.cc

    r6287 r7130  
    1818#include "glgui_box.h"
    1919
    20 #include "list.h"
    21 
    2220using namespace std;
    2321
     
    3836GLGuiBox::~GLGuiBox()
    3937{
    40   delete this->children;
    4138}
    4239
     
    4744{
    4845  this->setClassID(CL_GLGUI_BOX, "GLGuiBox");
    49   this->children = new tList<GLGuiWidget>;
    5046}
    5147
     
    5551    return;
    5652
    57   this->children->add(widget);
     53  this->children.push_back(widget);
    5854}
    5955
     
    6359  if (widget == NULL)
    6460  {
    65     delete this->children;
    66     this->children = new tList<GLGuiWidget>;
     61    this->children.clear();
    6762  }
    6863  else
    6964  {
    70     this->children->remove(widget);
     65    this->children.remove(widget);
    7166  }
    7267}
     
    7469void GLGuiBox::showAll()
    7570{
    76   tIterator<GLGuiWidget>* itC = this->children->getIterator();
    77   GLGuiWidget* enumC = itC->firstElement();
    78   while (enumC != NULL)
     71  std::list<GLGuiWidget*>::iterator itC = this->children.begin();
     72  while (itC != this->children.end())
    7973  {
    80     if (enumC->isA(CL_GLGUI_CONTAINER))
    81       static_cast<GLGuiContainer*>(enumC)->showAll();
     74    if ((*itC)->isA(CL_GLGUI_CONTAINER))
     75      static_cast<GLGuiContainer*>(*itC)->showAll();
    8276    else
    83       enumC->show();
    84     enumC = itC->nextElement();
     77      (*itC)->show();
     78    itC++;
    8579  }
    86   delete itC;
    8780
    8881  this->show();
     
    9285void GLGuiBox::hideAll()
    9386{
    94   tIterator<GLGuiWidget>* itC = this->children->getIterator();
    95   GLGuiWidget* enumC = itC->firstElement();
    96   while (enumC != NULL)
     87  std::list<GLGuiWidget*>::iterator itC = this->children.begin();
     88  while (itC != this->children.end())
    9789  {
    98     if (enumC->isA(CL_GLGUI_CONTAINER))
    99       static_cast<GLGuiContainer*>(enumC)->showAll();
     90    if ((*itC)->isA(CL_GLGUI_CONTAINER))
     91      static_cast<GLGuiContainer*>(*itC)->hideAll();
    10092    else
    101       enumC->hide();
    102     enumC = itC->nextElement();
     93      (*itC)->hide();
     94    itC++;
    10395  }
    104   delete itC;
    10596
    10697  this->hide();
Note: See TracChangeset for help on using the changeset viewer.