~ubuntu-branches/ubuntu/quantal/gtkmm3.0/quantal

« back to all changes in this revision

Viewing changes to gdk/gdkmm/pixbufloader.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-28 09:25:06 UTC
  • mfrom: (1.1.14)
  • Revision ID: package-import@ubuntu.com-20120928092506-9h63ais5o750a8sk
Tags: 3.5.13-0ubuntu1
* New upstream release
* debian/control:
  - Bump build-depends on libglibmm-2.4-dev, libgtk-3-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
#include <glibmm/ustring.h>
8
8
#include <sigc++/sigc++.h>
9
9
 
10
 
/* $Id: pixbufloader.hg,v 1.13 2006/05/18 17:53:14 murrayc Exp $ */
11
 
 
12
10
/* Copyright (C) 1998-2002 The gtkmm Development Team
13
11
 *
14
12
 * This library is free software; you can redistribute it and/or
114
112
   * http://www.freedesktop.org/Software/shared-mime-info
115
113
   *
116
114
   * The list of non-mime-type image formats depends on what image loaders
117
 
   * are installed, but typically "png", "jpeg", "gif", "tiff" and 
 
115
   * are installed, but typically "png", "jpeg", "gif", "tiff" and
118
116
   * "xpm" are among the supported formats. To obtain the full list of
119
 
   * supported image formats, call PixbufFormat::get_name() on each 
 
117
   * supported image formats, call PixbufFormat::get_name() on each
120
118
   * of the PixbufFormats returned by Gdk::Pixbuf::get_formats().
121
119
   *
122
120
   * @param image_type Name of the image format to be loaded with the image.
149
147
   * http://www.freedesktop.org/Software/shared-mime-info
150
148
   *
151
149
   * The list of non-mime-type image formats depends on what image loaders
152
 
   * are installed, but typically "png", "jpeg", "gif", "tiff" and 
 
150
   * are installed, but typically "png", "jpeg", "gif", "tiff" and
153
151
   * "xpm" are among the supported formats. To obtain the full list of
154
 
   * supported image formats, call PixbufFormat::get_name() on each 
 
152
   * supported image formats, call PixbufFormat::get_name() on each
155
153
   * of the PixbufFormats returned by Gdk::Pixbuf::get_formats().
156
154
   *
157
155
   * @param image_type Name of the image format to be loaded with the image.
196
194
  
197
195
  PixbufFormat get_format() const;
198
196
 
199
 
  /** This signal is emitted when the pixbuf loader has allocated the 
200
 
   * pixbuf in the desired size.  After this signal is emitted, 
201
 
   * applications can call get_pixbuf() to fetch 
 
197
  /** This signal is emitted when the pixbuf loader has allocated the
 
198
   * pixbuf in the desired size.  After this signal is emitted,
 
199
   * applications can call get_pixbuf() to fetch
202
200
   * the partially-loaded pixbuf.
203
201
   *
204
202
* @par Slot Prototype:
243
241
 
244
242
  /** This signal is emitted when the pixbuf loader has been fed the
245
243
   * initial amount of data that is required to figure out the size
246
 
   * of the image that it will create.  Applications can call  
 
244
   * of the image that it will create.  Applications can call
247
245
   * set_size() in response to this signal to set
248
246
   * the desired size to which the image should be scaled.
249
247
   *