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 Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 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  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18  * Boston, MA 02110-1301, USA.
19  */
20 
21 #ifndef MY_ATK_HYPERLINK_H_
22 #define MY_ATK_HYPERLINK_H_
23 
24 #include <glib.h>
25 #include <glib-object.h>
26 #include <atk/atk.h>
27 
28 #include "my-atk-object.h"
29 
30 #define MY_TYPE_ATK_HYPERLINK             (my_atk_hyperlink_get_type ())
31 #define MY_ATK_HYPERLINK(obj)             (G_TYPE_CHECK_INSTANCE_CAST ((obj), MY_TYPE_ATK_HYPERLINK, MyAtkHyperlink))
32 #define MY_ATK_HYPERLINK_CLASS(vtable)    (G_TYPE_CHECK_CLASS_CAST ((vtable), MY_TYPE_ATK_HYPERLINK, MyAtkHyperlinkClass))
33 #define MY_IS_ATK_HYPERLINK(obj)          (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MY_TYPE_ATK_HYPERLINK))
34 #define MY_IS_ATK_HYPERLINK_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), MY_TYPE_ATK_HYPERLINK))
35 #define MY_ATK_HYPERLINK_GET_CLASS(inst)  (G_TYPE_INSTANCE_GET_CLASS ((inst), MY_TYPE_ATK_HYPERLINK, MyAtkHyperlinkClass))
36 
37 typedef struct _MyAtkHyperlink MyAtkHyperlink;
38 typedef struct _MyAtkHyperlinkClass MyAtkHyperlinkClass;
39 
40 struct _MyAtkHyperlink {
41   MyAtkObject parent;
42   gchar *uri;
43   gint start;
44   gint end;
45   gboolean state;
46   gboolean selected;
47 };
48 
49 struct _MyAtkHyperlinkClass {
50   MyAtkObjectClass parent;
51 };
52 
53 GType my_atk_hyperlink_get_type (void);
54 
55 MyAtkHyperlink * new_MyAtkHyperlink (void);
56 
57 gint my_atk_set_hyperlink (AtkHyperlink *obj, const gchar *uri, gint start, gint end);
58 
59 #endif /* MY_ATK_HYPERLINK_H_ */
60