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