add ATK_LAYER_WINDOW.
authorMark McLoughlin <mark@skynet.ie>
Mon, 9 Sep 2002 11:08:34 +0000 (11:08 +0000)
committerMark McLoughlin <mmclouglin@src.gnome.org>
Mon, 9 Sep 2002 11:08:34 +0000 (11:08 +0000)
2002-09-06  Mark McLoughlin  <mark@skynet.ie>

        * atk/atkobject.h: add ATK_LAYER_WINDOW.

        * atk/atkcomponent.c: upd docs.

ChangeLog
atk/atkcomponent.c
atk/atkobject.h

index 4241fa9..e36972f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-09-06  Mark McLoughlin  <mark@skynet.ie>
+
+       * atk/atkobject.h: add ATK_LAYER_WINDOW.
+
+       * atk/atkcomponent.c: upd docs.
+
 2002-09-06  Padraig O'Briain  <padraig.obriain@sun.com>
 
        * docs/atk-sections.txt: Add ...Iface symbols to Standard sections to 
index 69ab3b9..67190e6 100755 (executable)
@@ -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 
index df43c33..fa84790 100755 (executable)
@@ -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 ())