2020-05-08 12:42:02 +02:00
|
|
|
#ifndef VISTA_H
|
|
|
|
#define VISTA_H
|
|
|
|
#include <gtkmm/button.h>
|
|
|
|
#include <gtkmm/textview.h>
|
|
|
|
#include <gtkmm/buttonbox.h>
|
|
|
|
#include <gtkmm/scrolledwindow.h>
|
|
|
|
#include <gtkmm/box.h>
|
|
|
|
|
2020-05-16 20:52:10 +02:00
|
|
|
class view_install : public Gtk::Box
|
2020-05-08 12:42:02 +02:00
|
|
|
{
|
|
|
|
public:
|
2020-05-16 20:52:10 +02:00
|
|
|
view_install();
|
2020-05-08 12:42:02 +02:00
|
|
|
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
|