#ifndef _DRUMROLL_WIDGETS_ #define _DRUMROLL_WIDGETS_ #include #include #include namespace net { namespace lliurex { namespace drumroll { class Button: public lgi::Widget { private: std::string text; public: Button(std::string text); void Draw(cairo_t * cairo); void SetText(std::string text); }; } } } #endif