Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/gui/src/lib/gui/gl_gui/glgui_pushbutton.h @ 7929

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

gui: click with positional information

File size: 752 bytes
RevLine 
[4838]1/*!
[5364]2 * @file glgui_pushbutton.h
3 * The gl_pushbutton widget of th openglGUI
[5360]4 *
5 */
[1853]6
[5364]7#ifndef _GLGUI_PUSHBUTTON_H
8#define _GLGUI_PUSHBUTTON_H
[1853]9
[5364]10#include "glgui_button.h"
[1853]11
[7779]12namespace OrxGui
13{
[3543]14
[7779]15  // FORWARD DECLARATION
[3543]16
[7779]17  //! This is part of the openglGUI class
18  /**
19   *
20   */
21  class GLGuiPushButton : public GLGuiButton
22  {
[2036]23
[7779]24  public:
[7919]25    GLGuiPushButton(const std::string& label = "");
[7779]26    virtual ~GLGuiPushButton();
[1853]27
[3245]28
[7919]29    virtual void receivedFocus();
30    virtual void removedFocus();
[7929]31    virtual void clicked(const Vector2D& pos);
32    virtual void released(const Vector2D& pos);
[7919]33
34
[7779]35    virtual void draw() const;
36    virtual void update();
[7925]37  protected:
38    virtual void resize();
39
40
[7779]41  private:
[7919]42    void init();
[1853]43
[7779]44  };
45}
[5364]46#endif /* _GLGUI_PUSHBUTTON_H */
Note: See TracBrowser for help on using the repository browser.