diff options
Diffstat (limited to 'app/include')
| -rw-r--r-- | app/include/turns/app/widgets/participant_list_row.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/include/turns/app/widgets/participant_list_row.hpp b/app/include/turns/app/widgets/participant_list_row.hpp index 8ec5979..f282992 100644 --- a/app/include/turns/app/widgets/participant_list_row.hpp +++ b/app/include/turns/app/widgets/participant_list_row.hpp @@ -17,6 +17,7 @@ namespace turns::app::widgets struct participant_list_row : template_widget<participant_list_row, Gtk::ListBoxRow> { auto constexpr inline static children = std::array{ + "delete", "edit", "subtitle", "title", @@ -29,8 +30,10 @@ namespace turns::app::widgets auto set_title(Glib::ustring const & value) -> void; private: + auto handle_delete() -> void; auto handle_toggle_defeated() -> void; + Gtk::Button * m_delete; Gtk::Button * m_edit; Gtk::Label * m_subtitle; Gtk::EditableLabel * m_title; |
