Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 2595 in orxonox.OLD for orxonox/trunk/gui/orxonox_gui_banner.cc


Ignore:
Timestamp:
Oct 19, 2004, 1:30:24 AM (20 years ago)
Author:
bensch
Message:

orxonox/trunk/gui: Generalized plugins (returning Widget* now). Enumerator for isOption added

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/gui/orxonox_gui_banner.cc

    r2588 r2595  
    6262          logoWindow->connectSignal("delete_event", this, LogoWindowClose);
    6363          logoEventBox = new EventBox();
     64          logoBox = new Box('v');
     65          logoLabel = new Label("OrxOnoX");
    6466          logoImage = new Image("banner.xpm");
    6567          logoEventBox->fill(logoImage);
     68
     69          logoBox->fill(logoLabel);
     70          logoBox->fill(logoEventBox);
    6671          logoEventBox->connectSignal("button_press_event",this,LogoWindowClose);
    6772
    68           logoWindow->fill (logoEventBox);
     73          logoWindow->fill (logoBox);
    6974         
    7075        }
     
    9095   \return The EventBox, that holds the Banner.
    9196*/
    92 EventBox* OrxonoxGuiBanner::getEventBox ()
     97Widget* OrxonoxGuiBanner::getWidget ()
    9398{
    9499  return bannerEventBox;
Note: See TracChangeset for help on using the changeset viewer.