mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-19 20:11:59 +03:00
25 lines
412 B
C++
25 lines
412 B
C++
#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
|