fix client install comunication

This commit is contained in:
2020-05-16 20:52:10 +02:00
parent 7691c80fb4
commit 9eb45f329a
14 changed files with 82 additions and 66 deletions

22
view_install.h Normal file
View File

@@ -0,0 +1,22 @@
#ifndef VISTA_H
#define VISTA_H
#include <gtkmm/button.h>
#include <gtkmm/window.h>
#include <gtkmm/textview.h>
#include <gtkmm/buttonbox.h>
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/box.h>
class view_install : public Gtk::Box
{
public:
view_install();
Gtk::Button m_button;
Gtk::Box m_VBox;
Gtk::ScrolledWindow m_ScrolledWindow;
Gtk::TextView m_TextView;
Gtk::ButtonBox m_ButtonBox;
Glib::RefPtr<Gtk::TextBuffer> m_refTextBuffer1;
};
#endif // VISTA_H