atk 3.1.1 → 3.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +18 -2
- data/dependency-check/Rakefile +44 -0
- data/lib/atk.rb +29 -21
- data/test/atk-test-utils.rb +1 -1
- data/test/run-test.rb +5 -2
- data/test/test-text-rectangle.rb +5 -4
- data/test/test-version.rb +1 -1
- metadata +7 -44
- data/README +0 -30
- data/ext/atk/atk.def +0 -2
- data/ext/atk/depend +0 -11
- data/ext/atk/extconf.rb +0 -83
- data/ext/atk/rbatk.c +0 -66
- data/ext/atk/rbatk.h +0 -47
- data/ext/atk/rbatkaction.c +0 -85
- data/ext/atk/rbatkcomponent.c +0 -175
- data/ext/atk/rbatkconversions.h +0 -70
- data/ext/atk/rbatkdocument.c +0 -96
- data/ext/atk/rbatkeditabletext.c +0 -177
- data/ext/atk/rbatkgobjectaccessible.c +0 -46
- data/ext/atk/rbatkhyperlink.c +0 -71
- data/ext/atk/rbatkhypertext.c +0 -53
- data/ext/atk/rbatkimage.c +0 -68
- data/ext/atk/rbatkimplementor.c +0 -38
- data/ext/atk/rbatknoopobject.c +0 -40
- data/ext/atk/rbatknoopobjectfactory.c +0 -40
- data/ext/atk/rbatkobject.c +0 -153
- data/ext/atk/rbatkobjectfactory.c +0 -53
- data/ext/atk/rbatkobjectrole.c +0 -50
- data/ext/atk/rbatkprivate.h +0 -48
- data/ext/atk/rbatkregistry.c +0 -63
- data/ext/atk/rbatkrelation.c +0 -98
- data/ext/atk/rbatkrelationset.c +0 -95
- data/ext/atk/rbatkrelationtype.c +0 -38
- data/ext/atk/rbatkselection.c +0 -87
- data/ext/atk/rbatkstate.c +0 -51
- data/ext/atk/rbatkstateset.c +0 -180
- data/ext/atk/rbatkstreamablecontent.c +0 -57
- data/ext/atk/rbatktable.c +0 -271
- data/ext/atk/rbatktext.c +0 -318
- data/ext/atk/rbatktextattribute.c +0 -54
- data/ext/atk/rbatktextrange.c +0 -92
- data/ext/atk/rbatktextrectangle.c +0 -149
- data/ext/atk/rbatkutil.c +0 -122
- data/ext/atk/rbatkvalue.c +0 -78
- data/extconf.rb +0 -49
data/ext/atk/rbatkimage.c
DELETED
@@ -1,68 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2004 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbatkprivate.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE mImage
|
25
|
-
#define _SELF(s) (RVAL2ATKIMAGE(s))
|
26
|
-
|
27
|
-
static VALUE
|
28
|
-
rg_image_position(VALUE self, VALUE coord_type)
|
29
|
-
{
|
30
|
-
gint x, y;
|
31
|
-
atk_image_get_image_position(_SELF(self), &x, &y,
|
32
|
-
RVAL2ATKCOORDTYPE(coord_type));
|
33
|
-
return rb_assoc_new(INT2NUM(x), INT2NUM(y));
|
34
|
-
}
|
35
|
-
|
36
|
-
static VALUE
|
37
|
-
rg_image_description(VALUE self)
|
38
|
-
{
|
39
|
-
return CSTR2RVAL(atk_image_get_image_description(_SELF(self)));
|
40
|
-
}
|
41
|
-
|
42
|
-
static VALUE
|
43
|
-
rg_set_image_description(VALUE self, VALUE description)
|
44
|
-
{
|
45
|
-
gboolean ret = atk_image_set_image_description(_SELF(self),
|
46
|
-
RVAL2CSTR(description));
|
47
|
-
if (! ret) rb_raise(rb_eRuntimeError, "Can't set image description");
|
48
|
-
return self;
|
49
|
-
}
|
50
|
-
|
51
|
-
static VALUE
|
52
|
-
rg_image_size(VALUE self)
|
53
|
-
{
|
54
|
-
gint width, height;
|
55
|
-
atk_image_get_image_size(_SELF(self), &width, &height);
|
56
|
-
return rb_assoc_new(INT2NUM(width), INT2NUM(height));
|
57
|
-
}
|
58
|
-
|
59
|
-
void
|
60
|
-
Init_atk_image(VALUE mAtk)
|
61
|
-
{
|
62
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_INTERFACE(ATK_TYPE_IMAGE, "Image", mAtk);
|
63
|
-
|
64
|
-
RG_DEF_METHOD(image_position, 1);
|
65
|
-
RG_DEF_METHOD(image_description, 0);
|
66
|
-
RG_DEF_METHOD(set_image_description, 1);
|
67
|
-
RG_DEF_METHOD(image_size, 0);
|
68
|
-
}
|
data/ext/atk/rbatkimplementor.c
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2003 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbatkprivate.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE mImplementor
|
25
|
-
#define _SELF(s) (RVAL2ATKIMPLEMENTOR(s))
|
26
|
-
|
27
|
-
static VALUE
|
28
|
-
rg_ref_accessible(VALUE self)
|
29
|
-
{
|
30
|
-
return GOBJ2RVAL(atk_implementor_ref_accessible(_SELF(self)));
|
31
|
-
}
|
32
|
-
|
33
|
-
void
|
34
|
-
Init_atk_implementor(VALUE mAtk)
|
35
|
-
{
|
36
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_INTERFACE(ATK_TYPE_IMPLEMENTOR, "Implementor", mAtk);
|
37
|
-
RG_DEF_METHOD(ref_accessible, 0);
|
38
|
-
}
|
data/ext/atk/rbatknoopobject.c
DELETED
@@ -1,40 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2003 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbatkprivate.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cNoOpObject
|
25
|
-
#define _SELF(s) (RVAL2ATKNOOPOBJECT(s))
|
26
|
-
|
27
|
-
static VALUE
|
28
|
-
rg_initialize(VALUE self, VALUE gobj)
|
29
|
-
{
|
30
|
-
G_INITIALIZE(self, atk_no_op_object_new(RVAL2GOBJ(gobj)));
|
31
|
-
return Qnil;
|
32
|
-
}
|
33
|
-
|
34
|
-
void
|
35
|
-
Init_atk_noopobject(VALUE mAtk)
|
36
|
-
{
|
37
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(ATK_TYPE_NO_OP_OBJECT, "NoOpObject", mAtk);
|
38
|
-
|
39
|
-
RG_DEF_METHOD(initialize, 1);
|
40
|
-
}
|
@@ -1,40 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2003 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbatkprivate.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cNoOpObjectFactory
|
25
|
-
#define _SELF(s) (RVAL2ATKNOOPOBJECTFACTORY(s))
|
26
|
-
|
27
|
-
static VALUE
|
28
|
-
rg_initialize(VALUE self)
|
29
|
-
{
|
30
|
-
G_INITIALIZE(self, atk_no_op_object_factory_new());
|
31
|
-
return Qnil;
|
32
|
-
}
|
33
|
-
|
34
|
-
void
|
35
|
-
Init_atk_noopobjectfactory(VALUE mAtk)
|
36
|
-
{
|
37
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(ATK_TYPE_NO_OP_OBJECT_FACTORY, "NoOpObjectFactory", mAtk);
|
38
|
-
|
39
|
-
RG_DEF_METHOD(initialize, 0);
|
40
|
-
}
|
data/ext/atk/rbatkobject.c
DELETED
@@ -1,153 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2003,2004 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbatkprivate.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cObject
|
25
|
-
#define _SELF(s) RVAL2ATKOBJECT(s)
|
26
|
-
|
27
|
-
/* How can I implement this? Since 1.10
|
28
|
-
AtkObject* atk_implementor_ref_accessible (AtkImplementor *implementor);
|
29
|
-
*/
|
30
|
-
|
31
|
-
/* Use properties accessible_*
|
32
|
-
G_CONST_RETURN gchar* atk_object_get_name (AtkObject *accessible);
|
33
|
-
G_CONST_RETURN gchar* atk_object_get_description
|
34
|
-
(AtkObject *accessible);
|
35
|
-
AtkObject* atk_object_get_parent (AtkObject *accessible);
|
36
|
-
(AtkObject *accessible);
|
37
|
-
*/
|
38
|
-
|
39
|
-
static VALUE
|
40
|
-
rg_n_accessible_children(VALUE self)
|
41
|
-
{
|
42
|
-
return INT2NUM(atk_object_get_n_accessible_children(_SELF(self)));
|
43
|
-
}
|
44
|
-
|
45
|
-
static VALUE
|
46
|
-
rg_ref_accessible_child(VALUE self, VALUE i)
|
47
|
-
{
|
48
|
-
return GOBJ2RVAL(atk_object_ref_accessible_child(_SELF(self), NUM2INT(i)));
|
49
|
-
}
|
50
|
-
|
51
|
-
static VALUE
|
52
|
-
rg_ref_relation_set(VALUE self)
|
53
|
-
{
|
54
|
-
return GOBJ2RVAL(atk_object_ref_relation_set(_SELF(self)));
|
55
|
-
}
|
56
|
-
|
57
|
-
/* Use properties accessible_*
|
58
|
-
AtkLayer atk_object_get_layer (AtkObject *accessible);
|
59
|
-
gint atk_object_get_mdi_zorder (AtkObject *accessible);
|
60
|
-
AtkRole atk_object_get_role (AtkObject *accessible);
|
61
|
-
*/
|
62
|
-
|
63
|
-
static VALUE
|
64
|
-
rg_ref_state_set(VALUE self)
|
65
|
-
{
|
66
|
-
return GOBJ2RVAL(atk_object_ref_state_set(_SELF(self)));
|
67
|
-
}
|
68
|
-
|
69
|
-
static VALUE
|
70
|
-
rg_index_in_parent(VALUE self)
|
71
|
-
{
|
72
|
-
return INT2NUM(atk_object_get_index_in_parent(_SELF(self)));
|
73
|
-
}
|
74
|
-
/* Use properties accessible_*
|
75
|
-
void atk_object_set_name (AtkObject *accessible,
|
76
|
-
const gchar *name);
|
77
|
-
void atk_object_set_description (AtkObject *accessible,
|
78
|
-
const gchar *description);
|
79
|
-
void atk_object_set_parent (AtkObject *accessible,
|
80
|
-
AtkObject *parent);
|
81
|
-
void atk_object_set_role (AtkObject *accessible,
|
82
|
-
AtkRole role);
|
83
|
-
*/
|
84
|
-
|
85
|
-
/*
|
86
|
-
guint atk_object_connect_property_change_handler
|
87
|
-
(AtkObject *accessible,
|
88
|
-
AtkPropertyChangeHandler *handler);
|
89
|
-
void atk_object_remove_property_change_handler
|
90
|
-
(AtkObject *accessible,
|
91
|
-
guint handler_id);
|
92
|
-
*/
|
93
|
-
|
94
|
-
static VALUE
|
95
|
-
rg_notify_state_change(VALUE self, VALUE state, VALUE value)
|
96
|
-
{
|
97
|
-
atk_object_notify_state_change(_SELF(self),
|
98
|
-
RVAL2ATKSTATETYPE(state),
|
99
|
-
RVAL2CBOOL(value));
|
100
|
-
return self;
|
101
|
-
}
|
102
|
-
|
103
|
-
/* I don't have a good idea to implement this method. Any idea?
|
104
|
-
void atk_object_initialize (AtkObject *accessible,
|
105
|
-
gpointer data);
|
106
|
-
*/
|
107
|
-
|
108
|
-
#ifdef HAVE_ATK_OBJECT_ADD_RELATIONSHIP
|
109
|
-
static VALUE
|
110
|
-
rg_add_relationship(VALUE self, VALUE relationship, VALUE target)
|
111
|
-
{
|
112
|
-
return CBOOL2RVAL(atk_object_add_relationship(
|
113
|
-
_SELF(self),
|
114
|
-
RVAL2ATKRELATIONTYPE(relationship),
|
115
|
-
_SELF(target)));
|
116
|
-
}
|
117
|
-
#endif
|
118
|
-
|
119
|
-
#ifdef HAVE_ATK_OBJECT_REMOVE_RELATIONSHIP
|
120
|
-
static VALUE
|
121
|
-
rg_remove_relationship(VALUE self, VALUE relationship, VALUE target)
|
122
|
-
{
|
123
|
-
return CBOOL2RVAL(atk_object_remove_relationship(
|
124
|
-
_SELF(self),
|
125
|
-
RVAL2ATKRELATIONTYPE(relationship),
|
126
|
-
_SELF(target)));
|
127
|
-
}
|
128
|
-
#endif
|
129
|
-
|
130
|
-
void
|
131
|
-
Init_atk_object(VALUE mAtk)
|
132
|
-
{
|
133
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(ATK_TYPE_OBJECT, "Object", mAtk);
|
134
|
-
|
135
|
-
RG_DEF_METHOD(n_accessible_children, 0);
|
136
|
-
RG_DEF_METHOD(ref_accessible_child, 1);
|
137
|
-
RG_DEF_METHOD(ref_relation_set, 0);
|
138
|
-
RG_DEF_METHOD(ref_state_set, 0);
|
139
|
-
RG_DEF_METHOD(index_in_parent, 0);
|
140
|
-
RG_DEF_METHOD(notify_state_change, 2);
|
141
|
-
#ifdef HAVE_ATK_OBJECT_ADD_RELATIONSHIP
|
142
|
-
RG_DEF_METHOD(add_relationship, 2);
|
143
|
-
#endif
|
144
|
-
#ifdef HAVE_ATK_OBJECT_REMOVE_RELATIONSHIP
|
145
|
-
RG_DEF_METHOD(remove_relationship, 2);
|
146
|
-
#endif
|
147
|
-
|
148
|
-
Init_atk_object_role(RG_TARGET_NAMESPACE);
|
149
|
-
|
150
|
-
/* AtkLayer */
|
151
|
-
G_DEF_CLASS(ATK_TYPE_LAYER, "Layer", RG_TARGET_NAMESPACE);
|
152
|
-
G_DEF_CONSTANTS(RG_TARGET_NAMESPACE, ATK_TYPE_LAYER, "ATK_");
|
153
|
-
}
|
@@ -1,53 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2003 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbatkprivate.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cObjectFactory
|
25
|
-
#define _SELF(s) (RVAL2ATKOBJECTFACTORY(s))
|
26
|
-
|
27
|
-
static VALUE
|
28
|
-
rg_create_accessible(VALUE self, VALUE obj)
|
29
|
-
{
|
30
|
-
return GOBJ2RVAL(atk_object_factory_create_accessible(_SELF(self), RVAL2GOBJ(obj)));
|
31
|
-
}
|
32
|
-
|
33
|
-
static VALUE
|
34
|
-
rg_accessible_type(VALUE self)
|
35
|
-
{
|
36
|
-
return GTYPE2CLASS(atk_object_factory_get_accessible_type(_SELF(self)));
|
37
|
-
}
|
38
|
-
|
39
|
-
static VALUE
|
40
|
-
rg_invalidate(VALUE self)
|
41
|
-
{
|
42
|
-
atk_object_factory_invalidate(_SELF(self));
|
43
|
-
return self;
|
44
|
-
}
|
45
|
-
|
46
|
-
void
|
47
|
-
Init_atk_objectfactory(VALUE mAtk)
|
48
|
-
{
|
49
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(ATK_TYPE_OBJECT_FACTORY, "ObjectFactory", mAtk);
|
50
|
-
RG_DEF_METHOD(create_accessible, 0);
|
51
|
-
RG_DEF_METHOD(accessible_type, 0);
|
52
|
-
RG_DEF_METHOD(invalidate, 0);
|
53
|
-
}
|
data/ext/atk/rbatkobjectrole.c
DELETED
@@ -1,50 +0,0 @@
|
|
1
|
-
/* -*- c-file-style: "ruby"; indent-tabs-mode: nil -*- */
|
2
|
-
/*
|
3
|
-
* Copyright (C) 2011 Ruby-GNOME2 Project Team
|
4
|
-
* Copyright (C) 2003,2004 Masao Mutoh
|
5
|
-
*
|
6
|
-
* This library is free software; you can redistribute it and/or
|
7
|
-
* modify it under the terms of the GNU Lesser General Public
|
8
|
-
* License as published by the Free Software Foundation; either
|
9
|
-
* version 2.1 of the License, or (at your option) any later version.
|
10
|
-
*
|
11
|
-
* This library is distributed in the hope that it will be useful,
|
12
|
-
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13
|
-
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
14
|
-
* Lesser General Public License for more details.
|
15
|
-
*
|
16
|
-
* You should have received a copy of the GNU Lesser General Public
|
17
|
-
* License along with this library; if not, write to the Free Software
|
18
|
-
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
19
|
-
* MA 02110-1301 USA
|
20
|
-
*/
|
21
|
-
|
22
|
-
#include "rbatkprivate.h"
|
23
|
-
|
24
|
-
#define RG_TARGET_NAMESPACE cRole
|
25
|
-
|
26
|
-
static VALUE
|
27
|
-
rg_localized_name(G_GNUC_UNUSED VALUE self)
|
28
|
-
{
|
29
|
-
#ifdef HAVE_ATK_ROLE_GET_LOCALIZED_NAME
|
30
|
-
return CSTR2RVAL(atk_role_get_localized_name(RVAL2ATKROLE(self)));
|
31
|
-
#else
|
32
|
-
rb_warning("not supported in this version of ATK.");
|
33
|
-
return Qnil;
|
34
|
-
#endif
|
35
|
-
}
|
36
|
-
|
37
|
-
static VALUE
|
38
|
-
rg_s_for_name(G_GNUC_UNUSED VALUE self, VALUE name)
|
39
|
-
{
|
40
|
-
return ATKROLE2RVAL(atk_role_for_name(RVAL2CSTR(name)));
|
41
|
-
}
|
42
|
-
|
43
|
-
void
|
44
|
-
Init_atk_object_role(VALUE cObject)
|
45
|
-
{
|
46
|
-
VALUE RG_TARGET_NAMESPACE = G_DEF_CLASS(ATK_TYPE_ROLE, "Role", cObject);
|
47
|
-
RG_DEF_METHOD(localized_name, 0);
|
48
|
-
RG_DEF_SMETHOD(for_name, 1);
|
49
|
-
G_DEF_CONSTANTS(cObject, ATK_TYPE_ROLE, "ATK_");
|
50
|
-
}
|