Started fixing IDL docs.
[platform/core/uifw/at-spi2-atk.git] / libspi / relation.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001 Sun Microsystems Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 /* relation.c : implements the Relation interface */
24
25 #include <config.h>
26 #include <stdio.h>
27 #include <libspi/relation.h>
28
29 /* A pointer to our parent object class */
30 static GObjectClass *parent_class;
31
32 static void
33 spi_relation_finalize (GObject *obj)
34 {
35   SpiRelation *relation = SPI_RELATION(obj);
36   g_object_unref (relation->relation);
37   relation->relation = NULL;
38   parent_class->finalize (obj);
39 }
40
41 SpiRelation *
42 spi_relation_new (AtkRelation *obj)
43 {
44   SpiRelation *new_relation = g_object_new (SPI_RELATION_TYPE, NULL);
45   new_relation->relation = obj;
46   g_object_ref (obj);
47   return new_relation;
48 }
49
50 static void
51 spi_relation_class_init (SpiRelationClass *klass)
52 {
53   GObjectClass * object_class = (GObjectClass *) klass;
54   POA_Accessibility_Relation__epv *epv = &klass->epv;
55   parent_class = g_type_class_peek_parent (klass);
56
57   object_class->finalize = spi_relation_finalize;
58
59   epv->getRelationType  = NULL; /* TODO: finish me! */
60   epv->getNTargets      = NULL;
61   epv->getTarget        = NULL;
62 }
63
64 static void
65 spi_relation_init (SpiRelation *relation)
66 {
67 }
68
69 BONOBO_TYPE_FUNC_FULL (SpiRelation,
70                        Accessibility_Relation,
71                        BONOBO_TYPE_OBJECT,
72                        spi_relation);