forked from AuroraMiddleware/gtk
f679ba566e
Make it possible to have no background in the animated paintable. This will be used in a future demo. Update all users.
17 lines
695 B
C
17 lines
695 B
C
#ifndef __PAINTABLE_H__
|
|
#define __PAINTABLE_H__
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
void gtk_nuclear_snapshot (GtkSnapshot *snapshot,
|
|
double width,
|
|
double height,
|
|
double rotation,
|
|
gboolean draw_background);
|
|
|
|
GdkPaintable * gtk_nuclear_icon_new (double rotation);
|
|
GdkPaintable * gtk_nuclear_animation_new (gboolean draw_background);
|
|
GtkMediaStream *gtk_nuclear_media_stream_new (void);
|
|
|
|
#endif /* __PAINTABLE_H__ */
|