Merge branch 'master' of git+ssh://git.codethink.co.uk/git/atspi-dbus
[platform/core/uifw/at-spi2-atk.git] / pyatspi / relation.py
1 #Copyright (C) 2008 Codethink Ltd
2 #copyright: Copyright (c) 2005, 2007 IBM Corporation
3
4 #This library is free software; you can redistribute it and/or
5 #modify it under the terms of the GNU Lesser General Public
6 #License version 2 as published by the Free Software Foundation.
7
8 #This program is distributed in the hope that it will be useful,
9 #but WITHOUT ANY WARRANTY; without even the implied warranty of
10 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 #GNU General Public License for more details.
12 #You should have received a copy of the GNU Lesser General Public License
13 #along with this program; if not, write to the Free Software
14 #Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15
16 #Portions of this code originally licensed and copyright (c) 2005, 2007
17 #IBM Corporation under the BSD license, available at
18 #U{http://www.opensource.org/licenses/bsd-license.php}
19
20 #authors: Peter Parente, Mark Doffman
21
22 import interfaces
23 from base import Enum as _Enum
24 from factory import create_accessible
25
26 #------------------------------------------------------------------------------
27
28 class RelationType(_Enum):
29         _enum_lookup = {
30                 0:'RELATION_NULL',
31                 1:'RELATION_LABEL_FOR',
32                 2:'RELATION_LABELLED_BY',
33                 3:'RELATION_CONTROLLER_FOR',
34                 4:'RELATION_CONTROLLED_BY',
35                 5:'RELATION_MEMBER_OF',
36                 6:'RELATION_TOOLTIP_FOR',
37                 7:'RELATION_NODE_CHILD_OF',
38                 8:'RELATION_EXTENDED',
39                 9:'RELATION_FLOWS_TO',
40                 10:'RELATION_FLOWS_FROM',
41                 11:'RELATION_SUBWINDOW_OF',
42                 12:'RELATION_EMBEDS',
43                 13:'RELATION_EMBEDDED_BY',
44                 14:'RELATION_POPUP_FOR',
45                 15:'RELATION_PARENT_WINDOW_OF',
46                 16:'RELATION_DESCRIPTION_FOR',
47                 17:'RELATION_DESCRIBED_BY',
48                 18:'RELATION_LAST_DEFINED',
49         }
50
51 #------------------------------------------------------------------------------
52
53 RELATION_CONTROLLED_BY = RelationType(4)
54 RELATION_CONTROLLER_FOR = RelationType(3)
55 RELATION_DESCRIBED_BY = RelationType(17)
56 RELATION_DESCRIPTION_FOR = RelationType(16)
57 RELATION_EMBEDDED_BY = RelationType(13)
58 RELATION_EMBEDS = RelationType(12)
59 RELATION_EXTENDED = RelationType(8)
60 RELATION_FLOWS_FROM = RelationType(10)
61 RELATION_FLOWS_TO = RelationType(9)
62 RELATION_LABELLED_BY = RelationType(2)
63 RELATION_LABEL_FOR = RelationType(1)
64 RELATION_LAST_DEFINED = RelationType(18)
65 RELATION_MEMBER_OF = RelationType(5)
66 RELATION_NODE_CHILD_OF = RelationType(7)
67 RELATION_NULL = RelationType(0)
68 RELATION_PARENT_WINDOW_OF = RelationType(15)
69 RELATION_POPUP_FOR = RelationType(14)
70 RELATION_SUBWINDOW_OF = RelationType(11)
71 RELATION_TOOLTIP_FOR = RelationType(6)
72
73 #------------------------------------------------------------------------------
74
75 # Build a dictionary mapping relation values to names based on the prefix of the enum constants.
76
77 RELATION_VALUE_TO_NAME = dict(((value, name[9:].lower().replace('_', ' ')) 
78                                for name, value 
79                                in globals().items()
80                                if name.startswith('RELATION_')))
81
82 #------------------------------------------------------------------------------
83
84 def _marshal_relation_set(cache, app_name, relation_set):
85         """
86         The D-Bus protocol has a relation set passed as an array of
87         relation types and object arrays.
88
89         This function marshals the D-Bus message into a list of relation
90         objects.
91         """
92         return [Relation(cache, app_name, *relation) for relation in relation_set]
93
94 #------------------------------------------------------------------------------
95
96 class Relation(object):
97         """
98         An interface via which objects' non-hierarchical relationships
99         to one another are indicated. An instance of Relations represents
100         a "one-to-many" correspondance.
101         """
102
103         def __init__(self, cache, app_name, type, objects):
104                 self._type = type
105                 self._objects = objects
106
107                 self._cache = cache
108                 self._app_name = app_name
109
110         def getNTargets(self):
111                 """
112                 @return the number of objects to which this relationship applies.
113                 """
114                 return len(self._objects)
115
116         def getRelationType(self):
117                 """
118                 @return the RelationType of this Relation.
119                 """
120                 return self._type
121
122         def getRelationTypeName(self):
123                 """
124                 @return an unlocalized string representing the relation type.
125                 """
126                 return RELATION_VALUE_TO_NAME[self._type]
127
128         def getTarget(self, index):
129                 """
130                 @return an Object which is the 'nth'target of this Relation,
131                 e.g. the Object at index i in the list of Objects having the
132                 specified relationship to this Accessible.
133                 """
134                 return create_accessible(self._cache,
135                                          self._app_name,
136                                          self._objects[index],
137                                          interfaces.ATSPI_ACCESSIBLE,
138                                          connection=self._cache._connection)
139
140 #END----------------------------------------------------------------------------