summaryrefslogtreecommitdiffstats
path: root/Source/WebKit/gtk/docs
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-05-13 16:23:25 +0100
committerBen Murdoch <benm@google.com>2011-05-16 11:35:02 +0100
commit65f03d4f644ce73618e5f4f50dd694b26f55ae12 (patch)
treef478babb801e720de7bfaee23443ffe029f58731 /Source/WebKit/gtk/docs
parent47de4a2fb7262c7ebdb9cd133ad2c54c187454d0 (diff)
downloadexternal_webkit-65f03d4f644ce73618e5f4f50dd694b26f55ae12.zip
external_webkit-65f03d4f644ce73618e5f4f50dd694b26f55ae12.tar.gz
external_webkit-65f03d4f644ce73618e5f4f50dd694b26f55ae12.tar.bz2
Merge WebKit at r75993: Initial merge by git.
Change-Id: I602bbdc3974787a3b0450456a30a7868286921c3
Diffstat (limited to 'Source/WebKit/gtk/docs')
-rw-r--r--Source/WebKit/gtk/docs/GNUmakefile.am107
-rw-r--r--Source/WebKit/gtk/docs/version.xml.in1
-rw-r--r--Source/WebKit/gtk/docs/webkitenvironment.xml98
-rw-r--r--Source/WebKit/gtk/docs/webkitgtk-docs.sgml132
-rw-r--r--Source/WebKit/gtk/docs/webkitgtk-overrides.txt0
-rw-r--r--Source/WebKit/gtk/docs/webkitgtk-sections.txt705
-rw-r--r--Source/WebKit/gtk/docs/webkitgtk.types13
7 files changed, 1056 insertions, 0 deletions
diff --git a/Source/WebKit/gtk/docs/GNUmakefile.am b/Source/WebKit/gtk/docs/GNUmakefile.am
new file mode 100644
index 0000000..565f535
--- /dev/null
+++ b/Source/WebKit/gtk/docs/GNUmakefile.am
@@ -0,0 +1,107 @@
+## Process this file with automake to produce GNUmakefile.in
+
+# We require automake 1.6 at least.
+AUTOMAKE_OPTIONS = 1.6
+
+# This is a blank Makefile.am for using gtk-doc.
+# Copy this to your project's API docs directory and modify the variables to
+# suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
+# of using the various options.
+
+# The name of the module, e.g. 'glib'.
+DOC_MODULE=webkitgtk
+
+# The top-level SGML file. You can change this if you want to.
+DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
+
+# The directory containing the source code. Relative to $(srcdir).
+# gtk-doc will search all .c & .h files beneath here for inline comments
+# documenting the functions and macros.
+# e.g. DOC_SOURCE_DIR=../../../gtk
+DOC_SOURCE_DIR=../webkit
+
+# Extra options to pass to gtkdoc-scangobj. Not normally needed.
+SCANGOBJ_OPTIONS="--type-init-func=g_thread_init(NULL);g_type_init()"
+
+# Extra options to supply to gtkdoc-scan.
+# e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
+SCAN_OPTIONS=--deprecated-guards="WEBKIT_DISABLE_DEPRECATED" --ignore-decorators="WEBKIT_API"
+
+# Extra options to supply to gtkdoc-mkdb.
+# e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
+MKDB_OPTIONS=--sgml-mode --output-format=xml --source-suffixes=h,c,cpp
+
+# Extra options to supply to gtkdoc-mktmpl
+# e.g. MKTMPL_OPTIONS=--only-section-tmpl
+MKTMPL_OPTIONS=
+
+# Extra options to supply to gtkdoc-fixref. Not normally needed.
+# e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
+FIXXREF_OPTIONS=
+
+# Used for dependencies. The docs will be rebuilt if any of these change.
+# e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
+# e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
+HFILE_GLOB=$(top_srcdir)/WebKit/gtk/webkit/*.h
+CFILE_GLOB=$(top_srcdir)/WebKit/gtk/webkit/*.cpp
+
+# Header files to ignore when scanning.
+# e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
+IGNORE_HFILES=webkitprivate.h
+
+# Images to copy into HTML directory.
+# e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
+HTML_IMAGES=
+
+# Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
+# e.g. content_files=running.sgml building.sgml changes-2.0.sgml
+content_files=webkitenvironment.xml
+
+# SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
+# These files must be listed here *and* in content_files
+# e.g. expand_content_files=running.sgml
+expand_content_files=
+
+# CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
+# Only needed if you are using gtkdoc-scangobj to dynamically query widget
+# signals and properties.
+# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
+# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
+INCLUDES= \
+ -I$(top_srcdir)/WebKit/gtk \
+ -I$(top_builddir)/WebKit/gtk \
+ $(global_cppflags) \
+ $(global_cflags) \
+ -I$(top_srcdir) \
+ -I$(top_srcdir)/Source/JavaScriptCore \
+ -I$(top_srcdir)/Source/JavaScriptCore/ForwardingHeaders \
+ -I$(top_srcdir)/Source/JavaScriptCore/parser \
+ -I$(top_srcdir)/Source/JavaScriptCore/wtf \
+ -I$(top_builddir)/DerivedSources \
+ -I$(top_srcdir)/WebCore/platform/network/soup/cache \
+ $(GLOBALDEPS_CFLAGS) \
+ $(CAIRO_CFLAGS) \
+ $(GLIB_CFLAGS) \
+ $(GTK_CFLAGS) \
+ $(LIBSOUP_CFLAGS)
+GTKDOC_LIBS= \
+ $(top_builddir)/libwebkitgtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
+ $(GLIB_LIBS) \
+ $(GTK_LIBS) \
+ $(LIBSOUP_LIBS)
+
+# This includes the standard gtk-doc make rules, copied by gtkdocize.
+include $(top_srcdir)/gtk-doc.make
+
+# Other files to distribute
+# e.g. EXTRA_DIST += version.xml.in
+EXTRA_DIST +=
+
+# Files not to distribute
+# for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
+# for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
+#DISTCLEANFILES +=
+
+# Comment this out if you want your docs-status tested during 'make check'
+#TESTS = $(GTKDOC_CHECK)
+
diff --git a/Source/WebKit/gtk/docs/version.xml.in b/Source/WebKit/gtk/docs/version.xml.in
new file mode 100644
index 0000000..d78bda9
--- /dev/null
+++ b/Source/WebKit/gtk/docs/version.xml.in
@@ -0,0 +1 @@
+@VERSION@
diff --git a/Source/WebKit/gtk/docs/webkitenvironment.xml b/Source/WebKit/gtk/docs/webkitenvironment.xml
new file mode 100644
index 0000000..03d64b7
--- /dev/null
+++ b/Source/WebKit/gtk/docs/webkitenvironment.xml
@@ -0,0 +1,98 @@
+<?xml version="1.0"?>
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd">
+<refentry id="webkit-environment">
+<refmeta>
+<refentrytitle>Environment</refentrytitle>
+<manvolnum>7</manvolnum>
+<refmiscinfo>WEBKITGTK Library</refmiscinfo>
+</refmeta>
+
+<refnamediv>
+<refname>Environment</refname>
+<refpurpose>How does the environment affect applications that use WebKitGTK+</refpurpose>
+</refnamediv>
+
+<refsect2>
+<title>Logging</title>
+
+<para>
+You can make WebKitGTK+ log some of what it is doing internally by
+using the <literal>WEBKIT_DEBUG</literal> environment variable. It
+takes a space-separated list of names, representing the various
+aspects of the work the library performs. Notice that most of the
+logging is only done in debug builds (that you get when you pass
+<literal>--enable-debug</literal> to the <literal>configure</literal>
+script).
+</para>
+
+<para>
+A list of possible values for the environment variable follows:
+</para>
+
+<variablelist>
+ <varlistentry>
+ <term>BackForward</term>
+ </varlistentry>
+ <varlistentry>
+ <term>Editing</term>
+ </varlistentry>
+ <varlistentry>
+ <term>Events</term>
+ </varlistentry>
+ <varlistentry>
+ <term>Frames</term>
+ </varlistentry>
+ <varlistentry>
+ <term>FTP</term>
+ </varlistentry>
+ <varlistentry>
+ <term>History</term>
+ </varlistentry>
+ <varlistentry>
+ <term>IconDatabase</term>
+ </varlistentry>
+ <varlistentry>
+ <term>Loading</term>
+ </varlistentry>
+ <varlistentry>
+ <term>Media</term>
+ </varlistentry>
+ <varlistentry>
+ <term>Network</term>
+ </varlistentry>
+ <varlistentry>
+ <term>NotYetImplemented</term>
+ </varlistentry>
+ <varlistentry>
+ <term>PageCache</term>
+ </varlistentry>
+ <varlistentry>
+ <term>PlatformLeaks</term>
+ </varlistentry>
+ <varlistentry>
+ <term>Plugin</term>
+ </varlistentry>
+ <varlistentry>
+ <term>PopupBlocking</term>
+ </varlistentry>
+ <varlistentry>
+ <term>SpellingAndGrammar</term>
+ </varlistentry>
+ <varlistentry>
+ <term>SQLDatabase</term>
+ </varlistentry>
+ <varlistentry>
+ <term>StorageAPI</term>
+ </varlistentry>
+ <varlistentry>
+ <term>TextConversion</term>
+ </varlistentry>
+ <varlistentry>
+ <term>Threading</term>
+ </varlistentry>
+</variablelist>
+
+</refsect2>
+
+</refentry>
diff --git a/Source/WebKit/gtk/docs/webkitgtk-docs.sgml b/Source/WebKit/gtk/docs/webkitgtk-docs.sgml
new file mode 100644
index 0000000..9a833ea
--- /dev/null
+++ b/Source/WebKit/gtk/docs/webkitgtk-docs.sgml
@@ -0,0 +1,132 @@
+<?xml version="1.0"?>
+<!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.1.2//EN"
+ "http://www.oasis-open.org/docbook/xml/4.1.2/docbookx.dtd" [
+<!ENTITY version SYSTEM "version.xml">
+]>
+<book id="index" xmlns:xi="http://www.w3.org/2003/XInclude">
+ <bookinfo>
+ <title>WebKitGTK+ Reference Manual</title>
+ <releaseinfo>for WebKitGTK+ &version;</releaseinfo>
+ </bookinfo>
+
+ <chapter>
+ <title>Global functions</title>
+ <xi:include href="xml/webkit.xml"/>
+ </chapter>
+
+ <chapter>
+ <title>Class Overview</title>
+ <xi:include href="xml/webkitwebview.xml"/>
+ <xi:include href="xml/webkitwebframe.xml"/>
+ <xi:include href="xml/webkitwebsettings.xml"/>
+ <xi:include href="xml/webkitwebbackforwardlist.xml"/>
+ <xi:include href="xml/webkitwebhistoryitem.xml"/>
+ <xi:include href="xml/webkitwebnavigationaction.xml"/>
+ <xi:include href="xml/webkitwebpolicydecision.xml"/>
+ <xi:include href="xml/webkitgeolocationpolicydecision.xml"/>
+ <xi:include href="xml/webkitnetworkrequest.xml"/>
+ <xi:include href="xml/webkitnetworkresponse.xml"/>
+ <xi:include href="xml/webkitwebinspector.xml"/>
+ <xi:include href="xml/webkitwebdatabase.xml"/>
+ <xi:include href="xml/webkitwebdatasource.xml"/>
+ <xi:include href="xml/webkitwebresource.xml"/>
+ <xi:include href="xml/webkitdownload.xml"/>
+ <xi:include href="xml/webkitviewportattributes.xml"/>
+ <xi:include href="xml/webkithittestresult.xml"/>
+ <xi:include href="xml/webkitwebplugin.xml"/>
+ <xi:include href="xml/webkitwebplugindatabase.xml"/>
+ <xi:include href="xml/webkitsoupauthdialog.xml"/>
+ <xi:include href="xml/webkitsecurityorigin.xml"/>
+ <xi:include href="xml/webkitwebwindowfeatures.xml"/>
+ </chapter>
+
+ <chapter>
+ <title>Running WebKitGTK+-based programs</title>
+ <xi:include href="webkitenvironment.xml"/>
+ </chapter>
+
+ <index id="index-all">
+ <title>Index</title>
+ </index>
+ <index id="index-deprecated" role="deprecated">
+ <title>Index of deprecated symbols</title>
+ </index>
+ <index id="index-1.0.1" role="1.0.1">
+ <title>Index of new symbols in 1.0.1</title>
+ </index>
+ <index id="index-1.0.2" role="1.0.2">
+ <title>Index of new symbols in 1.0.2</title>
+ </index>
+ <index id="index-1.0.3" role="1.0.3">
+ <title>Index of new symbols in 1.0.3</title>
+ </index>
+ <index id="index-1.1.1" role="1.1.1">
+ <title>Index of new symbols in 1.1.1</title>
+ </index>
+ <index id="index-1.1.2" role="1.1.2">
+ <title>Index of new symbols in 1.1.2</title>
+ </index>
+ <index id="index-1.1.3" role="1.1.3">
+ <title>Index of new symbols in 1.1.3</title>
+ </index>
+ <index id="index-1.1.4" role="1.1.4">
+ <title>Index of new symbols in 1.1.4</title>
+ </index>
+ <index id="index-1.1.5" role="1.1.5">
+ <title>Index of new symbols in 1.1.5</title>
+ </index>
+ <index id="index-1.1.6" role="1.1.6">
+ <title>Index of new symbols in 1.1.6</title>
+ </index>
+ <index id="index-1.1.7" role="1.1.7">
+ <title>Index of new symbols in 1.1.7</title>
+ </index>
+ <index id="index-1.1.8" role="1.1.8">
+ <title>Index of new symbols in 1.1.8</title>
+ </index>
+ <index id="index-1.1.10" role="1.1.10">
+ <title>Index of new symbols in 1.1.10</title>
+ </index>
+ <index id="index-1.1.11" role="1.1.11">
+ <title>Index of new symbols in 1.1.11</title>
+ </index>
+ <index id="index-1.1.13" role="1.1.13">
+ <title>Index of new symbols in 1.1.13</title>
+ </index>
+ <index id="index-1.1.14" role="1.1.14">
+ <title>Index of new symbols in 1.1.14</title>
+ </index>
+ <index id="index-1.1.15" role="1.1.15">
+ <title>Index of new symbols in 1.1.15</title>
+ </index>
+ <index id="index-1.1.16" role="1.1.16">
+ <title>Index of new symbols in 1.1.16</title>
+ </index>
+ <index id="index-1.1.17" role="1.1.17">
+ <title>Index of new symbols in 1.1.17</title>
+ </index>
+ <index id="index-1.1.18" role="1.1.18">
+ <title>Index of new symbols in 1.1.18</title>
+ </index>
+ <index id="index-1.1.20" role="1.1.20">
+ <title>Index of new symbols in 1.1.20</title>
+ </index>
+ <index id="index-1.1.23" role="1.1.23">
+ <title>Index of new symbols in 1.1.23</title>
+ </index>
+ <index id="index-1.3.1" role="1.3.1">
+ <title>Index of new symbols in 1.3.1</title>
+ </index>
+ <index id="index-1.3.2" role="1.3.2">
+ <title>Index of new symbols in 1.3.2</title>
+ </index>
+ <index id="index-1.3.3" role="1.3.3">
+ <title>Index of new symbols in 1.3.3</title>
+ </index>
+ <index id="index-1.3.4" role="1.3.4">
+ <title>Index of new symbols in 1.3.4</title>
+ </index>
+ <index id="index-1.3.8" role="1.3.8">
+ <title>Index of new symbols in 1.3.8</title>
+ </index>
+</book>
diff --git a/Source/WebKit/gtk/docs/webkitgtk-overrides.txt b/Source/WebKit/gtk/docs/webkitgtk-overrides.txt
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/Source/WebKit/gtk/docs/webkitgtk-overrides.txt
diff --git a/Source/WebKit/gtk/docs/webkitgtk-sections.txt b/Source/WebKit/gtk/docs/webkitgtk-sections.txt
new file mode 100644
index 0000000..2759e2b
--- /dev/null
+++ b/Source/WebKit/gtk/docs/webkitgtk-sections.txt
@@ -0,0 +1,705 @@
+<SECTION>
+<FILE>webkitwebsettings</FILE>
+<TITLE>WebKitWebSettings</TITLE>
+WebKitEditingBehavior
+WebKitWebSettings
+webkit_web_settings_copy
+webkit_web_settings_new
+webkit_web_settings_get_user_agent
+<SUBSECTION Standard>
+WEBKIT_WEB_SETTINGS
+WEBKIT_IS_WEB_SETTINGS
+WEBKIT_TYPE_WEB_SETTINGS
+WEBKIT_WEB_SETTINGS_CLASS
+WEBKIT_IS_WEB_SETTINGS_CLASS
+WEBKIT_WEB_SETTINGS_GET_CLASS
+<SUBSECTION Private>
+webkit_web_settings_get_type
+WebKitWebSettingsPrivate
+WebKitWebSettings
+WebKitWebSettingsClass
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebbackforwardlist</FILE>
+<TITLE>WebKitWebBackForwardList</TITLE>
+WebKitWebBackForwardList
+webkit_web_back_forward_list_add_item
+webkit_web_back_forward_list_clear
+webkit_web_back_forward_list_contains_item
+webkit_web_back_forward_list_get_back_item
+webkit_web_back_forward_list_get_back_length
+webkit_web_back_forward_list_get_back_list_with_limit
+webkit_web_back_forward_list_get_current_item
+webkit_web_back_forward_list_get_forward_item
+webkit_web_back_forward_list_get_forward_length
+webkit_web_back_forward_list_get_forward_list_with_limit
+webkit_web_back_forward_list_get_limit
+webkit_web_back_forward_list_get_nth_item
+webkit_web_back_forward_list_go_back
+webkit_web_back_forward_list_go_forward
+webkit_web_back_forward_list_go_to_item
+webkit_web_back_forward_list_new_with_web_view
+webkit_web_back_forward_list_set_limit
+<SUBSECTION Standard>
+WEBKIT_WEB_BACK_FORWARD_LIST
+WEBKIT_IS_WEB_BACK_FORWARD_LIST
+WEBKIT_TYPE_WEB_BACK_FORWARD_LIST
+WEBKIT_WEB_BACK_FORWARD_LIST_CLASS
+WEBKIT_IS_WEB_BACK_FORWARD_LIST_CLASS
+WEBKIT_WEB_BACK_FORWARD_LIST_GET_CLASS
+<SUBSECTION Private>
+WebKitWebBackForwardListPrivate
+webkit_web_back_forward_list_get_type
+WebKitWebBackForwardList
+WebKitWebBackForwardListClass
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebhistoryitem</FILE>
+<TITLE>WebKitWebHistoryItem</TITLE>
+WebKitWebHistoryItem
+webkit_web_history_item_copy
+webkit_web_history_item_get_alternate_title
+webkit_web_history_item_get_last_visited_time
+webkit_web_history_item_get_original_uri
+webkit_web_history_item_get_title
+webkit_web_history_item_get_uri
+webkit_web_history_item_new
+webkit_web_history_item_new_with_data
+webkit_web_history_item_set_alternate_title
+<SUBSECTION Standard>
+WEBKIT_WEB_HISTORY_ITEM
+WEBKIT_IS_WEB_HISTORY_ITEM
+WEBKIT_TYPE_WEB_HISTORY_ITEM
+WEBKIT_WEB_HISTORY_ITEM_CLASS
+WEBKIT_IS_WEB_HISTORY_ITEM_CLASS
+WEBKIT_WEB_HISTORY_ITEM_GET_CLASS
+<SUBSECTION Private>
+webkit_web_history_item_get_type
+WebKitWebHistoryItemPrivate
+WebKitWebHistoryItem
+WebKitWebHistoryItemClass
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebframe</FILE>
+<TITLE>WebKitWebFrame</TITLE>
+WebKitLoadStatus
+WebKitWebFrame
+webkit_web_frame_find_frame
+webkit_web_frame_get_data_source
+webkit_web_frame_get_global_context
+webkit_web_frame_get_horizontal_scrollbar_policy
+webkit_web_frame_get_load_status
+webkit_web_frame_get_name
+webkit_web_frame_get_network_response
+webkit_web_frame_get_parent
+webkit_web_frame_get_provisional_data_source
+webkit_web_frame_get_security_origin
+webkit_web_frame_get_title
+webkit_web_frame_get_uri
+webkit_web_frame_get_vertical_scrollbar_policy
+webkit_web_frame_get_web_view
+webkit_web_frame_load_alternate_string
+webkit_web_frame_load_request
+webkit_web_frame_load_string
+webkit_web_frame_load_uri
+webkit_web_frame_new
+webkit_web_frame_print
+webkit_web_frame_print_full
+webkit_web_frame_reload
+webkit_web_frame_stop_loading
+<SUBSECTION Standard>
+WEBKIT_WEB_FRAME
+WEBKIT_IS_WEB_FRAME
+WEBKIT_TYPE_WEB_FRAME
+WEBKIT_WEB_FRAME_CLASS
+WEBKIT_IS_WEB_FRAME_CLASS
+WEBKIT_WEB_FRAME_GET_CLASS
+<SUBSECTION Private>
+WEBKIT_WEB_FRAME_GET_PRIVATE
+WebKitWebFramePrivate
+webkit_web_frame_get_type
+WebKitWebFrame
+WebKitWebFrameClass
+</SECTION>
+
+<SECTION>
+<FILE>webkitdownload</FILE>
+WebKitDownloadError
+WebKitDownloadStatus
+<TITLE>WebKitDownload</TITLE>
+WebKitDownload
+webkit_download_cancel
+webkit_download_error_get_type
+webkit_download_get_current_size
+webkit_download_get_destination_uri
+webkit_download_get_elapsed_time
+webkit_download_get_network_request
+webkit_download_get_network_response
+webkit_download_get_progress
+webkit_download_get_status
+webkit_download_get_suggested_filename
+webkit_download_get_total_size
+webkit_download_get_uri
+webkit_download_new
+webkit_download_set_destination_uri
+webkit_download_start
+webkit_download_status_get_type
+<SUBSECTION Standard>
+WEBKIT_DOWNLOAD
+WEBKIT_DOWNLOAD_CLASS
+WEBKIT_DOWNLOAD_GET_CLASS
+WEBKIT_IS_DOWNLOAD
+WEBKIT_IS_DOWNLOAD_CLASS
+WEBKIT_TYPE_DOWNLOAD
+WEBKIT_TYPE_DOWNLOAD_ERROR
+WEBKIT_TYPE_DOWNLOAD_STATUS
+<SUBSECTION Private>
+webkit_download_get_type
+WebKitDownload
+WebKitDownloadClass
+WebKitDownloadPrivate
+</SECTION>
+
+<SECTION>
+<FILE>webkitsecurityorigin</FILE>
+<TITLE>WebKitSecurityOrigin</TITLE>
+WebKitSecurityOrigin
+webkit_security_origin_get_all_web_databases
+webkit_security_origin_get_host
+webkit_security_origin_get_port
+webkit_security_origin_get_protocol
+webkit_security_origin_get_type
+webkit_security_origin_get_web_database_quota
+webkit_security_origin_get_web_database_usage
+webkit_security_origin_set_web_database_quota
+<SUBSECTION Standard>
+WEBKIT_SECURITY_ORIGIN
+WEBKIT_SECURITY_ORIGIN_CLASS
+WEBKIT_SECURITY_ORIGIN_GET_CLASS
+WEBKIT_IS_SECURITY_ORIGIN
+WEBKIT_IS_SECURITY_ORIGIN_CLASS
+WEBKIT_TYPE_SECURITY_ORIGIN
+<SUBSECTION Private>
+WebKitSecurityOrigin
+WebKitSecurityOriginClass
+WebKitSecurityOriginPrivate
+</SECTION>
+
+<SECTION>
+<FILE>webkithittestresult</FILE>
+<TITLE>WebKitHitTestResult</TITLE>
+WebKitHitTestResult
+WebKitHitTestResultContext
+<SUBSECTION Standard>
+WEBKIT_HIT_TEST_RESULT
+WEBKIT_HIT_TEST_RESULT_CLASS
+WEBKIT_HIT_TEST_RESULT_GET_CLASS
+WEBKIT_IS_HIT_TEST_RESULT
+WEBKIT_IS_HIT_TEST_RESULT_CLASS
+WEBKIT_TYPE_HIT_TEST_RESULT
+<SUBSECTION Private>
+WebKitHitTestResult
+WebKitHitTestResultClass
+WebKitHitTestResultContext
+WebKitHitTestResultPrivate
+webkit_hit_test_result_get_type
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebdatasource</FILE>
+<TITLE>WebKitWebDataSource</TITLE>
+WebKitWebDataSource
+webkit_web_data_source_get_data
+webkit_web_data_source_get_encoding
+webkit_web_data_source_get_initial_request
+webkit_web_data_source_get_main_resource
+webkit_web_data_source_get_request
+webkit_web_data_source_get_subresources
+webkit_web_data_source_get_unreachable_uri
+webkit_web_data_source_get_web_frame
+webkit_web_data_source_is_loading
+webkit_web_data_source_new
+<SUBSECTION Standard>
+WEBKIT_IS_WEB_DATA_SOURCE
+WEBKIT_IS_WEB_DATA_SOURCE_CLASS
+WEBKIT_TYPE_WEB_DATA_SOURCE
+WEBKIT_WEB_DATA_SOURCE
+WEBKIT_WEB_DATA_SOURCE_CLASS
+WEBKIT_WEB_DATA_SOURCE_GET_CLASS
+<SUBSECTION Private>
+WebKitWebDataSource
+WebKitWebDataSourceClass
+WebKitWebDataSourcePrivate
+webkit_web_data_source_new_with_request
+webkit_web_data_source_get_type
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebdatabase</FILE>
+<TITLE>WebKitWebDatabase</TITLE>
+WebKitWebDatabase
+webkit_web_database_get_display_name
+webkit_web_database_get_expected_size
+webkit_web_database_get_filename
+webkit_web_database_get_name
+webkit_web_database_get_security_origin
+webkit_web_database_get_size
+webkit_web_database_remove
+<SUBSECTION Standard>
+WEBKIT_IS_WEB_DATABASE
+WEBKIT_IS_WEB_DATABASE_CLASS
+WEBKIT_TYPE_WEB_DATABASE
+WEBKIT_WEB_DATABASE
+WEBKIT_WEB_DATABASE_CLASS
+WEBKIT_WEB_DATABASE_GET_CLASS
+<SUBSECTION Private>
+WebKitWebDatabase
+WebKitWebDatabaseClass
+WebKitWebDatabasePrivate
+webkit_web_database_get_type
+</SECTION>
+
+<SECTION>
+<FILE>webkitsoupauthdialog</FILE>
+<TITLE>WebKitSoupAuthDialog</TITLE>
+WebKitSoupAuthDialog
+<SUBSECTION Standard>
+WEBKIT_IS_SOUP_AUTH_DIALOG
+WEBKIT_IS_SOUP_AUTH_DIALOG_CLASS
+WEBKIT_SOUP_AUTH_DIALOG
+WEBKIT_SOUP_AUTH_DIALOG_CLASS
+WEBKIT_SOUP_AUTH_DIALOG_GET_CLASS
+WEBKIT_TYPE_SOUP_AUTH_DIALOG
+<SUBSECTION Private>
+webkit_soup_auth_dialog_get_type
+WebKitSoupAuthDialog
+WebKitSoupAuthDialogClass
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebinspector</FILE>
+<TITLE>WebKitWebInspector</TITLE>
+WebKitWebInspector
+webkit_web_inspector_get_inspected_uri
+webkit_web_inspector_get_web_view
+webkit_web_inspector_inspect_coordinates
+webkit_web_inspector_show
+webkit_web_inspector_close
+<SUBSECTION Standard>
+WEBKIT_WEB_INSPECTOR
+WEBKIT_IS_WEB_INSPECTOR
+WEBKIT_TYPE_WEB_INSPECTOR
+WEBKIT_WEB_INSPECTOR_CLASS
+WEBKIT_IS_WEB_INSPECTOR_CLASS
+WEBKIT_WEB_INSPECTOR_GET_CLASS
+<SUBSECTION Private>
+webkit_web_inspector_get_type
+WebKitWebInspectorPrivate
+WebKitWebInspector
+WebKitWebInspectorClass
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebnavigationaction</FILE>
+<TITLE>WebKitWebNavigationAction</TITLE>
+WebKitWebNavigationAction
+WebKitWebNavigationReason
+webkit_web_navigation_action_get_button
+webkit_web_navigation_action_get_modifier_state
+webkit_web_navigation_action_get_original_uri
+webkit_web_navigation_action_get_reason
+webkit_web_navigation_action_get_target_frame
+webkit_web_navigation_action_get_type
+webkit_web_navigation_action_set_original_uri
+webkit_web_navigation_action_set_reason
+webkit_web_navigation_reason_get_type
+<SUBSECTION Standard>
+WEBKIT_IS_WEB_NAVIGATION_ACTION
+WEBKIT_IS_WEB_NAVIGATION_ACTION_CLASS
+WEBKIT_TYPE_WEB_NAVIGATION_ACTION
+WEBKIT_TYPE_WEB_NAVIGATION_REASON
+WEBKIT_WEB_NAVIGATION_ACTION
+WEBKIT_WEB_NAVIGATION_ACTION_CLASS
+WEBKIT_WEB_NAVIGATION_ACTION_GET_CLASS
+<SUBSECTION Private>
+WebKitWebNavigationAction
+WebKitWebNavigationActionClass
+WebKitWebNavigationActionPrivate
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebpolicydecision</FILE>
+<TITLE>WebKitWebPolicyDecision</TITLE>
+WebKitWebPolicyDecision
+webkit_web_policy_decision_download
+webkit_web_policy_decision_get_type
+webkit_web_policy_decision_ignore
+webkit_web_policy_decision_use
+<SUBSECTION Standard>
+WEBKIT_IS_WEB_POLICY_DECISION
+WEBKIT_IS_WEB_POLICY_DECISION_CLASS
+WEBKIT_TYPE_WEB_POLICY_DECISION
+WEBKIT_WEB_POLICY_DECISION
+WEBKIT_WEB_POLICY_DECISION_CLASS
+WEBKIT_WEB_POLICY_DECISION_GET_CLASS
+<SUBSECTION Private>
+WebKitWebPolicyDecision
+WebKitWebPolicyDecisionClass
+WebKitWebPolicyDecisionPrivate
+</SECTION>
+
+<SECTION>
+<FILE>webkitgeolocationpolicydecision</FILE>
+<TITLE>WebKitGeolocationPolicyDecision</TITLE>
+WebKitGeolocationPolicyDecision
+webkit_geolocation_policy_allow
+webkit_geolocation_policy_deny
+webkit_geolocation_policy_decision_get_type
+<SUBSECTION Standard>
+WEBKIT_IS_GEOLOCATION_POLICY_DECISION
+WEBKIT_IS_GEOLOCATION_POLICY_DECISION_CLASS
+WEBKIT_TYPE_GEOLOCATION_POLICY_DECISION
+WEBKIT_GEOLOCATION_POLICY_DECISION
+WEBKIT_GEOLOCATION_POLICY_DECISION_CLASS
+WEBKIT_GEOLOCATION_POLICY_DECISION_GET_CLASS
+<SUBSECTION Private>
+WebKitGeolocationPolicyDecision
+WebKitGeolocationPolicyDecisionClass
+WebKitGeolocationPolicyDecisionPrivate
+</SECTION>
+
+<SECTION>
+<FILE>webkitnetworkrequest</FILE>
+<TITLE>WebKitNetworkRequest</TITLE>
+WebKitNetworkRequest
+webkit_network_request_new
+webkit_network_request_get_uri
+webkit_network_request_get_message
+webkit_network_request_set_uri
+<SUBSECTION Standard>
+WEBKIT_NETWORK_REQUEST
+WEBKIT_IS_NETWORK_REQUEST
+WEBKIT_TYPE_NETWORK_REQUEST
+WEBKIT_NETWORK_REQUEST_CLASS
+WEBKIT_IS_NETWORK_REQUEST_CLASS
+WEBKIT_NETWORK_REQUEST_GET_CLASS
+<SUBSECTION Private>
+webkit_network_request_get_type
+WebKitNetworkRequestPrivate
+WebKitNetworkRequest
+WebKitNetworkRequestClass
+</SECTION>
+
+<SECTION>
+<FILE>webkitnetworkresponse</FILE>
+<TITLE>WebKitNetworkResponse</TITLE>
+WebKitNetworkResponse
+webkit_network_response_get_uri
+webkit_network_response_get_message
+webkit_network_response_set_uri
+<SUBSECTION Standard>
+WEBKIT_NETWORK_RESPONSE
+WEBKIT_IS_NETWORK_RESPONSE
+WEBKIT_TYPE_NETWORK_RESPONSE
+WEBKIT_NETWORK_RESPONSE_CLASS
+WEBKIT_IS_NETWORK_RESPONSE_CLASS
+WEBKIT_NETWORK_RESPONSE_GET_CLASS
+<SUBSECTION Private>
+webkit_network_response_get_type
+webkit_network_response_new
+WebKitNetworkResponsePrivate
+WebKitNetworkResponse
+WebKitNetworkResponseClass
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebview</FILE>
+WebKitNavigationResponse
+WebKitWebViewTargetInfo
+WebKitWebViewViewMode
+<TITLE>WebKitWebView</TITLE>
+WebKitWebView
+webkit_web_view_can_copy_clipboard
+webkit_web_view_can_cut_clipboard
+webkit_web_view_can_go_back
+webkit_web_view_can_go_back_or_forward
+webkit_web_view_can_go_forward
+webkit_web_view_can_paste_clipboard
+webkit_web_view_can_redo
+webkit_web_view_can_show_mime_type
+webkit_web_view_can_undo
+webkit_web_view_copy_clipboard
+webkit_web_view_cut_clipboard
+webkit_web_view_delete_selection
+webkit_web_view_execute_script
+webkit_web_view_get_back_forward_list
+webkit_web_view_get_copy_target_list
+webkit_web_view_get_custom_encoding
+webkit_web_view_get_dom_document
+webkit_web_view_get_editable
+webkit_web_view_get_encoding
+webkit_web_view_get_focused_frame
+webkit_web_view_get_full_content_zoom
+webkit_web_view_get_hit_test_result
+webkit_web_view_get_icon_uri
+webkit_web_view_get_inspector
+webkit_web_view_get_load_status
+webkit_web_view_get_main_frame
+webkit_web_view_get_paste_target_list
+webkit_web_view_get_progress
+webkit_web_view_get_settings
+webkit_web_view_get_title
+webkit_web_view_get_transparent
+webkit_web_view_get_uri
+webkit_web_view_get_view_mode
+webkit_web_view_get_view_source_mode
+webkit_web_view_get_viewport_attributes
+webkit_web_view_get_zoom_level
+webkit_web_view_go_back
+webkit_web_view_go_back_or_forward
+webkit_web_view_go_forward
+webkit_web_view_go_to_back_forward_item
+webkit_web_view_has_selection
+webkit_web_view_load_html_string
+webkit_web_view_load_request
+webkit_web_view_load_string
+webkit_web_view_load_uri
+webkit_web_view_mark_text_matches
+webkit_web_view_move_cursor
+webkit_web_view_new
+webkit_web_view_open
+webkit_web_view_paste_clipboard
+webkit_web_view_redo
+webkit_web_view_reload
+webkit_web_view_reload_bypass_cache
+webkit_web_view_search_text
+webkit_web_view_select_all
+webkit_web_view_set_custom_encoding
+webkit_web_view_set_editable
+webkit_web_view_set_full_content_zoom
+webkit_web_view_set_highlight_text_matches
+webkit_web_view_set_maintains_back_forward_list
+webkit_web_view_set_settings
+webkit_web_view_set_transparent
+webkit_web_view_set_view_mode
+webkit_web_view_set_view_source_mode
+webkit_web_view_set_zoom_level
+webkit_web_view_stop_loading
+webkit_web_view_target_info_get_type
+webkit_web_view_undo
+webkit_web_view_unmark_text_matches
+webkit_web_view_zoom_in
+webkit_web_view_zoom_out
+webkit_web_view_get_window_features
+<SUBSECTION Standard>
+WEBKIT_WEB_VIEW
+WEBKIT_IS_WEB_VIEW
+WEBKIT_TYPE_WEB_VIEW
+WEBKIT_WEB_VIEW_CLASS
+WEBKIT_IS_WEB_VIEW_CLASS
+WEBKIT_WEB_VIEW_GET_CLASS
+<SUBSECTION Private>
+webkit_web_view_set_window_features
+webkit_web_view_get_type
+WebKitWebViewPrivate
+WebKitWebView
+WebKitWebViewClass
+WEBKIT_WEB_VIEW_GET_PRIVATE
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebwindowfeatures</FILE>
+<TITLE>WebKitWebWindowFeatures</TITLE>
+WebKitWebWindowFeatures
+webkit_web_window_features_equal
+webkit_web_window_features_new
+<SUBSECTION Standard>
+WEBKIT_IS_WEB_WINDOW_FEATURES
+WEBKIT_IS_WEB_WINDOW_FEATURES_CLASS
+WEBKIT_TYPE_WEB_WINDOW_FEATURES
+WEBKIT_WEB_WINDOW_FEATURES
+WEBKIT_WEB_WINDOW_FEATURES_CLASS
+WEBKIT_WEB_WINDOW_FEATURES_GET_CLASS
+<SUBSECTION Private>
+webkit_web_window_features_get_type
+WebKitWebWindowFeatures
+WebKitWebWindowFeaturesClass
+WebKitWebWindowFeaturesPrivate
+</SECTION>
+
+<SECTION>
+<FILE>webkit</FILE>
+<TITLE>Global functions</TITLE>
+webkit_init
+webkit_get_default_session
+webkit_get_default_web_database_quota
+webkit_get_web_database_directory_path
+webkit_get_web_plugin_database
+webkit_remove_all_web_databases
+webkit_set_default_web_database_quota
+webkit_set_web_database_directory_path
+<SUBSECTION CacheModel>
+WebKitCacheModel
+webkit_get_cache_model
+webkit_set_cache_model
+</SUBSECTION>
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebresource</FILE>
+<TITLE>WebKitWebResource</TITLE>
+WebKitWebResource
+webkit_web_resource_get_data
+webkit_web_resource_get_encoding
+webkit_web_resource_get_frame_name
+webkit_web_resource_get_mime_type
+webkit_web_resource_get_type
+webkit_web_resource_get_uri
+webkit_web_resource_new
+<SUBSECTION Standard>
+WEBKIT_WEB_RESOURCE
+WEBKIT_IS_WEB_RESOURCE
+WEBKIT_TYPE_WEB_RESOURCE
+WEBKIT_WEB_RESOURCE_CLASS
+WEBKIT_IS_WEB_RESOURCE_CLASS
+WEBKIT_WEB_RESOURCE_GET_CLASS
+<SUBSECTION Private>
+webkit_web_resource_get_type
+webkit_web_resource_new
+WebKitWebResourcePrivate
+WebKitWebResource
+WebKitWebResourceClass
+</SECTION>
+
+<SECTION>
+<FILE>webkitviewportattributes</FILE>
+<TITLE>WebKitViewportAttributes</TITLE>
+webkit_viewport_attributes_recompute
+<SUBSECTION Standard>
+WEBKIT_IS_VIEWPORT_ATTRIBUTES
+WEBKIT_IS_VIEWPORT_ATTRIBUTES_CLASS
+WEBKIT_TYPE_VIEWPORT_ATTRIBUTES
+WEBKIT_VIEWPORT_ATTRIBUTES
+WEBKIT_VIEWPORT_ATTRIBUTES_CLASS
+WEBKIT_VIEWPORT_ATTRIBUTES_GET_CLASS
+<SUBSECTION Private>
+webkit_viewport_attributes_get_type
+WebKitViewportAttributes
+WebKitViewportAttributesClass
+WebKitViewportAttributesPrivate
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebplugin</FILE>
+<TITLE>WebKitWebPlugin</TITLE>
+WebKitWebPluginMIMEType
+webkit_web_plugin_get_description
+webkit_web_plugin_get_enabled
+webkit_web_plugin_get_mimetypes
+webkit_web_plugin_get_name
+webkit_web_plugin_set_enabled
+<SUBSECTION Standard>
+WEBKIT_IS_WEB_PLUGIN
+WEBKIT_IS_WEB_PLUGIN_CLASS
+WEBKIT_TYPE_WEB_PLUGIN
+WEBKIT_WEB_PLUGIN
+WEBKIT_WEB_PLUGIN_CLASS
+WEBKIT_WEB_PLUGIN_GET_CLASS
+<SUBSECTION Private>
+webkit_web_plugin_get_type
+WebKitWebPlugin
+WebKitWebPluginClass
+WebKitWebPluginPrivate
+</SECTION>
+
+<SECTION>
+<FILE>webkitwebplugindatabase</FILE>
+<TITLE>WebKitWebPluginDatabase</TITLE>
+webkit_web_plugin_database_get_plugin_for_mimetype
+webkit_web_plugin_database_get_plugins
+webkit_web_plugin_database_new
+webkit_web_plugin_database_plugins_list_free
+webkit_web_plugin_database_refresh
+<SUBSECTION Standard>
+WEBKIT_IS_WEB_PLUGIN_DATABASE
+WEBKIT_IS_WEB_PLUGIN_DATABASE_CLASS
+WEBKIT_TYPE_WEB_PLUGIN_DATABASE
+WEBKIT_WEB_PLUGIN_DATABASE
+WEBKIT_WEB_PLUGIN_DATABASE_CLASS
+WEBKIT_WEB_PLUGIN_DATABASE_GET_CLASS
+<SUBSECTION Private>
+WebKitWebPluginDatabase
+WebKitWebPluginDatabaseClass
+WebKitWebPluginDatabasePrivate
+webkit_web_plugin_database_get_type
+</SECTION>
+
+<SECTION>
+<FILE>soup-cache</FILE>
+<TITLE>WebKitSoupCache</TITLE>
+webkit_soup_cache_new
+webkit_soup_cache_flush
+webkit_soup_cache_clear
+webkit_soup_cache_dump
+webkit_soup_cache_load
+webkit_soup_cache_set_max_size
+webkit_soup_cache_get_max_size
+<SUBSECTION Standard>
+WEBKIT_IS_SOUP_CACHE
+WEBKIT_IS_SOUP_CACHE_CLASS
+WEBKIT_TYPE_SOUP_CACHE
+WEBKIT_SOUP_CACHE
+WEBKIT_SOUP_CACHE_CLASS
+WEBKIT_SOUP_CACHE_GET_CLASS
+<SUBSECTION Private>
+webkit_soup_cache_get_type
+WebKitSoupCachePrivate
+WebKitSoupCache
+WebKitSoupCacheClass
+</SECTION>
+
+<SECTION>
+<FILE>webkitprivate</FILE>
+getViewFromFrame
+kit
+WEBKIT_PARAM_READABLE
+WEBKIT_PARAM_READWRITE
+webkit_web_frame_init_with_web_view
+webkit_web_history_item_new_with_core_item
+webkit_web_inspector_set_inspector_client
+webkit_web_inspector_set_web_view
+webkit_web_inspector_set_inspected_uri
+</SECTION>
+
+<SECTION>
+<FILE>webkiterror</FILE>
+WEBKIT_NETWORK_ERROR
+WEBKIT_PLUGIN_ERROR
+WEBKIT_POLICY_ERROR
+WebKitNetworkError
+WebKitPluginError
+WebKitPolicyError
+webkit_network_error_quark
+webkit_plugin_error_quark
+webkit_policy_error_quark
+</SECTION>
+
+<SECTION>
+<FILE>webkitdefines</FILE>
+WEBKIT_API
+webkit_navigation_response_get_type
+WEBKIT_OBSOLETE_API
+WEBKIT_CHECK_VERSION
+WEBKIT_MAJOR_VERSION
+WEBKIT_MICRO_VERSION
+WEBKIT_MINOR_VERSION
+WEBKIT_TYPE_NAVIGATION_RESPONSE
+WEBKIT_TYPE_WEB_VIEW_TARGET_INFO
+webkit_check_version
+webkit_major_version
+webkit_micro_version
+webkit_minor_version
+</SECTION>
diff --git a/Source/WebKit/gtk/docs/webkitgtk.types b/Source/WebKit/gtk/docs/webkitgtk.types
new file mode 100644
index 0000000..23f3382
--- /dev/null
+++ b/Source/WebKit/gtk/docs/webkitgtk.types
@@ -0,0 +1,13 @@
+#include <webkit/webkit.h>
+
+webkit_download_get_type
+webkit_navigation_response_get_type
+webkit_network_request_get_type
+webkit_web_back_forward_list_get_type
+webkit_web_history_item_get_type
+webkit_web_inspector_get_type
+webkit_web_settings_get_type
+webkit_web_view_get_type
+webkit_web_view_target_info_get_type
+webkit_web_window_features_get_type
+