0883fb930b0493d1ce3cb4efb69db0600803c597
[platform/core/uifw/at-spi2-atk.git] / pyatspi / interfaces.py
1 #Copyright (C) 2008 Codethink Ltd
2
3 #This library is free software; you can redistribute it and/or
4 #modify it under the terms of the GNU Lesser General Public
5 #License version 2 as published by the Free Software Foundation.
6
7 #This program is distributed in the hope that it will be useful,
8 #but WITHOUT ANY WARRANTY; without even the implied warranty of
9 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 #GNU General Public License for more details.
11 #You should have received a copy of the GNU Lesser General Public License
12 #along with this program; if not, write to the Free Software
13 #Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
14
15 ATSPI_ACCESSIBLE = 'org.freedesktop.atspi.Accessible'
16 ATSPI_ACTION = 'org.freedesktop.atspi.Action'
17 ATSPI_APPLICATION = 'org.freedesktop.atspi.Application'
18 ATSPI_COMPONENT = 'org.freedesktop.atspi.Component'
19 ATSPI_COLLECTION = 'org.freedesktop.atspi.Collection'
20 ATSPI_DESKTOP = 'org.freedesktop.atspi.Desktop'
21 ATSPI_DOCUMENT = 'org.freedesktop.atspi.Document'
22 ATSPI_EDITABLE_TEXT = 'org.freedesktop.atspi.EditableText'
23 ATSPI_HYPERLINK = 'org.freedesktop.atspi.Hyperlink'
24 ATSPI_HYPERTEXT = 'org.freedesktop.atspi.Hypertext'
25 ATSPI_IMAGE = 'org.freedesktop.atspi.Image'
26 ATSPI_LOGIN_HELPER = 'org.freedesktop.atspi.LoginHelper'
27 ATSPI_SELECTION = 'org.freedesktop.atspi.Selection'
28 ATSPI_SELECTOR = 'org.freedesktop.atspi.Selector'
29 ATSPI_STREAMABLE_CONTENT = 'org.freedesktop.atspi.Content'
30 ATSPI_TABLE = 'org.freedesktop.atspi.Table'
31 ATSPI_TEXT = 'org.freedesktop.atspi.Text'
32 ATSPI_VALUE = 'org.freedesktop.atspi.Value'
33
34 ATSPI_REGISTRY_INTERFACE = 'org.freedesktop.atspi.Registry'
35 ATSPI_REGISTRY_PATH = '/org/freedesktop/atspi/registry'
36 ATSPI_REGISTRY_NAME = 'org.freedesktop.atspi.Registry'
37
38 ATSPI_DEVICE_EVENT_CONTROLLER_INTERFACE = 'org.freedesktop.atspi.DeviceEventController'
39 ATSPI_DEVICE_EVENT_CONTROLLER_PATH = '/org/freedesktop/atspi/registry/deviceeventcontroller'
40 ATSPI_DEVICE_EVENT_LISTENER_INTERFACE = 'org.freedesktop.atspi.DeviceEventListener'