atk 1.2.5-x86-mingw32 → 1.2.6-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +2 -1
- data/lib/1.9/atk.so +0 -0
- data/lib/2.0/atk.so +0 -0
- data/vendor/local/bin/libatk-1.0-0.dll +0 -0
- data/vendor/local/include/atk-1.0/atk/atk.h +1 -0
- data/vendor/local/include/atk-1.0/atk/atkdocument.h +3 -0
- data/vendor/local/include/atk-1.0/atk/atkgobjectaccessible.h +1 -1
- data/vendor/local/include/atk-1.0/atk/atkhyperlink.h +1 -1
- data/vendor/local/include/atk-1.0/atk/atkhyperlinkimpl.h +1 -1
- data/vendor/local/include/atk-1.0/atk/atkobject.h +12 -7
- data/vendor/local/include/atk-1.0/atk/atkrelationset.h +1 -1
- data/vendor/local/include/atk-1.0/atk/atktext.h +2 -2
- data/vendor/local/include/atk-1.0/atk/atkutil.h +2 -2
- data/vendor/local/include/atk-1.0/atk/atkversion.h +115 -0
- data/vendor/local/lib/atk-1.0.def +3 -0
- data/vendor/local/lib/libatk-1.0.dll.a +0 -0
- data/vendor/local/lib/libatk-1.0.la +4 -4
- data/vendor/local/lib/pkgconfig/atk.pc +1 -1
- data/vendor/local/share/gtk-doc/html/atk/AtkAction.html +4 -4
- data/vendor/local/share/gtk-doc/html/atk/AtkDocument.html +13 -4
- data/vendor/local/share/gtk-doc/html/atk/AtkNoOpObject.html +1 -1
- data/vendor/local/share/gtk-doc/html/atk/AtkObject.html +26 -33
- data/vendor/local/share/gtk-doc/html/atk/AtkRelation.html +3 -2
- data/vendor/local/share/gtk-doc/html/atk/AtkSelection.html +4 -4
- data/vendor/local/share/gtk-doc/html/atk/AtkStateSet.html +5 -5
- data/vendor/local/share/gtk-doc/html/atk/AtkTable.html +5 -5
- data/vendor/local/share/gtk-doc/html/atk/AtkText.html +25 -12
- data/vendor/local/share/gtk-doc/html/atk/AtkUtil.html +13 -6
- data/vendor/local/share/gtk-doc/html/atk/AtkValue.html +2 -2
- data/vendor/local/share/gtk-doc/html/atk/AtkWindow.html +328 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-deprecated.html +2 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-full.html +40 -2
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkHyperlinkImpl.html +4 -4
- data/vendor/local/share/gtk-doc/html/atk/atk-Versioning-Utilities.html +235 -0
- data/vendor/local/share/gtk-doc/html/atk/atk.devhelp2 +25 -1
- data/vendor/local/share/gtk-doc/html/atk/atk.html +9 -97
- data/vendor/local/share/gtk-doc/html/atk/index.html +8 -1
- data/vendor/local/share/gtk-doc/html/atk/index.sgml +35 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/atk10.mo +0 -0
- metadata +8 -4
data/Rakefile
CHANGED
@@ -15,11 +15,12 @@ package = GNOME2Package.new do |_package|
|
|
15
15
|
:name => "atk",
|
16
16
|
:download_site => :gnome,
|
17
17
|
:label => "atk",
|
18
|
-
:version => "2.
|
18
|
+
:version => "2.8.0",
|
19
19
|
:configure_args => [],
|
20
20
|
:compression_method => "xz",
|
21
21
|
}
|
22
22
|
]
|
23
|
+
_package.win32.support_concurrent_build = false
|
23
24
|
end
|
24
25
|
package.define_tasks
|
25
26
|
|
data/lib/1.9/atk.so
CHANGED
Binary file
|
data/lib/2.0/atk.so
CHANGED
Binary file
|
Binary file
|
@@ -70,7 +70,10 @@ GType atk_document_get_type (void);
|
|
70
70
|
|
71
71
|
const gchar* atk_document_get_document_type (AtkDocument *document);
|
72
72
|
gpointer atk_document_get_document (AtkDocument *document);
|
73
|
+
#ifndef ATK_DISABLE_DEPRECATED
|
74
|
+
G_DEPRECATED
|
73
75
|
const gchar* atk_document_get_locale (AtkDocument *document);
|
76
|
+
#endif /* ATK_DISABLE_DEPRECATED */
|
74
77
|
AtkAttributeSet* atk_document_get_attributes (AtkDocument *document);
|
75
78
|
const gchar* atk_document_get_attribute_value (AtkDocument *document,
|
76
79
|
const gchar *attribute_name);
|
@@ -152,6 +152,7 @@ G_BEGIN_DECLS
|
|
152
152
|
*@ATK_ROLE_IMAGE_MAP: An image map object. Usually a graphic with multiple hotspots, where each hotspot can be activated resulting in the loading of another document or section of a document. @Since: ATK-2.1.0
|
153
153
|
*@ATK_ROLE_NOTIFICATION: A transitory object designed to present a message to the user, typically at the desktop level rather than inside a particular application. @Since: ATK-2.1.0
|
154
154
|
*@ATK_ROLE_INFO_BAR: An object designed to present a message to the user within an existing window. @Since: ATK-2.1.0
|
155
|
+
*@ATK_ROLE_LEVEL_BAR: A bar that serves as a level indicator to, for instance, show the strength of a password or the state of a battery. @Since: ATK-2.7.3
|
155
156
|
*@ATK_ROLE_LAST_DEFINED: not a valid role, used for finding end of the enumeration
|
156
157
|
*
|
157
158
|
* Describes the role of an object
|
@@ -263,6 +264,7 @@ typedef enum
|
|
263
264
|
ATK_ROLE_IMAGE_MAP,
|
264
265
|
ATK_ROLE_NOTIFICATION,
|
265
266
|
ATK_ROLE_INFO_BAR,
|
267
|
+
ATK_ROLE_LEVEL_BAR,
|
266
268
|
ATK_ROLE_LAST_DEFINED
|
267
269
|
} AtkRole;
|
268
270
|
|
@@ -351,15 +353,15 @@ typedef struct _AtkStateSet AtkStateSet;
|
|
351
353
|
* @old_value: The old property value, NULL; in some contexts this value is undefined (see note below).
|
352
354
|
* @new_value: The new value of the named property.
|
353
355
|
*
|
354
|
-
*
|
355
|
-
* not contain a valid value.
|
356
|
+
* Note: for most properties the old_value field of #AtkPropertyValues
|
357
|
+
* will not contain a valid value.
|
356
358
|
*
|
357
359
|
* Currently, the only property for which old_value is used is
|
358
360
|
* accessible-state; for instance if there is a focus state the
|
359
361
|
* property change handler will be called for the object which lost the focus
|
360
|
-
* with the old_value containing an AtkState value corresponding to focused
|
362
|
+
* with the old_value containing an #AtkState value corresponding to focused
|
361
363
|
* and the property change handler will be called for the object which
|
362
|
-
* received the focus with the new_value containing an AtkState value
|
364
|
+
* received the focus with the new_value containing an #AtkState value
|
363
365
|
* corresponding to focused.
|
364
366
|
*
|
365
367
|
**/
|
@@ -372,7 +374,7 @@ struct _AtkPropertyValues
|
|
372
374
|
|
373
375
|
typedef struct _AtkPropertyValues AtkPropertyValues;
|
374
376
|
|
375
|
-
typedef gboolean (*AtkFunction) (gpointer
|
377
|
+
typedef gboolean (*AtkFunction) (gpointer user_data);
|
376
378
|
/*
|
377
379
|
* For most properties the old_value field of AtkPropertyValues will
|
378
380
|
* not contain a valid value.
|
@@ -385,7 +387,7 @@ typedef gboolean (*AtkFunction) (gpointer data);
|
|
385
387
|
* received the focus with the new_value containing an AtkState value
|
386
388
|
* corresponding to focused.
|
387
389
|
*/
|
388
|
-
typedef void (*AtkPropertyChangeHandler) (AtkObject
|
390
|
+
typedef void (*AtkPropertyChangeHandler) (AtkObject* obj, AtkPropertyValues* vals);
|
389
391
|
|
390
392
|
|
391
393
|
struct _AtkObject
|
@@ -529,8 +531,10 @@ void (* initialize) (AtkObject
|
|
529
531
|
* Since ATK 1.12
|
530
532
|
*/
|
531
533
|
AtkAttributeSet* (*get_attributes) (AtkObject *accessible);
|
534
|
+
|
535
|
+
const gchar* (*get_object_locale) (AtkObject *accessible);
|
536
|
+
|
532
537
|
AtkFunction pad1;
|
533
|
-
AtkFunction pad2;
|
534
538
|
};
|
535
539
|
|
536
540
|
GType atk_object_get_type (void);
|
@@ -611,6 +615,7 @@ gboolean atk_object_remove_relationship (AtkObject *
|
|
611
615
|
AtkRelationType relationship,
|
612
616
|
AtkObject *target);
|
613
617
|
const gchar* atk_role_get_localized_name (AtkRole role);
|
618
|
+
const gchar* atk_object_get_object_locale (AtkObject *accessible);
|
614
619
|
|
615
620
|
/* */
|
616
621
|
|
@@ -62,7 +62,7 @@ gboolean atk_relation_set_contains (AtkRelationSet *set,
|
|
62
62
|
AtkRelationType relationship);
|
63
63
|
gboolean atk_relation_set_contains_target (AtkRelationSet *set,
|
64
64
|
AtkRelationType relationship,
|
65
|
-
AtkObject *
|
65
|
+
AtkObject *target);
|
66
66
|
void atk_relation_set_remove (AtkRelationSet *set,
|
67
67
|
AtkRelation *relation);
|
68
68
|
void atk_relation_set_add (AtkRelationSet *set,
|
@@ -31,7 +31,7 @@
|
|
31
31
|
G_BEGIN_DECLS
|
32
32
|
|
33
33
|
/**
|
34
|
-
*AtkTextAttribute
|
34
|
+
*AtkTextAttribute:
|
35
35
|
*@ATK_TEXT_ATTR_INVALID: Invalid attribute
|
36
36
|
*@ATK_TEXT_ATTR_LEFT_MARGIN: The pixel width of the left margin
|
37
37
|
*@ATK_TEXT_ATTR_RIGHT_MARGIN: The pixel width of the right margin
|
@@ -177,7 +177,7 @@ struct _AtkTextRange {
|
|
177
177
|
GType atk_text_range_get_type (void);
|
178
178
|
|
179
179
|
/**
|
180
|
-
*AtkTextClipType
|
180
|
+
*AtkTextClipType:
|
181
181
|
*@ATK_TEXT_CLIP_NONE: No clipping to be done
|
182
182
|
*@ATK_TEXT_CLIP_MIN: Text clipped by min coordinate is omitted
|
183
183
|
*@ATK_TEXT_CLIP_MAX: Text clipped by max coordinate is omitted
|
@@ -71,7 +71,7 @@ typedef void (*AtkEventListenerInit) (void);
|
|
71
71
|
* AtkKeySnoopFunc:
|
72
72
|
* @event: an AtkKeyEventStruct containing information about the key event for which
|
73
73
|
* notification is being given.
|
74
|
-
* @
|
74
|
+
* @user_data: a block of data which will be passed to the event listener, on notification.
|
75
75
|
*
|
76
76
|
* An #AtkKeySnoopFunc is a type of callback which is called whenever a key event occurs,
|
77
77
|
* if registered via atk_add_key_event_listener. It allows for pre-emptive
|
@@ -84,7 +84,7 @@ typedef void (*AtkEventListenerInit) (void);
|
|
84
84
|
* see atk_add_key_event_listener.
|
85
85
|
**/
|
86
86
|
typedef gint (*AtkKeySnoopFunc) (AtkKeyEventStruct *event,
|
87
|
-
gpointer
|
87
|
+
gpointer user_data);
|
88
88
|
|
89
89
|
/**
|
90
90
|
* AtkKeyEventStruct:
|
@@ -0,0 +1,115 @@
|
|
1
|
+
/* ATK - Accessibility Toolkit
|
2
|
+
*
|
3
|
+
* Copyright (C) 2012 Igalia, S.L.
|
4
|
+
*
|
5
|
+
* Author: Alejandro Pi�eiro Iglesias <apinheiro@igalia.com>
|
6
|
+
*
|
7
|
+
* This library is free software; you can redistribute it and/or
|
8
|
+
* modify it under the terms of the GNU Library General Public
|
9
|
+
* License as published by the Free Software Foundation; either
|
10
|
+
* version 2 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
|
+
* Library General Public License for more details.
|
16
|
+
*
|
17
|
+
* You should have received a copy of the GNU Library General Public
|
18
|
+
* License along with this library; if not, write to the
|
19
|
+
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
20
|
+
* Boston, MA 02111-1307, USA.
|
21
|
+
*/
|
22
|
+
|
23
|
+
#if defined(ATK_DISABLE_SINGLE_INCLUDES) && !defined (__ATK_H_INSIDE__) && !defined (ATK_COMPILATION)
|
24
|
+
#error "Only <atk/atk.h> can be included directly."
|
25
|
+
#endif
|
26
|
+
|
27
|
+
#ifndef __ATK_VERSION_H__
|
28
|
+
#define __ATK_VERSION_H__
|
29
|
+
|
30
|
+
/**
|
31
|
+
* ATK_MAJOR_VERSION:
|
32
|
+
*
|
33
|
+
* Like atk_get_major_version(), but from the headers used at
|
34
|
+
* application compile time, rather than from the library linked
|
35
|
+
* against at application run time.
|
36
|
+
*
|
37
|
+
* Since: 2.7.4
|
38
|
+
*/
|
39
|
+
#define ATK_MAJOR_VERSION (2)
|
40
|
+
|
41
|
+
/**
|
42
|
+
* ATK_MINOR_VERSION:
|
43
|
+
*
|
44
|
+
* Like atk_get_minor_version(), but from the headers used at
|
45
|
+
* application compile time, rather than from the library linked
|
46
|
+
* against at application run time.
|
47
|
+
*
|
48
|
+
* Since: 2.7.4
|
49
|
+
*/
|
50
|
+
#define ATK_MINOR_VERSION (8)
|
51
|
+
|
52
|
+
/**
|
53
|
+
* ATK_MICRO_VERSION:
|
54
|
+
*
|
55
|
+
* Like atk_get_micro_version(), but from the headers used at
|
56
|
+
* application compile time, rather than from the library linked
|
57
|
+
* against at application run time.
|
58
|
+
*
|
59
|
+
* Since: 2.7.4
|
60
|
+
*/
|
61
|
+
#define ATK_MICRO_VERSION (0)
|
62
|
+
|
63
|
+
/**
|
64
|
+
* ATK_BINARY_AGE:
|
65
|
+
*
|
66
|
+
* Like atk_get_binary_age(), but from the headers used at
|
67
|
+
* application compile time, rather than from the library linked
|
68
|
+
* against at application run time.
|
69
|
+
*
|
70
|
+
* Since: 2.7.4
|
71
|
+
*/
|
72
|
+
#define ATK_BINARY_AGE (20810)
|
73
|
+
|
74
|
+
/**
|
75
|
+
* ATK_INTERFACE_AGE:
|
76
|
+
*
|
77
|
+
* Like atk_get_interface_age(), but from the headers used at
|
78
|
+
* application compile time, rather than from the library linked
|
79
|
+
* against at application run time.
|
80
|
+
*
|
81
|
+
* Since: 2.7.4
|
82
|
+
*/
|
83
|
+
#define ATK_INTERFACE_AGE (1)
|
84
|
+
|
85
|
+
/**
|
86
|
+
* ATK_CHECK_VERSION:
|
87
|
+
* @major: major version (e.g. 1 for version 1.2.5)
|
88
|
+
* @minor: minor version (e.g. 2 for version 1.2.5)
|
89
|
+
* @micro: micro version (e.g. 5 for version 1.2.5)
|
90
|
+
*
|
91
|
+
* Returns %TRUE if the version of the ATK header files is the same as
|
92
|
+
* or newer than the passed-in version.
|
93
|
+
*
|
94
|
+
* Since: 2.7.4
|
95
|
+
*/
|
96
|
+
#define ATK_CHECK_VERSION(major,minor,micro) \
|
97
|
+
(ATK_MAJOR_VERSION > (major) || \
|
98
|
+
(ATK_MAJOR_VERSION == (major) && ATK_MINOR_VERSION > (minor)) || \
|
99
|
+
(ATK_MAJOR_VERSION == (major) && ATK_MINOR_VERSION == (minor) && \
|
100
|
+
ATK_MICRO_VERSION >= (micro)))
|
101
|
+
|
102
|
+
|
103
|
+
guint atk_get_major_version (void) G_GNUC_CONST;
|
104
|
+
guint atk_get_minor_version (void) G_GNUC_CONST;
|
105
|
+
guint atk_get_micro_version (void) G_GNUC_CONST;
|
106
|
+
guint atk_get_binary_age (void) G_GNUC_CONST;
|
107
|
+
guint atk_get_interface_age (void) G_GNUC_CONST;
|
108
|
+
|
109
|
+
#define atk_major_version atk_get_major_version ()
|
110
|
+
#define atk_minor_version atk_get_minor_version ()
|
111
|
+
#define atk_micro_version atk_get_micro_version ()
|
112
|
+
#define atk_binary_age atk_get_binary_age ()
|
113
|
+
#define atk_interface_age atk_get_interface_age ()
|
114
|
+
|
115
|
+
#endif /* __ATK_VERSION_H__ */
|
@@ -114,6 +114,7 @@ EXPORTS
|
|
114
114
|
atk_object_set_name
|
115
115
|
atk_object_set_parent
|
116
116
|
atk_object_set_role
|
117
|
+
atk_plug_get_type
|
117
118
|
atk_rectangle_get_type
|
118
119
|
atk_registry_get_factory
|
119
120
|
atk_registry_get_factory_type
|
@@ -154,6 +155,7 @@ EXPORTS
|
|
154
155
|
atk_selection_ref_selection
|
155
156
|
atk_selection_remove_selection
|
156
157
|
atk_selection_select_all_selection
|
158
|
+
atk_socket_get_type
|
157
159
|
atk_state_set_add_state
|
158
160
|
atk_state_set_add_states
|
159
161
|
atk_state_set_and_sets
|
@@ -230,6 +232,7 @@ EXPORTS
|
|
230
232
|
atk_text_get_text_at_offset
|
231
233
|
atk_text_get_text_before_offset
|
232
234
|
atk_text_get_type
|
235
|
+
atk_text_range_get_type
|
233
236
|
atk_text_remove_selection
|
234
237
|
atk_text_set_caret_offset
|
235
238
|
atk_text_set_selection
|
Binary file
|
@@ -1,5 +1,5 @@
|
|
1
1
|
# libatk-1.0.la - a libtool library file
|
2
|
-
# Generated by
|
2
|
+
# Generated by libtool (GNU libtool) 2.4.2
|
3
3
|
#
|
4
4
|
# Please DO NOT delete this file!
|
5
5
|
# It is necessary for linking the library.
|
@@ -17,14 +17,14 @@ old_library=''
|
|
17
17
|
inherited_linker_flags=''
|
18
18
|
|
19
19
|
# Libraries that this one depends upon.
|
20
|
-
dependency_libs=' -L/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/rcairo.win32/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgobject-2.0.la
|
20
|
+
dependency_libs=' -L/home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib -L/home/kou/work/ruby/rcairo.win32/vendor/local/lib -L/home/kou/work/ruby/ruby-gnome2.win32/atk/vendor/local/lib /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libgobject-2.0.la -lffi /home/kou/work/ruby/ruby-gnome2.win32/glib2/vendor/local/lib/libglib-2.0.la -lws2_32 -lole32 -lwinmm -lshlwapi -lintl'
|
21
21
|
|
22
22
|
# Names of additional weak libraries provided by this library
|
23
23
|
weak_library_names=''
|
24
24
|
|
25
25
|
# Version information for libatk-1.0.
|
26
|
-
current=
|
27
|
-
age=
|
26
|
+
current=20809
|
27
|
+
age=20809
|
28
28
|
revision=1
|
29
29
|
|
30
30
|
# Is this an already installed library?
|
@@ -182,7 +182,7 @@ implement this interface.</td>
|
|
182
182
|
</tr>
|
183
183
|
<tr>
|
184
184
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
185
|
-
<td>a description string, or <
|
185
|
+
<td>a description string, or <code class="literal">NULL</code>
|
186
186
|
if <em class="parameter"><code>action</code></em> does not implement this interface.</td>
|
187
187
|
</tr>
|
188
188
|
</tbody>
|
@@ -206,7 +206,7 @@ if <em class="parameter"><code>action</code></em> does not implement this interf
|
|
206
206
|
</tr>
|
207
207
|
<tr>
|
208
208
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
209
|
-
<td>a name string, or <
|
209
|
+
<td>a name string, or <code class="literal">NULL</code>
|
210
210
|
if <em class="parameter"><code>action</code></em> does not implement this interface.</td>
|
211
211
|
</tr>
|
212
212
|
</tbody>
|
@@ -230,7 +230,7 @@ if <em class="parameter"><code>action</code></em> does not implement this interf
|
|
230
230
|
</tr>
|
231
231
|
<tr>
|
232
232
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
233
|
-
<td>a name string, or <
|
233
|
+
<td>a name string, or <code class="literal">NULL</code>
|
234
234
|
if <em class="parameter"><code>action</code></em> does not implement this interface.</td>
|
235
235
|
</tr>
|
236
236
|
</tbody>
|
@@ -284,7 +284,7 @@ it would be represented by ";;Ctrl+N" and ";;Strg+N" respectively.
|
|
284
284
|
</tr>
|
285
285
|
<tr>
|
286
286
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
287
|
-
<td>the keybinding which can be used to activate this action, or <
|
287
|
+
<td>the keybinding which can be used to activate this action, or <code class="literal">NULL</code>
|
288
288
|
if there is no keybinding for this action.</td>
|
289
289
|
</tr>
|
290
290
|
</tbody>
|
@@ -162,7 +162,8 @@ whose value is being queried.</td>
|
|
162
162
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
163
163
|
<td>a string value associated with the named attribute for this
|
164
164
|
document, or NULL if a value for <span class="type">attribute_name</span> has not been specified
|
165
|
-
for this document
|
165
|
+
for this document.
|
166
|
+
Virtual: get_document_attribute_value</td>
|
166
167
|
</tr>
|
167
168
|
</tbody>
|
168
169
|
</table></div>
|
@@ -194,7 +195,8 @@ whose value is being set.</td>
|
|
194
195
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
195
196
|
<td>TRUE if <span class="type">value</span> is successfully associated with <span class="type">attribute_name</span>
|
196
197
|
for this document, FALSE otherwise (e.g. if the document does not
|
197
|
-
allow the attribute to be modified)
|
198
|
+
allow the attribute to be modified).
|
199
|
+
Virtual: set_document_attribute</td>
|
198
200
|
</tr>
|
199
201
|
</tbody>
|
200
202
|
</table></div>
|
@@ -219,7 +221,8 @@ Gets an AtkAttributeSet which describes document-wide
|
|
219
221
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
220
222
|
<td>An AtkAttributeSet containing the explicitly
|
221
223
|
set name-value-pair attributes associated with this document
|
222
|
-
as a whole.
|
224
|
+
as a whole.
|
225
|
+
Virtual: get_document_attributes. <span class="annotation">[<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span>
|
223
226
|
</td>
|
224
227
|
</tr>
|
225
228
|
</tbody>
|
@@ -230,6 +233,11 @@ as a whole. <span class="annotation">[<a href="http://foldoc.org/transfer%20none
|
|
230
233
|
<div class="refsect2">
|
231
234
|
<a name="atk-document-get-locale"></a><h3>atk_document_get_locale ()</h3>
|
232
235
|
<pre class="programlisting">const <span class="returnvalue">gchar</span> * atk_document_get_locale (<em class="parameter"><code><a class="link" href="AtkDocument.html" title="AtkDocument"><span class="type">AtkDocument</span></a> *document</code></em>);</pre>
|
236
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
237
|
+
<h3 class="title">Warning</h3>
|
238
|
+
<p><code class="literal">atk_document_get_locale</code> is deprecated and should not be used in newly-written code. This method is deprecated since ATK version
|
239
|
+
2.7.90. Please use atk_object_get_object_locale instead.</p>
|
240
|
+
</div>
|
233
241
|
<p>
|
234
242
|
Gets a UTF-8 string indicating the POSIX-style LC_MESSAGES locale
|
235
243
|
of the content of this document instance. Individual
|
@@ -248,7 +256,8 @@ Gets a UTF-8 string indicating the POSIX-style LC_MESSAGES locale
|
|
248
256
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
249
257
|
<td>a UTF-8 string indicating the POSIX-style LC_MESSAGES
|
250
258
|
locale of the document content as a whole, or NULL if
|
251
|
-
the document content does not specify a locale
|
259
|
+
the document content does not specify a locale.
|
260
|
+
Virtual: get_document_locale</td>
|
252
261
|
</tr>
|
253
262
|
</tbody>
|
254
263
|
</table></div>
|