- Timestamp:
- Jun 21, 2006, 11:34:25 PM (18 years ago)
- Location:
- branches/gui/src/story_entities
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gui/src/story_entities/game_menu.cc
r8691 r8694 181 181 OrxGui::GLGuiImage* image = new OrxGui::GLGuiImage(); 182 182 image->show(); 183 image->setWidgetSize( 100, 100); 183 image->setWidgetSize( 250, 200); 184 image->setAbsCoor2D(400, 150); 184 185 185 186 printf("%s\n", se->getMenuScreenshoot().c_str()); -
branches/gui/src/story_entities/menu/glgui_imagebutton.cc
r8691 r8694 44 44 } 45 45 void GLGuiImageButton::removedFocus() 46 {} 46 { 47 } 47 48 48 49 50 void GLGuiImageButton::showing() 51 { 52 this->image->show(); 53 } 54 55 void GLGuiImageButton::hiding() 56 { 57 this->image->hide(); 58 } 49 59 50 60 -
branches/gui/src/story_entities/menu/glgui_imagebutton.h
r8691 r8694 32 32 virtual void removedFocus(); 33 33 34 virtual void showing(); 35 virtual void hiding(); 36 34 37 35 38 private:
Note: See TracChangeset
for help on using the changeset viewer.