Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
gdk-pixbuf-animation.h File Reference

Go to the source code of this file.

Macros

#define GDK_TYPE_PIXBUF_ANIMATION   (gdk_pixbuf_animation_get_type ())
 
#define GDK_PIXBUF_ANIMATION(object)   (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_PIXBUF_ANIMATION, GdkPixbufAnimation))
 
#define GDK_IS_PIXBUF_ANIMATION(object)   (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_PIXBUF_ANIMATION))
 
#define GDK_TYPE_PIXBUF_ANIMATION_ITER   (gdk_pixbuf_animation_iter_get_type ())
 
#define GDK_PIXBUF_ANIMATION_ITER(object)   (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_PIXBUF_ANIMATION_ITER, GdkPixbufAnimationIter))
 
#define GDK_IS_PIXBUF_ANIMATION_ITER(object)   (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_PIXBUF_ANIMATION_ITER))
 

Typedefs

typedef typedefG_BEGIN_DECLS struct _GdkPixbufAnimation GdkPixbufAnimation
 
typedef struct _GdkPixbufAnimationIter GdkPixbufAnimationIter
 

Functions

GDK_PIXBUF_AVAILABLE_IN_ALL GType gdk_pixbuf_animation_get_type (void) G_GNUC_CONST
 
GDK_PIXBUF_AVAILABLE_IN_ALL GdkPixbufAnimationgdk_pixbuf_animation_new_from_file (const char *filename, GError **error)
 
GDK_PIXBUF_AVAILABLE_IN_2_28 GdkPixbufAnimationgdk_pixbuf_animation_new_from_stream (GInputStream *stream, GCancellable *cancellable, GError **error)
 
GDK_PIXBUF_AVAILABLE_IN_2_28 void gdk_pixbuf_animation_new_from_stream_async (GInputStream *stream, GCancellable *cancellable, GAsyncReadyCallback callback, gpointer user_data)
 
GDK_PIXBUF_AVAILABLE_IN_2_28 GdkPixbufAnimationgdk_pixbuf_animation_new_from_stream_finish (GAsyncResult *async_result, GError **error)
 
GDK_PIXBUF_AVAILABLE_IN_2_28 GdkPixbufAnimationgdk_pixbuf_animation_new_from_resource (const char *resource_path, GError **error)
 
GdkPixbufAnimationgdk_pixbuf_animation_ref (GdkPixbufAnimation *animation)
 
void gdk_pixbuf_animation_unref (GdkPixbufAnimation *animation)
 
GDK_PIXBUF_AVAILABLE_IN_ALL int gdk_pixbuf_animation_get_width (GdkPixbufAnimation *animation)
 
GDK_PIXBUF_AVAILABLE_IN_ALL int gdk_pixbuf_animation_get_height (GdkPixbufAnimation *animation)
 
GDK_PIXBUF_AVAILABLE_IN_ALL gboolean gdk_pixbuf_animation_is_static_image (GdkPixbufAnimation *animation)
 
GDK_PIXBUF_AVAILABLE_IN_ALL GdkPixbufgdk_pixbuf_animation_get_static_image (GdkPixbufAnimation *animation)
 
G_GNUC_BEGIN_IGNORE_DEPRECATIONS GDK_PIXBUF_AVAILABLE_IN_ALL GdkPixbufAnimationItergdk_pixbuf_animation_get_iter (GdkPixbufAnimation *animation, const GTimeVal *start_time)
 
G_GNUC_END_IGNORE_DEPRECATIONS GDK_PIXBUF_AVAILABLE_IN_ALL GType gdk_pixbuf_animation_iter_get_type (void) G_GNUC_CONST
 
GDK_PIXBUF_AVAILABLE_IN_ALL int gdk_pixbuf_animation_iter_get_delay_time (GdkPixbufAnimationIter *iter)
 
GDK_PIXBUF_AVAILABLE_IN_ALL GdkPixbufgdk_pixbuf_animation_iter_get_pixbuf (GdkPixbufAnimationIter *iter)
 
GDK_PIXBUF_AVAILABLE_IN_ALL gboolean gdk_pixbuf_animation_iter_on_currently_loading_frame (GdkPixbufAnimationIter *iter)
 
G_GNUC_BEGIN_IGNORE_DEPRECATIONS GDK_PIXBUF_AVAILABLE_IN_ALL gboolean gdk_pixbuf_animation_iter_advance (GdkPixbufAnimationIter *iter, const GTimeVal *current_time)
 

Macro Definition Documentation

◆ GDK_IS_PIXBUF_ANIMATION

#define GDK_IS_PIXBUF_ANIMATION ( object)    (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_PIXBUF_ANIMATION))

Definition at line 46 of file gdk-pixbuf-animation.h.

◆ GDK_IS_PIXBUF_ANIMATION_ITER

#define GDK_IS_PIXBUF_ANIMATION_ITER ( object)    (G_TYPE_CHECK_INSTANCE_TYPE ((object), GDK_TYPE_PIXBUF_ANIMATION_ITER))

Definition at line 50 of file gdk-pixbuf-animation.h.

◆ GDK_PIXBUF_ANIMATION

#define GDK_PIXBUF_ANIMATION ( object)    (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_PIXBUF_ANIMATION, GdkPixbufAnimation))

Definition at line 45 of file gdk-pixbuf-animation.h.

◆ GDK_PIXBUF_ANIMATION_ITER

#define GDK_PIXBUF_ANIMATION_ITER ( object)    (G_TYPE_CHECK_INSTANCE_CAST ((object), GDK_TYPE_PIXBUF_ANIMATION_ITER, GdkPixbufAnimationIter))

