| 12345678910111213141516171819202122232425262728 |
- #ifndef LIGHTS_LIST_HPP_INCLUDED
- #define LIGHTS_LIST_HPP_INCLUDED
- #include <vector>
- #include <gtkmm/box.h>
- #include <gtkmm/button.h>
- #include "light_on_list.hpp"
- namespace cx_light {
- class lights_list: public Gtk::Box {
- public:
- lights_list();
- ~lights_list() override;
- private:
- Gtk::Box *lights_container;
- Gtk::Button *create_light;
- std::vector<light_on_list *> *lights;
- void add_create_light_button();
- void add_lights_container();
- };
- }
- #endif
|