1 /* GIMP - The GNU Image Manipulation Program 2 * Copyright (C) 1995 Spencer Kimball and Peter Mattis 3 * 4 * The GIMP Help plug-in 5 * Copyright (C) 1999-2008 Sven Neumann <sven@gimp.org> 6 * Michael Natterer <mitch@gimp.org> 7 * Henrik Brix Andersen <brix@gimp.org> 8 * 9 * This program is free software: you can redistribute it and/or modify 10 * it under the terms of the GNU General Public License as published by 11 * the Free Software Foundation; either version 3 of the License, or 12 * (at your option) any later version. 13 * 14 * This program is distributed in the hope that it will be useful, 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17 * GNU General Public License for more details. 18 * 19 * You should have received a copy of the GNU General Public License 20 * along with this program. If not, see <https://www.gnu.org/licenses/>. 21 */ 22 23 #ifndef __GIMP_HELP_H__ 24 #define __GIMP_HELP_H__ 25 26 27 #include "gimphelptypes.h" 28 29 #include "gimphelpdomain.h" 30 #include "gimphelpitem.h" 31 #include "gimphelplocale.h" 32 #include "gimphelpprogress.h" 33 34 35 #define GIMP_HELP_DEFAULT_DOMAIN "https://www.gimp.org/help" 36 #define GIMP_HELP_DEFAULT_ID "gimp-main" 37 #define GIMP_HELP_DEFAULT_LOCALE "en" 38 39 #define GIMP_HELP_PREFIX "help" 40 #define GIMP_HELP_ENV_URI "GIMP2_HELP_URI" 41 42 /* #define GIMP_HELP_DEBUG */ 43 44 45 gboolean gimp_help_init (gint n_domain_names, 46 gchar **domain_names, 47 gint n_domain_uris, 48 gchar **domain_uris); 49 void gimp_help_exit (void); 50 51 void gimp_help_register_domain (const gchar *domain_name, 52 const gchar *domain_uri); 53 GimpHelpDomain * gimp_help_lookup_domain (const gchar *domain_name); 54 55 GList * gimp_help_parse_locales (const gchar *help_locales); 56 57 58 #endif /* ! __GIMP_HELP_H__ */ 59