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