summaryrefslogtreecommitdiff
path: root/src/components/voiceinfobox.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/voiceinfobox.hpp')
-rw-r--r--src/components/voiceinfobox.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/components/voiceinfobox.hpp b/src/components/voiceinfobox.hpp
new file mode 100644
index 0000000..74aad27
--- /dev/null
+++ b/src/components/voiceinfobox.hpp
@@ -0,0 +1,24 @@
+#pragma once
+
+#ifdef WITH_VOICE
+
+ #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::EventBox m_status_ev;
+ Gtk::Label m_status;
+ Gtk::Label m_location;
+
+ Gtk::EventBox m_disconnect_ev;
+ Gtk::Image m_disconnect_img;
+};
+
+#endif