summaryrefslogtreecommitdiff
path: root/atk
diff options
context:
space:
mode:
authorMark McLoughlin <mark@skynet.ie>2002-09-09 11:08:34 +0000
committerMark McLoughlin <mmclouglin@src.gnome.org>2002-09-09 11:08:34 +0000
commit92d9f9fe3e59f3cbf914b650da87038ccd994814 (patch)
treeda9ea92de0bb317b8312ea3cbf659541d8e09365 /atk
parent8b878cba37d0794e364db7b37555b0032c13b08b (diff)
downloadatk-92d9f9fe3e59f3cbf914b650da87038ccd994814.tar.gz
add ATK_LAYER_WINDOW.
2002-09-06 Mark McLoughlin <mark@skynet.ie> * atk/atkobject.h: add ATK_LAYER_WINDOW. * atk/atkcomponent.c: upd docs.
Diffstat (limited to 'atk')
-rwxr-xr-xatk/atkcomponent.c2
-rwxr-xr-xatk/atkobject.h4
2 files changed, 4 insertions, 2 deletions
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 ())