1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911
|
/*
* $Id: help.c 24485 2021-11-07 21:02:59Z yeti-dn $
* Copyright (C) 2014-2021 David Necas (Yeti).
* E-mail: yeti@gwyddion.net.
*
* 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.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License along with this program; if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include "config.h"
#include <string.h>
#include <gio/gio.h>
#include <gdk/gdkkeysyms.h>
#include <libgwyddion/gwyddion.h>
#include <libgwymodule/gwymodule.h>
#include <libgwydgets/gwydgets.h>
#include <app/gwymoduleutils.h>
#include <app/gwyapp.h>
#ifdef G_OS_WIN32
#include <windows.h>
#include <shellapi.h>
#endif
#define UG_ONLINE_BASE "http://gwyddion.net/documentation/user-guide-"
typedef struct {
const gchar *fulluri; /* Use for external mapping. */
const gchar *filename;
const gchar *fragment;
} HelpURI;
/* The function is expected to just return TRUE if @uri is NULL but the backend seems to be available. */
typedef gboolean (*ShowUriFunc)(const gchar *uri, gboolean complain);
static gboolean show_uri_win32 (const gchar *uri, gboolean complain);
static gboolean show_uri_gtk (const gchar *uri, gboolean complain);
static gboolean show_uri_open (const gchar *uri, gboolean complain);
static gboolean show_uri_browsers(const gchar *uri, gboolean complain);
/* The platform-specific ones go first. */
static const ShowUriFunc backends[] = {
&show_uri_win32,
&show_uri_open,
&show_uri_gtk,
&show_uri_browsers,
};
static gboolean
show_uri_win32(G_GNUC_UNUSED const gchar *uri, gboolean complain)
{
#ifdef G_OS_WIN32
static gboolean initialised_com = FALSE;
INT_PTR status;
gboolean ok;
if (!uri)
return TRUE;
if (G_UNLIKELY(!initialised_com)) {
initialised_com = TRUE;
/* Not actually sure what it does but MSDN says it is good for us. */
CoInitializeEx(NULL, COINIT_APARTMENTTHREADED | COINIT_DISABLE_OLE1DDE);
}
/* XXX: The first arg is handle to the window. May want to pass it. Apparenly gdk_win32_window_get_impl_hwnd()
* can provide it but this is a late addition to Gdk, must check availability properly. */
status = (INT_PTR)ShellExecute(NULL, NULL, uri, NULL, NULL, SW_SHOWNORMAL);
ok = status > 32; /* Otherwise it's the error code. */
if (!ok && complain)
g_warning("Help ShellExecute() for URI `%s' failed with code %d.", uri, (gint)status);
return ok;
#else
if (complain)
g_warning("Help backend win32 is not available (not on MS Windows).");
return FALSE;
#endif
}
/* The Gtk+ show-uri thing seems to have an unfortunate side-effect of
* switching to the busy mouse cursor for a while. Thus it lost the chance to
* become our preferred mechanism. */
static gboolean
show_uri_gtk(G_GNUC_UNUSED const gchar *uri, gboolean complain)
{
GError *error = NULL;
gboolean ok;
/* This may not be the whole story because GVfs may not support our URI scheme. But leave this to the diagnosis
* when things fail to work. */
if (!uri)
return TRUE;
ok = gtk_show_uri(NULL, uri, GDK_CURRENT_TIME, &error);
if (!ok) {
if (complain)
g_warning("Help gtk_show_uri() for URI `%s' failed with: %s", uri, error->message);
g_clear_error(&error);
}
return ok;
}
G_GNUC_UNUSED
static gboolean
show_uri_spawn_program(G_GNUC_UNUSED const gchar *uri,
const gchar **programs, guint nprograms,
gboolean complain)
{
gchar **args;
gchar *fullpath = NULL;
gboolean ok;
guint i;
for (i = 0; i < nprograms; i++) {
if ((fullpath = g_find_program_in_path(programs[i])))
break;
if (complain)
g_warning("Cannot find program %s in PATH.", programs[i]);
}
if (!fullpath)
return FALSE;
if (!uri) {
g_free(fullpath);
return TRUE;
}
args = g_new(gchar*, 3);
args[0] = fullpath;
args[1] = g_strdup(uri);
args[2] = NULL;
ok = g_spawn_async(NULL, args, NULL, 0, NULL, NULL, NULL, NULL);
g_strfreev(args);
return ok;
}
static gboolean
show_uri_open(G_GNUC_UNUSED const gchar *uri,
G_GNUC_UNUSED gboolean complain)
{
#ifndef G_OS_WIN32
static const gchar *programs[] = {
/* OS X has this little program called "open". Sure, other systems have it too but it does something
* completely different. So only use "open" on OS X. */
#ifdef __APPLE__
"open",
#endif
"xdg-open", "sensible-browser", "x-www-browser",
/* Do not run things like gnome-open, kde-open, exo-open, etc. Who knows if they belong to the active desktop
* environment. Normally, people having these will also have xdg-open nowadays. */
};
return show_uri_spawn_program(uri, programs, G_N_ELEMENTS(programs), complain);
#else
return FALSE;
#endif
}
static gboolean
show_uri_browsers(G_GNUC_UNUSED const gchar *uri,
G_GNUC_UNUSED gboolean complain)
{
#ifndef G_OS_WIN32
static const gchar *programs[] = {
/* Not worth trying platform browsers (safari, iexplore) probably as we would get them using the platform
* open-mechanism. */
"firefox", "seamonkey", "mozilla",
"google-chrome", "chromium-browser",
"palemoon", "waterfox", "basilisk",
"konqueror",
"midori", "epiphany",
"opera",
};
return show_uri_spawn_program(uri, programs, G_N_ELEMENTS(programs), complain);
#else
return FALSE;
#endif
}
static gboolean
any_backend_available(void)
{
static gboolean available = FALSE;
static gboolean tested = FALSE;
guint i;
if (G_LIKELY(tested))
return available;
for (i = 0; i < G_N_ELEMENTS(backends); i++) {
if (backends[i](NULL, FALSE)) {
available = TRUE;
break;
}
}
tested = TRUE;
return available;
}
static gboolean
show_help_uri(GtkWindow *parent, const gchar *uri)
{
GtkWidget *dialog;
guint i;
/* Try to display the help. */
for (i = 0; i < G_N_ELEMENTS(backends); i++) {
if (backends[i](uri, FALSE))
return TRUE;
}
/* If don't succeed, try again but dump all errors to the log. If we,
* for whatever reason, succeed now we pretend nothing happened. */
for (i = 0; i < G_N_ELEMENTS(backends); i++) {
if (backends[i](uri, TRUE))
return TRUE;
}
dialog = gtk_message_dialog_new(parent, GTK_DIALOG_MODAL | GTK_DIALOG_DESTROY_WITH_PARENT,
GTK_MESSAGE_ERROR, GTK_BUTTONS_CLOSE,
_("Cannot display the help."));
gtk_message_dialog_format_secondary_text(GTK_MESSAGE_DIALOG(dialog),
/* TRANSLATORS: %s will be replaced with an URL. */
_("No working method to show\n"
"%s\n"
"in a web browser was found. Details about the attempts "
"can be found in the console or gwyddion.log."),
uri);
gtk_dialog_run(GTK_DIALOG(dialog));
gtk_widget_destroy(dialog);
return FALSE;
}
static void
add_module_functions(gpointer hkey,
G_GNUC_UNUSED gpointer hvalue,
gpointer user_data)
{
GHashTable *cache = (GHashTable*)user_data;
const gchar *modname = (const gchar*)hkey;
GSList *modfunc;
modfunc = gwy_module_get_functions(modname);
while (modfunc) {
g_hash_table_insert(cache, modfunc->data, (gpointer)modname);
modfunc = g_slist_next(modfunc);
}
}
static GHashTable*
build_function_module_map(void)
{
GHashTable *cache = g_hash_table_new(g_str_hash, g_str_equal);
gwy_module_foreach(&add_module_functions, cache);
return cache;
}
static GHashTable*
build_user_guide_map(void)
{
GHashTable *cache = g_hash_table_new(g_str_hash, g_str_equal);
gchar *p, *q, *text, *line;
q = gwy_find_self_dir("data");
p = g_build_filename(q, "user-guide-modules", NULL);
g_free(q);
if (g_file_get_contents(p, &text, NULL, NULL)) {
q = text;
while ((line = gwy_str_next_line(&q))) {
HelpURI *helpuri;
gchar **fields;
g_strstrip(line);
if (!*line || line[0] == '#')
continue;
fields = g_strsplit(line, "\t", 0);
if (g_strv_length(fields) == 2 || g_strv_length(fields) == 3) {
helpuri = g_slice_new(HelpURI);
helpuri->fulluri = NULL;
helpuri->filename = fields[1];
helpuri->fragment = fields[2]; /* May be NULL which is OK. */
g_hash_table_insert(cache, fields[0], helpuri);
g_free(fields);
}
else {
g_warning("Malformed user-guide-modules line: %s", line);
g_strfreev(fields);
}
}
}
g_free(p);
g_free(text);
return cache;
}
static const HelpURI*
get_uri_path_for_module(const gchar *modname)
{
static GHashTable *userguidemap = NULL;
if (G_UNLIKELY(!userguidemap))
userguidemap = build_user_guide_map();
if (!modname) {
if (g_hash_table_size(userguidemap))
return GUINT_TO_POINTER(TRUE);
return NULL;
}
return g_hash_table_lookup(userguidemap, (gpointer)modname);
}
static gchar*
get_user_guide_online_base(void)
{
/* We know we have these guides available. */
static const gchar *user_guides[] = { "en", "fr", "ru" };
/* TRANSLATORS: For user guide location. Translate this to fr, ru, cs, de, ... even if the corresponding guide
* does not exist. */
const gchar *lang = gwy_sgettext("current-language-code|en");
guint i;
for (i = 0; i < G_N_ELEMENTS(user_guides); i++) {
if (gwy_strequal(user_guides[i], lang))
break;
}
lang = user_guides[(i == G_N_ELEMENTS(user_guides)) ? 0 : i];
return g_strconcat(UG_ONLINE_BASE, lang, NULL);
}
#ifdef G_OS_WIN32
static inline gboolean
starts_with_drive_letter(const gchar *path)
{
return g_ascii_isalpha(path[0]) && path[1] == ':';
}
#endif
/* If an URI points to a local file, check if it exists. Otherwise just assume it exists. */
static gboolean
check_local_file_uri(const gchar *uri)
{
guint i, j, len, nslashes = 0;
gchar *s = NULL, *decoded = NULL;
const gchar *p;
gboolean retval;
/* Trim fragment. */
if ((p = strrchr(uri, '#'))) {
s = g_strndup(uri, p-uri);
uri = s;
}
if (strncmp(uri, "file:/", 6) == 0) {
for (nslashes = 1; uri[5 + nslashes] == '/'; nslashes++)
;
}
if (!nslashes) {
/* Plain local path. */
if (uri[0] == '/')
goto finish;
#ifdef G_OS_WIN32
if (uri[0] == '\\' || starts_with_drive_letter(uri))
goto finish;
#endif
/* Is not file: and is not a local path. Assume non-local, and so we
* cannot check it. */
gwy_debug("non-local %s, assuming OK", uri);
g_free(s);
return TRUE;
}
uri += 5;
#ifdef G_OS_WIN32
if ((nslashes == 1 || nslashes == 3)
&& starts_with_drive_letter(uri + nslashes))
uri += nslashes;
else
uri += nslashes-2;
#else
uri += nslashes-1;
#endif
if (!strchr(uri, '%'))
goto finish;
len = strlen(uri);
decoded = g_new(gchar, len+1);
for (i = j = 0; i < len; i++) {
if (uri[i] == '%' && g_ascii_isdigit(uri[i+1]) && g_ascii_isdigit(uri[i+2])) {
decoded[j++] = (16*g_ascii_xdigit_value(uri[i+1]) + g_ascii_xdigit_value(uri[i+2]));
i += 2;
}
else
decoded[j++] = uri[i];
}
decoded[j] = '\0';
uri = decoded;
finish:
retval = g_file_test(uri, G_FILE_TEST_IS_REGULAR);
gwy_debug("checking %s: %d", uri, retval);
g_free(s);
g_free(decoded);
return retval;
}
static gchar*
get_user_guide_settings_base(void)
{
GwyContainer *settings = gwy_app_settings_get();
const guchar *settingsugbase = NULL;
guint len;
gchar *base;
if (!gwy_container_gis_string_by_name(settings, "/app/help/user-guide-base", &settingsugbase))
return NULL;
base = g_strdup(settingsugbase);
len = strlen(base);
while (len && base[len-1] == '/')
len--;
base[len] = '\0';
return base;
}
static const gchar*
get_user_guide_base(void)
{
gchar *base = NULL;
if (G_UNLIKELY(!base)) {
if (!(base = get_user_guide_settings_base()))
base = get_user_guide_online_base();
}
return base;
}
static gchar*
build_uri_for_function(const gchar *type, const gchar *funcname)
{
static GHashTable *userguidemap = NULL;
const HelpURI *helpuri;
const gchar *modname;
gchar *qname, *uri;
if (G_UNLIKELY(!userguidemap))
userguidemap = build_function_module_map();
qname = g_strconcat(type, "::", funcname, NULL);
/* Try to look up the qualified function name directly first. This is used to match functions which are provided
* by one module but have separate documentations. In most cases the module just has an entry as a whole so we
* try to look up the module next. */
if (!(helpuri = get_uri_path_for_module(qname))) {
modname = g_hash_table_lookup(userguidemap, qname);
g_free(qname);
g_return_val_if_fail(modname, NULL);
helpuri = get_uri_path_for_module(modname);
}
if (!helpuri)
return NULL;
if (helpuri->fulluri)
return g_strdup(helpuri->fulluri);
uri = g_strconcat(get_user_guide_base(), "/",
helpuri->filename, ".html",
helpuri->fragment ? "#" : NULL, helpuri->fragment, NULL);
return uri;
}
static void
dialog_response(GtkDialog *dialog,
gint response_id,
gpointer user_data)
{
static guint signal_id = 0;
const gchar *uri = (const gchar*)user_data;
if (response_id != GTK_RESPONSE_HELP)
return;
if (G_UNLIKELY(!signal_id))
signal_id = g_signal_lookup("response", GTK_TYPE_DIALOG);
g_signal_stop_emission(dialog, signal_id, 0);
g_return_if_fail(uri);
show_help_uri(GTK_WINDOW(dialog), uri);
}
static gboolean
key_press_event(GtkWidget *widget,
GdkEventKey *event,
gpointer user_data)
{
const gchar *uri = (const gchar*)user_data;
if ((event->keyval != GDK_Help && event->keyval != GDK_F1)
|| (event->state & (GDK_SHIFT_MASK | GDK_CONTROL_MASK | GDK_MOD1_MASK)))
return FALSE;
show_help_uri(GTK_WINDOW(widget), uri);
return TRUE;
}
static void
add_help_to_window(GtkWindow *window,
gchar *uri,
GwyHelpFlags flags)
{
if (!any_backend_available())
return;
if (!check_local_file_uri(uri)) {
g_free(uri);
return;
}
if (g_object_get_data(G_OBJECT(window), "gwy-help-uri")) {
g_warning("Window %p already has help URI: %s",
window, (gchar*)g_object_get_data(G_OBJECT(window), "gwy-help-uri"));
g_free(uri);
return;
}
g_object_set_data(G_OBJECT(window), "gwy-help-uri", uri);
if (!(flags & GWY_HELP_NO_BUTTON) && GTK_IS_DIALOG(window)) {
gtk_dialog_add_button(GTK_DIALOG(window), GTK_STOCK_HELP, GTK_RESPONSE_HELP);
g_signal_connect(window, "response", G_CALLBACK(dialog_response), uri);
}
g_signal_connect(window, "key-press-event", G_CALLBACK(key_press_event), uri);
g_object_weak_ref(G_OBJECT(window), (GWeakNotify)g_free, uri);
}
/**
* gwy_help_add_to_proc_dialog:
* @dialog: Main dialog for a data processing function.
* @flags: Flags allowing to modify the help setup.
*
* Adds help to a data processing function dialog.
*
* Note the help button will not be added if no help URI is found for the currently running function or help is not
* available.
*
* Since: 2.38
**/
void
gwy_help_add_to_proc_dialog(GtkDialog *dialog, GwyHelpFlags flags)
{
const gchar *funcname;
gchar *uri;
g_return_if_fail(GTK_IS_DIALOG(dialog));
funcname = gwy_process_func_current();
g_return_if_fail(funcname);
if (!(uri = build_uri_for_function("proc", funcname)))
return;
add_help_to_window(GTK_WINDOW(dialog), uri, flags);
}
/**
* gwy_help_add_to_graph_dialog:
* @dialog: Main dialog for a graph function.
* @flags: Flags allowing to modify the help setup.
*
* Adds help to a graph function dialog.
*
* Note the help button will not be added if no help URI is found for the currently running function or help is not
* available.
*
* Since: 2.38
**/
void
gwy_help_add_to_graph_dialog(GtkDialog *dialog, GwyHelpFlags flags)
{
const gchar *funcname;
gchar *uri;
g_return_if_fail(GTK_IS_DIALOG(dialog));
funcname = gwy_graph_func_current();
g_return_if_fail(funcname);
if (!(uri = build_uri_for_function("graph", funcname)))
return;
add_help_to_window(GTK_WINDOW(dialog), uri, flags);
}
/**
* gwy_help_add_to_volume_dialog:
* @dialog: Main dialog for a volume data processing function.
* @flags: Flags allowing to modify the help setup.
*
* Adds help to a volume data processing function dialog.
*
* Note the help button will not be added if no help URI is found for the currently running function or help is not
* available.
*
* Since: 2.38
**/
void
gwy_help_add_to_volume_dialog(GtkDialog *dialog, GwyHelpFlags flags)
{
const gchar *funcname;
gchar *uri;
g_return_if_fail(GTK_IS_DIALOG(dialog));
funcname = gwy_volume_func_current();
g_return_if_fail(funcname);
if (!(uri = build_uri_for_function("volume", funcname)))
return;
add_help_to_window(GTK_WINDOW(dialog), uri, flags);
}
/**
* gwy_help_add_to_xyz_dialog:
* @dialog: Main dialog for a XYZ data processing function.
* @flags: Flags allowing to modify the help setup.
*
* Adds help to a XYZ data processing function dialog.
*
* Note the help button will not be added if no help URI is found for the currently running function or help is not
* available.
*
* Since: 2.45
**/
void
gwy_help_add_to_xyz_dialog(GtkDialog *dialog, GwyHelpFlags flags)
{
const gchar *funcname;
gchar *uri;
g_return_if_fail(GTK_IS_DIALOG(dialog));
funcname = gwy_xyz_func_current();
g_return_if_fail(funcname);
if (!(uri = build_uri_for_function("xyz", funcname)))
return;
add_help_to_window(GTK_WINDOW(dialog), uri, flags);
}
/**
* gwy_help_add_to_cmap_dialog:
* @dialog: Main dialog for a curve map data processing function.
* @flags: Flags allowing to modify the help setup.
*
* Adds help to a curve map data processing function dialog.
*
* Note the help button will not be added if no help URI is found for the currently running function or help is not
* available.
*
* Since: 2.60
**/
void
gwy_help_add_to_cmap_dialog(GtkDialog *dialog, GwyHelpFlags flags)
{
const gchar *funcname;
gchar *uri;
g_return_if_fail(GTK_IS_DIALOG(dialog));
funcname = gwy_curve_map_func_current();
g_return_if_fail(funcname);
if (!(uri = build_uri_for_function("cmap", funcname)))
return;
add_help_to_window(GTK_WINDOW(dialog), uri, flags);
}
/**
* gwy_help_add_to_file_dialog:
* @dialog: Main dialog for a file function.
* @flags: Flags allowing to modify the help setup.
*
* Adds help to a file function dialog.
*
* Note the help button will not be added if no help URI is found for the currently running function or help is not
* available.
*
* Since: 2.38
**/
void
gwy_help_add_to_file_dialog(GtkDialog *dialog, GwyHelpFlags flags)
{
const gchar *funcname;
gchar *uri;
g_return_if_fail(GTK_IS_DIALOG(dialog));
funcname = gwy_file_func_current();
g_return_if_fail(funcname);
if (!(uri = build_uri_for_function("file", funcname)))
return;
add_help_to_window(GTK_WINDOW(dialog), uri, flags);
}
/**
* gwy_help_add_to_tool_dialog:
* @dialog: Main dialog for a tool function.
* @tool: The tool.
* @flags: Flags allowing to modify the help setup.
*
* Adds help to a tool dialog.
*
* Note the help button will not be added if no help URI is found for the currently running function or help is not
* available.
*
* Since: 2.38
**/
void
gwy_help_add_to_tool_dialog(GtkDialog *dialog,
GwyTool *tool,
GwyHelpFlags flags)
{
const gchar *funcname;
gchar *uri;
g_return_if_fail(GTK_IS_DIALOG(dialog));
g_return_if_fail(GWY_IS_TOOL(tool));
funcname = G_OBJECT_TYPE_NAME(tool);
g_return_if_fail(funcname);
if (!(uri = build_uri_for_function("tool", funcname)))
return;
add_help_to_window(GTK_WINDOW(dialog), uri, flags);
}
/**
* gwy_help_add_to_window:
* @window: A window.
* @filename: Base file name in the user guide without any path or extensions, for instance "statistical-analysis".
* @fragment: Fragment identifier (without "#"), or possibly %NULL.
* @flags: Flags allowing to modify the help setup.
*
* Adds help to a window pointing to the user guide.
*
* If the window is a #GtkDialog a help button will be added by default (this can be modified with @flags). Normal
* windows do not get help buttons. No help may be added if help is not available.
*
* This is a relatively low-level function and should not be necessary in modules. An exception may be modules with
* multiple user interfaces described in different parts of the guide – but this should be rare.
*
* It is a suitable functions for adding help to base application windows, such as channel or volume windows.
*
* Since: 2.38
**/
void
gwy_help_add_to_window(GtkWindow *window,
const gchar *filename,
const gchar *fragment,
GwyHelpFlags flags)
{
gchar *uri;
g_return_if_fail(GTK_IS_WINDOW(window));
g_return_if_fail(filename);
uri = g_strconcat(get_user_guide_base(), "/",
filename, ".html",
fragment ? "#" : NULL, fragment, NULL);
add_help_to_window(window, uri, flags);
}
/**
* gwy_help_add_to_window_uri:
* @window: A window.
* @uri: Full URI pointing to the help for @window.
* @flags: Flags allowing to modify the help setup.
*
* Adds help to a window pointing to an arbitrary URI.
*
* If the window is a #GtkDialog a help button will be added by default (this can be modified with @flags). Normal
* windows do not get help buttons. No help may be added if help is not available.
*
* This function should not be necessary anywhere within Gwyddion itself. Use the functions pointing to the user guide
* instead as they can handle language versions or changing the user guide base location.
*
* It may be useful for third-party modules if they wish to add a help facility behaving similarly to built-in
* modules.
*
* Since: 2.38
**/
void
gwy_help_add_to_window_uri(GtkWindow *window,
const gchar *uri,
GwyHelpFlags flags)
{
g_return_if_fail(GTK_IS_WINDOW(window));
g_return_if_fail(uri);
add_help_to_window(window, g_strdup(uri), flags);
}
/**
* gwy_help_show:
* @filename: Base file name in the user guide without any path or extensions, for instance "statistical-analysis".
* @fragment: Fragment identifier (without "#"), or possibly %NULL.
*
* Immediately shows a specific help location.
*
* This function should be rarely needed. It may fail if help is not available.
*
* Since: 2.38
**/
void
gwy_help_show(const gchar *filename,
const gchar *fragment)
{
gchar *uri;
g_return_if_fail(filename);
uri = g_strconcat(get_user_guide_base(), "/",
filename, ".html",
fragment ? "#" : NULL, fragment, NULL);
show_help_uri(NULL, uri);
g_free(uri);
}
/**
* gwy_help_is_available:
*
* Check whether help is available.
*
* This is a weak check that finds if we have any help-showing backend that might work at all, have the user guide
* module map, and if the user guide locations is a local directory it checks whether it exists. If it returns %TRUE
* it does not guarantee help will work. If it returns %FALSE, however, it means help will not work.
*
* Returns: %TRUE if help seems available, %FALSE if it is not.
*
* Since: 2.38
**/
gboolean
gwy_help_is_available(void)
{
gboolean ok = FALSE;
gchar *uri;
/* We must have a user guide map. */
if (!get_uri_path_for_module(NULL))
return FALSE;
/* We must have a backend. */
if (!any_backend_available())
return FALSE;
/* If the user guide location is local, it must exist. */
uri = g_strconcat(get_user_guide_base(), "/index.html", NULL);
ok = check_local_file_uri(uri);
g_free(uri);
return ok;
}
/************************** Documentation ****************************/
/**
* SECTION:help
* @title: help
* @short_description: User guide access
*
* Help functions add a Help button to dialogs and install a key press handler responding to Help and F1 keys to all
* windows. For built-in modules, invoking the help opens a web browser (using some generic and system-specific
* means) pointing to the corresponding location in the user guide. Third-party modules can use
* gwy_help_add_to_window_uri() to open a web browser at an arbitrary URI.
**/
/**
* GwyHelpFlags:
* @GWY_HELP_DEFAULT: No flags, the default behaviour.
* @GWY_HELP_NO_BUTTON: Do not add a Help button, even to windows that are dialogs.
*
* Flags controlling help setup and behaviour.
*
* Since: 2.38
**/
/* vim: set cin columns=120 tw=118 et ts=4 sw=4 cino=>1s,e0,n0,f0,{0,}0,^0,\:1s,=0,g1s,h0,t0,+1s,c3,(0,u0 : */
|