summaryrefslogtreecommitdiff
path: root/src/components/voiceinfobox.hpp
blob: 0117c0df5c23b5785cd4a339da1646a70b45f904 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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::EventBox m_status_ev;
    Gtk::Label m_status;
    Gtk::Label m_location;

    Gtk::EventBox m_disconnect_ev;
    Gtk::Image m_disconnect_img;
};