aboutsummaryrefslogtreecommitdiffstats
path: root/src/empathy-rounded-actor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/empathy-rounded-actor.h')
-rw-r--r--src/empathy-rounded-actor.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/empathy-rounded-actor.h b/src/empathy-rounded-actor.h
index e4c83b078..4287cf389 100644
--- a/src/empathy-rounded-actor.h
+++ b/src/empathy-rounded-actor.h
@@ -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__*/