24 lines
432 B
C++
24 lines
432 B
C++
#ifndef VISTA_H
|
|
#define VISTA_H
|
|
#include <gtkmm/button.h>
|
|
#include <gtkmm/entry.h>
|
|
#include <gtkmm/buttonbox.h>
|
|
#include <gtkmm/scrolledwindow.h>
|
|
#include <gtkmm/box.h>
|
|
|
|
class view_install : public Gtk::Box
|
|
{
|
|
public:
|
|
/**
|
|
* @brief view_install
|
|
* View to send name package to compile it
|
|
*/
|
|
view_install();
|
|
Gtk::Button m_button;
|
|
Gtk::Box m_VBox;
|
|
Gtk::Entry entry;
|
|
Gtk::ButtonBox m_ButtonBox;
|
|
};
|
|
|
|
#endif // VISTA_H
|