diff options
author | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-01-03 22:52:41 -0500 |
---|---|---|
committer | ouwou <26526779+ouwou@users.noreply.github.com> | 2023-01-03 22:52:41 -0500 |
commit | c4590f8b2382fb23a733d2cf2f6c645f02e2fc48 (patch) | |
tree | 8ef8b8b8245dff9e37b5a32e75b1f1b5bdfaf0c2 /src/components/voiceinfobox.hpp | |
parent | dff93e103adf03b25e85ab753693479878c4efbf (diff) | |
download | abaddon-portaudio-c4590f8b2382fb23a733d2cf2f6c645f02e2fc48.tar.gz abaddon-portaudio-c4590f8b2382fb23a733d2cf2f6c645f02e2fc48.zip |
start voice info box
Diffstat (limited to 'src/components/voiceinfobox.hpp')
-rw-r--r-- | src/components/voiceinfobox.hpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/components/voiceinfobox.hpp b/src/components/voiceinfobox.hpp new file mode 100644 index 0000000..e0bc4e8 --- /dev/null +++ b/src/components/voiceinfobox.hpp @@ -0,0 +1,19 @@ +#pragma once + +#include <gtkmm/box.h> +#include <gtkmm/eventbox.h> +#include <gtkmm/image.h> +#include <gtkmm/label.h> + +class VoiceInfoBox : public Gtk::Box { +public: + VoiceInfoBox(); + +private: + Gtk::Box m_left; + Gtk::Label m_status; + Gtk::Label m_location; + + Gtk::EventBox m_disconnect_ev; + Gtk::Image m_disconnect_img; +}; |