diff options
author | Carlos Garnacho <carlosg@gnome.org> | 2010-11-01 02:46:35 +0100 |
---|---|---|
committer | Carlos Garnacho <carlosg@gnome.org> | 2010-12-04 15:38:33 +0100 |
commit | ebf5bd390f9c8fb13379afb12eaecea66262b020 (patch) | |
tree | 8c27e38c6581d65113c9e214f1132420146d8316 /gtk/gtkthemingengine.h | |
parent | af1f8701dc70ffc7b1a62714ef9b886c1edf5ab3 (diff) | |
download | gtk+-ebf5bd390f9c8fb13379afb12eaecea66262b020.tar.gz |
Add gtk_render_activity()
This method will render progress bars and spinners, these should
handle active and inconsistent states' animation progress in order
to perform animations.
Diffstat (limited to 'gtk/gtkthemingengine.h')
-rw-r--r-- | gtk/gtkthemingengine.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/gtk/gtkthemingengine.h b/gtk/gtkthemingengine.h index 9cbae78cf6..78842c6f16 100644 --- a/gtk/gtkthemingengine.h +++ b/gtk/gtkthemingengine.h @@ -151,6 +151,12 @@ struct _GtkThemingEngineClass gdouble y, gdouble width, gdouble height); + void (* render_activity) (GtkThemingEngine *engine, + cairo_t *cr, + gdouble x, + gdouble y, + gdouble width, + gdouble height); }; GType gtk_theming_engine_get_type (void) G_GNUC_CONST; |