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

« back to all changes in this revision

Viewing changes to app/core/gimpobject.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
 * This program is free software; you can redistribute it and/or modify
38
38
 
39
39
  /*<  private  >*/
40
40
  gchar   *normalized;
 
41
  guint    static_name  : 1;
 
42
  guint    disconnected : 1;
41
43
};
42
44
 
43
45
struct _GimpObjectClass
54
56
};
55
57
 
56
58
 
57
 
GType         gimp_object_get_type      (void) G_GNUC_CONST;
58
 
 
59
 
void          gimp_object_set_name      (GimpObject       *object,
60
 
                                         const gchar      *name);
61
 
const gchar * gimp_object_get_name      (const GimpObject *object);
62
 
void          gimp_object_set_name_safe (GimpObject       *object,
63
 
                                         const gchar      *name);
64
 
void          gimp_object_name_changed  (GimpObject       *object);
65
 
void          gimp_object_name_free     (GimpObject       *object);
66
 
 
67
 
gint          gimp_object_name_collate  (GimpObject       *object1,
68
 
                                         GimpObject       *object2);
69
 
gint64        gimp_object_get_memsize   (GimpObject       *object,
70
 
                                         gint64           *gui_size);
 
59
GType         gimp_object_get_type        (void) G_GNUC_CONST;
 
60
 
 
61
void          gimp_object_set_name        (GimpObject       *object,
 
62
                                           const gchar      *name);
 
63
void          gimp_object_set_name_safe   (GimpObject       *object,
 
64
                                           const gchar      *name);
 
65
void          gimp_object_set_static_name (GimpObject       *object,
 
66
                                           const gchar      *name);
 
67
void          gimp_object_take_name       (GimpObject       *object,
 
68
                                           gchar            *name);
 
69
const gchar * gimp_object_get_name        (const GimpObject *object);
 
70
void          gimp_object_name_changed    (GimpObject       *object);
 
71
void          gimp_object_name_free       (GimpObject       *object);
 
72
 
 
73
gint          gimp_object_name_collate    (GimpObject       *object1,
 
74
                                           GimpObject       *object2);
 
75
gint64        gimp_object_get_memsize     (GimpObject       *object,
 
76
                                           gint64           *gui_size);
71
77
 
72
78
 
73
79
#endif  /* __GIMP_OBJECT_H__ */