/* * gui/help.c - Online help * * Written 2016 by Werner Almesberger * Copyright 2016 by Werner Almesberger * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. */ #include #include #include #include "gui/help.h" static GtkWidget *window = NULL; static bool visible; static void new_help_window(void) { GtkWidget *view; window = gtk_window_new(GTK_WINDOW_TOPLEVEL); view = webkit_web_view_new(); gtk_container_add(GTK_CONTAINER(window), view); gtk_widget_show_all(window); webkit_web_view_load_html(WEBKIT_WEB_VIEW(view), #include "../help.inc" , NULL); g_signal_connect(window, "destroy", G_CALLBACK(gtk_main_quit), NULL); gtk_widget_show_all(window); } void help(void) { if (!window) { new_help_window(); visible = 1; } else { visible = !visible; if (visible) gtk_widget_show(window); else gtk_widget_hide(window); } }