2003-11-23 23:35:27 +08:00
|
|
|
/* LIBGIMP - The GIMP Library
|
2000-02-26 11:41:06 +08:00
|
|
|
* Copyright (C) 1995-1997 Peter Mattis and Spencer Kimball
|
|
|
|
*
|
|
|
|
* gimpenv.h
|
1999-03-07 20:56:03 +08:00
|
|
|
* Copyright (C) 1999 Tor Lillqvist <tml@iki.fi>
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This library is free software: you can redistribute it and/or
|
1999-11-18 05:13:50 +08:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1999-03-07 20:56:03 +08:00
|
|
|
* License as published by the Free Software Foundation; either
|
2009-01-18 06:28:01 +08:00
|
|
|
* version 3 of the License, or (at your option) any later version.
|
1999-03-07 20:56:03 +08:00
|
|
|
*
|
|
|
|
* This library 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
|
1999-12-26 15:54:39 +08:00
|
|
|
* Lesser General Public License for more details.
|
1999-03-07 20:56:03 +08:00
|
|
|
*
|
1999-11-18 05:13:50 +08:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-01-18 06:28:01 +08:00
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
1999-03-07 20:56:03 +08:00
|
|
|
*/
|
|
|
|
|
2011-04-28 20:30:41 +08:00
|
|
|
#if !defined (__GIMP_BASE_H_INSIDE__) && !defined (GIMP_BASE_COMPILATION)
|
|
|
|
#error "Only <libgimpbase/gimpbase.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
2011-04-29 01:34:22 +08:00
|
|
|
#ifndef __GIMP_ENV_H__
|
|
|
|
#define __GIMP_ENV_H__
|
1999-03-07 20:56:03 +08:00
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
1999-03-07 20:56:03 +08:00
|
|
|
|
2000-02-07 07:16:24 +08:00
|
|
|
/* For information look into the C source or the html documentation */
|
1999-03-07 20:56:03 +08:00
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
|
2006-11-28 19:57:05 +08:00
|
|
|
#ifdef G_OS_WIN32
|
2011-08-30 02:27:56 +08:00
|
|
|
# ifdef __GIMP_ENV_C__
|
2006-11-28 19:57:05 +08:00
|
|
|
# define GIMPVAR __declspec(dllexport)
|
2011-08-30 02:27:56 +08:00
|
|
|
# else /* !__GIMP_ENV_C__ */
|
2006-11-28 19:57:05 +08:00
|
|
|
# define GIMPVAR extern __declspec(dllimport)
|
2011-08-30 02:27:56 +08:00
|
|
|
# endif /* !__GIMP_ENV_C__ */
|
2006-11-28 19:57:05 +08:00
|
|
|
#else /* !G_OS_WIN32 */
|
|
|
|
# define GIMPVAR extern
|
|
|
|
#endif
|
|
|
|
|
|
|
|
GIMPVAR const guint gimp_major_version;
|
|
|
|
GIMPVAR const guint gimp_minor_version;
|
|
|
|
GIMPVAR const guint gimp_micro_version;
|
|
|
|
|
|
|
|
|
2001-12-11 04:43:51 +08:00
|
|
|
const gchar * gimp_directory (void) G_GNUC_CONST;
|
2012-05-23 17:49:07 +08:00
|
|
|
const gchar * gimp_installation_directory (void) G_GNUC_CONST;
|
2001-12-11 04:43:51 +08:00
|
|
|
const gchar * gimp_data_directory (void) G_GNUC_CONST;
|
2006-11-28 19:57:05 +08:00
|
|
|
const gchar * gimp_locale_directory (void) G_GNUC_CONST;
|
|
|
|
const gchar * gimp_sysconf_directory (void) G_GNUC_CONST;
|
2001-12-11 04:43:51 +08:00
|
|
|
const gchar * gimp_plug_in_directory (void) G_GNUC_CONST;
|
2007-10-31 21:09:46 +08:00
|
|
|
|
2014-07-28 08:04:01 +08:00
|
|
|
GFile * gimp_directory_file (const gchar *first_element,
|
|
|
|
...) G_GNUC_MALLOC;
|
|
|
|
GFile * gimp_data_directory_file (const gchar *first_element,
|
|
|
|
...) G_GNUC_MALLOC;
|
|
|
|
GFile * gimp_locale_directory_file (const gchar *first_element,
|
|
|
|
...) G_GNUC_MALLOC;
|
|
|
|
GFile * gimp_sysconf_directory_file (const gchar *first_element,
|
|
|
|
...) G_GNUC_MALLOC;
|
|
|
|
GFile * gimp_plug_in_directory_file (const gchar *first_element,
|
|
|
|
...) G_GNUC_MALLOC;
|
|
|
|
|
2007-10-31 21:09:46 +08:00
|
|
|
#ifndef GIMP_DISABLE_DEPRECATED
|
2012-05-03 06:54:21 +08:00
|
|
|
GIMP_DEPRECATED_FOR(g_get_user_special_dir)
|
2007-08-12 01:15:52 +08:00
|
|
|
const gchar * gimp_user_directory (GimpUserDirectory type) G_GNUC_CONST;
|
2007-10-31 21:09:46 +08:00
|
|
|
#endif /* !GIMP_DISABLE_DEPRECATED */
|
2007-05-14 00:31:14 +08:00
|
|
|
|
2001-12-11 04:43:51 +08:00
|
|
|
const gchar * gimp_gtkrc (void) G_GNUC_CONST;
|
2007-05-14 00:31:14 +08:00
|
|
|
gchar * gimp_personal_rc_file (const gchar *basename) G_GNUC_MALLOC;
|
2001-02-14 22:57:14 +08:00
|
|
|
|
2007-05-14 00:31:14 +08:00
|
|
|
GList * gimp_path_parse (const gchar *path,
|
|
|
|
gint max_paths,
|
|
|
|
gboolean check,
|
|
|
|
GList **check_failed);
|
|
|
|
gchar * gimp_path_to_str (GList *path) G_GNUC_MALLOC;
|
|
|
|
void gimp_path_free (GList *path);
|
2001-02-14 22:57:14 +08:00
|
|
|
|
2007-05-14 00:31:14 +08:00
|
|
|
gchar * gimp_path_get_user_writable_dir (GList *path) G_GNUC_MALLOC;
|
1999-03-07 20:56:03 +08:00
|
|
|
|
2000-05-31 07:38:46 +08:00
|
|
|
|
2005-11-06 09:06:41 +08:00
|
|
|
/* should be considered private, don't use! */
|
2007-05-14 00:31:14 +08:00
|
|
|
void gimp_env_init (gboolean plug_in);
|
2005-11-06 09:06:41 +08:00
|
|
|
|
|
|
|
|
2001-11-23 07:46:13 +08:00
|
|
|
G_END_DECLS
|
1999-03-07 20:56:03 +08:00
|
|
|
|
2011-04-29 01:34:22 +08:00
|
|
|
#endif /* __GIMP_ENV_H__ */
|