~ubuntu-branches/ubuntu/jaunty/gimp/jaunty-security

« back to all changes in this revision

Viewing changes to app/config/gimpconfig-utils.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2007-05-02 16:33:03 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070502163303-bvzhjzbpw8qglc4y
Tags: 2.3.16-1ubuntu1
* Resynchronized with Debian, remaining Ubuntu changes:
  - debian/rules: i18n magic.
* debian/control.in:
  - Maintainer: Ubuntu Core Developers <ubuntu-devel@lists.ubuntu.com>
* debian/patches/02_help-message.patch,
  debian/patches/03_gimp.desktop.in.in.patch,
  debian/patches/10_dont_show_wizard.patch: updated.
* debian/patches/04_composite-signedness.patch,
  debian/patches/05_add-letter-spacing.patch: dropped, used upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* The GIMP -- an image manipulation program
 
1
/* GIMP - The GNU Image Manipulation Program
2
2
 * Copyright (C) 1995-1997 Spencer Kimball and Peter Mattis
3
3
 *
4
4
 * Utitility functions for GimpConfig.
19
19
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
20
 */
21
21
 
22
 
#ifndef __GIMP_CONFIG_UTILS_H__
23
 
#define __GIMP_CONFIG_UTILS_H__
24
 
 
25
 
 
26
 
void       gimp_config_connect               (GObject      *a,
27
 
                                              GObject      *b,
28
 
                                              const gchar  *property_name);
29
 
void       gimp_config_disconnect            (GObject      *a,
30
 
                                              GObject      *b);
31
 
 
32
 
GList    * gimp_config_diff                  (GimpConfig   *a,
33
 
                                              GimpConfig   *b,
34
 
                                              GParamFlags   flags);
35
 
gboolean   gimp_config_sync                  (GimpConfig   *src,
36
 
                                              GimpConfig   *dest,
37
 
                                              GParamFlags   flags);
38
 
 
39
 
void       gimp_config_reset_properties      (GimpConfig   *config);
40
 
 
41
 
void       gimp_config_string_append_escaped (GString      *string,
42
 
                                              const gchar  *val);
43
 
 
44
 
gchar    * gimp_config_build_data_path       (const gchar  *name);
45
 
gchar    * gimp_config_build_writable_path   (const gchar *name);
46
 
gchar    * gimp_config_build_plug_in_path    (const gchar  *name);
47
 
 
48
 
gboolean   gimp_config_file_copy             (const gchar  *source,
49
 
                                              const gchar  *dest,
50
 
                                              GError      **error);
51
 
gboolean   gimp_config_file_backup_on_error  (const gchar  *filename,
52
 
                                              const gchar  *name,
53
 
                                              GError      **error);
54
 
 
55
 
#endif  /* __GIMP_CONFIG_UTILS_H__ */
 
22
#ifndef __APP_GIMP_CONFIG_UTILS_H__
 
23
#define __APP_GIMP_CONFIG_UTILS_H__
 
24
 
 
25
 
 
26
void   gimp_config_connect      (GObject     *a,
 
27
                                 GObject     *b,
 
28
                                 const gchar *property_name);
 
29
void   gimp_config_connect_full (GObject     *a,
 
30
                                 GObject     *b,
 
31
                                 const gchar *property_name_a,
 
32
                                 const gchar *property_name_b);
 
33
void   gimp_config_disconnect   (GObject     *a,
 
34
                                 GObject     *b);
 
35
 
 
36
 
 
37
#endif  /* __APP_GIMP_CONFIG_UTILS_H__ */