e6c231bda17fbe2bc426ac43be1c79ecba7458c5
[platform/upstream/at-spi2-atk.git] / tests / dummyatk / my-atk-table-cell.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 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_TABLE_CELL_H_
22 #define MY_ATK_TABLE_CELL_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_TABLE_CELL                  (my_atk_tablecell_get_type ())
30 #define MY_ATK_TABLE_CELL(obj)                 (G_TYPE_CHECK_INSTANCE_CAST ((obj), MY_TYPE_ATK_TABLE_CELL, MyAtkTableCell))
31 #define MY_ATK_TABLE_CELL_CLASS (vtablecell)    (G_TYPE_CHECK_CLASS_CAST ((vtablecell), MY_TYPE_ATK_TABLE_CELL, MyAtkTableCellClass))
32 #define MY_IS_ATK_TABLE_CELL(obj)              (G_TYPE_CHECK_INSTANCE_TYPE ((obj), MY_TYPE_ATK_TABLE_CELL))
33 #define MY_IS_ATK_TABLE_CELL_CLASS (vtablecell) (G_TYPE_CHECK_CLASS_TYPE ((vtablecell), MY_TYPE_ATK_TABLE_CELL))
34 #define MY_ATK_TABLE_CELL_GET_CLASS (inst)      (G_TYPE_INSTANCE_GET_CLASS ((inst), MY_TYPE_ATK_TABLE_CELL, MyAtkTableCellClass))
35
36 typedef struct _MyAtkTableCell MyAtkTableCell;
37 typedef struct _MyAtkTableCellClass MyAtkTableCellClass;
38
39 struct _MyAtkTableCell {
40   MyAtkObject parent;
41   MyAtkObject *parent_table;
42   gpointer value;
43   gint x;
44   gint y;
45   gint column_span;
46   gint row_span;
47   gint column_index;
48   gboolean selected;
49   gchar *row_desc;
50   gint xy[2];
51 };
52
53 struct _MyAtkTableCellClass {
54   MyAtkObjectClass parent;
55 };
56
57 GType my_atk_tablecell_get_type (void);
58
59 gboolean my_atk_set_table_cell (AtkTableCell *self, gint x, gint y, gint row, gint column);
60 gboolean my_atk_set_tablecell (MyAtkTableCell *self, gpointer value, const gchar *row_desc, MyAtkObject *parent_table, gboolean selected, gint *xy);
61
62 #endif /* MY_ATK_TABLE_CELL_H_ */