mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 00:20:42 -05:00
2007-12-20 Emmanuele Bassi <ebassi@openedhand.com>
* clutter/clutter-label.c: (clutter_label_query_coords): Return the bounding box set inside request_coords(), if any; otherwise, return the natural allocation of the label. (#678, reported by Gwenole Beauchesne) * tests/test-rotate.c: Align the label
This commit is contained in:
parent
263d8ea5a0
commit
ecded5cb7c
@ -1,3 +1,12 @@
|
||||
2007-12-20 Emmanuele Bassi <ebassi@openedhand.com>
|
||||
|
||||
* clutter/clutter-label.c:
|
||||
(clutter_label_query_coords): Return the bounding box set inside
|
||||
request_coords(), if any; otherwise, return the natural allocation
|
||||
of the label. (#678, reported by Gwenole Beauchesne)
|
||||
|
||||
* tests/test-rotate.c: Align the label
|
||||
|
||||
2007-12-19 Tomas Frydrych <tf@openedhand.com>
|
||||
|
||||
* clutter/Makefile.am:
|
||||
|
@ -315,6 +315,12 @@ clutter_label_query_coords (ClutterActor *self,
|
||||
|
||||
priv = label->priv;
|
||||
|
||||
if ((priv->allocation.x2 - priv->allocation.x1) > 0)
|
||||
{
|
||||
*box = priv->allocation;
|
||||
return;
|
||||
}
|
||||
|
||||
if (priv->wrap)
|
||||
clutter_label_clear_layout (label);
|
||||
|
||||
@ -324,8 +330,6 @@ clutter_label_query_coords (ClutterActor *self,
|
||||
|
||||
box->x2 = box->x1 + CLUTTER_UNITS_FROM_PANGO_UNIT (logical_rect.width);
|
||||
box->y2 = box->y1 + CLUTTER_UNITS_FROM_PANGO_UNIT (logical_rect.height);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -36,6 +36,7 @@ main (int argc, char *argv[])
|
||||
clutter_container_add_actor (CLUTTER_CONTAINER (stage), hand);
|
||||
|
||||
label = clutter_label_new_with_text ("Mono 16", "The Wonder of the Spinning Hand");
|
||||
clutter_label_set_alignment (CLUTTER_LABEL (label), PANGO_ALIGN_CENTER);
|
||||
clutter_actor_set_position (label, 150, 150);
|
||||
clutter_actor_show (label);
|
||||
clutter_container_add_actor (CLUTTER_CONTAINER (stage), label);
|
||||
|
Loading…
Reference in New Issue
Block a user