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

« back to all changes in this revision

Viewing changes to app/config/gimpscanner.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
2
 
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
3
 
 *
4
 
 * gimpscanner.h
5
 
 * Copyright (C) 2002  Sven Neumann <sven@gimp.org>
6
 
 *                     Michael Natterer <mitch@gimp.org>
7
 
 *
8
 
 * This program is free software; you can redistribute it and/or modify
9
 
 * it under the terms of the GNU General Public License as published by
10
 
 * the Free Software Foundation; either version 2 of the License, or
11
 
 * (at your option) any later version.
12
 
 *
13
 
 * This program is distributed in the hope that it will be useful,
14
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
 
 * GNU General Public License for more details.
17
 
 *
18
 
 * You should have received a copy of the GNU General Public License
19
 
 * along with this program; if not, write to the Free Software
20
 
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21
 
 */
22
 
 
23
 
#ifndef __GIMP_SCANNER_H__
24
 
#define __GIMP_SCANNER_H__
25
 
 
26
 
 
27
 
GScanner * gimp_scanner_new_file                 (const gchar  *filename,
28
 
                                                  GError      **error);
29
 
GScanner * gimp_scanner_new_string               (const gchar  *text,
30
 
                                                  gint          text_len,
31
 
                                                  GError      **error);
32
 
void       gimp_scanner_destroy                  (GScanner     *scanner);
33
 
 
34
 
gboolean   gimp_scanner_parse_token              (GScanner     *scanner,
35
 
                                                  GTokenType    token);
36
 
gboolean   gimp_scanner_parse_identifier         (GScanner     *scanner,
37
 
                                                  const gchar  *identifier);
38
 
gboolean   gimp_scanner_parse_string             (GScanner     *scanner,
39
 
                                                  gchar       **dest);
40
 
gboolean   gimp_scanner_parse_string_no_validate (GScanner     *scanner,
41
 
                                                  gchar       **dest);
42
 
gboolean   gimp_scanner_parse_data               (GScanner     *scanner,
43
 
                                                  gint          length,
44
 
                                                  guint8      **dest);
45
 
gboolean   gimp_scanner_parse_int                (GScanner     *scanner,
46
 
                                                  gint         *dest);
47
 
gboolean   gimp_scanner_parse_float              (GScanner     *scanner,
48
 
                                                  gdouble      *dest);
49
 
gboolean   gimp_scanner_parse_color              (GScanner     *scanner,
50
 
                                                  GimpRGB      *dest);
51
 
gboolean   gimp_scanner_parse_matrix2            (GScanner     *scanner,
52
 
                                                  GimpMatrix2  *dest);
53
 
 
54
 
 
55
 
#endif /* __GIMP_SCANNER_H__ */