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

@@ -6,11 +6,15 @@ container_window::container_window(conexion *con, Glib::RefPtr< Gtk::Application
this->app=app;
this->app->run(loggin);
if(this->loggin.login){
this->cont=new controller_install(&install, sesion.get());
this->cont_inst=new controller_install(&install, sesion.get());
this->cont_rem=new controller_remove(&remove, sesion.get());
this->cont_info=new controller_info(&info, sesion.get());
this->app.reset();
this->app=Gtk::Application::create( "org.gtkmm.examples.base");
this->add(this->book);
this->book.add(install);
this->book.append_page(install,"build");
this->book.append_page(remove,"remove");
this->book.append_page(this->info,"info");
this->show_all_children();
this->app->run(*this);
}