Constify the cursor geometry in ::cursor-event

We don't allow changing the cursor geometry inside the ::cursor-event
signal handlers; for starters, it would make binding the signal a
huge mess, and it would also potentially break the whole actor.
This commit is contained in:
Emmanuele Bassi 2008-12-15 18:23:25 +00:00
parent 2d166b250c
commit 2714397fd5

View File

@ -76,10 +76,11 @@ struct _ClutterTextClass
ClutterActorClass parent_class;
/*< public >*/
void (* text_changed) (ClutterText *self);
void (* activate) (ClutterText *self);
void (* cursor_event) (ClutterText *self,
ClutterGeometry *geometry);
/* signals, not vfuncs */
void (* text_changed) (ClutterText *self);
void (* activate) (ClutterText *self);
void (* cursor_event) (ClutterText *self,
const ClutterGeometry *geometry);
/*< private >*/
/* padding for future expansion */