From: Mark McLoughlin Date: Mon, 9 Sep 2002 11:08:34 +0000 (+0000) Subject: add ATK_LAYER_WINDOW. X-Git-Tag: ATK_1_1_0~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=92d9f9fe3e59f3cbf914b650da87038ccd994814;p=platform%2Fupstream%2Fatk.git add ATK_LAYER_WINDOW. 2002-09-06 Mark McLoughlin * atk/atkobject.h: add ATK_LAYER_WINDOW. * atk/atkcomponent.c: upd docs. --- diff --git a/ChangeLog b/ChangeLog index 4241fa9..e36972f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2002-09-06 Mark McLoughlin + + * atk/atkobject.h: add ATK_LAYER_WINDOW. + + * atk/atkcomponent.c: upd docs. + 2002-09-06 Padraig O'Briain * docs/atk-sections.txt: Add ...Iface symbols to Standard sections to diff --git a/atk/atkcomponent.c b/atk/atkcomponent.c index 69ab3b9..67190e6 100755 --- a/atk/atkcomponent.c +++ b/atk/atkcomponent.c @@ -344,7 +344,7 @@ atk_component_get_layer (AtkComponent *component) * @component: an #AtkComponent * * Gets the zorder of the component. The value G_MININT will be returned - * if the layer of the component is not ATK_LAYER_MDI. + * if the layer of the component is not ATK_LAYER_MDI or ATK_LAYER_WINDOW. * * Returns: a gint which is the zorder of the component, i.e. the depth at * which the component is shown in relation to other components in the same diff --git a/atk/atkobject.h b/atk/atkobject.h index df43c33..fa84790 100755 --- a/atk/atkobject.h +++ b/atk/atkobject.h @@ -197,6 +197,7 @@ AtkRole atk_role_register (const gchar *name); *@ATK_LAYER_MDI: This layer is used for layered components *@ATK_LAYER_POPUP: This layer is used for popup components, such as menus *@ATK_LAYER_OVERLAY: This layer is reserved for future use. + *@ATK_LAYER_WINDOW: This layer is used for toplevel windows. * * Describes the layer of a component **/ @@ -208,7 +209,8 @@ typedef enum ATK_LAYER_WIDGET, ATK_LAYER_MDI, ATK_LAYER_POPUP, - ATK_LAYER_OVERLAY + ATK_LAYER_OVERLAY, + ATK_LAYER_WINDOW } AtkLayer; #define ATK_TYPE_OBJECT (atk_object_get_type ())