| 12345678910111213141516171819202122232425 |
- #ifndef LIGHT_ON_LIST_HPP_INCLUDED
- #define LIGHT_ON_LIST_HPP_INCLUDED
- #include <gtkmm/box.h>
- #include <string>
- namespace cx_light {
- class light_on_list: public Gtk::Box {
- public:
- light_on_list(std::string, bool);
- ~light_on_list() override;
-
- static
- static int width();
- static int height();
- private:
- bool state;
- std::string name;
- };
- }
- #endif
|