summaryrefslogtreecommitdiff
path: root/src/components/voiceinfobox.hpp
blob: 74aad272fb7c0d875beba8830aa15d23a9c75dee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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