summaryrefslogtreecommitdiff
path: root/atk
diff options
context:
space:
mode:
authorPadraig O'Briain <padraig.obriain@sun.com>2004-11-22 13:21:18 +0000
committerPadraig O'Briain <padraigo@src.gnome.org>2004-11-22 13:21:18 +0000
commit44d21d4402a64f7ca60b84e8543e205f585d207f (patch)
tree9cd544e6d4acad38183ed94dc3790c2c51d0b9a9 /atk
parent46270d7db51b3808ffc2aa0324272159bb6e792c (diff)
downloadatk-44d21d4402a64f7ca60b84e8543e205f585d207f.tar.gz
Replace DEPRECATED by @Deprecated in comments to fix warning when
2004-11-22 Padraig O'Briain <padraig.obriain@sun.com> * atk/atkobject.c: Replace DEPRECATED by @Deprecated in comments to fix warning when documentation is generated. * atk/atkrelation.[ch]: * docs/tmpl/atkrelation.sgml: Add atk_relation_add_target. * atk/atkrelationset.[ch]: * atk/tmpl/atkrelationset.sgml: Add atk_relation_add_relation_by_type. * docs/atk-sections.txt: Add atk_relation_add_target and atk_relation_add_relation_by_type. Fixes bug #158722.
Diffstat (limited to 'atk')
-rwxr-xr-xatk/atkobject.c6
-rwxr-xr-xatk/atkrelation.c26
-rwxr-xr-xatk/atkrelation.h3
-rwxr-xr-xatk/atkrelationset.c37
-rwxr-xr-xatk/atkrelationset.h3
5 files changed, 73 insertions, 2 deletions
diff --git a/atk/atkobject.c b/atk/atkobject.c
index 2ca6636..2c17358 100755
--- a/atk/atkobject.c
+++ b/atk/atkobject.c
@@ -677,9 +677,10 @@ atk_object_get_role (AtkObject *accessible)
* @accessible: an #AtkObject
*
* Gets the layer of the accessible.
- * DEPRECATED: use atk_component_get_layer instead!
*
* Returns: an #AtkLayer which is the layer of the accessible
+ *
+ * @Deprecated: Use atk_component_get_layer instead.
**/
AtkLayer
atk_object_get_layer (AtkObject *accessible)
@@ -701,11 +702,12 @@ atk_object_get_layer (AtkObject *accessible)
*
* Gets the zorder of the accessible. The value G_MININT will be returned
* if the layer of the accessible is not ATK_LAYER_MDI.
- * DEPRECATED: use atk_component_get_mdi_zorder instead!
*
* Returns: a gint which is the zorder of the accessible, i.e. the depth at
* which the component is shown in relation to other components in the same
* container.
+ *
+ * @Deprecated: Use atk_component_get_mdi_zorder instead.
**/
gint
atk_object_get_mdi_zorder (AtkObject *accessible)
diff --git a/atk/atkrelation.c b/atk/atkrelation.c
index 6ed728e..3452526 100755
--- a/atk/atkrelation.c
+++ b/atk/atkrelation.c
@@ -304,6 +304,32 @@ delete_object_while_in_relation (gpointer callback_data,
g_ptr_array_remove (array, where_the_object_was);
}
+/**
+ * atk_relation_add_target:
+ * @relation: an #AtkRelation
+ * @target: an #AtkObject
+ *
+ * Adds the specified AtkObject to the target for the relation, if it is
+ * not already present.
+ **/
+void
+atk_relation_add_target (AtkRelation *relation,
+ AtkObject *target)
+{
+ guint i;
+
+ g_return_if_fail (ATK_IS_RELATION (relation));
+ g_return_if_fail (ATK_IS_OBJECT (target));
+
+ /* first check if target occurs in array ... */
+ for (i = 0; i < relation->target->len; i++)
+ if (g_ptr_array_index(relation->target, i) == target)
+ return;
+
+ g_ptr_array_add (relation->target, target);
+ g_object_weak_ref (G_OBJECT (target), (GWeakNotify) delete_object_while_in_relation, relation->target);
+}
+
static void
atk_relation_finalize (GObject *object)
{
diff --git a/atk/atkrelation.h b/atk/atkrelation.h
index 3e89702..08b0708 100755
--- a/atk/atkrelation.h
+++ b/atk/atkrelation.h
@@ -77,6 +77,9 @@ AtkRelationType atk_relation_get_relation_type (AtkRelation *relation
* Returns the target list of a relation.
*/
GPtrArray* atk_relation_get_target (AtkRelation *relation);
+void atk_relation_add_target (AtkRelation *relation,
+ AtkObject *target);
+
#ifdef __cplusplus
}
diff --git a/atk/atkrelationset.c b/atk/atkrelationset.c
index 6847ea5..8308bc2 100755
--- a/atk/atkrelationset.c
+++ b/atk/atkrelationset.c
@@ -264,3 +264,40 @@ atk_relation_set_finalize (GObject *object)
G_OBJECT_CLASS (parent_class)->finalize (object);
}
+
+/**
+ * atk_relation_set_add_relation_by_type:
+ * @set: an #AtkRelationSet
+ * @relationship: an #AtkRelationType
+ * @target: an #AtkObject
+ *
+ * Add a new relation of the specified type with the specified target to
+ * the current relation set if the relation set does not contain a relation
+ * of that type. If it is does contain a relation of that typea the target
+ * is added to the relation.
+ **/
+void
+atk_relation_set_add_relation_by_type (AtkRelationSet *set,
+ AtkRelationType relationship,
+ AtkObject *target)
+{
+ AtkRelation *relation;
+
+ g_return_if_fail (ATK_IS_RELATION_SET (set));
+ g_return_if_fail (ATK_IS_OBJECT (target));
+
+ relation = atk_relation_set_get_relation_by_type (set,
+ relationship);
+ if (relation)
+ {
+ atk_relation_add_target (relation, target);
+ }
+ else
+ {
+ /* the relation hasn't been created yet ... */
+ relation = atk_relation_new (&target, 1, relationship);
+ atk_relation_set_add (set, relation);
+ g_object_unref(relation);
+ }
+}
+
diff --git a/atk/atkrelationset.h b/atk/atkrelationset.h
index fcfeb27..2225baf 100755
--- a/atk/atkrelationset.h
+++ b/atk/atkrelationset.h
@@ -67,6 +67,9 @@ AtkRelation* atk_relation_set_get_relation (AtkRelationSet *set,
gint i);
AtkRelation* atk_relation_set_get_relation_by_type (AtkRelationSet *set,
AtkRelationType relationship);
+void atk_relation_set_add_relation_by_type (AtkRelationSet *set,
+ AtkRelationType relationship,
+ AtkObject *target);
#ifdef __cplusplus
}