Changeset 3430 in orxonox.OLD for orxonox/branches/trackManager/src/glmenu_imagescreen.h
- Timestamp:
- Mar 1, 2005, 9:50:30 AM (20 years ago)
- Location:
- orxonox/branches/trackManager
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/trackManager
- Property svn:externals set to
-
orxonox/branches/trackManager/src/glmenu_imagescreen.h
r3369 r3430 9 9 10 10 #include "stdincl.h" 11 12 11 class Texture; 12 class Material; 13 13 14 14 class GLMenuImageScreen : public BaseObject { 15 15 16 private: 17 GLMenuImageScreen (); 18 16 19 public: 17 GLMenuImageScreen ();18 20 ~GLMenuImageScreen (); 21 22 static GLMenuImageScreen* getInstance(); 23 24 static GLMenuImageScreen* singletonRef; 19 25 20 26 void init (); … … 28 34 void setSize (float height, float width); 29 35 30 void setMaximum (int max Step);36 void setMaximum (int maxValue); 31 37 int getMaximum (); 32 38 void setValue (int currentValue); … … 35 41 36 42 private: 37 char* backImageName; //! the name of the file of the background image38 float height, width; //! hight and width of the image39 float offsetX, offsetY; //! offset of the image from left and up40 Texture* backTex; //! background texture41 int currentValue; //! the current count of step() calls fired yet42 int max Step; //!total count of steps43 char* backImageName; //!< the name of the file of the background image 44 float height, width; //!< hight and width of the image 45 float offsetX, offsetY; //!< offset of the image from left and up 46 Material* backMat; //!< Background Material. 47 int currentValue; //!< the current count of step() calls fired yet 48 int maxValue; //!< total count of steps 43 49 44 50 };
Note: See TracChangeset
for help on using the changeset viewer.