#ifndef _LGI_TOOLKIT_PANDORA_ #define _LGI_TOOLKIT_PANDORA_ #include "lgi-1.0/widget.hpp" #include namespace net { namespace lliurex { namespace lgi { namespace toolkit { namespace pandora { class Button : public Widget { public: std::string text; Button(const char * text,float x,float y); void Draw(cairo_t * cairo); }; class CheckBox : public Widget { public: bool state; CheckBox(bool state,float x,float y); void Draw(cairo_t * cairo); }; class Label : public Widget { public: std::string text; Label(const char * text,float x,float y); void Draw(cairo_t * cairo); }; } } } } } #endif