2.38.0
[platform/upstream/at-spi2-atk.git] / tests / atk_suite.h
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; https://wiki.gnome.org/Accessibility)
4  *
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 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  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
20  * Boston, MA 02110-1301, USA.
21  */
22
23 #ifndef _ATK_SUITE_H
24 #define _ATK_SUITE_H
25
26 #include <atspi/atspi.h>
27
28 #define ATK_TEST_PATH_ACCESSIBLE (const char *)"/Accessible"
29 #define ATK_TEST_PATH_ACTION (const char *)"/Action"
30 #define ATK_TEST_PATH_COMP (const char *)"/Component"
31 #define ATK_TEST_PATH_COLLECTION (const char *)"/Collection"
32 #define ATK_TEST_PATH_DOC (const char *)"/Document"
33 #define ATK_TEST_PATH_EDIT_TEXT (const char *)"/Editable_Text"
34 #define ATK_TEST_PATH_HYPERLINK (const char *)"/Hyperlink"
35 #define ATK_TEST_PATH_HYPERTEXT (const char *)"/Hypertext"
36 #define ATK_TEST_PATH_IMAGE (const char *)"/Image"
37 #define ATK_TEST_PATH_SELECTION (const char *)"/Selection"
38 #define ATK_TEST_PATH_STATE_SET (const char *)"/State_Set"
39 #define ATK_TEST_PATH_TABLE (const char *)"/Table"
40 #define ATK_TEST_PATH_TABLE_CELL (const char *)"/Table_Cell"
41 #define ATK_TEST_PATH_TEXT (const char *)"/Text"
42 #define ATK_TEST_PATH_VALUE (const char *)"/Value"
43
44 void atk_test_accessible (void);
45 void atk_test_action (void);
46 void atk_test_component (void);
47 void atk_test_collection (void);
48 void atk_test_document (void);
49 void atk_test_editable_text (void);
50 void atk_test_hyperlink (void);
51 void atk_test_hypertext (void);
52 void atk_test_image (void);
53 void atk_test_selection (void);
54 void atk_test_state_set (void);
55 void atk_test_table (void);
56 void atk_test_table_cell (void);
57 void atk_test_text (void);
58 void atk_test_value (void);
59
60 #endif /* _ATK_SUITE_H */