]> git.0d.be Git - empathy.git/blobdiff - src/empathy-rounded-actor.h
RoundedActor: allow to set a different round factor
[empathy.git] / src / empathy-rounded-actor.h
index e4c83b078310706857bac72fcab468e813c19060..4287cf389a90d3e400d6611ffe18ae6dd2194f55 100644 (file)
@@ -27,6 +27,7 @@
 G_BEGIN_DECLS
 
 typedef struct _EmpathyRoundedActor EmpathyRoundedActor;
+typedef struct _EmpathyRoundedActorPriv EmpathyRoundedActorPriv;
 typedef struct _EmpathyRoundedActorClass EmpathyRoundedActorClass;
 
 struct _EmpathyRoundedActorClass {
@@ -35,6 +36,8 @@ struct _EmpathyRoundedActorClass {
 
 struct _EmpathyRoundedActor {
     GtkClutterActor parent;
+
+    EmpathyRoundedActorPriv *priv;
 };
 
 GType empathy_rounded_actor_get_type (void);
@@ -58,6 +61,9 @@ GType empathy_rounded_actor_get_type (void);
 
 ClutterActor *empathy_rounded_actor_new (void);
 
+void empathy_rounded_actor_set_round_factor (EmpathyRoundedActor *self,
+    guint round_factor);
+
 G_END_DECLS
 
 #endif /* #ifndef __EMPATHY_ROUNDED_ACTOR_H__*/