Added information about packages installed

This commit is contained in:
2020-05-19 20:34:51 +02:00
parent 9eb45f329a
commit 4fc3d964ce
17 changed files with 202 additions and 20 deletions

View File

@@ -1,7 +1,7 @@
#include "view_install.h"
#include <iostream>
view_install::view_install():m_button("send"),m_VBox(Gtk::ORIENTATION_VERTICAL)
view_install::view_install():m_button("build"),m_VBox(Gtk::ORIENTATION_VERTICAL)
{
set_border_width(5);
@@ -18,18 +18,8 @@ view_install::view_install():m_button("send"),m_VBox(Gtk::ORIENTATION_VERTICAL)
m_ButtonBox.set_spacing(5);
m_ButtonBox.set_layout(Gtk::BUTTONBOX_END);
// When the button receives the "clicked" signal, it will call the
// on_button_clicked() method defined below.
/*m_button.signal_clicked().connect(sigc::mem_fun(*this,
&vista::on_button_clicked));*/
m_refTextBuffer1 = Gtk::TextBuffer::create();
//m_refTextBuffer1->set_text("This is the text from TextBuffer #1.");
m_TextView.set_buffer(m_refTextBuffer1);
show_all_children();
}
/*void vista::on_button_clicked(){
std::string salida = m_refTextBuffer1->get_text();
std::cout << salida << std::endl;
}*/