summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAlejandro Piñeiro <apinheiro@igalia.com>2014-03-05 18:32:42 +0100
committerAlejandro Piñeiro <apinheiro@igalia.com>2014-03-05 19:02:14 +0100
commit98838b2af5c88326225041024bfc49e0f4e6fd1e (patch)
treef267c824c60ea04bc64455feb61d72074cf564cd /docs
parent7149d9b6a5d151faed04d0f0f7d46ef915bd6573 (diff)
downloadatk-98838b2af5c88326225041024bfc49e0f4e6fd1e.tar.gz
AtkValue: refactoring AtkValue
In summary: * Stop to use GValue to get/set the value and use doubles instead * Include the support for a string description and subranges https://bugzilla.gnome.org/show_bug.cgi?id=684576
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile.am2
-rw-r--r--docs/atk-docs.sgml2
-rw-r--r--docs/atk-sections.txt18
3 files changed, 21 insertions, 1 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am
index 99bff8f..5fd3fc1 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -31,7 +31,7 @@ GTKDOC_LIBS = $(top_builddir)/atk/libatk-$(ATK_API_VERSION).la \
$(DEP_LIBS)
# gtkdoc-mkdb related varaibles
-MKDB_OPTIONS =
+MKDB_OPTIONS =--sgml-mode
content_files = \
version.xml
HTML_IMAGES =
diff --git a/docs/atk-docs.sgml b/docs/atk-docs.sgml
index 393cc75..92236a4 100644
--- a/docs/atk-docs.sgml
+++ b/docs/atk-docs.sgml
@@ -16,6 +16,7 @@
<!ENTITY atk-AtkPlug SYSTEM "xml/atkplug.xml">
<!ENTITY atk-AtkObject SYSTEM "xml/atkobject.xml">
<!ENTITY atk-AtkObjectFactory SYSTEM "xml/atkobjectfactory.xml">
+ <!ENTITY atk-AtkRange SYSTEM "xml/atkrange.xml">
<!ENTITY atk-AtkRegistry SYSTEM "xml/atkregistry.xml">
<!ENTITY atk-AtkRelation SYSTEM "xml/atkrelation.xml">
<!ENTITY atk-AtkRelationSet SYSTEM "xml/atkrelationset.xml">
@@ -93,6 +94,7 @@
<chapter id="data">
<title>Basic accessible data types</title>
+ &atk-AtkRange;
&atk-AtkRelation;
&atk-AtkRelationSet;
&atk-AtkState;
diff --git a/docs/atk-sections.txt b/docs/atk-sections.txt
index 8233e3d..f83bd50 100644
--- a/docs/atk-sections.txt
+++ b/docs/atk-sections.txt
@@ -478,6 +478,11 @@ atk_value_get_maximum_value
atk_value_get_minimum_value
atk_value_set_current_value
atk_value_get_minimum_increment
+atk_value_get_value_and_text
+atk_value_get_range
+atk_value_get_increment
+atk_value_get_sub_ranges
+atk_value_set_value
<SUBSECTION Standard>
AtkValueIface
ATK_VALUE
@@ -702,3 +707,16 @@ ATK_MINOR_VERSION
ATK_MICRO_VERSION
ATK_CHECK_VERSION
</SECTION>
+
+<SECTION>
+<FILE>atkrange</FILE>
+<TITLE>AtkRange</TITLE>
+ATK_TYPE_RANGE
+atk_range_copy
+atk_range_free
+atk_range_get_lower_limit
+atk_range_get_upper_limit
+atk_range_get_description
+atk_range_new
+atk_range_get_type
+</SECTION>