add user list

This commit is contained in:
2020-05-20 00:09:18 +02:00
parent 4fc3d964ce
commit 021139d669
12 changed files with 115 additions and 15 deletions

View File

@@ -9,12 +9,14 @@ container_window::container_window(conexion *con, Glib::RefPtr< Gtk::Application
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->con_uinfo=new controller_user_info(&uinfo, sesion.get());
this->app.reset();
this->app=Gtk::Application::create( "org.gtkmm.examples.base");
this->add(this->book);
this->book.append_page(install,"build");
this->book.append_page(remove,"remove");
this->book.append_page(this->info,"info");
this->book.append_page(this->uinfo,"users");
this->show_all_children();
this->app->run(*this);
}