| 1234567891011121314151617 |
- #include <gtkmm.h>
- #include <iostream>
- #include "strings.hpp"
- #include "buttons.hpp"
- namespace cx_light {
- add_light_button::add_light_button() {
- this->set_label(__(ADD_LIGHT));
- }
- void add_light_button::on_clicked() {
- std::cout << "Add light clicked\n";
- }
- }
|