Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 8694 in orxonox.OLD for branches


Ignore:
Timestamp:
Jun 21, 2006, 11:34:25 PM (18 years ago)
Author:
bensch
Message:

nicer look, but still pretty fucked up :)

Location:
branches/gui/src/story_entities
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/story_entities/game_menu.cc

    r8691 r8694  
    181181          OrxGui::GLGuiImage* image = new OrxGui::GLGuiImage();
    182182          image->show();
    183           image->setWidgetSize( 100, 100);
     183          image->setWidgetSize( 250, 200);
     184          image->setAbsCoor2D(400, 150);
    184185
    185186          printf("%s\n", se->getMenuScreenshoot().c_str());
  • branches/gui/src/story_entities/menu/glgui_imagebutton.cc

    r8691 r8694  
    4444  }
    4545  void GLGuiImageButton::removedFocus()
    46   {}
     46  {
     47  }
    4748
    4849
     50  void GLGuiImageButton::showing()
     51  {
     52    this->image->show();
     53  }
     54
     55  void GLGuiImageButton::hiding()
     56  {
     57    this->image->hide();
     58  }
    4959
    5060
  • branches/gui/src/story_entities/menu/glgui_imagebutton.h

    r8691 r8694  
    3232    virtual void removedFocus();
    3333
     34    virtual void showing();
     35    virtual void hiding();
     36
    3437
    3538  private:
Note: See TracChangeset for help on using the changeset viewer.