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

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