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

« back to all changes in this revision

Viewing changes to app/file/file-open.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 Spencer Kimball and Peter Mattis
3
3
 *
4
4
 * file-open.h
22
22
#define __FILE_OPEN_H__
23
23
 
24
24
 
25
 
GimpImage * file_open_image                 (Gimp               *gimp,
26
 
                                             GimpContext        *context,
27
 
                                             GimpProgress       *progress,
28
 
                                             const gchar        *uri,
29
 
                                             const gchar        *entered_filename,
30
 
                                             PlugInProcDef      *file_proc,
31
 
                                             GimpRunMode         run_mode,
32
 
                                             GimpPDBStatusType  *status,
33
 
                                             const gchar       **mime_type,
34
 
                                             GError            **error);
35
 
 
36
 
GimpImage * file_open_thumbnail             (Gimp               *gimp,
37
 
                                             GimpContext        *context,
38
 
                                             GimpProgress       *progress,
39
 
                                             const gchar        *uri,
40
 
                                             gint                size,
41
 
                                             const gchar       **mime_type,
42
 
                                             gint               *image_width,
43
 
                                             gint               *image_height);
44
 
GimpImage * file_open_with_display          (Gimp               *gimp,
45
 
                                             GimpContext        *context,
46
 
                                             GimpProgress       *progress,
47
 
                                             const gchar        *uri,
48
 
                                             GimpPDBStatusType  *status,
49
 
                                             GError            **error);
50
 
 
51
 
GimpImage * file_open_with_proc_and_display (Gimp               *gimp,
52
 
                                             GimpContext        *context,
53
 
                                             GimpProgress       *progress,
54
 
                                             const gchar        *uri,
55
 
                                             const gchar        *entered_filename,
56
 
                                             PlugInProcDef      *file_proc,
57
 
                                             GimpPDBStatusType  *status,
58
 
                                             GError            **error);
59
 
 
60
 
GimpLayer * file_open_layer                 (Gimp               *gimp,
61
 
                                             GimpContext        *context,
62
 
                                             GimpProgress       *progress,
63
 
                                             GimpImage          *dest_image,
64
 
                                             const gchar        *uri,
65
 
                                             GimpPDBStatusType  *status,
66
 
                                             GError            **error);
 
25
GimpImage * file_open_image                 (Gimp                *gimp,
 
26
                                             GimpContext         *context,
 
27
                                             GimpProgress        *progress,
 
28
                                             const gchar         *uri,
 
29
                                             const gchar         *entered_filename,
 
30
                                             gboolean             as_new,
 
31
                                             GimpPlugInProcedure *file_proc,
 
32
                                             GimpRunMode          run_mode,
 
33
                                             GimpPDBStatusType   *status,
 
34
                                             const gchar        **mime_type,
 
35
                                             GError             **error);
 
36
 
 
37
GimpImage * file_open_thumbnail             (Gimp                *gimp,
 
38
                                             GimpContext         *context,
 
39
                                             GimpProgress        *progress,
 
40
                                             const gchar         *uri,
 
41
                                             gint                 size,
 
42
                                             const gchar        **mime_type,
 
43
                                             gint                *image_width,
 
44
                                             gint                *image_height);
 
45
GimpImage * file_open_with_display          (Gimp                *gimp,
 
46
                                             GimpContext         *context,
 
47
                                             GimpProgress        *progress,
 
48
                                             const gchar         *uri,
 
49
                                             gboolean             as_new,
 
50
                                             GimpPDBStatusType   *status,
 
51
                                             GError             **error);
 
52
 
 
53
GimpImage * file_open_with_proc_and_display (Gimp                *gimp,
 
54
                                             GimpContext         *context,
 
55
                                             GimpProgress        *progress,
 
56
                                             const gchar         *uri,
 
57
                                             const gchar         *entered_filename,
 
58
                                             gboolean             as_new,
 
59
                                             GimpPlugInProcedure *file_proc,
 
60
                                             GimpPDBStatusType   *status,
 
61
                                             GError             **error);
 
62
 
 
63
GList     * file_open_layers                (Gimp                *gimp,
 
64
                                             GimpContext         *context,
 
65
                                             GimpProgress        *progress,
 
66
                                             GimpImage           *dest_image,
 
67
                                             gboolean             merge_visible,
 
68
                                             const gchar         *uri,
 
69
                                             GimpRunMode          run_mode,
 
70
                                             GimpPlugInProcedure *file_proc,
 
71
                                             GimpPDBStatusType   *status,
 
72
                                             GError             **error);
 
73
 
 
74
gboolean    file_open_from_command_line     (Gimp                *gimp,
 
75
                                             const gchar         *filename,
 
76
                                             gboolean             as_new);
67
77
 
68
78
 
69
79
#endif /* __FILE_OPEN_H__ */