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