summaryrefslogtreecommitdiff
path: root/components/friendslist.hpp
diff options
context:
space:
mode:
authorouwou <26526779+ouwou@users.noreply.github.com>2021-05-10 02:13:12 -0400
committerouwou <26526779+ouwou@users.noreply.github.com>2021-05-10 02:13:12 -0400
commit06ba3acc93ed57cb41e319eb5f7da06d15b72ec2 (patch)
tree13b208f4f0372d1d670fca1e7eb4e374fa1c2971 /components/friendslist.hpp
parent81ae2b3a83e5c9e1f34714f7ba004638b3beeeb0 (diff)
downloadabaddon-portaudio-06ba3acc93ed57cb41e319eb5f7da06d15b72ec2.tar.gz
abaddon-portaudio-06ba3acc93ed57cb41e319eb5f7da06d15b72ec2.zip
friends: send friend requests
Diffstat (limited to 'components/friendslist.hpp')
-rw-r--r--components/friendslist.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/components/friendslist.hpp b/components/friendslist.hpp
index 0e5afe3..5582e26 100644
--- a/components/friendslist.hpp
+++ b/components/friendslist.hpp
@@ -7,11 +7,16 @@ public:
FriendsListAddComponent();
private:
+ void Submit();
+ bool OnKeyPress(GdkEventKey *e);
+
Gtk::Label m_label;
Gtk::Label m_status;
Gtk::Entry m_entry;
Gtk::Button m_add;
Gtk::Box m_box;
+
+ bool m_requesting = false;
};
class FriendsListFriendRow;