| 123456789101112131415161718192021222324252627282930313233 |
- #ifndef LIGHT_ON_LIST_HPP_INCLUDED
- #define LIGHT_ON_LIST_HPP_INCLUDED
- #include <gtkmm/box.h>
- #include <gtkmm/label.h>
- #include <gtkmm/frame.h>
- #include <gtkmm/button.h>
- #include <gtkmm/orientable.h>
- #include <string>
- #include "light.hpp"
- namespace cx_light {
- class light_on_list: public Gtk::Frame {
- public:
- light_on_list(light);
- ~light_on_list() override;
-
- static int width();
- static int height();
- private:
- light *target;
- Gtk::Box *center;
- Gtk::Label *title;
- Gtk::Button *show;
- Gtk::Button *edit;
- };
- }
- #endif
|