Exemplo n.º 1
0
void jobManWindow::on_menu_help_about() {
	Gtk::AboutDialog aboutDialog;
	std::vector<Glib::ustring> authors;
	authors.push_back("Ivan Arandjelovic <*****@*****.**>");
	aboutDialog.set_authors(authors);
	aboutDialog.set_comments("Upstart Job Manager (wanabee)");
	aboutDialog.set_version(JOBMAN_VERSION);
	aboutDialog.run();
	aboutDialog.hide();
}
Exemplo n.º 2
0
void VRGuiBits::hideAbout(int i) {
    Gtk::AboutDialog* diag;
    VRGuiBuilder()->get_widget("aboutdialog1", diag);
    diag->hide();
}