Definition at line 49 of file gdk-pixbuf-animation.h.

◆ GDK_TYPE_PIXBUF_ANIMATION

#define GDK_TYPE_PIXBUF_ANIMATION   (gdk_pixbuf_animation_get_type ())

Definition at line 44 of file gdk-pixbuf-animation.h.

◆ GDK_TYPE_PIXBUF_ANIMATION_ITER

#define GDK_TYPE_PIXBUF_ANIMATION_ITER   (gdk_pixbuf_animation_iter_get_type ())

Definition at line 48 of file gdk-pixbuf-animation.h.

Typedef Documentation

◆ GdkPixbufAnimation

typedef typedefG_BEGIN_DECLS struct _GdkPixbufAnimation GdkPixbufAnimation

Definition at line 39 of file gdk-pixbuf-animation.h.

◆ GdkPixbufAnimationIter

typedef struct _GdkPixbufAnimationIter GdkPixbufAnimationIter

Definition at line 42 of file gdk-pixbuf-animation.h.

Function Documentation

◆ gdk_pixbuf_animation_get_height()

GDK_PIXBUF_AVAILABLE_IN_ALL int gdk_pixbuf_animation_get_height ( GdkPixbufAnimation * animation)

◆ gdk_pixbuf_animation_get_iter()

G_GNUC_BEGIN_IGNORE_DEPRECATIONS GDK_PIXBUF_AVAILABLE_IN_ALL GdkPixbufAnimationIter * gdk_pixbuf_animation_get_iter ( GdkPixbufAnimation * animation,
const GTimeVal * start_time )

◆ gdk_pixbuf_animation_get_static_image()

GDK_PIXBUF_AVAILABLE_IN_ALL GdkPixbuf * gdk_pixbuf_animation_get_static_image ( GdkPixbufAnimation * animation)

◆ gdk_pixbuf_animation_get_type()

GDK_PIXBUF_AVAILABLE_IN_ALL GType gdk_pixbuf_animation_get_type ( void )

◆ gdk_pixbuf_animation_get_width()

GDK_PIXBUF_AVAILABLE_IN_ALL int gdk_pixbuf_animation_get_width ( GdkPixbufAnimation * animation)

◆ gdk_pixbuf_animation_is_static_image()

GDK_PIXBUF_AVAILABLE_IN_ALL gboolean gdk_pixbuf_animation_is_static_image ( GdkPixbufAnimation * animation)

◆ gdk_pixbuf_animation_iter_advance()

G_GNUC_BEGIN_IGNORE_DEPRECATIONS GDK_PIXBUF_AVAILABLE_IN_ALL gboolean gdk_pixbuf_animation_iter_advance ( GdkPixbufAnimationIter * iter,
const GTimeVal * current_time )

◆ gdk_pixbuf_animation_iter_get_delay_time()

GDK_PIXBUF_AVAILABLE_IN_ALL int gdk_pixbuf_animation_iter_get_delay_time ( GdkPixbufAnimationIter * iter)

◆ gdk_pixbuf_animation_iter_get_pixbuf()

GDK_PIXBUF_AVAILABLE_IN_ALL GdkPixbuf * gdk_pixbuf_animation_iter_get_pixbuf ( GdkPixbufAnimationIter * iter)

◆ gdk_pixbuf_animation_iter_get_type()

G_GNUC_END_IGNORE_DEPRECATIONS GDK_PIXBUF_AVAILABLE_IN_ALL GType gdk_pixbuf_animation_iter_get_type ( void )

◆ gdk_pixbuf_animation_iter_on_currently_loading_frame()

GDK_PIXBUF_AVAILABLE_IN_ALL gboolean gdk_pixbuf_animation_iter_on_currently_loading_frame ( GdkPixbufAnimationIter * iter)

◆ gdk_pixbuf_animation_new_from_file()

GDK_PIXBUF_AVAILABLE_IN_ALL GdkPixbufAnimation * gdk_pixbuf_animation_new_from_file ( const char * filename,
GError ** error )

◆ gdk_pixbuf_animation_new_from_resource()

GDK_PIXBUF_AVAILABLE_IN_2_28 GdkPixbufAnimation * gdk_pixbuf_animation_new_from_resource ( const char * resource_path,
GError ** error )

◆ gdk_pixbuf_animation_new_from_stream()

GDK_PIXBUF_AVAILABLE_IN_2_28 GdkPixbufAnimation * gdk_pixbuf_animation_new_from_stream ( GInputStream * stream,
GCancellable * cancellable,
GError ** error )

◆ gdk_pixbuf_animation_new_from_stream_async()

GDK_PIXBUF_AVAILABLE_IN_2_28 void gdk_pixbuf_animation_new_from_stream_async ( GInputStream * stream,
GCancellable * cancellable,
GAsyncReadyCallback callback,
gpointer user_data )

◆ gdk_pixbuf_animation_new_from_stream_finish()

GDK_PIXBUF_AVAILABLE_IN_2_28 GdkPixbufAnimation * gdk_pixbuf_animation_new_from_stream_finish ( GAsyncResult * async_result,
GError ** error )

◆ gdk_pixbuf_animation_ref()

GdkPixbufAnimation * gdk_pixbuf_animation_ref ( GdkPixbufAnimation * animation)

◆ gdk_pixbuf_animation_unref()

void gdk_pixbuf_animation_unref ( GdkPixbufAnimation * animation)