blob: feeada7a135fdff6c7be57332b85bae64d727d5a (
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
27
28
29
30
|
#pragma once
#ifdef WITH_VOICE
// clang-format off
#include <gtkmm/box.h>
#include <gtkmm/eventbox.h>
#include <gtkmm/image.h>
#include <gtkmm/label.h>
// clang-format on
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
|