atk 2.2.4-x64-mingw32
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 +7 -0
- data/README +30 -0
- data/Rakefile +31 -0
- data/ext/atk/atk.def +2 -0
- data/ext/atk/depend +11 -0
- data/ext/atk/extconf.rb +81 -0
- data/ext/atk/rbatk.c +66 -0
- data/ext/atk/rbatk.h +47 -0
- data/ext/atk/rbatkaction.c +85 -0
- data/ext/atk/rbatkcomponent.c +175 -0
- data/ext/atk/rbatkconversions.h +70 -0
- data/ext/atk/rbatkdocument.c +96 -0
- data/ext/atk/rbatkeditabletext.c +177 -0
- data/ext/atk/rbatkgobjectaccessible.c +46 -0
- data/ext/atk/rbatkhyperlink.c +71 -0
- data/ext/atk/rbatkhypertext.c +53 -0
- data/ext/atk/rbatkimage.c +68 -0
- data/ext/atk/rbatkimplementor.c +38 -0
- data/ext/atk/rbatknoopobject.c +40 -0
- data/ext/atk/rbatknoopobjectfactory.c +40 -0
- data/ext/atk/rbatkobject.c +153 -0
- data/ext/atk/rbatkobjectfactory.c +53 -0
- data/ext/atk/rbatkobjectrole.c +50 -0
- data/ext/atk/rbatkprivate.h +48 -0
- data/ext/atk/rbatkregistry.c +63 -0
- data/ext/atk/rbatkrelation.c +98 -0
- data/ext/atk/rbatkrelationset.c +95 -0
- data/ext/atk/rbatkrelationtype.c +38 -0
- data/ext/atk/rbatkselection.c +87 -0
- data/ext/atk/rbatkstate.c +51 -0
- data/ext/atk/rbatkstateset.c +180 -0
- data/ext/atk/rbatkstreamablecontent.c +57 -0
- data/ext/atk/rbatktable.c +271 -0
- data/ext/atk/rbatktext.c +318 -0
- data/ext/atk/rbatktextattribute.c +54 -0
- data/ext/atk/rbatktextrange.c +92 -0
- data/ext/atk/rbatktextrectangle.c +149 -0
- data/ext/atk/rbatkutil.c +122 -0
- data/ext/atk/rbatkvalue.c +78 -0
- data/extconf.rb +49 -0
- data/lib/2.0/atk.so +0 -0
- data/lib/2.1/atk.so +0 -0
- data/lib/2.2/atk.so +0 -0
- data/lib/atk.rb +21 -0
- data/test/atk-test-utils.rb +21 -0
- data/test/run-test.rb +45 -0
- data/test/test-text-rectangle.rb +26 -0
- data/vendor/local/bin/libatk-1.0-0.dll +0 -0
- data/vendor/local/include/atk-1.0/atk/atk-enum-types.h +63 -0
- data/vendor/local/include/atk-1.0/atk/atk.h +61 -0
- data/vendor/local/include/atk-1.0/atk/atkaction.h +117 -0
- data/vendor/local/include/atk-1.0/atk/atkcomponent.h +225 -0
- data/vendor/local/include/atk-1.0/atk/atkdocument.h +113 -0
- data/vendor/local/include/atk-1.0/atk/atkeditabletext.h +109 -0
- data/vendor/local/include/atk-1.0/atk/atkgobjectaccessible.h +68 -0
- data/vendor/local/include/atk-1.0/atk/atkhyperlink.h +114 -0
- data/vendor/local/include/atk-1.0/atk/atkhyperlinkimpl.h +68 -0
- data/vendor/local/include/atk-1.0/atk/atkhypertext.h +78 -0
- data/vendor/local/include/atk-1.0/atk/atkimage.h +90 -0
- data/vendor/local/include/atk-1.0/atk/atkmisc.h +112 -0
- data/vendor/local/include/atk-1.0/atk/atknoopobject.h +59 -0
- data/vendor/local/include/atk-1.0/atk/atknoopobjectfactory.h +59 -0
- data/vendor/local/include/atk-1.0/atk/atkobject.h +751 -0
- data/vendor/local/include/atk-1.0/atk/atkobjectfactory.h +72 -0
- data/vendor/local/include/atk-1.0/atk/atkplug.h +66 -0
- data/vendor/local/include/atk-1.0/atk/atkrange.h +59 -0
- data/vendor/local/include/atk-1.0/atk/atkregistry.h +74 -0
- data/vendor/local/include/atk-1.0/atk/atkrelation.h +99 -0
- data/vendor/local/include/atk-1.0/atk/atkrelationset.h +91 -0
- data/vendor/local/include/atk-1.0/atk/atkrelationtype.h +83 -0
- data/vendor/local/include/atk-1.0/atk/atkselection.h +100 -0
- data/vendor/local/include/atk-1.0/atk/atksocket.h +71 -0
- data/vendor/local/include/atk-1.0/atk/atkstate.h +190 -0
- data/vendor/local/include/atk-1.0/atk/atkstateset.h +92 -0
- data/vendor/local/include/atk-1.0/atk/atkstreamablecontent.h +110 -0
- data/vendor/local/include/atk-1.0/atk/atktable.h +233 -0
- data/vendor/local/include/atk-1.0/atk/atktablecell.h +104 -0
- data/vendor/local/include/atk-1.0/atk/atktext.h +453 -0
- data/vendor/local/include/atk-1.0/atk/atkutil.h +357 -0
- data/vendor/local/include/atk-1.0/atk/atkvalue.h +163 -0
- data/vendor/local/include/atk-1.0/atk/atkversion.h +394 -0
- data/vendor/local/include/atk-1.0/atk/atkwindow.h +53 -0
- data/vendor/local/lib/girepository-1.0/Atk-1.0.typelib +0 -0
- data/vendor/local/lib/libatk-1.0.dll.a +0 -0
- data/vendor/local/lib/libatk-1.0.la +41 -0
- data/vendor/local/lib/pkgconfig/atk.pc +11 -0
- data/vendor/local/share/gir-1.0/Atk-1.0.gir +15525 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkAction.html +477 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkComponent.html +1146 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkDocument.html +714 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkEditableText.html +429 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkGObjectAccessible.html +166 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkHyperlink.html +570 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkHypertext.html +286 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkImage.html +319 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkMisc.html +191 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkNoOpObject.html +130 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkNoOpObjectFactory.html +107 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkObject.html +3056 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkObjectFactory.html +214 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkRegistry.html +265 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkRelation.html +659 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkRelationSet.html +413 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkSelection.html +453 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkStateSet.html +539 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkStreamableContent.html +274 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkTable.html +1790 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkTableCell.html +497 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkText.html +2547 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkUtil.html +1111 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkValue.html +743 -0
- data/vendor/local/share/gtk-doc/html/atk/AtkWindow.html +452 -0
- data/vendor/local/share/gtk-doc/html/atk/accessibles.html +49 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-12.html +51 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-13.html +41 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-20.html +35 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-22.html +45 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-3.html +41 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-30.html +41 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-4.html +35 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-6.html +35 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-1-9.html +39 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-2-10.html +35 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-2-12.html +78 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-2-2.html +53 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-2-8.html +47 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-deprecated.html +119 -0
- data/vendor/local/share/gtk-doc/html/atk/api-index-full.html +775 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkHyperlinkImpl.html +142 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkPlug.html +147 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkRange.html +328 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkSocket.html +207 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-AtkState.html +556 -0
- data/vendor/local/share/gtk-doc/html/atk/atk-Versioning-Utilities.html +293 -0
- data/vendor/local/share/gtk-doc/html/atk/atk.devhelp2 +441 -0
- data/vendor/local/share/gtk-doc/html/atk/atkobject.html +33 -0
- data/vendor/local/share/gtk-doc/html/atk/data.html +49 -0
- data/vendor/local/share/gtk-doc/html/atk/deprecated.html +33 -0
- data/vendor/local/share/gtk-doc/html/atk/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/index.html +175 -0
- data/vendor/local/share/gtk-doc/html/atk/index.sgml +632 -0
- data/vendor/local/share/gtk-doc/html/atk/interfaces.html +89 -0
- data/vendor/local/share/gtk-doc/html/atk/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/overview.html +47 -0
- data/vendor/local/share/gtk-doc/html/atk/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/atk/toolkit.html +33 -0
- data/vendor/local/share/gtk-doc/html/atk/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/atk/utilities.html +47 -0
- data/vendor/local/share/license/atk/AUTHORS +18 -0
- data/vendor/local/share/license/atk/COPYING +482 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/te/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/tk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/atk10.mo +0 -0
- data/vendor/local/share/locale/zu/LC_MESSAGES/atk10.mo +0 -0
- metadata +307 -0
@@ -0,0 +1,214 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>ATK - Accessibility Toolkit: AtkObjectFactory</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="ATK - Accessibility Toolkit">
|
8
|
+
<link rel="up" href="utilities.html" title="Utilities">
|
9
|
+
<link rel="prev" href="AtkNoOpObjectFactory.html" title="AtkNoOpObjectFactory">
|
10
|
+
<link rel="next" href="AtkRegistry.html" title="AtkRegistry">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#AtkObjectFactory.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#AtkObjectFactory.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
20
|
+
</td>
|
21
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
|
+
<td><a accesskey="u" href="utilities.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
23
|
+
<td><a accesskey="p" href="AtkNoOpObjectFactory.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
24
|
+
<td><a accesskey="n" href="AtkRegistry.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
25
|
+
</tr></table>
|
26
|
+
<div class="refentry">
|
27
|
+
<a name="AtkObjectFactory"></a><div class="titlepage"></div>
|
28
|
+
<div class="refnamediv"><table width="100%"><tr>
|
29
|
+
<td valign="top">
|
30
|
+
<h2><span class="refentrytitle"><a name="AtkObjectFactory.top_of_page"></a>AtkObjectFactory</span></h2>
|
31
|
+
<p>AtkObjectFactory — The base object class for a factory used to
|
32
|
+
create accessible objects for objects of a specific GType.</p>
|
33
|
+
</td>
|
34
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
35
|
+
</tr></table></div>
|
36
|
+
<div class="refsect1">
|
37
|
+
<a name="AtkObjectFactory.functions"></a><h2>Functions</h2>
|
38
|
+
<div class="informaltable"><table width="100%" border="0">
|
39
|
+
<colgroup>
|
40
|
+
<col width="150px" class="functions_return">
|
41
|
+
<col class="functions_name">
|
42
|
+
</colgroup>
|
43
|
+
<tbody>
|
44
|
+
<tr>
|
45
|
+
<td class="function_type">
|
46
|
+
<a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
|
47
|
+
</td>
|
48
|
+
<td class="function_name">
|
49
|
+
<a class="link" href="AtkObjectFactory.html#atk-object-factory-create-accessible" title="atk_object_factory_create_accessible ()">atk_object_factory_create_accessible</a> <span class="c_punctuation">()</span>
|
50
|
+
</td>
|
51
|
+
</tr>
|
52
|
+
<tr>
|
53
|
+
<td class="function_type">
|
54
|
+
<span class="returnvalue">GType</span>
|
55
|
+
</td>
|
56
|
+
<td class="function_name">
|
57
|
+
<a class="link" href="AtkObjectFactory.html#atk-object-factory-get-accessible-type" title="atk_object_factory_get_accessible_type ()">atk_object_factory_get_accessible_type</a> <span class="c_punctuation">()</span>
|
58
|
+
</td>
|
59
|
+
</tr>
|
60
|
+
<tr>
|
61
|
+
<td class="function_type">
|
62
|
+
<span class="returnvalue">void</span>
|
63
|
+
</td>
|
64
|
+
<td class="function_name">
|
65
|
+
<a class="link" href="AtkObjectFactory.html#atk-object-factory-invalidate" title="atk_object_factory_invalidate ()">atk_object_factory_invalidate</a> <span class="c_punctuation">()</span>
|
66
|
+
</td>
|
67
|
+
</tr>
|
68
|
+
</tbody>
|
69
|
+
</table></div>
|
70
|
+
</div>
|
71
|
+
<div class="refsect1">
|
72
|
+
<a name="AtkObjectFactory.other"></a><h2>Types and Values</h2>
|
73
|
+
<div class="informaltable"><table width="100%" border="0">
|
74
|
+
<colgroup>
|
75
|
+
<col width="150px" class="name">
|
76
|
+
<col class="description">
|
77
|
+
</colgroup>
|
78
|
+
<tbody><tr>
|
79
|
+
<td class="datatype_keyword">struct</td>
|
80
|
+
<td class="function_name"><a class="link" href="AtkObjectFactory.html#AtkObjectFactory-struct" title="struct AtkObjectFactory">AtkObjectFactory</a></td>
|
81
|
+
</tr></tbody>
|
82
|
+
</table></div>
|
83
|
+
</div>
|
84
|
+
<div class="refsect1">
|
85
|
+
<a name="AtkObjectFactory.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
86
|
+
<pre class="screen"> GObject
|
87
|
+
<span class="lineart">╰──</span> AtkObjectFactory
|
88
|
+
<span class="lineart">╰──</span> <a class="link" href="AtkNoOpObjectFactory.html" title="AtkNoOpObjectFactory">AtkNoOpObjectFactory</a>
|
89
|
+
</pre>
|
90
|
+
</div>
|
91
|
+
<div class="refsect1">
|
92
|
+
<a name="AtkObjectFactory.description"></a><h2>Description</h2>
|
93
|
+
<p>This class is the base object class for a factory used to create an
|
94
|
+
accessible object for a specific GType. The function
|
95
|
+
<a class="link" href="AtkRegistry.html#atk-registry-set-factory-type" title="atk_registry_set_factory_type ()"><code class="function">atk_registry_set_factory_type()</code></a> is normally called to store in the
|
96
|
+
registry the factory type to be used to create an accessible of a
|
97
|
+
particular GType.</p>
|
98
|
+
</div>
|
99
|
+
<div class="refsect1">
|
100
|
+
<a name="AtkObjectFactory.functions_details"></a><h2>Functions</h2>
|
101
|
+
<div class="refsect2">
|
102
|
+
<a name="atk-object-factory-create-accessible"></a><h3>atk_object_factory_create_accessible ()</h3>
|
103
|
+
<pre class="programlisting"><a class="link" href="AtkObject.html" title="AtkObject"><span class="returnvalue">AtkObject</span></a> *
|
104
|
+
atk_object_factory_create_accessible (<em class="parameter"><code><a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> *factory</code></em>,
|
105
|
+
<em class="parameter"><code><span class="type">GObject</span> *obj</code></em>);</pre>
|
106
|
+
<p>Provides an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> that implements an accessibility interface
|
107
|
+
on behalf of <em class="parameter"><code>obj</code></em>
|
108
|
+
</p>
|
109
|
+
<div class="refsect3">
|
110
|
+
<a name="id-1.8.3.7.2.5"></a><h4>Parameters</h4>
|
111
|
+
<div class="informaltable"><table width="100%" border="0">
|
112
|
+
<colgroup>
|
113
|
+
<col width="150px" class="parameters_name">
|
114
|
+
<col class="parameters_description">
|
115
|
+
<col width="200px" class="parameters_annotations">
|
116
|
+
</colgroup>
|
117
|
+
<tbody>
|
118
|
+
<tr>
|
119
|
+
<td class="parameter_name"><p>factory</p></td>
|
120
|
+
<td class="parameter_description"><p>The <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> associated with <em class="parameter"><code>obj</code></em>
|
121
|
+
's
|
122
|
+
object type</p></td>
|
123
|
+
<td class="parameter_annotations"> </td>
|
124
|
+
</tr>
|
125
|
+
<tr>
|
126
|
+
<td class="parameter_name"><p>obj</p></td>
|
127
|
+
<td class="parameter_description"><p>a <span class="type">GObject</span> </p></td>
|
128
|
+
<td class="parameter_annotations"> </td>
|
129
|
+
</tr>
|
130
|
+
</tbody>
|
131
|
+
</table></div>
|
132
|
+
</div>
|
133
|
+
<div class="refsect3">
|
134
|
+
<a name="id-1.8.3.7.2.6"></a><h4>Returns</h4>
|
135
|
+
<p> an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> that implements an accessibility
|
136
|
+
interface on behalf of <em class="parameter"><code>obj</code></em>
|
137
|
+
. </p>
|
138
|
+
<p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
|
139
|
+
</div>
|
140
|
+
</div>
|
141
|
+
<hr>
|
142
|
+
<div class="refsect2">
|
143
|
+
<a name="atk-object-factory-get-accessible-type"></a><h3>atk_object_factory_get_accessible_type ()</h3>
|
144
|
+
<pre class="programlisting"><span class="returnvalue">GType</span>
|
145
|
+
atk_object_factory_get_accessible_type
|
146
|
+
(<em class="parameter"><code><a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> *factory</code></em>);</pre>
|
147
|
+
<p>Gets the GType of the accessible which is created by the factory.</p>
|
148
|
+
<div class="refsect3">
|
149
|
+
<a name="id-1.8.3.7.3.5"></a><h4>Parameters</h4>
|
150
|
+
<div class="informaltable"><table width="100%" border="0">
|
151
|
+
<colgroup>
|
152
|
+
<col width="150px" class="parameters_name">
|
153
|
+
<col class="parameters_description">
|
154
|
+
<col width="200px" class="parameters_annotations">
|
155
|
+
</colgroup>
|
156
|
+
<tbody><tr>
|
157
|
+
<td class="parameter_name"><p>factory</p></td>
|
158
|
+
<td class="parameter_description"><p>an <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> </p></td>
|
159
|
+
<td class="parameter_annotations"> </td>
|
160
|
+
</tr></tbody>
|
161
|
+
</table></div>
|
162
|
+
</div>
|
163
|
+
<div class="refsect3">
|
164
|
+
<a name="id-1.8.3.7.3.6"></a><h4>Returns</h4>
|
165
|
+
<p> the type of the accessible which is created by the <em class="parameter"><code>factory</code></em>
|
166
|
+
.
|
167
|
+
The value G_TYPE_INVALID is returned if no type if found.</p>
|
168
|
+
<p></p>
|
169
|
+
</div>
|
170
|
+
</div>
|
171
|
+
<hr>
|
172
|
+
<div class="refsect2">
|
173
|
+
<a name="atk-object-factory-invalidate"></a><h3>atk_object_factory_invalidate ()</h3>
|
174
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
175
|
+
atk_object_factory_invalidate (<em class="parameter"><code><a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> *factory</code></em>);</pre>
|
176
|
+
<p>Inform <em class="parameter"><code>factory</code></em>
|
177
|
+
that it is no longer being used to create
|
178
|
+
accessibles. When called, <em class="parameter"><code>factory</code></em>
|
179
|
+
may need to inform
|
180
|
+
<a href="AtkObject.html"><span class="type">AtkObjects</span></a> which it has created that they need to be re-instantiated.
|
181
|
+
Note: primarily used for runtime replacement of <a href="AtkObjectFactory.html"><span class="type">AtkObjectFactorys</span></a>
|
182
|
+
in object registries.</p>
|
183
|
+
<div class="refsect3">
|
184
|
+
<a name="id-1.8.3.7.4.5"></a><h4>Parameters</h4>
|
185
|
+
<div class="informaltable"><table width="100%" border="0">
|
186
|
+
<colgroup>
|
187
|
+
<col width="150px" class="parameters_name">
|
188
|
+
<col class="parameters_description">
|
189
|
+
<col width="200px" class="parameters_annotations">
|
190
|
+
</colgroup>
|
191
|
+
<tbody><tr>
|
192
|
+
<td class="parameter_name"><p>factory</p></td>
|
193
|
+
<td class="parameter_description"><p>an <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> to invalidate</p></td>
|
194
|
+
<td class="parameter_annotations"> </td>
|
195
|
+
</tr></tbody>
|
196
|
+
</table></div>
|
197
|
+
</div>
|
198
|
+
</div>
|
199
|
+
</div>
|
200
|
+
<div class="refsect1">
|
201
|
+
<a name="AtkObjectFactory.other_details"></a><h2>Types and Values</h2>
|
202
|
+
<div class="refsect2">
|
203
|
+
<a name="AtkObjectFactory-struct"></a><h3>struct AtkObjectFactory</h3>
|
204
|
+
<pre class="programlisting">struct AtkObjectFactory;</pre>
|
205
|
+
<p>
|
206
|
+
</p>
|
207
|
+
</div>
|
208
|
+
</div>
|
209
|
+
</div>
|
210
|
+
<div class="footer">
|
211
|
+
<hr>
|
212
|
+
Generated by GTK-Doc V1.21.1</div>
|
213
|
+
</body>
|
214
|
+
</html>
|
@@ -0,0 +1,265 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>ATK - Accessibility Toolkit: AtkRegistry</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="ATK - Accessibility Toolkit">
|
8
|
+
<link rel="up" href="utilities.html" title="Utilities">
|
9
|
+
<link rel="prev" href="AtkObjectFactory.html" title="AtkObjectFactory">
|
10
|
+
<link rel="next" href="atk-Versioning-Utilities.html" title="Versioning macros">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#AtkRegistry.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#AtkRegistry.object-hierarchy" class="shortcut">Object Hierarchy</a></span>
|
20
|
+
</td>
|
21
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
22
|
+
<td><a accesskey="u" href="utilities.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
23
|
+
<td><a accesskey="p" href="AtkObjectFactory.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
24
|
+
<td><a accesskey="n" href="atk-Versioning-Utilities.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
25
|
+
</tr></table>
|
26
|
+
<div class="refentry">
|
27
|
+
<a name="AtkRegistry"></a><div class="titlepage"></div>
|
28
|
+
<div class="refnamediv"><table width="100%"><tr>
|
29
|
+
<td valign="top">
|
30
|
+
<h2><span class="refentrytitle"><a name="AtkRegistry.top_of_page"></a>AtkRegistry</span></h2>
|
31
|
+
<p>AtkRegistry — An object used to store the GType of the
|
32
|
+
factories used to create an accessible object for an object of a
|
33
|
+
particular GType.</p>
|
34
|
+
</td>
|
35
|
+
<td class="gallery_image" valign="top" align="right"></td>
|
36
|
+
</tr></table></div>
|
37
|
+
<div class="refsect1">
|
38
|
+
<a name="AtkRegistry.functions"></a><h2>Functions</h2>
|
39
|
+
<div class="informaltable"><table width="100%" border="0">
|
40
|
+
<colgroup>
|
41
|
+
<col width="150px" class="functions_return">
|
42
|
+
<col class="functions_name">
|
43
|
+
</colgroup>
|
44
|
+
<tbody>
|
45
|
+
<tr>
|
46
|
+
<td class="function_type">
|
47
|
+
<span class="returnvalue">void</span>
|
48
|
+
</td>
|
49
|
+
<td class="function_name">
|
50
|
+
<a class="link" href="AtkRegistry.html#atk-registry-set-factory-type" title="atk_registry_set_factory_type ()">atk_registry_set_factory_type</a> <span class="c_punctuation">()</span>
|
51
|
+
</td>
|
52
|
+
</tr>
|
53
|
+
<tr>
|
54
|
+
<td class="function_type">
|
55
|
+
<span class="returnvalue">GType</span>
|
56
|
+
</td>
|
57
|
+
<td class="function_name">
|
58
|
+
<a class="link" href="AtkRegistry.html#atk-registry-get-factory-type" title="atk_registry_get_factory_type ()">atk_registry_get_factory_type</a> <span class="c_punctuation">()</span>
|
59
|
+
</td>
|
60
|
+
</tr>
|
61
|
+
<tr>
|
62
|
+
<td class="function_type">
|
63
|
+
<a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="returnvalue">AtkObjectFactory</span></a> *
|
64
|
+
</td>
|
65
|
+
<td class="function_name">
|
66
|
+
<a class="link" href="AtkRegistry.html#atk-registry-get-factory" title="atk_registry_get_factory ()">atk_registry_get_factory</a> <span class="c_punctuation">()</span>
|
67
|
+
</td>
|
68
|
+
</tr>
|
69
|
+
<tr>
|
70
|
+
<td class="function_type">
|
71
|
+
<a class="link" href="AtkRegistry.html" title="AtkRegistry"><span class="returnvalue">AtkRegistry</span></a> *
|
72
|
+
</td>
|
73
|
+
<td class="function_name">
|
74
|
+
<a class="link" href="AtkRegistry.html#atk-get-default-registry" title="atk_get_default_registry ()">atk_get_default_registry</a> <span class="c_punctuation">()</span>
|
75
|
+
</td>
|
76
|
+
</tr>
|
77
|
+
</tbody>
|
78
|
+
</table></div>
|
79
|
+
</div>
|
80
|
+
<div class="refsect1">
|
81
|
+
<a name="AtkRegistry.other"></a><h2>Types and Values</h2>
|
82
|
+
<div class="informaltable"><table width="100%" border="0">
|
83
|
+
<colgroup>
|
84
|
+
<col width="150px" class="name">
|
85
|
+
<col class="description">
|
86
|
+
</colgroup>
|
87
|
+
<tbody><tr>
|
88
|
+
<td class="datatype_keyword"> </td>
|
89
|
+
<td class="function_name"><a class="link" href="AtkRegistry.html#AtkRegistry-struct" title="AtkRegistry">AtkRegistry</a></td>
|
90
|
+
</tr></tbody>
|
91
|
+
</table></div>
|
92
|
+
</div>
|
93
|
+
<div class="refsect1">
|
94
|
+
<a name="AtkRegistry.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
95
|
+
<pre class="screen"> GObject
|
96
|
+
<span class="lineart">╰──</span> AtkRegistry
|
97
|
+
</pre>
|
98
|
+
</div>
|
99
|
+
<div class="refsect1">
|
100
|
+
<a name="AtkRegistry.description"></a><h2>Description</h2>
|
101
|
+
<p>The AtkRegistry is normally used to create appropriate ATK "peers"
|
102
|
+
for user interface components. Application developers usually need
|
103
|
+
only interact with the AtkRegistry by associating appropriate ATK
|
104
|
+
implementation classes with GObject classes via the
|
105
|
+
atk_registry_set_factory_type call, passing the appropriate GType
|
106
|
+
for application custom widget classes.</p>
|
107
|
+
</div>
|
108
|
+
<div class="refsect1">
|
109
|
+
<a name="AtkRegistry.functions_details"></a><h2>Functions</h2>
|
110
|
+
<div class="refsect2">
|
111
|
+
<a name="atk-registry-set-factory-type"></a><h3>atk_registry_set_factory_type ()</h3>
|
112
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
113
|
+
atk_registry_set_factory_type (<em class="parameter"><code><a class="link" href="AtkRegistry.html" title="AtkRegistry"><span class="type">AtkRegistry</span></a> *registry</code></em>,
|
114
|
+
<em class="parameter"><code><span class="type">GType</span> type</code></em>,
|
115
|
+
<em class="parameter"><code><span class="type">GType</span> factory_type</code></em>);</pre>
|
116
|
+
<p>Associate an <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> subclass with a <span class="type">GType</span>. Note:
|
117
|
+
The associated <em class="parameter"><code>factory_type</code></em>
|
118
|
+
will thereafter be responsible for
|
119
|
+
the creation of new <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> implementations for instances
|
120
|
+
appropriate for <em class="parameter"><code>type</code></em>
|
121
|
+
.</p>
|
122
|
+
<div class="refsect3">
|
123
|
+
<a name="id-1.8.4.7.2.5"></a><h4>Parameters</h4>
|
124
|
+
<div class="informaltable"><table width="100%" border="0">
|
125
|
+
<colgroup>
|
126
|
+
<col width="150px" class="parameters_name">
|
127
|
+
<col class="parameters_description">
|
128
|
+
<col width="200px" class="parameters_annotations">
|
129
|
+
</colgroup>
|
130
|
+
<tbody>
|
131
|
+
<tr>
|
132
|
+
<td class="parameter_name"><p>registry</p></td>
|
133
|
+
<td class="parameter_description"><p>the <a class="link" href="AtkRegistry.html" title="AtkRegistry"><span class="type">AtkRegistry</span></a> in which to register the type association</p></td>
|
134
|
+
<td class="parameter_annotations"> </td>
|
135
|
+
</tr>
|
136
|
+
<tr>
|
137
|
+
<td class="parameter_name"><p>type</p></td>
|
138
|
+
<td class="parameter_description"><p>an <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> type </p></td>
|
139
|
+
<td class="parameter_annotations"> </td>
|
140
|
+
</tr>
|
141
|
+
<tr>
|
142
|
+
<td class="parameter_name"><p>factory_type</p></td>
|
143
|
+
<td class="parameter_description"><p>an <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> type to associate with <em class="parameter"><code>type</code></em>
|
144
|
+
. Must
|
145
|
+
implement AtkObject appropriate for <em class="parameter"><code>type</code></em>
|
146
|
+
.</p></td>
|
147
|
+
<td class="parameter_annotations"> </td>
|
148
|
+
</tr>
|
149
|
+
</tbody>
|
150
|
+
</table></div>
|
151
|
+
</div>
|
152
|
+
</div>
|
153
|
+
<hr>
|
154
|
+
<div class="refsect2">
|
155
|
+
<a name="atk-registry-get-factory-type"></a><h3>atk_registry_get_factory_type ()</h3>
|
156
|
+
<pre class="programlisting"><span class="returnvalue">GType</span>
|
157
|
+
atk_registry_get_factory_type (<em class="parameter"><code><a class="link" href="AtkRegistry.html" title="AtkRegistry"><span class="type">AtkRegistry</span></a> *registry</code></em>,
|
158
|
+
<em class="parameter"><code><span class="type">GType</span> type</code></em>);</pre>
|
159
|
+
<p>Provides a <span class="type">GType</span> indicating the <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> subclass
|
160
|
+
associated with <em class="parameter"><code>type</code></em>
|
161
|
+
.</p>
|
162
|
+
<div class="refsect3">
|
163
|
+
<a name="id-1.8.4.7.3.5"></a><h4>Parameters</h4>
|
164
|
+
<div class="informaltable"><table width="100%" border="0">
|
165
|
+
<colgroup>
|
166
|
+
<col width="150px" class="parameters_name">
|
167
|
+
<col class="parameters_description">
|
168
|
+
<col width="200px" class="parameters_annotations">
|
169
|
+
</colgroup>
|
170
|
+
<tbody>
|
171
|
+
<tr>
|
172
|
+
<td class="parameter_name"><p>registry</p></td>
|
173
|
+
<td class="parameter_description"><p>an <a class="link" href="AtkRegistry.html" title="AtkRegistry"><span class="type">AtkRegistry</span></a></p></td>
|
174
|
+
<td class="parameter_annotations"> </td>
|
175
|
+
</tr>
|
176
|
+
<tr>
|
177
|
+
<td class="parameter_name"><p>type</p></td>
|
178
|
+
<td class="parameter_description"><p>a <span class="type">GType</span> with which to look up the associated <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a>
|
179
|
+
subclass</p></td>
|
180
|
+
<td class="parameter_annotations"> </td>
|
181
|
+
</tr>
|
182
|
+
</tbody>
|
183
|
+
</table></div>
|
184
|
+
</div>
|
185
|
+
<div class="refsect3">
|
186
|
+
<a name="id-1.8.4.7.3.6"></a><h4>Returns</h4>
|
187
|
+
<p> a <span class="type">GType</span> associated with type <em class="parameter"><code>type</code></em>
|
188
|
+
</p>
|
189
|
+
<p></p>
|
190
|
+
</div>
|
191
|
+
</div>
|
192
|
+
<hr>
|
193
|
+
<div class="refsect2">
|
194
|
+
<a name="atk-registry-get-factory"></a><h3>atk_registry_get_factory ()</h3>
|
195
|
+
<pre class="programlisting"><a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="returnvalue">AtkObjectFactory</span></a> *
|
196
|
+
atk_registry_get_factory (<em class="parameter"><code><a class="link" href="AtkRegistry.html" title="AtkRegistry"><span class="type">AtkRegistry</span></a> *registry</code></em>,
|
197
|
+
<em class="parameter"><code><span class="type">GType</span> type</code></em>);</pre>
|
198
|
+
<p>Gets an <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> appropriate for creating <a href="AtkObject.html"><span class="type">AtkObjects</span></a>
|
199
|
+
appropriate for <em class="parameter"><code>type</code></em>
|
200
|
+
.</p>
|
201
|
+
<div class="refsect3">
|
202
|
+
<a name="id-1.8.4.7.4.5"></a><h4>Parameters</h4>
|
203
|
+
<div class="informaltable"><table width="100%" border="0">
|
204
|
+
<colgroup>
|
205
|
+
<col width="150px" class="parameters_name">
|
206
|
+
<col class="parameters_description">
|
207
|
+
<col width="200px" class="parameters_annotations">
|
208
|
+
</colgroup>
|
209
|
+
<tbody>
|
210
|
+
<tr>
|
211
|
+
<td class="parameter_name"><p>registry</p></td>
|
212
|
+
<td class="parameter_description"><p>an <a class="link" href="AtkRegistry.html" title="AtkRegistry"><span class="type">AtkRegistry</span></a></p></td>
|
213
|
+
<td class="parameter_annotations"> </td>
|
214
|
+
</tr>
|
215
|
+
<tr>
|
216
|
+
<td class="parameter_name"><p>type</p></td>
|
217
|
+
<td class="parameter_description"><p>a <span class="type">GType</span> with which to look up the associated <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a></p></td>
|
218
|
+
<td class="parameter_annotations"> </td>
|
219
|
+
</tr>
|
220
|
+
</tbody>
|
221
|
+
</table></div>
|
222
|
+
</div>
|
223
|
+
<div class="refsect3">
|
224
|
+
<a name="id-1.8.4.7.4.6"></a><h4>Returns</h4>
|
225
|
+
<p> an <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> appropriate for creating
|
226
|
+
<a href="AtkObject.html"><span class="type">AtkObjects</span></a> appropriate for <em class="parameter"><code>type</code></em>
|
227
|
+
. </p>
|
228
|
+
<p><span class="annotation">[<a href="http://foldoc.org/transfer%20none"><span class="acronym">transfer none</span></a>]</span></p>
|
229
|
+
</div>
|
230
|
+
</div>
|
231
|
+
<hr>
|
232
|
+
<div class="refsect2">
|
233
|
+
<a name="atk-get-default-registry"></a><h3>atk_get_default_registry ()</h3>
|
234
|
+
<pre class="programlisting"><a class="link" href="AtkRegistry.html" title="AtkRegistry"><span class="returnvalue">AtkRegistry</span></a> *
|
235
|
+
atk_get_default_registry (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
236
|
+
<p>Gets a default implementation of the <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a>/type
|
237
|
+
registry.
|
238
|
+
Note: For most toolkit maintainers, this will be the correct
|
239
|
+
registry for registering new <a class="link" href="AtkObject.html" title="AtkObject"><span class="type">AtkObject</span></a> factories. Following
|
240
|
+
a call to this function, maintainers may call <a class="link" href="AtkRegistry.html#atk-registry-set-factory-type" title="atk_registry_set_factory_type ()"><code class="function">atk_registry_set_factory_type()</code></a>
|
241
|
+
to associate an <a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a> subclass with the GType of objects
|
242
|
+
for whom accessibility information will be provided.</p>
|
243
|
+
<div class="refsect3">
|
244
|
+
<a name="id-1.8.4.7.5.5"></a><h4>Returns</h4>
|
245
|
+
<p> a default implementation of the
|
246
|
+
<a class="link" href="AtkObjectFactory.html" title="AtkObjectFactory"><span class="type">AtkObjectFactory</span></a>/type registry. </p>
|
247
|
+
<p><span class="annotation">[<a href="http://foldoc.org/transfer%20full"><span class="acronym">transfer full</span></a>]</span></p>
|
248
|
+
</div>
|
249
|
+
</div>
|
250
|
+
</div>
|
251
|
+
<div class="refsect1">
|
252
|
+
<a name="AtkRegistry.other_details"></a><h2>Types and Values</h2>
|
253
|
+
<div class="refsect2">
|
254
|
+
<a name="AtkRegistry-struct"></a><h3>AtkRegistry</h3>
|
255
|
+
<pre class="programlisting">typedef struct _AtkRegistry AtkRegistry;</pre>
|
256
|
+
<p>
|
257
|
+
</p>
|
258
|
+
</div>
|
259
|
+
</div>
|
260
|
+
</div>
|
261
|
+
<div class="footer">
|
262
|
+
<hr>
|
263
|
+
Generated by GTK-Doc V1.21.1</div>
|
264
|
+
</body>
|
265
|
+
</html>
|