2006-12-09 21:33:38 +00:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1999-09-27 17:58:10 +00:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimphelp.h
|
2000-11-18 00:25:42 +00:00
|
|
|
* Copyright (C) 1999-2000 Michael Natterer <mitch@gimp.org>
|
1999-09-27 17:58:10 +00:00
|
|
|
*
|
2009-01-17 22:28:01 +00:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1999-09-27 17:58:10 +00:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-17 22:28:01 +00:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1999-09-27 17:58:10 +00:00
|
|
|
* (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
|
2018-07-11 23:27:07 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
1999-09-27 17:58:10 +00:00
|
|
|
*/
|
2000-11-18 00:25:42 +00:00
|
|
|
|
1999-09-27 17:58:10 +00:00
|
|
|
#ifndef __GIMP_HELP_H__
|
|
|
|
#define __GIMP_HELP_H__
|
|
|
|
|
2000-11-18 00:25:42 +00:00
|
|
|
|
2002-04-12 18:26:43 +00:00
|
|
|
/* the main help function
|
|
|
|
*
|
2008-06-10 09:54:54 +00:00
|
|
|
* there should be no need to use it directly
|
2002-04-12 18:26:43 +00:00
|
|
|
*/
|
2008-07-05 12:01:00 +00:00
|
|
|
void gimp_help_show (Gimp *gimp,
|
|
|
|
GimpProgress *progress,
|
|
|
|
const gchar *help_domain,
|
|
|
|
const gchar *help_id);
|
2008-07-04 18:41:58 +00:00
|
|
|
|
|
|
|
|
2016-09-06 20:51:47 +02:00
|
|
|
/* checks if the help browser is available
|
|
|
|
*/
|
|
|
|
gboolean gimp_help_browser_is_installed (Gimp *gimp);
|
|
|
|
|
2008-07-05 12:01:00 +00:00
|
|
|
/* checks if the user manual is installed locally
|
2008-07-04 18:41:58 +00:00
|
|
|
*/
|
2008-07-05 12:01:00 +00:00
|
|
|
gboolean gimp_help_user_manual_is_installed (Gimp *gimp);
|
2000-11-18 00:25:42 +00:00
|
|
|
|
2009-02-26 22:58:19 +00:00
|
|
|
/* the configuration changed with respect to the location
|
|
|
|
* of the user manual, invalidate the cached information
|
|
|
|
*/
|
|
|
|
void gimp_help_user_manual_changed (Gimp *gimp);
|
|
|
|
|
1999-11-20 12:12:41 +00:00
|
|
|
|
2017-10-03 01:52:35 +02:00
|
|
|
GList * gimp_help_get_installed_languages (void);
|
|
|
|
|
1999-09-27 17:58:10 +00:00
|
|
|
#endif /* __GIMP_HELP_H__ */
|