2dd7409bf161f9c288d959196c91e52485dcf9f6
[platform/upstream/at-spi2-atk.git] / tests / dummyatk / my-atk-hypertext.h
1 /*
2  * Copyright 2008 Codethink Ltd.
3  * Copyright (c) 2015 Samsung Electronics Co., Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Library General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Library General Public License for more details.
14  *
15  * You should have received a copy of the GNU Library General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18  * Boston, MA 02111-1307, USA.
19  */
20
21 #ifndef MY_ATK_HYPERTEXT_H_
22 #define MY_ATK_HYPERTEXT_H_
23
24 #include <glib.h>
25 #include <glib-object.h>
26 #include <atk/atk.h>
27
28 #include "my-atk-object.h"
29 #define MY_TYPE_ATK_HYPERTEXT             (my_atk_hypertext_get_type ())
30 #define MY_ATK_HYPERTEXT(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), MY_TYPE_ATK_HYPERTEXT, MyAtkHypertext))
31 #define MY_ATK_HYPERTEXT_CLASS(vtable)    (G_TYPE_CHECK_CLASS_CAST ((vtable), MY_TYPE_ATK_HYPERTEXT, MyAtkHypertextClass))
32 #define MY_IS_ATK_HYPERTEXT(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MY_TYPE_ATK_HYPERTEXT))
33 #define MY_IS_ATK_HYPERTEXT_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), MY_TYPE_ATK_HYPERTEXT))
34 #define MY_ATK_HYPERTEXT_GET_CLASS(inst)  (G_TYPE_INSTANCE_GET_CLASS ((inst), MY_TYPE_ATK_HYPERTEXT, MyAtkHypertextClass))
35
36 typedef struct _MyAtkHypertext MyAtkHypertext;
37 typedef struct _MyAtkHypertextClass MyAtkHypertextClass;
38
39 struct _MyAtkHypertext {
40   MyAtkObject parent;
41   GPtrArray *array;
42 };
43
44 struct _MyAtkHypertextClass {
45   MyAtkObjectClass parent;
46 };
47
48 GType my_atk_hypertext_get_type (void);
49
50 gint my_atk_set_hypertext (AtkHypertext *obj, const gchar *text);
51
52 #endif /* MY_ATK_HYPERTEXT_H_ */