diff options
Diffstat (limited to 'src/Legend.hpp')
-rw-r--r-- | src/Legend.hpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/Legend.hpp b/src/Legend.hpp index 6d5807b..3030756 100644 --- a/src/Legend.hpp +++ b/src/Legend.hpp @@ -32,13 +32,14 @@ class Legend : public Gtk::HBox public: explicit Legend(const Configuration& configuration); + sigc::signal<void, PortType, std::string, uint32_t> signal_color_changed; + +private: void add_button(PortType id, const std::string& label, uint32_t rgba); void on_color_set(PortType id, const std::string& label, const Gtk::ColorButton* but); - - sigc::signal<void, PortType, std::string, uint32_t> signal_color_changed; }; } // namespace patchage |