buttons.cpp 270 B

1234567891011121314151617
  1. #include <gtkmm.h>
  2. #include <iostream>
  3. #include "strings.hpp"
  4. #include "buttons.hpp"
  5. namespace cx_light {
  6. add_light_button::add_light_button() {
  7. this->set_label(__(ADD_LIGHT));
  8. }
  9. void add_light_button::on_clicked() {
  10. std::cout << "Add light clicked\n";
  11. }
  12. }