Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl_gui/glgui_checkbutton.h @ 5391

Last change on this file since 5391 was 5391, checked in by bensch, 19 years ago

orxonox/trunk: more gui-definitions

File size: 539 bytes
RevLine 
[4838]1/*!
[5366]2 * @file glgui_checkbutton.h
[5360]3 * The gl_ widget of th openglGUI
4 *
5 */
[1853]6
[5366]7#ifndef _GLGUI_CHECKBUTTON_H
[5360]8#define _GLGUI__H
[1853]9
[5366]10#include "glgui_button.h"
[1853]11
[4838]12// FORWARD DECLARATION
[3543]13
[5360]14//! This is part of the openglGUI class
15/**
16 *
17 */
[5366]18class GLGuiCheckButton : public GLGuiButton {
[3543]19
[5360]20 public:
[5366]21  GLGuiCheckButton();
22  virtual ~GLGuiCheckButton();
[2036]23
[5360]24  void init();
[1853]25
[5391]26  bool    isActive() { return this->bActive; };
27  void    setActivity(bool bActive);
28
[5360]29  virtual void draw();
[1853]30
[3245]31 private:
[5391]32   bool             bActive;
[3245]33
[1853]34};
35
[5366]36#endif /* _GLGUI_CHECKBUTTON_H */
Note: See TracBrowser for help on using the repository browser.