diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-05-10 02:13:12 -0400 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2021-05-10 02:13:12 -0400 |
commit | 06ba3acc93ed57cb41e319eb5f7da06d15b72ec2 (patch) | |
tree | 13b208f4f0372d1d670fca1e7eb4e374fa1c2971 /components/friendslist.hpp | |
parent | 81ae2b3a83e5c9e1f34714f7ba004638b3beeeb0 (diff) | |
download | abaddon-portaudio-06ba3acc93ed57cb41e319eb5f7da06d15b72ec2.tar.gz abaddon-portaudio-06ba3acc93ed57cb41e319eb5f7da06d15b72ec2.zip |
friends: send friend requests
Diffstat (limited to 'components/friendslist.hpp')
-rw-r--r-- | components/friendslist.hpp | 5 |
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; |