summaryrefslogtreecommitdiff
path: root/src/windows/mainwindow.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/mainwindow.hpp')
-rw-r--r--src/windows/mainwindow.hpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/windows/mainwindow.hpp b/src/windows/mainwindow.hpp
index 6183779..e075c10 100644
--- a/src/windows/mainwindow.hpp
+++ b/src/windows/mainwindow.hpp
@@ -3,6 +3,11 @@
#include "components/chatwindow.hpp"
#include "components/memberlist.hpp"
#include "components/friendslist.hpp"
+#include "components/voiceinfobox.hpp"
+#include <gtkmm/window.h>
+#include <gtkmm/stack.h>
+#include <gtkmm/menubar.h>
+#include <gtkmm/checkmenuitem.h>
class MainWindow : public Gtk::Window {
public:
@@ -53,6 +58,12 @@ private:
MemberList m_members;
FriendsList m_friends;
+#ifdef WITH_VOICE
+ VoiceInfoBox m_voice_info;
+#endif
+
+ Gtk::Box m_left_pane;
+
Gtk::Stack m_content_stack;
Glib::RefPtr<Gtk::AccelGroup> m_accels;