Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Mar 1, 2005, 9:50:30 AM (20 years ago)
Author:
bensch
Message:

orxonox/branches/trackManager: merged trunk back to trackManager
merged with command
svn merge -r 3369:HEAD trunk/ branches/trackManager
resoloved conflicts in favor of the trunk.

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  
    99
    1010#include "stdincl.h"
    11 
    1211class Texture;
     12class Material;
    1313
    1414class GLMenuImageScreen : public BaseObject {
    1515
     16 private:
     17  GLMenuImageScreen ();
     18
    1619 public:
    17   GLMenuImageScreen ();
    1820  ~GLMenuImageScreen ();
     21
     22  static GLMenuImageScreen* getInstance();
     23
     24  static GLMenuImageScreen* singletonRef;
    1925
    2026  void init ();
     
    2834  void setSize (float height, float width);
    2935 
    30   void setMaximum (int maxStep);
     36  void setMaximum (int maxValue);
    3137  int getMaximum ();
    3238  void setValue (int currentValue);
     
    3541
    3642 private:
    37   char* backImageName;       //! the name of the file of the background image
    38   float height, width;       //! hight and width of the image
    39   float offsetX, offsetY;    //! offset of the image from left and up
    40   Texture* backTex;          //! background texture
    41   int currentValue;          //! the current count of step() calls fired yet
    42   int maxStep;               //! total count of steps
     43  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
    4349
    4450};
Note: See TracChangeset for help on using the changeset viewer.