ClienteTFG/view_install.h

24 lines
432 B
C
Raw Normal View History

2020-05-08 12:42:02 +02:00
#ifndef VISTA_H
#define VISTA_H
#include <gtkmm/button.h>
2020-05-26 18:09:22 +02:00
#include <gtkmm/entry.h>
2020-05-08 12:42:02 +02:00
#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-06-01 23:24:24 +02:00
/**
* @brief view_install
* View to send name package to compile it
*/
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;
2020-05-26 18:09:22 +02:00
Gtk::Entry entry;
2020-05-08 12:42:02 +02:00
Gtk::ButtonBox m_ButtonBox;
};
#endif // VISTA_H