summaryrefslogtreecommitdiff
path: root/src/components/voiceinfobox.hpp
blob: 9988c634b103b63bad003ae163d83bfe72fdfd0d (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
25
26
#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:
    void UpdateLocation();

    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