/usr/include/gdkmm-2.4/gdkmm/pixbufloader.h is in libgtkmm-2.4-dev 1:2.24.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 | // -*- c++ -*-
// Generated by gtkmmproc -- DO NOT MODIFY!
#ifndef _GDKMM_PIXBUFLOADER_H
#define _GDKMM_PIXBUFLOADER_H
#include <glibmm.h>
/* $Id: pixbufloader.hg,v 1.13 2006/05/18 17:53:14 murrayc Exp $ */
/* Copyright (C) 1998-2002 The gtkmm Development Team
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free
* Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <glibmm/object.h>
#include <gdkmm/pixbuf.h>
#include <gdkmm/pixbufanimation.h>
#include <gdkmm/pixbufformat.h>
#ifndef DOXYGEN_SHOULD_SKIP_THIS
typedef struct _GdkPixbufLoader GdkPixbufLoader;
typedef struct _GdkPixbufLoaderClass GdkPixbufLoaderClass;
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
namespace Gdk
{ class PixbufLoader_Class; } // namespace Gdk
namespace Gdk
{
class PixbufLoader : public Glib::Object
{
#ifndef DOXYGEN_SHOULD_SKIP_THIS
public:
typedef PixbufLoader CppObjectType;
typedef PixbufLoader_Class CppClassType;
typedef GdkPixbufLoader BaseObjectType;
typedef GdkPixbufLoaderClass BaseClassType;
private: friend class PixbufLoader_Class;
static CppClassType pixbufloader_class_;
private:
// noncopyable
PixbufLoader(const PixbufLoader&);
PixbufLoader& operator=(const PixbufLoader&);
protected:
explicit PixbufLoader(const Glib::ConstructParams& construct_params);
explicit PixbufLoader(GdkPixbufLoader* castitem);
#endif /* DOXYGEN_SHOULD_SKIP_THIS */
public:
virtual ~PixbufLoader();
#ifndef DOXYGEN_SHOULD_SKIP_THIS
static GType get_type() G_GNUC_CONST;
static GType get_base_type() G_GNUC_CONST;
#endif
///Provides access to the underlying C GObject.
GdkPixbufLoader* gobj() { return reinterpret_cast<GdkPixbufLoader*>(gobject_); }
///Provides access to the underlying C GObject.
const GdkPixbufLoader* gobj() const { return reinterpret_cast<GdkPixbufLoader*>(gobject_); }
///Provides access to the underlying C instance. The caller is responsible for unrefing it. Use when directly setting fields in structs.
GdkPixbufLoader* gobj_copy();
private:
protected:
/** Constructs a pixbuf loader object.
*/
PixbufLoader();
/** Constructs a pixbuf loader object for a specific image type.
* Constructs a new pixbuf loader object that always attempts to parse image
* data as if it were an image of type @a image_type, instead of identifying
* the type automatically. Useful if you want an error if the image isn't the
* expected type, for loading image formats that can't be reliably identified
* by looking at the data, or if the user manually forces a specific type.
*
* The image_type can be one of the types returned by Gdk::Pixbuf::get_formats(), or a MIME type.
*
* Common MIME Types are listed here
* http://www.iana.org/assignments/media-types/
* and here:
* http://www.freedesktop.org/Software/shared-mime-info
*
* The list of non-mime-type image formats depends on what image loaders
* are installed, but typically "png", "jpeg", "gif", "tiff" and
* "xpm" are among the supported formats. To obtain the full list of
* supported image formats, call PixbufFormat::get_name() on each
* of the PixbufFormats returned by Gdk::Pixbuf::get_formats().
*
* @param image_type Name of the image format to be loaded with the image.
* @param mime_type If this is true then the image_type is a MIME type.
* @throw Gdk::PixbufError
*/
explicit PixbufLoader(const Glib::ustring& image_type, bool mime_type = false);
public:
/** Creates a new pixbuf loader object.
* @return A newly-created pixbuf loader.
*/
static Glib::RefPtr<PixbufLoader> create();
/** Constructs a pixbuf loader object for a specific image type.
* Constructs a new pixbuf loader object that always attempts to parse image
* data as if it were an image of type @a image_type, instead of identifying
* the type automatically. Useful if you want an error if the image isn't the
* expected type, for loading image formats that can't be reliably identified
* by looking at the data, or if the user manually forces a specific type.
*
* The image_type can be one of the types returned by Gdk::Pixbuf::get_formats(), or a MIME type.
*
* Common MIME Types are listed here
* http://www.iana.org/assignments/media-types/
* and here:
* http://www.freedesktop.org/Software/shared-mime-info
*
* The list of non-mime-type image formats depends on what image loaders
* are installed, but typically "png", "jpeg", "gif", "tiff" and
* "xpm" are among the supported formats. To obtain the full list of
* supported image formats, call PixbufFormat::get_name() on each
* of the PixbufFormats returned by Gdk::Pixbuf::get_formats().
*
* @param image_type Name of the image format to be loaded with the image.
* @param mime_type If this is true then the image_type is a MIME type.
* @throw Gdk::PixbufError
*/
static Glib::RefPtr<PixbufLoader> create(const Glib::ustring& image_type, bool mime_type = false);
void set_size(int width, int height);
/** Causes the pixbuf loader to parse the next @a count bytes of an image.
* It will return if the data was loaded successfully, and throw an exception
* if an error occurred. In the latter case, the loader will be closed, and
* will not accept further writes.
* @param buf Pointer to image data.
* @param count Length of the @a buf buffer in bytes.
* @throw Gdk::PixbufError
* @throw Glib::FileError
*/
void write(const guint8* buf, gsize count);
/** Informs a pixbuf loader that no further writes with PixbufLoader::write()
* will occur, so that it can free its internal loading structures. Also,
* tries to parse any data that hasn't yet been parsed; if the remaining data
* is partial or corrupt, an exception will be thrown. If you're just
* cancelling a load rather than expecting it to be finished, writing an
* empty <tt>catch()</tt> block to ignore errors is reasonable.
* @throw Gdk::PixbufError
* @throw Glib::FileError
*/
void close();
Glib::RefPtr<Gdk::Pixbuf> get_pixbuf();
Glib::RefPtr<Gdk::PixbufAnimation> get_animation();
PixbufFormat get_format() const;
/** This signal is emitted when the pixbuf loader has allocated the
* pixbuf in the desired size. After this signal is emitted,
* applications can call get_pixbuf() to fetch
* the partially-loaded pixbuf.
*
* @par Prototype:
* <tt>void on_my_%area_prepared()</tt>
*/
Glib::SignalProxy0< void > signal_area_prepared();
/** This signal is emitted when a significant area of the image being
* loaded has been updated. Normally it means that a complete
* scanline has been read in, but it could be a different area as
* well. Applications can use this signal to know when to repaint
* areas of an image that is being loaded.
*
* @param X offset of upper-left corner of the updated area.
* @param y Y offset of upper-left corner of the updated area.
* @param width Width of updated area.
* @param height Height of updated area.
*
* @par Prototype:
* <tt>void on_my_%area_updated(int x, int y, int width, int height)</tt>
*/
Glib::SignalProxy4< void,int,int,int,int > signal_area_updated();
/** This signal is emitted when close() is called.
* It can be used by different parts of an application to receive
* notification when an image loader is closed by the code that
* drives it.
*
* @par Prototype:
* <tt>void on_my_%closed()</tt>
*/
Glib::SignalProxy0< void > signal_closed();
//We use no_default_handler for this, because we can not add a new vfunc to 2.5 without breaking ABI.
//TODO: Remove no_default_handler when we do an ABI-break-with-parallel-install.
/** This signal is emitted when the pixbuf loader has been fed the
* initial amount of data that is required to figure out the size
* of the image that it will create. Applications can call
* set_size() in response to this signal to set
* the desired size to which the image should be scaled.
*
* @param width The original width of the image.
* @param height The original height of the image
*
* @par Prototype:
* <tt>void on_my_%size_prepared(int width, int height)</tt>
*/
Glib::SignalProxy2< void,int,int > signal_size_prepared();
public:
public:
//C++ methods used to invoke GTK+ virtual functions:
protected:
//GTK+ Virtual Functions (override these to change behaviour):
//Default Signal Handlers::
virtual void on_area_prepared();
virtual void on_area_updated(int x, int y, int width, int height);
virtual void on_closed();
};
} // namespace Gdk
namespace Glib
{
/** A Glib::wrap() method for this object.
*
* @param object The C instance.
* @param take_copy False if the result should take ownership of the C instance. True if it should take a new copy or ref.
* @result A C++ instance that wraps this C instance.
*
* @relates Gdk::PixbufLoader
*/
Glib::RefPtr<Gdk::PixbufLoader> wrap(GdkPixbufLoader* object, bool take_copy = false);
}
#endif /* _GDKMM_PIXBUFLOADER_H */
|