summaryrefslogtreecommitdiff
path: root/components/friendslist.hpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2021-05-07 02:32:30 -0400
committerouwou <26526779+ouwou@users.noreply.github.com>2021-05-07 02:32:30 -0400
commitd679b1af76a2e7afe8b28317268f95a1d8cdb5e2 (patch)
tree01c7e8d7693bfded9ea5fec8f9d99e2a47180f52 /components/friendslist.hpp
parente2736e5806f9bd5814d5dc57ff3a422a37ee59d8 (diff)
downloadabaddon-portaudio-d679b1af76a2e7afe8b28317268f95a1d8cdb5e2.tar.gz
abaddon-portaudio-d679b1af76a2e7afe8b28317268f95a1d8cdb5e2.zip
friends: accept menu item for incoming
Diffstat (limited to 'components/friendslist.hpp')
-rw-r--r--components/friendslist.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/components/friendslist.hpp b/components/friendslist.hpp
index 8d05c1e..445f293 100644
--- a/components/friendslist.hpp
+++ b/components/friendslist.hpp
@@ -49,12 +49,16 @@ public:
private:
Gtk::Menu m_menu;
Gtk::MenuItem m_remove; // or cancel or ignore
+ Gtk::MenuItem m_accept; // incoming
using type_signal_remove = sigc::signal<void>;
+ using type_signal_accept = sigc::signal<void>;
type_signal_remove m_signal_remove;
+ type_signal_accept m_signal_accept;
public:
type_signal_remove signal_action_remove();
+ type_signal_accept signal_action_accept();
};
class FriendsListWindow : public Gtk::Window {