Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/trunk/src/lib/gui/gl_gui/glgui_checkbutton.cc @ 6287

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

orxonox/trunk: some gui-work

File size: 902 bytes
RevLine 
[4744]1/*
[1853]2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   any later version.
[1855]10
11   ### File Specific:
[5360]12   main-programmer: Benjamin Grauer
[1855]13   co-programmer: ...
[1853]14*/
15
[5360]16#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_GUI
[1853]17
[5366]18#include "glgui_checkbutton.h"
[1853]19
[5395]20#include "text.h"
21
[1856]22using namespace std;
[1853]23
[3245]24/**
[4838]25 * standard constructor
[3245]26*/
[5366]27GLGuiCheckButton::GLGuiCheckButton ()
[3365]28{
[5360]29  this->init();
[4320]30
[3365]31}
[1853]32
33
[3245]34/**
[4838]35 * standard deconstructor
[3245]36*/
[5366]37GLGuiCheckButton::~GLGuiCheckButton()
[3543]38{
[5360]39
[3543]40}
[5360]41
42/**
43 * initializes the GUI-element
44 */
[5366]45GLGuiCheckButton::init()
[5360]46{
[5366]47  this->setClassID(CL_GLGUI_CHECKBUTTON, "GLGuiCheckButton");
[5360]48
49}
50
51/**
[5366]52 * draws the GLGuiCheckButton
[5360]53 */
[6287]54void GLGuiCheckButton::draw() const
[5360]55{
56
57}
Note: See TracBrowser for help on using the repository browser.