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>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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
|
1999-03-07 20:56:03 +08:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __GIMPENV_H__
|
|
|
|
#define __GIMPENV_H__
|
|
|
|
|
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
|
|
|
|
2001-12-11 04:43:51 +08:00
|
|
|
const gchar * gimp_directory (void) G_GNUC_CONST;
|
|
|
|
const gchar * gimp_data_directory (void) G_GNUC_CONST;
|
2006-04-12 18:53:28 +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;
|
|
|
|
const gchar * gimp_gtkrc (void) G_GNUC_CONST;
|
2006-07-05 21:55:11 +08:00
|
|
|
gchar * gimp_personal_rc_file (const gchar *basename) G_GNUC_MALLOC;
|
2001-02-14 22:57:14 +08:00
|
|
|
|
|
|
|
GList * gimp_path_parse (const gchar *path,
|
2006-04-12 18:53:28 +08:00
|
|
|
gint max_paths,
|
|
|
|
gboolean check,
|
|
|
|
GList **check_failed);
|
2006-07-05 21:55:11 +08:00
|
|
|
gchar * gimp_path_to_str (GList *path) G_GNUC_MALLOC;
|
2001-02-14 22:57:14 +08:00
|
|
|
void gimp_path_free (GList *path);
|
|
|
|
|
2006-07-05 21:55:11 +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! */
|
2005-12-14 21:36:12 +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
|
|
|
|
|
|
|
#endif /* __GIMPENV_H__ */
|