FoPixbuf

FoPixbuf

Functions

#define FO_PIXBUF_IFACE()
GdkPixbuf * fo_pixbuf_get_pixbuf ()
void fo_pixbuf_set_pixbuf ()

Types and Values

Description

Functions

FO_PIXBUF_IFACE()

#define FO_PIXBUF_IFACE(obj)      (G_TYPE_CHECK_CLASS_CAST ((obj), FO_TYPE_PIXBUF, FoPixbufIface))

fo_pixbuf_get_pixbuf ()

GdkPixbuf *
fo_pixbuf_get_pixbuf (FoImage *fo_image);

Gets the GdkPixbuf contained by fo_image .

Parameters

fo_image

The FoImage containing the pixbuf.

 

Returns

The GdkPixbuf contained by fo_image .


fo_pixbuf_set_pixbuf ()

void
fo_pixbuf_set_pixbuf (FoImage *fo_image,
                      GdkPixbuf *pixbuf);

Sets the GdkPixbuf contained by fo_image .

Parameters

fo_image

The FoImage containing the pixbuf.

 

pixbuf

GdkPixbuf to be contained by fo_image .

 

Types and Values

FoPixbuf

typedef struct _FoPixbuf FoPixbuf;

struct FoPixbufIface

struct FoPixbufIface {
  GTypeInterface g_iface;

  GdkPixbuf * (*get_pixbuf) (FoImage   *fo_image);
  void        (*set_pixbuf) (FoImage   *fo_image,
			     GdkPixbuf *pixbuf);
};