Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl/glgui_bar.h @ 8980

Last change on this file since 8980 was 8972, checked in by bensch, 18 years ago

added glgui_energywidget, the new Widget to display Energy and a Value

File size: 930 bytes
Line 
1/*!
2 * @file glgui_bar.h
3 * The gl_ widget of th openglGUI
4 *
5 */
6
7#ifndef _GLGUI_BAR_H
8#define _GLGUI_BAR_H
9
10#include "glgui_widget.h"
11
12
13namespace OrxGui
14{
15
16
17  //! This is Bar part of the openglGUI class
18  /**
19   * The Bar shows the part value.
20   */
21  class GLGuiBar : public GLGuiWidget
22  {
23
24  public:
25    GLGuiBar();
26    virtual ~GLGuiBar();
27
28    void setValue(float value) { this->value = value; };
29    void setMinimum(float minimum) { this->minimum = minimum; };
30    void setMaximum(float maximum) { this->maximum = maximum; };
31
32    float getValue() const { return this->value; };
33    float getMinimum() const { return this->minimum; };
34    float getMaximum() const { return this->maximum; };
35
36    virtual void update() { };
37    virtual void draw() const;
38
39  protected:
40    virtual void resize();
41
42  private:
43    void init();
44
45  private:
46    float value;
47
48    float minimum;
49    float maximum;
50  };
51}
52#endif /* _GLGUI__H */
Note: See TracBrowser for help on using the repository browser.