[goffice] don't crash in goc_item_finalize when canvas is NULL and API doc enhancements



commit da5448b7eb24e24790ee4c6fac4df27110eca8d1
Author: Jean Brefort <jean brefort normalesup org>
Date:   Sun Sep 13 16:55:55 2009 +0200

    don't crash in goc_item_finalize when canvas is NULL and API doc enhancements

 ChangeLog                               |   16 +
 INSTALL                                 |  107 ++-
 docs/reference/.gitignore               |    1 -
 docs/reference/Makefile.am              |   12 +-
 docs/reference/goffice-0.8-sections.txt | 2343 +++++++++++++++++++++++++++++++
 docs/reference/goffice-docs.sgml        |    5 +-
 goffice/canvas/goc-canvas.c             |    7 +
 goffice/canvas/goc-group.c              |    6 +
 goffice/canvas/goc-item.c               |   63 +-
 goffice/canvas/goc-item.h               |    2 +
 goffice/graph/gog-plot-impl.h           |    5 +-
 goffice/gtk/go-combo-text.c             |    2 +-
 goffice/gtk/go-combo-text.h             |    2 +-
 13 files changed, 2532 insertions(+), 39 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 05aa09f..0838739 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2009-09-13  Jean Brefort  <jean brefort normalesup org>
+
+	* docs/reference/.gitignore: removed goffice-*-sections.txt.
+	* docs/reference/Makefile.am: do not clean goffice-*-sections.txt.
+	* docs/reference/goffice-0.8-sections.txt: added and cleaned a lot.
+	* docs/reference/goffice-docs.sgml: updated.
+	* goffice/canvas/goc-canvas.c: add some documentation.
+	* goffice/canvas/goc-group.c (goc_group_add_child),
+	(goc_group_remove_child): fix item life cycle issues.
+	* goffice/canvas/goc-item.c (goc_item_finalize),
+	(_goc_item_realize), (_goc_item_unrealize): ditto.
+	* goffice/canvas/goc-item.h: ditto.
+	* goffice/graph/gog-plot-impl.h: make gtk-doc happy.
+	* goffice/gtk/go-combo-text.c: ditto.
+	* goffice/gtk/go-combo-text.h: ditto.
+
 2009-09-12  Jean Brefort  <jean brefort normalesup org>
 
 	* docs/reference/Makefile.am: removed obsolete entries.
diff --git a/INSTALL b/INSTALL
index d3c5b40..2550dab 100644
--- a/INSTALL
+++ b/INSTALL
@@ -2,15 +2,15 @@ Installation Instructions
 *************************
 
 Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005,
-2006, 2007 Free Software Foundation, Inc.
+2006, 2007, 2008, 2009 Free Software Foundation, Inc.
 
-This file is free documentation; the Free Software Foundation gives
+   This file is free documentation; the Free Software Foundation gives
 unlimited permission to copy, distribute and modify it.
 
 Basic Installation
 ==================
 
-Briefly, the shell commands `./configure; make; make install' should
+   Briefly, the shell commands `./configure; make; make install' should
 configure, build, and install this package.  The following
 more-detailed instructions are generic; see the `README' file for
 instructions specific to this package.
@@ -73,9 +73,9 @@ The simplest way to compile this package is:
 Compilers and Options
 =====================
 
-Some systems require unusual options for compilation or linking that the
-`configure' script does not know about.  Run `./configure --help' for
-details on some of the pertinent environment variables.
+   Some systems require unusual options for compilation or linking that
+the `configure' script does not know about.  Run `./configure --help'
+for details on some of the pertinent environment variables.
 
    You can give `configure' initial values for configuration parameters
 by setting variables in the command line or in the environment.  Here
@@ -88,7 +88,7 @@ is an example:
 Compiling For Multiple Architectures
 ====================================
 
-You can compile the package for more than one kind of computer at the
+   You can compile the package for more than one kind of computer at the
 same time, by placing the object files for each architecture in their
 own directory.  To do this, you can use GNU `make'.  `cd' to the
 directory where you want the object files and executables to go and run
@@ -100,10 +100,24 @@ architecture at a time in the source code directory.  After you have
 installed the package for one architecture, use `make distclean' before
 reconfiguring for another architecture.
 
+   On MacOS X 10.5 and later systems, you can create libraries and
+executables that work on multiple system types--known as "fat" or
+"universal" binaries--by specifying multiple `-arch' options to the
+compiler but only a single `-arch' option to the preprocessor.  Like
+this:
+
+     ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
+                 CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
+                 CPP="gcc -E" CXXCPP="g++ -E"
+
+   This is not guaranteed to produce working output in all cases, you
+may have to build one architecture at a time and combine the results
+using the `lipo' tool if you have problems.
+
 Installation Names
 ==================
 
-By default, `make install' installs the package's commands under
+   By default, `make install' installs the package's commands under
 `/usr/local/bin', include files under `/usr/local/include', etc.  You
 can specify an installation prefix other than `/usr/local' by giving
 `configure' the option `--prefix=PREFIX'.
@@ -126,7 +140,7 @@ option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
 Optional Features
 =================
 
-Some packages pay attention to `--enable-FEATURE' options to
+   Some packages pay attention to `--enable-FEATURE' options to
 `configure', where FEATURE indicates an optional part of the package.
 They may also pay attention to `--with-PACKAGE' options, where PACKAGE
 is something like `gnu-as' or `x' (for the X Window System).  The
@@ -138,14 +152,46 @@ find the X include and library files automatically, but if it doesn't,
 you can use the `configure' options `--x-includes=DIR' and
 `--x-libraries=DIR' to specify their locations.
 
+Particular systems
+==================
+
+   On HP-UX, the default C compiler is not ANSI C compatible.  If GNU
+CC is not installed, it is recommended to use the following options in
+order to use an ANSI C compiler:
+
+     ./configure CC="cc -Ae -D_XOPEN_SOURCE=500"
+
+and if that doesn't work, install pre-built binaries of GCC for HP-UX.
+
+   On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot
+parse its `<wchar.h>' header file.  The option `-nodtk' can be used as
+a workaround.  If GNU CC is not installed, it is therefore recommended
+to try
+
+     ./configure CC="cc"
+
+and if that doesn't work, try
+
+     ./configure CC="cc -nodtk"
+
+   On Solaris, don't put `/usr/ucb' early in your `PATH'.  This
+directory contains several dysfunctional programs; working variants of
+these programs are available in `/usr/bin'.  So, if you need `/usr/ucb'
+in your `PATH', put it _after_ `/usr/bin'.
+
+   On Haiku, software installed for all users goes in `/boot/common',
+not `/usr/local'.  It is recommended to use the following options:
+
+     ./configure --prefix=/boot/common
+
 Specifying the System Type
 ==========================
 
-There may be some features `configure' cannot figure out automatically,
-but needs to determine by the type of machine the package will run on.
-Usually, assuming the package is built to be run on the _same_
-architectures, `configure' can figure that out, but if it prints a
-message saying it cannot guess the machine type, give it the
+   There may be some features `configure' cannot figure out
+automatically, but needs to determine by the type of machine the package
+will run on.  Usually, assuming the package is built to be run on the
+_same_ architectures, `configure' can figure that out, but if it prints
+a message saying it cannot guess the machine type, give it the
 `--build=TYPE' option.  TYPE can either be a short name for the system
 type, such as `sun4', or a canonical name which has the form:
 
@@ -153,7 +199,8 @@ type, such as `sun4', or a canonical name which has the form:
 
 where SYSTEM can have one of these forms:
 
-     OS KERNEL-OS
+     OS
+     KERNEL-OS
 
    See the file `config.sub' for the possible values of each field.  If
 `config.sub' isn't included in this package, then this package doesn't
@@ -171,9 +218,9 @@ eventually be run) with `--host=TYPE'.
 Sharing Defaults
 ================
 
-If you want to set default values for `configure' scripts to share, you
-can create a site shell script called `config.site' that gives default
-values for variables like `CC', `cache_file', and `prefix'.
+   If you want to set default values for `configure' scripts to share,
+you can create a site shell script called `config.site' that gives
+default values for variables like `CC', `cache_file', and `prefix'.
 `configure' looks for `PREFIX/share/config.site' if it exists, then
 `PREFIX/etc/config.site' if it exists.  Or, you can set the
 `CONFIG_SITE' environment variable to the location of the site script.
@@ -182,7 +229,7 @@ A warning: not all `configure' scripts look for a site script.
 Defining Variables
 ==================
 
-Variables not defined in a site shell script can be set in the
+   Variables not defined in a site shell script can be set in the
 environment passed to `configure'.  However, some packages may run
 configure again during the build, and the customized values of these
 variables may be lost.  In order to avoid this problem, you should set
@@ -201,11 +248,19 @@ an Autoconf bug.  Until the bug is fixed you can use this workaround:
 `configure' Invocation
 ======================
 
-`configure' recognizes the following options to control how it operates.
+   `configure' recognizes the following options to control how it
+operates.
 
 `--help'
 `-h'
-     Print a summary of the options to `configure', and exit.
+     Print a summary of all of the options to `configure', and exit.
+
+`--help=short'
+`--help=recursive'
+     Print a summary of the options unique to this package's
+     `configure', and exit.  The `short' variant lists options used
+     only in the top level, while the `recursive' variant lists options
+     also present in any nested packages.
 
 `--version'
 `-V'
@@ -232,6 +287,16 @@ an Autoconf bug.  Until the bug is fixed you can use this workaround:
      Look for the package's source code in directory DIR.  Usually
      `configure' can determine that directory automatically.
 
+`--prefix=DIR'
+     Use DIR as the installation prefix.  *Note Installation Names::
+     for more details, including other options available for fine-tuning
+     the installation locations.
+
+`--no-create'
+`-n'
+     Run the configure checks, but stop before creating any output
+     files.
+
 `configure' also accepts some other, not widely useful, options.  Run
 `configure --help' for more details.
 
diff --git a/docs/reference/.gitignore b/docs/reference/.gitignore
index db0cff6..b48dc60 100644
--- a/docs/reference/.gitignore
+++ b/docs/reference/.gitignore
@@ -10,7 +10,6 @@ goffice-*-undocumented.txt
 goffice-*-decl-list.txt
 goffice-*-decl.txt
 goffice-*-overrides.txt
-goffice-*-sections.txt
 goffice-*-undeclared.txt
 goffice-*.args
 goffice-*.hierarchy
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index f676835..9e5ee77 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -8,7 +8,7 @@ DOC_SOURCE_DIR=../../goffice
 
 SCANGOBJ_OPTIONS= --nogtkinit --type-init-func="g_type_init ()"
 
-SCAN_OPTIONS=
+SCAN_OPTIONS=--rebuild-types
 
 MKDB_OPTIONS=--sgml-mode --output-format=xml
 
@@ -66,7 +66,15 @@ include $(top_srcdir)/gtk-doc.make
 # To work around bug #314105, we have to distribute the generated file, too.
 EXTRA_DIST += version.xml.in version.xml
 
-CLEANFILES += goffice- GOFFICE_API_VER@-*.txt
+CLEANFILES += \
+	goffice- GOFFICE_API_VER@-decl-list.txt	\
+	goffice- GOFFICE_API_VER@-unused.txt	\
+	goffice- GOFFICE_API_VER@-decl.txt   	\
+	goffice- GOFFICE_API_VER@-undeclared.txt	\
+	goffice- GOFFICE_API_VER@-overrides.txt	\
+	goffice- GOFFICE_API_VER@-undocumented.txt	\
+	goffice- GOFFICE_API_VER@.types	\
+	html/* tmpl/* xml/*
 
 $(top_srcdir)/docs/reference/version.xml:
 	cp $(top_builddir)/docs/reference/version.xml $@
diff --git a/docs/reference/goffice-0.8-sections.txt b/docs/reference/goffice-0.8-sections.txt
new file mode 100644
index 0000000..acb7267
--- /dev/null
+++ b/docs/reference/goffice-0.8-sections.txt
@@ -0,0 +1,2343 @@
+### Goffice Graph
+
+### Objects
+
+<SECTION>
+<FILE>gog-object</FILE>
+<TITLE>GogObject</TITLE>
+<INCLUDE>goffice/graph/gog-object.h</INCLUDE>
+GogObject
+GOG_PARAM_FORCE_SAVE
+GogDataDuplicator
+GogObjectNamingConv
+GogObjectRole
+gog_object_dup
+gog_object_get_parent
+gog_object_get_parent_typed
+gog_object_get_graph
+gog_object_get_theme
+gog_object_get_id
+gog_object_get_name
+gog_object_set_name
+gog_object_get_children
+gog_object_get_child_by_role
+gog_object_get_child_by_name
+gog_object_get_editor
+gog_object_new_view
+gog_object_is_deletable
+gog_object_possible_additions
+gog_object_register_roles
+gog_object_add_by_role
+gog_object_add_by_name
+gog_object_can_reorder
+gog_object_reorder
+gog_object_get_position_flags
+gog_object_set_position_flags
+gog_object_is_default_position_flags
+gog_object_get_manual_position
+gog_object_set_manual_position
+gog_object_get_manual_allocation
+gog_object_find_role_by_name
+gog_object_update
+gog_object_request_update
+gog_object_emit_changed
+gog_object_clear_parent
+gog_object_set_parent
+gog_object_request_editor_update
+<SUBSECTION Standard>
+GOG_TYPE_OBJECT
+GOG_OBJECT
+GOG_IS_OBJECT
+GOG_OBJECT_CLASS
+GOG_IS_OBJECT_CLASS
+GOG_OBJECT_GET_CLASS
+<SUBSECTION Private>
+gog_object_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-styled-object</FILE>
+<TITLE>GogStyledObject</TITLE>
+<INCLUDE>goffice/graph/gog-styled-object.h</INCLUDE>
+GogStyledObject
+<SUBSECTION Standard>
+GOG_TYPE_STYLED_OBJECT
+GOG_STYLED_OBJECT
+GOG_IS_STYLED_OBJECT
+GOG_STYLED_OBJECT_GET_CLASS
+<SUBSECTION Private>
+gog_styled_object_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-outlined-object</FILE>
+<TITLE>GogOutlinedObject</TITLE>
+GogOutlinedObject
+gog_outlined_object_get_pad
+<SUBSECTION Standard>
+GOG_TYPE_OUTLINED_OBJECT
+GOG_OUTLINED_OBJECT
+GOG_IS_OUTLINED_OBJECT
+GogOutlinedObjectClass
+GOG_TYPE_OUTLINED_VIEW
+GOG_OUTLINED_VIEW
+GOG_IS_OUTLINED_VIEW
+GOG_OUTLINED_VIEW_GET_CLASS
+<SUBSECTION Private>
+gog_outlined_object_get_type
+gog_outlined_view_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-object-xml</FILE>
+<TITLE>GogObject XML support</TITLE>
+<SUBSECTION>
+gog_object_set_arg
+gog_object_write_xml_sax
+gog_object_new_from_xml
+gog_object_sax_push_parser
+<SUBSECTION>
+GogObjectSaxHandler
+go_xml_out_add_color
+gog_xml_read_state_get_obj
+</SECTION>
+
+<SECTION>
+<FILE>gog-view</FILE>
+<TITLE>GogView</TITLE>
+GogView
+GogViewAllocation
+GogViewPadding
+GogViewRequisition
+gog_view_get_model
+gog_view_render
+gog_view_queue_redraw
+gog_view_queue_resize
+gog_view_padding_request
+gog_view_size_request
+gog_view_size_allocate
+gog_view_update_sizes
+gog_view_find_child_view
+gog_view_get_toolkit
+gog_view_render_toolkit
+gog_view_get_tool_at_point
+gog_view_get_view_at_point
+gog_view_size_child_request
+<SUBSECTION Standard>
+GOG_TYPE_VIEW
+GOG_VIEW
+GOG_IS_VIEW
+GOG_VIEW_CLASS
+GOG_IS_VIEW_CLASS
+GOG_VIEW_GET_CLASS
+GogViewClass
+<SUBSECTION Private>
+gog_view_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-graph</FILE>
+<TITLE>GogGraph</TITLE>
+GogGraph
+gog_graph_validate_chart_layout
+gog_graph_num_cols
+gog_graph_num_rows
+gog_graph_dup
+gog_graph_get_theme
+gog_graph_set_theme
+gog_graph_get_data
+gog_graph_ref_data
+gog_graph_unref_data
+gog_graph_get_size
+gog_graph_set_size
+gog_graph_get_supported_image_formats
+gog_graph_export_image
+gog_graph_render_to_cairo
+<SUBSECTION>
+GogGraphView
+gog_graph_view_handle_event
+gog_graph_view_get_selection
+gog_graph_view_set_selection
+<SUBSECTION Private>
+GOG_TYPE_GRAPH
+GOG_GRAPH
+GOG_IS_GRAPH
+GOG_GRAPH_CLASS
+GOG_IS_GRAPH_CLASS
+GOG_TYPE_GRAPH_VIEW
+GOG_GRAPH_VIEW
+GOG_IS_GRAPH_VIEW
+<SUBSECTION Private>
+gog_graph_view_get_type
+gog_graph_get_type
+gog_graph_request_update
+gog_graph_force_update
+</SECTION>
+
+<SECTION>
+<FILE>gog-chart</FILE>
+<TITLE>GogChart</TITLE>
+GogChart
+gog_axis_set_from_str
+gog_chart_get_position
+gog_chart_set_position
+gog_chart_get_plot_area
+gog_chart_set_plot_area
+gog_chart_request_cardinality_update
+gog_chart_get_cardinality
+gog_chart_foreach_elem
+gog_chart_get_plots
+gog_chart_get_axis_set
+gog_chart_axis_set_is_valid
+gog_chart_axis_set_assign
+gog_chart_get_axes
+gog_chart_get_grid
+<SUBSECTION>
+gog_chart_view_get_plot_area
+<SUBSECTION Standard>
+GOG_TYPE_CHART
+GOG_CHART
+GOG_IS_CHART
+GogChartClass
+GOG_CHART_CLASS
+GOG_IS_CHART_CLASS
+<SUBSECTION Private>
+gog_chart_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-legend</FILE>
+<TITLE>GogLegend</TITLE>
+GogLegend
+<SUBSECTION Standard>
+GOG_TYPE_LEGEND
+GOG_LEGEND
+GOG_IS_LEGEND
+<SUBSECTION Private>
+gog_legend_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-grid</FILE>
+<TITLE>GogGrid</TITLE>
+GogGrid
+<SUBSECTION Standard>
+GOG_TYPE_GRID
+GOG_GRID
+GOG_IS_GRID
+<SUBSECTION Private>
+gog_grid_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-axis</FILE>
+<TITLE>GogAxis</TITLE>
+GogAxis
+GogAxisTick
+GogAxisElemType
+gog_axis_get_atype
+gog_axis_is_center_on_ticks
+gog_axis_is_discrete
+gog_axis_is_inverted
+gog_axis_get_bounds
+gog_axis_set_bounds
+gog_axis_set_extents
+gog_axis_get_format
+gog_axis_set_format
+gog_axis_get_ticks
+gog_axis_get_labels
+gog_axis_get_entry
+gog_axis_add_contributor
+gog_axis_del_contributor
+gog_axis_contributors
+gog_axis_clear_contributors
+gog_axis_bound_changed
+gog_axis_get_grid_line
+gog_axis_get_circular_rotation
+gog_axis_get_polar_perimeter
+gog_axis_set_polar_unit
+gog_axis_get_polar_unit
+<SUBSECTION Standard>
+GOG_TYPE_AXIS
+GOG_AXIS
+GOG_IS_AXIS
+<SUBSECTION Private>
+gog_axis_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-axis-line</FILE>
+<TITLE>GogAxisLine</TITLE>
+GogAxisLine
+GogAxisBase
+GogAxisPosition
+GogAxisTickTypes
+<SUBSECTION Standard>
+GOG_TYPE_AXIS_LINE
+GOG_AXIS_LINE
+GOG_IS_AXIS_LINE
+<SUBSECTION Private>
+gog_axis_line_get_type
+GogAxisBaseClass
+GOG_TYPE_AXIS_BASE
+GOG_AXIS_BASE
+GOG_IS_AXIS_BASE
+gog_axis_base_get_type
+gog_axis_base_get_position
+gog_axis_base_set_position
+GogAxisBaseView
+GogAxisBaseViewClass
+GOG_TYPE_AXIS_BASE_VIEW
+GOG_AXIS_BASE_VIEW
+GOG_IS_AXIS_BASE_VIEW
+gog_axis_base_view_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-grid-line</FILE>
+<TITLE>GogGridLine</TITLE>
+GogGridLine
+gog_grid_line_is_minor
+<SUBSECTION Standard>
+GOG_TYPE_GRID_LINE
+GOG_GRID_LINE
+GOG_IS_GRID_LINE
+<SUBSECTION Private>
+gog_grid_line_get_type
+gog_grid_line_view_render_lines
+gog_grid_line_view_render_stripes
+</SECTION>
+
+<SECTION>
+<FILE>gog-plot</FILE>
+<TITLE>GogPlot</TITLE>
+GogPlot
+GogPlotBoundInfo
+gog_plot_new_by_type
+gog_plot_new_by_name
+gog_plot_request_cardinality_update
+gog_plot_get_cardinality
+gog_plot_update_cardinality
+gog_plot_foreach_elem
+gog_plot_get_series
+gog_plot_get_axis_bounds
+gog_plot_supports_vary_style_by_element
+gog_plot_new_series
+gog_plot_description
+gog_plot_axis_set_pref
+gog_plot_axis_set_is_valid
+gog_plot_axis_set_assign
+gog_plot_axis_clear
+gog_plot_set_axis
+gog_plot_get_axis
+gog_plot_update_3d
+gog_plot_guru_helper
+<SUBSECTION>
+GogPlotView
+<SUBSECTION Standard>
+GOG_TYPE_PLOT
+GOG_PLOT
+GOG_IS_PLOT
+<SUBSECTION Private>
+GogPlotDesc
+GOG_PLOT_CLASS
+GOG_IS_PLOT_CLASS
+GOG_PLOT_ITEM_GET_CLASS
+GOG_TYPE_PLOT_VIEW
+GOG_PLOT_VIEW
+GOG_IS_PLOT_VIEW
+GogPlotViewClass
+gog_plot_view_get_type
+gog_plot_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-series</FILE>
+<TITLE>GogSeries</TITLE>
+GogSeries
+GogSeriesElement
+gog_series_is_valid
+gog_series_has_legend
+gog_series_get_name
+gog_series_get_plot
+gog_series_set_name
+gog_series_set_dim
+gog_series_set_index
+gog_series_num_elements
+gog_series_get_overrides
+gog_series_get_fill_type
+gog_series_get_fill_type_from_combo
+gog_series_get_xy_data
+gog_series_get_xyz_data
+gog_series_lines_use_markers
+gog_series_populate_fill_type_combo
+gog_series_set_fill_type
+<SUBSECTION Standard>
+GOG_TYPE_SERIES
+GOG_SERIES
+GOG_IS_SERIES
+GogSeriesClass
+GOG_SERIES_CLASS
+GOG_IS_SERIES_CLASS
+GOG_SERIES_GET_CLASS
+
+GOG_TYPE_SERIES_ELEMENT
+GOG_SERIES_ELEMENT
+GOG_IS_SERIES_ELEMENT
+GogSeriesElementClass
+GOG_SERIES_ELEMENT_GET_CLASS
+<SUBSECTION Private>
+gog_series_get_type
+gog_series_element_get_type
+GogSeriesPriority
+GogSeriesDimDesc
+GogSeriesDesc
+gog_series_check_validity
+gog_series_get_element
+</SECTION>
+
+<SECTION>
+<FILE>gog-series-lines</FILE>
+<TITLE>GogSeriesLines</TITLE>
+GogSeriesLines
+<SUBSECTION Standard>
+GOG_TYPE_SERIES_LINES
+GOG_SERIES_LINES
+GOG_IS_SERIES_LINES
+<SUBSECTION Private>
+gog_series_lines_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-trend-line</FILE>
+<TITLE>GogTrendLine</TITLE>
+GogTrendLineType
+gog_trend_line_new_by_name
+gog_trend_line_new_by_type
+gog_trend_line_types
+<SUBSECTION Standard>
+GogTrendLineClass
+<SUBSECTION Private>
+gog_trend_line_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-smoothed-curve</FILE>
+<TITLE>GogSmoothedCurve</TITLE>
+GogSmoothedCurve
+<SUBSECTION Standard>
+GOG_IS_SMOOTHED_CURVE
+GogSmoothedCurveClass
+<SUBSECTION Private>
+gog_smoothed_curve_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-error-bar</FILE>
+<TITLE>GogErrorBar</TITLE>
+GogErrorBar
+GogErrorBarType
+GogErrorBarDisplay
+gog_error_bar_dup
+gog_error_bar_prefs
+gog_error_bar_get_bounds
+gog_error_bar_get_minmax
+gog_error_bar_render
+gog_error_bar_is_visible
+<SUBSECTION Standard>
+GOG_TYPE_ERROR_BAR
+GOG_ERROR_BAR
+GOG_IS_ERROR_BAR
+<SUBSECTION Private>
+gog_error_bar_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-reg-curve</FILE>
+<TITLE>GogRegCurve</TITLE>
+GogRegCurve
+gog_reg_curve_get_equation
+gog_reg_curve_get_R2
+gog_reg_curve_get_bounds
+<SUBSECTION Standard>
+GOG_TYPE_REG_CURVE
+GOG_REG_CURVE
+GOG_IS_REG_CURVE
+<SUBSECTION Private>
+gog_reg_curve_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-label</FILE>
+<TITLE>GogLabel</TITLE>
+GogLabel
+<SUBSECTION Standard>
+GOG_TYPE_LABEL
+GOG_LABEL
+GOG_IS_LABEL
+<SUBSECTION Private>
+gog_label_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-reg-eqn</FILE>
+<TITLE>GogRegEqn</TITLE>
+<INCLUDE>goffice/graph/gog-label.h</INCLUDE>
+GogRegEqn
+<SUBSECTION Standard>
+GOG_TYPE_REG_EQN
+GOG_REG_EQN
+GOG_IS_REG_EQN
+<SUBSECTION Private>
+gog_reg_eqn_get_type
+</SECTION>
+
+### Rendering
+
+<SECTION>
+<FILE>gog-renderer</FILE>
+<TITLE>GogRenderer</TITLE>
+GogRenderer
+gog_renderer_new
+gog_renderer_draw_selection_rectangle
+gog_renderer_draw_shape
+gog_renderer_fill_serie
+gog_renderer_fill_shape
+gog_renderer_fill_circle
+gog_renderer_fill_rectangle
+gog_renderer_get_hairline_width_pts
+gog_renderer_push_clip_rectangle
+gog_renderer_render_to_cairo
+gog_renderer_stroke_serie
+gog_renderer_stroke_shape
+gog_renderer_stroke_circle
+gog_renderer_stroke_rectangle
+gog_renderer_request_update
+gog_renderer_push_style
+gog_renderer_pop_style
+gog_renderer_push_clip
+gog_renderer_pop_clip
+gog_renderer_draw_circle
+gog_renderer_draw_rectangle
+gog_renderer_draw_text
+gog_renderer_draw_marker
+gog_renderer_draw_grip
+gog_renderer_in_grip
+gog_renderer_get_text_OBR
+gog_renderer_get_text_AABR
+gog_renderer_line_size
+gog_renderer_pt2r_x
+gog_renderer_pt2r_y
+gog_renderer_pt2r
+gog_renderer_export_image
+gog_renderer_update
+gog_renderer_get_pixbuf
+gog_renderer_get_cairo_surface
+<SUBSECTION Standard>
+GOG_RENDERER_GRIP_SIZE
+GOG_TYPE_RENDERER
+GOG_RENDERER
+GOG_IS_RENDERER
+<SUBSECTION Private>
+gog_renderer_get_type
+</SECTION>
+
+<SECTION>
+<FILE>go-gtk</FILE>
+<TITLE>Gtk+</TITLE>
+<SUBSECTION Utilities>
+go_gtk_button_new_with_stock
+go_gtk_dialog_add_button
+go_gtk_dialog_run
+go_gtk_file_sel_dialog
+go_gtk_help_button_init
+go_gtk_nonmodal_dialog
+go_gtk_notice_dialog
+go_gtk_notice_nonmodal_dialog
+go_gtk_query_yes_no
+go_gtk_select_image
+go_gtk_url_is_writeable
+go_gtk_widget_disable_focus
+go_gtk_window_set_transient
+go_gtk_editable_enters
+</SECTION>
+
+<SECTION>
+<FILE>go-cairo</FILE>
+<TITLE>GOCairo</TITLE>
+go_cairo_emit_svg_path
+go_cairo_surface_is_vector
+go_cairo_convert_data_to_pixbuf
+go_cairo_convert_data_from_pixbuf
+</SECTION>
+
+<SECTION>
+<FILE>go-path</FILE>
+<TITLE>GOPath</TITLE>
+GOPath
+GOPathDirection
+GOPathOptions
+GOPathPoint
+go_path_new
+go_path_set_options
+go_path_get_options
+go_path_arc
+go_path_arc_to
+go_path_clear
+go_path_close
+go_path_curve_to
+go_path_free
+go_path_line_to
+go_path_move_to
+go_path_pie_wedge
+go_path_rectangle
+go_path_ring_wedge
+go_path_interpret
+<SUBSECTION Standard>
+GO_IS_PATH
+</SECTION>
+
+### Data
+
+<SECTION>
+<FILE>gog-data-allocator</FILE>
+<TITLE>GogDataAllocator</TITLE>
+GogDataAllocator
+gog_data_allocator_allocate
+gog_data_allocator_editor
+<SUBSECTION Standard>
+GOG_TYPE_DATA_ALLOCATOR
+GOG_DATA_ALLOCATOR
+GOG_IS_DATA_ALLOCATOR
+GOG_DATA_ALLOCATOR_CLASS
+GOG_IS_DATA_ALLOCATOR_CLASS
+GOG_DATA_ALLOCATOR_GET_CLASS
+<SUBSECTION Private>
+gog_data_allocator_get_type
+</SECTION>
+
+<SECTION>
+<FILE>gog-data-set</FILE>
+<TITLE>GogDataset</TITLE>
+GogDataset
+GogDatasetElement
+gog_dataset_dims
+gog_dataset_get_dim
+gog_dataset_set_dim
+gog_dataset_finalize
+gog_dataset_parent_changed
+gog_dataset_get_elem
+gog_dataset_set_dim_internal
+gog_dataset_dup_to_simple
+<SUBSECTION Standard>
+GOG_TYPE_DATASET
+GOG_DATASET
+GOG_IS_DATASET
+GOG_DATASET_CLASS
+GOG_IS_DATASET_CLASS
+GOG_DATASET_GET_CLASS
+<SUBSECTION Private>
+gog_dataset_get_type
+</SECTION>
+
+### Graph Utilities 
+
+<SECTION>
+<FILE>gog-guru</FILE>
+<TITLE>GogGuru</TITLE>
+gog_guru
+gog_guru_get_help_button
+</SECTION>
+
+<SECTION>
+<FILE>go-editor</FILE>
+<TITLE>GOEditor</TITLE>
+GOEditor
+GOEditorPage
+go_editor_new
+go_editor_free
+go_editor_add_page
+go_editor_set_store_page
+go_editor_get_notebook
+go_editor_get_registered_widget
+go_editor_register_widget
+</SECTION>
+
+<SECTION>
+<FILE>gog-tool</FILE>
+<TITLE>GogTool</TITLE>
+GogTool
+GogToolAction
+gog_tool_action_new
+gog_tool_action_move
+gog_tool_action_double_click
+gog_tool_action_free
+</SECTION>
+
+<SECTION>
+<FILE>gog-plot-engine</FILE>
+<TITLE>GogPlotEngine</TITLE>
+GogPlotFamily
+GogPlotType
+gog_plot_families
+gog_plot_family_by_name
+gog_plot_family_register
+gog_plot_type_register
+</SECTION>
+
+<SECTION>
+<FILE>gog-theme</FILE>
+<TITLE>GogTheme</TITLE>
+GOG_TYPE_THEME
+GOG_THEME
+GOG_IS_THEME
+GogTheme
+gog_theme_get_type
+gog_theme_new
+gog_theme_new_from_file
+gog_theme_get_name
+gog_theme_fillin_style
+gog_theme_registry_add
+gog_theme_registry_lookup
+gog_theme_registry_get_theme_names
+</SECTION>
+
+<SECTION>
+<FILE>gog-chart-map</FILE>
+<TITLE>GogChartMap</TITLE>
+GogChartMap
+GogChartMapPolarData
+gog_chart_map_new
+gog_chart_map_free
+gog_chart_map_is_valid
+gog_chart_map_2D_to_view
+gog_chart_map_get_axis_map
+gog_chart_map_make_path
+gog_chart_map_make_close_path
+gog_chart_map_get_polar_parms
+</SECTION>
+
+<SECTION>
+<FILE>gog-axis-map</FILE>
+<TITLE>GogAxisMap</TITLE>
+<INCLUDE>gog-axis.h</INCLUDE>
+GogAxisMap
+gog_axis_map_new
+gog_axis_map
+gog_axis_map_to_view
+gog_axis_map_from_view
+gog_axis_map_finite
+gog_axis_map_get_baseline
+gog_axis_map_get_extents
+gog_axis_map_get_bounds
+gog_axis_map_free
+gog_axis_map_is_valid
+gog_axis_map_is_inverted
+</SECTION>
+
+###############################################################################
+
+### GUI utilities
+
+<SECTION>
+<FILE>go-combo-box</FILE>
+<TITLE>GOComboBox</TITLE>
+GOComboBox
+GO_TYPE_COMBO_BOX
+GO_COMBO_BOX
+GO_IS_COMBO_BOX
+GO_COMBO_BOX_CLASS
+GOComboBoxPrivate
+go_combo_box_get_type
+go_combo_box_set_tooltip
+go_combo_box_set_relief
+go_combo_box_set_title
+go_combo_box_get_title
+go_combo_box_set_tearable
+go_combo_box_construct
+go_combo_box_get_pos
+go_combo_box_popup_hide
+go_combo_box_popup_display
+go_combo_box_set_display
+<SUBSECTION Private>
+GOComboBoxClass
+</SECTION>
+
+<SECTION>
+<FILE>go-combo-color</FILE>
+<TITLE>GOComboColor</TITLE>
+GO_TYPE_COMBO_COLOR
+GO_COMBO_COLOR
+GO_IS_COMBO_COLOR
+GO_COMBO_COLOR_CLASS
+GOComboColor
+go_combo_color_get_type
+go_combo_color_new
+go_combo_color_get_color
+go_combo_color_set_color
+go_combo_color_set_color_to_default
+go_combo_color_set_color_gdk
+go_combo_color_set_allow_alpha
+go_combo_color_set_instant_apply
+</SECTION>
+
+<SECTION>
+<FILE>go-combo-pixmaps</FILE>
+<TITLE>GOComboPixmaps</TITLE>
+GO_TYPE_COMBO_PIXMAPS
+GO_COMBO_PIXMAPS
+GO_IS_COMBO_PIXMAPS
+GOComboPixmaps
+GOMenuPixmaps
+go_combo_pixmaps_get_type
+go_combo_pixmaps_new
+go_combo_pixmaps_add_element
+go_combo_pixmaps_select_index
+go_combo_pixmaps_select_id
+go_combo_pixmaps_get_selected
+go_combo_pixmaps_get_preview
+go_menu_pixmaps_new
+go_menu_pixmaps_add_element
+</SECTION>
+
+<SECTION>
+<FILE>go-combo-text</FILE>
+<TITLE>GOComboText</TITLE>
+GO_TYPE_COMBO_TEXT
+GO_COMBO_TEXT
+GO_IS_COMBO_TEXT
+GOComboText
+GOComboTextSearch
+go_combo_text_get_type
+go_combo_text_new
+go_combo_text_get_entry
+go_combo_text_set_text
+go_combo_text_add_item
+</SECTION>
+
+<SECTION>
+<FILE>go-charmap-sel</FILE>
+<TITLE>GOCharmapSel</TITLE>
+GO_TYPE_CHARMAP_SEL
+GO_CHARMAP_SEL
+GO_IS_CHARMAP_SEL
+GOCharmapSel
+GOCharmapSelTestDirection
+go_charmap_sel_get_type
+go_charmap_sel_new
+go_charmap_sel_get_encoding
+go_charmap_sel_set_encoding
+go_charmap_sel_get_encoding_name
+</SECTION>
+
+<SECTION>
+<FILE>go-action-combo-pixmaps</FILE>
+GO_TYPE_ACTION_COMBO_PIXMAPS
+GO_ACTION_COMBO_PIXMAPS
+GO_IS_ACTION_COMBO_PIXMAPS
+GOActionComboPixmaps
+GOActionComboPixmapsElement
+go_action_combo_pixmaps_get_type
+go_action_combo_pixmaps_new
+go_action_combo_pixmaps_get_selected
+go_action_combo_pixmaps_select_id
+</SECTION>
+
+<SECTION>
+<FILE>go-action-combo-color</FILE>
+GO_TYPE_ACTION_COMBO_COLOR
+GO_ACTION_COMBO_COLOR
+GO_IS_ACTION_COMBO_COLOR
+GOActionComboColor
+go_action_combo_color_get_type
+go_action_combo_color_new
+go_action_combo_color_set_group
+go_action_combo_color_get_color
+go_action_combo_color_set_color
+</SECTION>
+
+<SECTION>
+<FILE>go-color-group</FILE>
+GO_COLOR_GROUP_HISTORY_SIZE
+GOColorGroup
+GO_TYPE_COLOR_GROUP
+GO_COLOR_GROUP
+GO_IS_COLOR_GROUP
+go_color_group_get_type
+go_color_group_find
+go_color_group_fetch
+go_color_group_add_color
+</SECTION>
+
+<SECTION>
+<FILE>go-font-sel</FILE>
+<TITLE>GOFontSel</TITLE>
+GO_TYPE_FONT_SEL
+GO_FONT_SEL
+GO_IS_FONT_SEL
+GOFontSel
+go_font_sel_get_type
+go_font_sel_new
+go_font_sel_set_font
+go_font_sel_get_font
+go_font_sel_editable_enters
+go_font_sel_set_sample_text
+</SECTION>
+
+<SECTION>
+<FILE>go-format-sel</FILE>
+<TITLE>GOFormatSel</TITLE>
+GO_TYPE_FORMAT_SEL
+GO_FORMAT_SEL
+GO_IS_FORMAT_SEL
+GOFormatSel
+go_format_sel_get_type
+go_format_sel_new
+go_format_sel_set_focus
+go_format_sel_set_style_format
+go_format_sel_set_locale
+go_format_sel_get_fmt
+go_format_sel_set_dateconv
+go_format_sel_show_preview
+go_format_sel_hide_preview
+go_format_sel_editable_enters
+go_format_sel_format_classification
+</SECTION>
+
+<SECTION>
+<FILE>go-locale-sel</FILE>
+<TITLE>GOLocaleSel</TITLE>
+GO_TYPE_LOCALE_SEL
+GO_LOCALE_SEL
+GO_IS_LOCALE_SEL
+GOLocaleSel
+go_locale_sel_get_type
+go_locale_sel_new
+go_locale_sel_get_locale
+go_locale_sel_set_locale
+go_locale_sel_set_sensitive
+go_locale_sel_get_locale_name
+</SECTION>
+
+<SECTION>
+<FILE>go-rotation-sel</FILE>
+<TITLE>GORotationSel</TITLE>
+GO_TYPE_ROTATION_SEL
+GO_ROTATION_SEL
+GO_IS_ROTATION_SEL
+GORotationSel
+go_rotation_sel_get_type
+go_rotation_sel_new
+go_rotation_sel_set_rotation
+go_rotation_sel_get_rotation
+</SECTION>
+
+<SECTION>
+<FILE>go-optionmenu</FILE>
+<TITLE>GOOptionMenu</TITLE>
+go_option_menu_new
+go_option_menu_set_menu
+go_option_menu_set_history
+go_option_menu_get_history
+<SUBSECTION Standard>
+GO_OPTION_MENU
+GO_IS_OPTION_MENU
+GO_TYPE_OPTION_MENU
+go_option_menu_get_type
+GO_OPTION_MENU_CLASS
+GO_IS_OPTION_MENU_CLASS
+GO_OPTION_MENU_GET_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>go-graph-widget</FILE>
+<TITLE>GOGraphWidget</TITLE>
+GOGraphWidget
+GOGraphWidgetSizeMode
+go_graph_widget_new
+go_graph_widget_get_chart
+go_graph_widget_get_graph
+go_graph_widget_get_type
+go_graph_widget_set_size_mode
+<SUBSECTION Private>
+GOGraphWidgetClass
+</SECTION>
+
+<SECTION>
+<FILE>go-palette</FILE>
+<TITLE>GOPalette</TITLE>
+GOPaletteSwatchRenderCallback
+GOPaletteSwatchTooltipCallback
+go_palette_new
+go_palette_get_n_swatches
+go_palette_get_type
+go_palette_get_user_data
+go_palette_show_automatic
+go_palette_show_custom
+go_palette_swatch_new
+<SUBSECTION Private>
+GOPalette
+GOPaletteClass
+GOPalettePrivate
+</SECTION>
+
+<SECTION>
+<FILE>go-selector</FILE>
+<TITLE>GOSelector</TITLE>
+go_selector_activate
+go_selector_get_active
+go_selector_get_type
+go_selector_get_user_data
+go_selector_new
+go_selector_set_active
+go_selector_setup_dnd
+go_selector_update_swatch
+go_gradient_selector_new
+go_gradient_selector_set_colors
+</SECTION>
+
+<SECTION>
+<FILE>go-color-selector</FILE>
+<TITLE>GOColorSelector</TITLE>
+go_color_palette_get_current_color
+go_color_palette_get_type
+go_color_palette_make_menu
+go_color_palette_new
+go_color_palette_set_allow_alpha
+go_color_palette_set_color_to_default
+go_color_palette_set_current_color
+go_color_palette_set_group
+go_color_palette_set_title
+go_color_selector_get_color
+go_color_selector_new
+go_color_selector_set_allow_alpha
+go_color_selector_set_color
+</SECTION>
+
+###############################################################################
+
+### Mathematics
+
+<SECTION>
+<FILE>go-math</FILE>
+<TITLE>GOMath</TITLE>
+go_continued_fraction
+go_stern_brocot
+go_add_epsilon
+go_sub_epsilon
+go_fake_floor
+go_fake_ceil
+go_fake_round
+go_fake_trunc
+go_rint
+go_finite
+go_finitel
+go_pow2
+go_pow10
+asinh
+acosh
+atanh
+log1p
+expm1
+isnan
+</SECTION>
+
+<SECTION>
+<FILE>go-fft</FILE>
+<TITLE>GOFft</TITLE>
+go_fourier_fft
+go_fourier_fftl
+</SECTION>
+
+<SECTION>
+<FILE>go-complex</FILE>
+<TITLE>GOComplex</TITLE>
+go_complex
+go_complexl
+go_complex_add
+go_complex_addl
+go_complex_angle
+go_complex_conj
+go_complex_conjl
+go_complex_cos
+go_complex_cosl
+go_complex_div
+go_complex_divl
+go_complex_exp
+go_complex_expl
+go_complex_from_polar
+go_complex_from_polarl
+go_complex_from_string
+go_complex_from_stringl
+go_complex_init
+go_complex_initl
+go_complex_ln
+go_complex_lnl
+go_complex_mod
+go_complex_mul
+go_complex_mull
+go_complex_pow
+go_complex_powl
+go_complex_real
+go_complex_real_p
+go_complex_real_pl
+go_complex_reall
+go_complex_scale_real
+go_complex_scale_reall
+go_complex_sin
+go_complex_sinl
+go_complex_sqrt
+go_complex_sqrtl
+go_complex_sub
+go_complex_subl
+go_complex_tan
+go_complex_tanl
+go_complex_to_polar
+go_complex_to_polarl
+go_complex_to_string
+go_complex_to_stringl
+go_complex_zero_p
+go_complex_zero_pl
+<SUBSECTION Private>
+</SECTION>
+
+<SECTION>
+<FILE>go-range</FILE>
+<TITLE>GORange</TITLE>
+go_range_sum
+go_range_sumsq
+go_range_average
+go_range_min
+go_range_max
+go_range_maxabs
+go_range_devsq
+go_range_suml
+go_range_sumsql
+go_range_averagel
+go_range_minl
+go_range_maxl
+go_range_maxabsl
+go_range_devsql
+go_range_fractile_inter
+go_range_fractile_inter_nonconst
+go_range_fractile_inter_nonconstl
+go_range_fractile_inter_sorted
+go_range_fractile_inter_sortedl
+go_range_fractile_interl
+go_range_increasing
+go_range_increasingl
+go_range_median_inter
+go_range_median_inter_nonconst
+go_range_median_inter_nonconstl
+go_range_median_interl
+</SECTION>
+
+<SECTION>
+<FILE>go-regression</FILE>
+<TITLE>GORegression</TITLE>
+GO_LOGFIT_C_ACCURACY
+GO_LOGFIT_C_STEP_FACTOR
+GO_LOGFIT_C_RANGE_FACTOR
+GORegressionResult
+go_linear_regression
+go_exponential_regression
+go_logarithmic_regression
+go_non_linear_regression
+go_power_regression
+go_logarithmic_fit
+go_matrix_invert
+go_matrix_determinant
+<SUBSECTION>
+go_regression_stat_t
+go_regression_stat_new
+go_regression_stat_destroy
+<SUBSECTION Private>
+go_linear_regressionl
+go_exponential_regressionl
+go_logarithmic_regressionl
+go_logarithmic_fitl
+go_matrix_invertl
+go_non_linear_regressionl
+go_power_regressionl
+go_regression_stat_newl
+go_regression_stat_destroyl
+go_regression_stat_tl
+</SECTION>
+
+<SECTION>
+<FILE>go-bezier</FILE>
+<TITLE>GOBezierSpline</TITLE>
+GOBezierSpline
+go_bezier_spline_init
+go_bezier_spline_destroy
+go_bezier_spline_to_path
+</SECTION>
+
+###############################################################################
+
+### Utilities
+
+<SECTION>
+<FILE>go-geometry</FILE>
+<TITLE>GOGeometry</TITLE>
+<INCLUDE>goffice/graph/go-geometry.h</INCLUDE>
+GO_GEOMETRY_ANGLE_TOLERANCE
+GOGeometrySide
+GOGeometryRotationType
+GOGeometryOBR
+GOGeometryAABR
+go_geometry_cartesian_to_polar
+go_geometry_point_to_segment
+go_geometry_AABR_add
+go_geometry_OBR_to_AABR
+go_geometry_test_OBR_overlap
+go_geometry_get_rotation_type
+go_geometry_calc_label_position
+go_geometry_calc_label_anchor
+</SECTION>
+
+<SECTION>
+<FILE>go-locale</FILE>
+go_setlocale
+go_locale_untranslated_booleans
+go_locale_boolean_name
+go_locale_get_currency
+go_locale_get_arg_sep
+go_locale_get_col_sep
+go_locale_get_row_sep
+go_locale_get_thousand
+go_locale_get_decimal
+go_locale_month_before_day
+go_locale_get_date_format
+go_locale_get_time_format
+</SECTION>
+
+<SECTION>
+<FILE>go-image</FILE>
+GOImageFormat
+GOImageFormatInfo
+go_mime_to_image_format
+go_image_format_to_mime
+go_image_get_format_info
+go_image_get_format_from_name
+go_image_get_formats_with_pixbuf_saver
+GO_TYPE_IMAGE
+GO_IMAGE
+GO_IS_IMAGE
+go_image_get_type
+go_image_get_cairo
+go_image_create_cairo_pattern
+go_image_new_from_pixbuf
+go_image_get_pixbuf
+go_image_new_from_file
+go_image_get_pixels
+go_image_get_rowstride
+go_image_fill
+</SECTION>
+
+<SECTION>
+<FILE>go-persist</FILE>
+<TITLE>GOPersist</TITLE>
+GOPersist
+go_persist_dom_load
+go_persist_sax_save
+go_persist_prep_sax
+GO_PARAM_PERSISTENT
+<SUBSECTION Standard>
+GO_TYPE_PERSIST
+GO_PERSIST
+GO_IS_PERSIST
+GO_PERSIST_CLASS
+GO_IS_PERSIST_CLASS
+GO_PERSIST_GET_CLASS
+<SUBSECTION Private>
+go_persist_get_type
+</SECTION>
+
+<SECTION>
+<FILE>go-units</FILE>
+<TITLE>Units</TITLE>
+GO_PT_PER_IN
+GO_CM_PER_IN
+GO_EMU_PER_IN
+GO_UN_PER_IN
+GO_UN_PER_EMU
+GO_UN_PER_PT
+GO_UN_PER_CM
+GO_IN_TO_UN
+GO_IN_TO_PT
+GO_IN_TO_CM
+GO_IN_TO_EMU
+GO_UN_TO_IN
+GO_UN_TO_PT
+GO_UN_TO_CM
+GO_UN_TO_EMU
+GO_PT_TO_UN
+GO_PT_TO_IN
+GO_PT_TO_CM
+GO_PT_TO_EMU
+GO_CM_TO_UN
+GO_CM_TO_IN
+GO_CM_TO_PT
+GO_CM_TO_EMU
+GO_EMU_TO_UN
+GO_EMU_TO_IN
+GO_EMU_TO_PT
+GO_EMU_TO_CM
+GODistance
+GOPoint
+GORect
+</SECTION>
+
+<SECTION>
+<FILE>go-color</FILE>
+<TITLE>GOColor</TITLE>
+GONamedColor
+GO_COLOR_FROM_GDK
+GO_COLOR_FROM_RGB
+GO_COLOR_FROM_RGBA
+GO_COLOR_WHITE
+GO_COLOR_BLACK
+GO_COLOR_RED
+GO_COLOR_GREEN
+GO_COLOR_BLUE
+GO_COLOR_YELLOW
+GO_COLOR_VIOLET
+GO_COLOR_CYAN
+GO_COLOR_GREY
+GO_COLOR_UINT_R
+GO_COLOR_UINT_G
+GO_COLOR_UINT_B
+GO_COLOR_UINT_A
+GO_COLOR_CHANGE_R
+GO_COLOR_CHANGE_G
+GO_COLOR_CHANGE_B
+GO_COLOR_CHANGE_A
+GO_COLOR_TO_RGB
+GO_COLOR_TO_RGBA
+GO_COLOR_MONO_INTERPOLATE
+GO_COLOR_INTERPOLATE
+GO_COLOR_DOUBLE_R
+GO_COLOR_DOUBLE_G
+GO_COLOR_DOUBLE_B
+GO_COLOR_DOUBLE_A
+GO_COLOR_TO_CAIRO
+go_color_from_str
+go_color_as_str
+go_color_to_pango
+go_color_to_gdk
+</SECTION>
+
+<SECTION>
+<FILE>go-font</FILE>
+<TITLE>GOFont</TITLE>
+GOFont
+go_font_new_by_name
+go_font_new_by_desc
+go_font_new_by_index
+go_font_ref
+go_font_unref
+go_font_as_str
+go_font_cache_register
+go_font_cache_unregister
+go_font_eq
+<SUBSECTION>
+GOFontMetrics
+go_font_metrics_new
+go_font_metrics_free
+<SUBSECTION>
+go_fonts_list_families
+go_fonts_list_sizes
+</SECTION>
+
+<SECTION>
+<FILE>go-gradient</FILE>
+<TITLE>GOGradient</TITLE>
+GOGradientDirection
+go_gradient_dir_from_str
+go_gradient_dir_as_str
+</SECTION>
+
+<SECTION>
+<FILE>go-line</FILE>
+<TITLE>GOLine</TITLE>
+GOLineDashType
+GOLineDashSequence
+go_line_dash_from_str
+go_line_dash_as_str
+go_line_dash_as_label
+go_line_dash_get_length
+go_line_dash_get_sequence
+go_line_dash_sequence_free
+go_line_dash_selector_new
+GOLineInterpolation
+go_line_interpolation_from_str
+go_line_interpolation_as_str
+</SECTION>
+
+<SECTION>
+<FILE>go-marker</FILE>
+<TITLE>GOMarker</TITLE>
+GO_TYPE_MARKER
+GO_MARKER
+GO_IS_MARKER
+GOMarkerShape
+go_marker_new
+go_marker_dup
+go_marker_assign
+go_marker_get_type
+go_marker_shape_from_str
+go_marker_shape_as_str
+go_marker_get_shape
+go_marker_set_shape
+go_marker_get_outline_color
+go_marker_set_outline_color
+go_marker_get_fill_color
+go_marker_set_fill_color
+go_marker_get_size
+go_marker_set_size
+go_marker_get_outline_width
+go_marker_create_cairo_surface
+go_marker_render
+go_marker_selector_new
+go_marker_selector_set_colors
+</SECTION>
+
+<SECTION>
+<FILE>go-pattern</FILE>
+<TITLE>GOPattern</TITLE>
+GOPattern
+GOPatternType
+go_pattern_from_str
+go_pattern_as_str
+go_pattern_is_solid
+go_pattern_set_solid
+go_pattern_get_pattern
+go_pattern_get_svg_path
+go_pattern_create_cairo_pattern
+go_pattern_selector_new
+go_pattern_selector_set_colors
+</SECTION>
+
+<SECTION>
+<FILE>go-reg</FILE>
+<TITLE>GOReg</TITLE>
+GO_REG_OK
+GORegexp
+GORegoff
+GORegmatch
+go_regcomp
+go_regexec
+go_regerror
+go_regfree
+go_regexp_quote1
+go_regexp_quote
+</SECTION>
+
+<SECTION>
+<FILE>go-search-replace</FILE>
+<TITLE>GOSearchReplace</TITLE>
+go_search_replace_error_quark
+go_search_replace_verify
+go_search_match_string
+go_search_replace_string
+<SUBSECTION Standard>
+GO_TYPE_SEARCH_REPLACE
+GO_SEARCH_REPLACE
+GO_IS_SEARCH_REPLACE
+go_search_replace_get_type
+</SECTION>
+
+<SECTION>
+<FILE>go-format</FILE>
+<TITLE>GOFormat</TITLE>
+GOFormatFamily
+GOFormatMagic
+GOFormatNumberError
+GOFormatCurrency
+GOFormatDetails
+GOFormatMeasure
+go_format_measure_zero
+go_format_measure_pango
+go_format_measure_strlen
+go_render_general
+go_render_generall
+go_format_new_from_XL
+go_format_new_markup
+go_format_general
+go_format_empty
+go_format_default_date
+go_format_default_time
+go_format_default_date_time
+go_format_default_percentage
+go_format_default_money
+go_format_default_accounting
+go_format_generate_number_str
+go_format_details_init
+go_format_generate_str
+go_format_str_localize
+go_format_str_delocalize
+go_format_as_XL
+go_format_ref
+go_format_unref
+go_format_is_invalid
+go_format_is_general
+go_format_is_markup
+go_format_is_text
+go_format_is_var_width
+go_format_is_date
+go_format_is_time
+go_format_month_before_day
+go_format_has_hour
+go_format_has_minute
+go_format_get_magic
+go_format_new_magic
+go_format_specialize
+go_format_specializel
+go_format_get_family
+go_format_get_details
+go_format_get_markup
+go_format_is_simple
+go_format_value_gstring
+go_format_value
+go_format_value_gstringl
+go_format_valuel
+go_format_eq
+go_format_inc_precision
+go_format_dec_precision
+go_format_toggle_1000sep
+go_format_odf_style_map
+go_format_output_to_odf
+go_format_locale_currency
+</SECTION>
+
+
+<SECTION>
+<FILE>go-glib-extras</FILE>
+<TITLE>GOGlibExtras</TITLE>
+GOMapFunc
+go_ptr_array_insert
+go_hash_keys
+go_hash_values
+go_slist_map
+go_slist_create
+go_slist_free_custom
+go_string_slist_copy
+go_strsplit_to_slist
+GO_SLIST_FOREACH
+GO_SLIST_PREPEND
+GO_SLIST_APPEND
+GO_SLIST_REMOVE
+GO_SLIST_CONCAT
+GO_SLIST_REVERSE
+GO_SLIST_SORT
+go_list_index_custom
+go_list_free_custom
+GO_LIST_FOREACH
+GO_LIST_PREPEND
+GO_LIST_APPEND
+GO_LIST_REMOVE
+GO_LIST_CONCAT
+GO_LIST_REVERSE
+GO_LIST_SORT
+go_str_compare
+go_ascii_strcase_hash
+go_ascii_strcase_equal
+go_utf8_collate_casefold
+go_utf8_strcapital
+go_strescape
+go_strunescape
+go_string_append_gstring
+go_guess_encoding
+go_get_real_name
+go_destroy_password
+go_mem_chunk_new
+go_mem_chunk_destroy
+go_mem_chunk_alloc
+go_mem_chunk_alloc0
+go_mem_chunk_free
+go_mem_chunk_foreach_leak
+go_object_toggle
+go_object_properties_collect
+go_object_properties_apply
+go_object_properties_free
+</SECTION>
+
+<SECTION>
+<FILE>go-libxml-extras</FILE>
+<TITLE>GOLibxmlExtras</TITLE>
+go_xml_parse_file
+go_xml_node_get_cstr
+go_xml_node_set_cstr
+go_xml_node_get_bool
+go_xml_node_set_bool
+go_xml_node_get_int
+go_xml_node_set_int
+go_xml_node_get_double
+go_xml_node_set_double
+go_xml_node_get_gocolor
+go_xml_node_set_gocolor
+go_xml_node_get_enum
+go_xml_node_set_enum
+go_xml_get_child_by_name
+go_xml_get_child_by_name_no_lang
+go_xml_get_child_by_name_by_lang
+go_xml_out_add_color
+</SECTION>
+
+<SECTION>
+<FILE>go-string</FILE>
+GOStringPhonetic
+GOString
+go_string_get_type
+go_string_new
+go_string_new_len
+go_string_new_nocopy
+go_string_new_nocopy_len
+go_string_new_rich
+go_string_ref
+go_string_unref
+go_string_get_len
+go_string_get_ref_count
+go_string_get_collation
+go_string_get_casefold
+go_string_get_markup
+go_string_get_phonetic
+go_string_hash
+go_string_cmp
+go_string_cmp_ignorecase
+go_string_equal
+go_string_equal_ignorecase
+go_string_equal_rich
+go_string_ERROR
+go_string_foreach_base
+</SECTION>
+
+<SECTION>
+<FILE>go-style</FILE>
+<TITLE>GOStyle</TITLE>
+<INCLUDE>goffice/utils/go-style.h</INCLUDE>
+GOStyle
+GOStyleFlag
+GOStyleFill
+GOImageType
+GOStyleLine
+GOStyleMark
+go_style_new
+go_style_dup
+go_style_assign
+go_style_apply_theme
+go_style_set_marker
+go_style_set_font_desc
+go_style_set_font
+go_style_set_fill_brightness
+go_style_set_text_angle
+go_style_is_different_size
+go_style_is_marker_visible
+go_style_is_line_visible
+go_style_is_outline_visible
+go_style_is_fill_visible
+go_style_force_auto
+go_style_get_editor
+go_style_populate_editor
+go_style_create_cairo_pattern
+go_style_get_marker
+<SUBSECTION Standard>
+GO_TYPE_STYLE
+GO_STYLE
+GO_IS_STYLE
+<SUBSECTION Private>
+go_style_get_type
+</SECTION>
+
+<SECTION>
+<FILE>go-styled-object</FILE>
+<TITLE>GOStyledObject</TITLE>
+<INCLUDE>goffice/utils/go-styled-object.h</INCLUDE>
+GOStyledObject
+go_styled_object_get_style
+go_styled_object_get_auto_style
+go_styled_object_set_style
+go_styled_object_apply_theme
+go_styled_object_style_changed
+go_styled_object_get_document
+<SUBSECTION Standard>
+GO_TYPE_STYLED_OBJECT
+GO_STYLED_OBJECT
+GO_IS_STYLED_OBJECT
+GO_STYLED_OBJECT_CLASS
+GO_IS_STYLED_OBJECT_CLASS
+GO_STYLED_OBJECT_GET_CLASS
+<SUBSECTION Private>
+go_styled_object_get_type
+</SECTION>
+
+<SECTION>
+<FILE>go-doc-control</FILE>
+<TITLE>GODocControl</TITLE>
+GO_TYPE_DOC_CONTROL
+GO_DOC_CONTROL
+GO_IS_DOC_CONTROL
+GODocControlState
+go_doc_control_get_type
+<SUBSECTION Private>
+GO_DOC_CONTROL_CLASS
+GO_IS_DOC_CONTROL_CLASS
+GO_DOC_CONTROL_GET_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>go-doc</FILE>
+<TITLE>GODoc</TITLE>
+GO_TYPE_DOC
+GO_DOC
+GO_IS_DOC
+go_doc_get_type
+go_doc_new_from_input
+go_doc_new_from_uri
+go_doc_save
+go_doc_save_as
+go_doc_sendto
+go_doc_get_meta_data
+go_doc_get_uri
+go_doc_is_dirty
+go_doc_is_pristine
+go_doc_set_dirty
+go_doc_set_meta_data
+go_doc_set_pristine
+go_doc_set_uri
+go_doc_update_meta_data
+go_doc_get_image
+go_doc_add_image
+go_doc_get_images
+go_doc_init_write
+go_doc_write
+go_doc_save_image
+go_doc_init_read
+go_doc_read
+go_doc_end_read
+go_doc_image_fetch
+<SUBSECTION Private>
+GO_DOC_CLASS
+GO_IS_DOC_CLASS
+GO_DOC_GET_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>go-component</FILE>
+<TITLE>GOComponent</TITLE>
+GOComponent
+GO_TYPE_COMPONENT
+GO_COMPONENT
+GO_IS_COMPONENT
+GOC_PARAM_PERSISTENT
+go_component_get_type
+go_component_new_by_mime_type
+go_component_set_default_size
+go_component_needs_window
+go_component_set_window
+go_component_set_data
+go_component_get_data
+go_component_set_size
+go_component_is_resizable
+go_component_is_editable
+go_component_edit
+go_component_emit_changed
+go_component_set_command_context
+go_component_get_command_context
+go_component_render
+</SECTION>
+
+<SECTION>
+<FILE>go-component-factory</FILE>
+<TITLE>GOComponentFactory</TITLE>
+GOMimePriority
+GOComponentType
+go_components_get_mime_types
+go_components_get_priority
+go_components_add_mime_type
+go_components_get_mime_suffix
+go_components_set_mime_suffix
+go_components_support_clipboard
+</SECTION>
+
+<SECTION>
+<FILE>go-cmd-context</FILE>
+<TITLE>GOCmdContext</TITLE>
+GO_TYPE_CMD_CONTEXT
+GO_CMD_CONTEXT
+GO_IS_CMD_CONTEXT
+go_cmd_context_get_type
+go_cmd_context_error
+go_cmd_context_get_password
+go_cmd_context_set_sensitive
+go_cmd_context_error_system
+go_cmd_context_error_import
+go_cmd_context_error_export
+go_cmd_context_error_invalid
+go_cmd_context_error_info
+go_error_system
+go_error_import
+go_error_export
+go_error_invalid
+<SUBSECTION Private>
+error
+GO_CMD_CONTEXT_CLASS
+GO_IS_CMD_CONTEXT_CLASS
+go_cmd_context_progress_set
+go_cmd_context_progress_message_set
+</SECTION>
+
+<SECTION>
+<FILE>go-plugin</FILE>
+GO_TYPE_PLUGIN
+GO_PLUGIN
+GO_IS_PLUGIN
+go_plugin_init
+go_plugin_shutdown
+go_plugin_get_type
+go_plugin_activate
+go_plugin_deactivate
+go_plugin_is_active
+go_plugin_can_deactivate
+go_plugin_load_service
+go_plugin_unload_service
+go_plugin_is_loaded
+go_plugin_use_ref
+go_plugin_use_unref
+go_plugin_get_type_module
+go_plugin_get_dir_name
+go_plugin_get_id
+go_plugin_get_name
+go_plugin_get_description
+go_plugin_get_textdomain
+go_plugin_get_services
+go_plugin_get_dependencies_ids
+go_plugins_init
+go_plugins_shutdown
+go_plugins_add
+go_plugins_register_loader
+go_plugins_unregister_loader
+go_plugins_get_plugin_by_id
+go_plugins_get_available_plugins
+go_plugins_get_active_plugins
+go_plugins_rescan
+go_plugins_get_plugin_dir
+go_plugin_db_mark_plugin_for_deactivation
+go_plugin_db_is_plugin_marked_for_deactivation
+go_plugin_db_activate_plugin_list
+go_plugin_db_deactivate_plugin_list
+</SECTION>
+
+<SECTION>
+<FILE>go-plugin-loader</FILE>
+<TITLE>GOPluginLoader</TITLE>
+GO_TYPE_PLUGIN_LOADER
+GO_PLUGIN_LOADER
+GO_IS_PLUGIN_LOADER
+GO_PLUGIN_LOADER_CLASS
+GO_IS_PLUGIN_LOADER_CLASS
+go_plugin_loader_get_type
+go_plugin_loader_set_attributes
+go_plugin_loader_get_plugin
+go_plugin_loader_set_plugin
+go_plugin_loader_load_base
+go_plugin_loader_unload_base
+go_plugin_loader_load_service
+go_plugin_loader_unload_service
+go_plugin_loader_is_base_loaded
+</SECTION>
+
+<SECTION>
+<FILE>go-plugin-loader-module</FILE>
+<TITLE>GOPluginLoaderModule</TITLE>
+GO_TYPE_PLUGIN_LOADER_MODULE
+GO_PLUGIN_LOADER_MODULE
+GO_IS_PLUGIN_LOADER_MODULE
+GO_PLUGIN_LOADER_MODULE_CLASS
+GO_IS_PLUGIN_LOADER_MODULE_CLASS
+GOPluginLoaderModule
+GOPluginLoaderModuleClass
+go_plugin_loader_module_get_type
+go_plugin_loader_module_register_version
+</SECTION>
+
+<SECTION>
+<FILE>go-plugin-service</FILE>
+<TITLE>GOPluginService</TITLE>
+GO_TYPE_PLUGIN_SERVICE
+GO_PLUGIN_SERVICE
+GO_IS_PLUGIN_SERVICE
+go_plugin_service_get_type
+GO_TYPE_PLUGIN_SERVICE_GENERAL
+GO_PLUGIN_SERVICE_GENERAL
+GO_IS_PLUGIN_SERVICE_GENERAL
+go_plugin_service_general_get_type
+GOPluginServiceGeneral
+GOPluginServiceGeneralCallbacks
+GO_TYPE_PLUGIN_SERVICE_FILE_OPENER
+GO_PLUGIN_SERVICE_FILE_OPENER
+GO_IS_PLUGIN_SERVICE_FILE_OPENER
+go_plugin_service_file_opener_get_type
+GOPluginServiceFileOpener
+GOPluginServiceFileOpenerCallbacks
+GO_TYPE_PLUGIN_SERVICE_FILE_SAVER
+GO_PLUGIN_SERVICE_FILE_SAVER
+GO_IS_PLUGIN_SERVICE_FILE_SAVER
+go_plugin_service_file_saver_get_type
+GOPluginServiceFileSaver
+GOPluginServiceFileSaverCallbacks
+GO_TYPE_PLUGIN_SERVICE_PLUGIN_LOADER
+GO_PLUGIN_SERVICE_PLUGIN_LOADER
+GO_IS_PLUGIN_SERVICE_PLUGIN_LOADER
+go_plugin_service_plugin_loader_get_type
+GOPluginServicePluginLoader
+GOPluginServicePluginLoaderCallbacks
+go_plugin_service_plugin_loader_generate_type
+GO_TYPE_PLUGIN_SERVICE_GOBJECT_LOADER
+GO_PLUGIN_SERVICE_GOBJECT_LOADER
+GO_IS_PLUGIN_SERVICE_GOBJECT_LOADER
+go_plugin_service_gobject_loader_get_type
+GOPluginServiceGObjectLoader
+GO_TYPE_PLUGIN_SERVICE_SIMPLE
+GO_PLUGIN_SERVICE_SIMPLE
+GO_IS_PLUGIN_SERVICE_SIMPLE
+go_plugin_service_simple_get_type
+GOPluginServiceSimple
+go_plugin_service_new
+go_plugin_service_get_id
+go_plugin_service_get_description
+go_plugin_service_get_plugin
+go_plugin_service_get_cbs
+go_plugin_service_activate
+go_plugin_service_deactivate
+go_plugin_service_load
+go_plugin_service_unload
+GOPluginServiceCreate
+go_plugin_services_shutdown
+go_plugin_service_define
+<SUBSECTION Private>
+GO_PLUGIN_SERVICE_CLASS
+GO_PLUGIN_SERVICE_GET_CLASS
+GO_PLUGIN_SERVICE_GOBJECT_LOADER_CLASS
+GO_PLUGIN_SERVICE_GOBJECT_LOADER_GET_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>go-data</FILE>
+<TITLE>GOData</TITLE>
+GOData
+<SUBSECTION>
+go_data_dup
+go_data_eq
+go_data_preferred_fmt
+go_data_date_conv
+go_data_serialize
+go_data_unserialize
+go_data_emit_changed
+go_data_get_values
+go_data_get_bounds
+go_data_is_increasing
+go_data_is_decreasing
+go_data_is_varying_uniformly
+go_data_get_n_dimensions
+go_data_get_n_values
+go_data_get_vector_size
+go_data_get_matrix_size
+go_data_get_scalar_value
+go_data_get_vector_value
+go_data_get_matrix_value
+go_data_get_scalar_string
+go_data_get_vector_string
+go_data_get_matrix_string
+<SUBSECTION Standard>
+GO_TYPE_DATA
+GO_DATA
+GO_IS_DATA
+<SUBSECTION Private>
+go_data_get_type
+GODataFlags
+</SECTION>
+
+<SECTION>
+<FILE>go-data-scalar</FILE>
+<TITLE>GODataScalar</TITLE>
+GODataScalar
+<SUBSECTION>
+go_data_scalar_get_value
+go_data_scalar_get_str
+<SUBSECTION Standard>
+GO_TYPE_DATA_SCALAR
+GO_DATA_SCALAR
+GO_IS_DATA_SCALAR
+<SUBSECTION Private>
+go_data_scalar_get_type
+</SECTION>
+
+<SECTION>
+<FILE>go-data-vector</FILE>
+<TITLE>GODataVector</TITLE>
+GODataVector
+<SUBSECTION>
+go_data_vector_get_len
+go_data_vector_get_values
+go_data_vector_get_value
+go_data_vector_get_str
+go_data_vector_get_minmax
+go_data_vector_increasing
+go_data_vector_decreasing
+go_data_vector_vary_uniformly
+<SUBSECTION Standard>
+GO_TYPE_DATA_VECTOR
+GO_DATA_VECTOR
+GO_IS_DATA_VECTOR
+<SUBSECTION Private>
+go_data_vector_get_type
+</SECTION>
+
+<SECTION>
+<FILE>go-data-matrix</FILE>
+<TITLE>GODataMatrix</TITLE>
+GODataMatrix
+go_data_matrix_get_size
+go_data_matrix_get_values
+go_data_matrix_get_value
+go_data_matrix_get_str
+go_data_matrix_get_minmax
+<SUBSECTION Standard>
+GO_TYPE_DATA_MATRIX
+GO_DATA_MATRIX
+GO_IS_DATA_MATRIX
+<SUBSECTION Private>
+go_data_matrix_get_type
+</SECTION>
+
+
+<SECTION>
+<FILE>go-url</FILE>
+<TITLE>GOUrl</TITLE>
+go_url_check_extension
+go_url_decode
+go_url_encode
+go_url_make_relative
+go_url_resolve_relative
+go_url_show
+go_url_simplify
+</SECTION>
+
+<SECTION>
+<FILE>go-undo</FILE>
+<TITLE>GOUndo</TITLE>
+go_undo_binary_get_type
+go_undo_binary_new
+go_undo_combine
+go_undo_get_type
+go_undo_group_add
+go_undo_group_get_type
+go_undo_group_new
+go_undo_unary_get_type
+go_undo_unary_new
+go_undo_undo
+go_undo_undo_with_data
+</SECTION>
+
+<SECTION>
+<FILE>go-file</FILE>
+<TITLE>GOFile</TITLE>
+go_file_access
+go_file_create
+go_file_get_date_accessed
+go_file_get_date_changed
+go_file_get_date_modified
+go_file_get_group_name
+go_file_get_owner_name
+go_file_open
+go_file_split_urls
+</SECTION>
+
+<SECTION>
+<FILE>go-file-opener</FILE>
+<TITLE>GOFileOpener</TITLE>
+go_file_opener_can_probe
+go_file_opener_for_id
+go_file_opener_get_description
+go_file_opener_get_id
+go_file_opener_get_mimes
+go_file_opener_get_suffixes
+go_file_opener_get_type
+go_file_opener_is_encoding_dependent
+go_file_opener_new
+go_file_opener_new_with_enc
+go_file_opener_open
+go_file_opener_probe
+go_file_opener_register
+go_file_opener_setup
+go_file_opener_unregister
+</SECTION>
+
+<SECTION>
+<FILE>go-file-saver</FILE>
+<TITLE>GOFileSaver</TITLE>
+go_file_saver_for_file_name
+go_file_saver_for_id
+go_file_saver_for_mime_type
+go_file_saver_get_default
+go_file_saver_get_description
+go_file_saver_get_extension
+go_file_saver_get_format_level
+go_file_saver_get_id
+go_file_saver_get_mime_type
+go_file_saver_get_save_scope
+go_file_saver_get_type
+go_file_saver_level_get_type
+go_file_saver_new
+go_file_saver_register
+go_file_saver_register_as_default
+go_file_saver_save
+go_file_saver_scope_get_type
+go_file_saver_set_overwrite_files
+go_file_saver_set_save_scope
+go_file_saver_unregister
+</SECTION>
+
+###############################################################################
+
+### Canvas
+
+<SECTION>
+<FILE>goc-canvas</FILE>
+<TITLE>GocCanvas</TITLE>
+GocDirection
+GocCanvas
+GocCanvasClass
+goc_canvas_get_root
+goc_canvas_get_width
+goc_canvas_get_height
+goc_canvas_scroll_to
+goc_canvas_get_scroll_position
+goc_canvas_set_pixels_per_unit
+goc_canvas_get_pixels_per_unit
+goc_canvas_invalidate
+goc_canvas_get_item_at
+goc_canvas_grab_item
+goc_canvas_ungrab_item
+goc_canvas_get_grabbed_item
+goc_canvas_set_document
+goc_canvas_get_document
+goc_canvas_get_cur_event
+goc_canvas_set_direction
+goc_canvas_get_direction
+goc_canvas_w2c
+goc_canvas_c2w
+<SUBSECTION Standard>
+GOC_CANVAS
+GOC_IS_CANVAS
+GOC_TYPE_CANVAS
+goc_canvas_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-circle</FILE>
+<TITLE>GocCircle</TITLE>
+GocCircle
+GocCircleClass
+<SUBSECTION Standard>
+GOC_CIRCLE
+GOC_IS_CIRCLE
+GOC_TYPE_CIRCLE
+goc_circle_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-ellipse</FILE>
+<TITLE>GocEllipse</TITLE>
+GocEllipse
+GocEllipseClass
+<SUBSECTION Standard>
+GOC_ELLIPSE
+GOC_IS_ELLIPSE
+GOC_TYPE_ELLIPSE
+goc_ellipse_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-graph</FILE>
+<TITLE>GocGraph</TITLE>
+GocGraph
+GocGraphClass
+<SUBSECTION Standard>
+GOC_GRAPH
+GOC_IS_GRAPH
+GOC_TYPE_GRAPH
+goc_graph_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-group</FILE>
+<TITLE>GocGroup</TITLE>
+GocGroup
+goc_group_new
+goc_group_add_child
+goc_group_remove_child
+goc_group_adjust_bounds
+goc_group_adjust_coords
+goc_group_cairo_transform
+<SUBSECTION Standard>
+GOC_GROUP
+GOC_IS_GROUP
+GOC_TYPE_GROUP
+goc_group_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-item</FILE>
+<TITLE>GocItem</TITLE>
+GocItem
+GocItemClass
+goc_item_new
+goc_item_set
+goc_item_distance
+goc_item_draw
+goc_item_draw_region
+goc_item_get_operator
+goc_item_move
+goc_item_invalidate
+goc_item_show
+goc_item_hide
+goc_item_is_visible
+goc_item_get_bounds
+goc_item_update_bounds
+goc_item_bounds_changed
+goc_item_parent_changed
+goc_item_grab
+goc_item_ungrab
+goc_item_raise
+goc_item_lower
+goc_item_lower_to_bottom
+goc_item_raise_to_top
+<SUBSECTION Standard>
+GOC_ITEM
+GOC_IS_ITEM
+GOC_TYPE_ITEM
+goc_item_get_type
+GOC_IS_ITEM_CLASS
+GOC_ITEM_GET_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>goc-line</FILE>
+<TITLE>GocLine</TITLE>
+GocLine
+GocLineClass
+<SUBSECTION Standard>
+GOC_LINE
+GOC_IS_LINE
+GOC_TYPE_LINE
+goc_line_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-pixbuf</FILE>
+<TITLE>GocPixbuf</TITLE>
+GocPixbuf
+GocPixbufClass
+<SUBSECTION Standard>
+GOC_PIXBUF
+GOC_IS_PIXBUF
+GOC_TYPE_PIXBUF
+goc_pixbuf_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-polygon</FILE>
+<TITLE>GocPolygon</TITLE>
+GocPolygonClass
+GocPolygon
+<SUBSECTION Standard>
+GOC_POLYGON
+GOC_IS_POLYGON
+GOC_TYPE_POLYGON
+goc_polygon_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-polyline</FILE>
+<TITLE>GocPolyline</TITLE>
+GocPolylineClass
+GocPolyline
+<SUBSECTION Standard>
+GOC_POLYLINE
+GOC_IS_POLYLINE
+GOC_TYPE_POLYLINE
+goc_polyline_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-rectangle</FILE>
+<TITLE>GocRectangle</TITLE>
+GocRectangle
+GocRectangleClass
+<SUBSECTION Standard>
+GOC_RECTANGLE
+GOC_IS_RECTANGLE
+GOC_TYPE_RECTANGLE
+goc_rectangle_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-styled-item</FILE>
+<TITLE>GocStyledItem</TITLE>
+GocStyledItem
+GocStyledItemClass
+goc_styled_item_set_cairo_line
+<SUBSECTION Standard>
+GOC_STYLED_ITEM
+GOC_IS_STYLED_ITEM
+GOC_TYPE_STYLED_ITEM
+goc_styled_item_get_type
+GOC_STYLED_ITEM_GET_CLASS
+</SECTION>
+
+<SECTION>
+<FILE>goc-text</FILE>
+<TITLE>GocText</TITLE>
+GocText
+GocTextClass
+<SUBSECTION Standard>
+GOC_TEXT
+GOC_IS_TEXT
+GOC_TYPE_TEXT
+goc_text_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-widget</FILE>
+<TITLE>GocWidget</TITLE>
+GocWidget
+GocWidgetClass
+goc_widget_set_bounds
+<SUBSECTION Standard>
+GOC_WIDGET
+GOC_IS_WIDGET
+GOC_TYPE_WIDGET
+goc_widget_get_type
+</SECTION>
+
+<SECTION>
+<FILE>goc-structs</FILE>
+<TITLE>Simple structures</TITLE>
+GocPoint
+GocRect
+</SECTION>
+
+<SECTION>
+<FILE>goc-utils</FILE>
+<TITLE>Other utilities</TITLE>
+GocPoints
+goc_points_get_type
+GOC_TYPE_POINTS
+goc_points_new
+goc_points_ref
+goc_points_unref
+</SECTION>
+
diff --git a/docs/reference/goffice-docs.sgml b/docs/reference/goffice-docs.sgml
index 5b862a7..369b442 100644
--- a/docs/reference/goffice-docs.sgml
+++ b/docs/reference/goffice-docs.sgml
@@ -119,6 +119,7 @@
 			<xi:include href="xml/go-cairo.xml"/>
 			<xi:include href="xml/go-path.xml"/>
 			<xi:include href="xml/go-geometry.xml"/>
+			<xi:include href="xml/go-bezier.xml"/>
 		</chapter>
 		<chapter>
 			<title>Data</title>
@@ -145,7 +146,7 @@
 		</chapter>
 		<chapter>
 			<title>Application</title>
-			<xi:include href="xml/go-app.xml"/>
+<!--		<xi:include href="xml/go-app.xml"/>	-->
 			<xi:include href="xml/go-cmd-context.xml"/>
 			<xi:include href="xml/go-doc-control.xml"/>
 			<xi:include href="xml/go-doc.xml"/>
@@ -153,7 +154,7 @@
 			<xi:include href="xml/go-plugin-loader.xml"/>
 			<xi:include href="xml/go-plugin-loader-module.xml"/>
 			<xi:include href="xml/go-plugin-service.xml"/>
-			<xi:include href="xml/go-service.xml"/>
+<!--		<xi:include href="xml/go-service.xml"/>	-->
 		</chapter>
 		<chapter>
 			<title>Components</title>
diff --git a/goffice/canvas/goc-canvas.c b/goffice/canvas/goc-canvas.c
index 7865f8d..1091d0f 100644
--- a/goffice/canvas/goc-canvas.c
+++ b/goffice/canvas/goc-canvas.c
@@ -25,6 +25,13 @@
 #include <gsf/gsf-impl-utils.h>
 #include <math.h>
 
+/**
+ * SECTION:goc-canvas
+ * @short_description: The canvas widget
+ *
+ * The canvas widget used in gnumeric.
+ **/
+
 #ifndef HAVE_GTK_LAYOUT_GET_BIN_WINDOW
 #       define gtk_layout_get_bin_window(x) (x)->bin_window
 #endif
diff --git a/goffice/canvas/goc-group.c b/goffice/canvas/goc-group.c
index 48a3574..6e0e5e7 100644
--- a/goffice/canvas/goc-group.c
+++ b/goffice/canvas/goc-group.c
@@ -294,6 +294,8 @@ goc_group_add_child (GocGroup *group, GocItem *item)
 	group->children = g_list_append (group->children, item);
 	item->parent = group;
 	item->canvas = group->base.canvas;
+	if (GOC_ITEM (group)->realized)
+		_goc_item_realize (item);
 	goc_item_parent_changed (item);
 	goc_item_bounds_changed (GOC_ITEM (group));
 }
@@ -304,9 +306,13 @@ goc_group_remove_child (GocGroup *group, GocItem *item)
 	g_return_if_fail (GOC_IS_GROUP (group));
 	g_return_if_fail (GOC_IS_ITEM (item));
 	g_return_if_fail (item->parent == group);
+	if (item->canvas && item->canvas->last_item == item)
+		item->canvas->last_item = NULL;
 	group->children = g_list_remove (group->children, item);
 	item->parent = NULL;
 	item->canvas = NULL;
+	if (GOC_ITEM (group)->realized)
+		_goc_item_unrealize (item);
 	goc_item_bounds_changed (GOC_ITEM (group));
 }
 
diff --git a/goffice/canvas/goc-item.c b/goffice/canvas/goc-item.c
index 0d9540d..511aad2 100644
--- a/goffice/canvas/goc-item.c
+++ b/goffice/canvas/goc-item.c
@@ -25,6 +25,31 @@
 #include <gtk/gtk.h>
 #include <gsf/gsf-impl-utils.h>
 
+/**
+ * GocItemClass:
+ * @base: the parent class
+ * @distance:
+ * @draw:
+ * @draw_region:
+ * @move:
+ * @update_bounds:
+ * @parent_changed:
+ * @get_operator:
+ * @button_pressed:
+ * @button2_pressed:
+ * @button_released:
+ * @motion:
+ * @enter_notify:
+ * @leave_notify:
+ * @realize:
+ * @unrealize:
+ * @key_pressed:
+ * @key_released:
+ * @notify_scrolled:
+ *
+ * The base class for all canvas items.
+ **/
+
 static GObjectClass *item_parent_class;
 
 static gboolean
@@ -79,17 +104,13 @@ static void
 goc_item_finalize (GObject *object)
 {
 	GocItem *item = GOC_ITEM (object);
-	if (item->canvas->last_item == item)
-		item->canvas->last_item = NULL;
-	if (GTK_WIDGET_REALIZED (item->canvas)) {
-		if (item->realized) {
-			GocItemClass *klass = GOC_ITEM_GET_CLASS (item);
-			if (klass->unrealize)
-				klass->unrealize (item);
-			item->realized = FALSE;
+	if (item->canvas) {
+		if (item->canvas->last_item == item)
+			item->canvas->last_item = NULL;
+		if (GTK_WIDGET_REALIZED (item->canvas)) {
+			item->cached_bounds = TRUE; /* avoids a call to update_bounds */
+			goc_item_invalidate (item);
 		}
-		item->cached_bounds = TRUE; /* avois a call to update_bounds */
-		goc_item_invalidate (item);
 	}
 	if (item->parent != NULL)
 		goc_group_remove_child (item->parent, item);
@@ -362,3 +383,25 @@ goc_item_raise_to_top (GocItem *item)
 	item->parent->children = g_list_remove (item->parent->children, item);
 	item->parent->children = g_list_append (item->parent->children, item);
 }
+
+void
+_goc_item_realize (GocItem *item)
+{
+	if (!item->realized) {
+		GocItemClass *klass = GOC_ITEM_GET_CLASS (item);
+		if (klass->realize)
+			klass->realize (item);
+		item->realized = TRUE;
+	}
+}
+
+void
+_goc_item_unrealize (GocItem *item)
+{
+	if (item->realized) {
+		GocItemClass *klass = GOC_ITEM_GET_CLASS (item);
+		if (klass->unrealize)
+			klass->unrealize (item);
+		item->realized = FALSE;
+	}
+}
diff --git a/goffice/canvas/goc-item.h b/goffice/canvas/goc-item.h
index b11607f..2980af6 100644
--- a/goffice/canvas/goc-item.h
+++ b/goffice/canvas/goc-item.h
@@ -98,6 +98,8 @@ void		 goc_item_raise		(GocItem *item, int n);
 void		 goc_item_lower		(GocItem *item, int n);
 void		 goc_item_lower_to_bottom (GocItem *item);
 void		 goc_item_raise_to_top	(GocItem *item);
+void		 _goc_item_realize      (GocItem *item);
+void		 _goc_item_unrealize    (GocItem *item);
 
 G_END_DECLS
 
diff --git a/goffice/graph/gog-plot-impl.h b/goffice/graph/gog-plot-impl.h
index 1747330..640ba6f 100644
--- a/goffice/graph/gog-plot-impl.h
+++ b/goffice/graph/gog-plot-impl.h
@@ -91,7 +91,10 @@ typedef struct {
 #define GOG_PLOT_VIEW(o)	(G_TYPE_CHECK_INSTANCE_CAST ((o), GOG_TYPE_PLOT_VIEW, GogPlotView))
 #define GOG_IS_PLOT_VIEW(o)	(G_TYPE_CHECK_INSTANCE_TYPE ((o), GOG_TYPE_PLOT_VIEW))
 
-typedef GogView		GogPlotView;
+typedef struct _GogPlotView GogPlotView;
+struct _GogPlotView {
+	GogView base;
+};
 typedef GogViewClass	GogPlotViewClass;
 GType gog_plot_view_get_type (void);
 
diff --git a/goffice/gtk/go-combo-text.c b/goffice/gtk/go-combo-text.c
index 88e8ccc..b948774 100644
--- a/goffice/gtk/go-combo-text.c
+++ b/goffice/gtk/go-combo-text.c
@@ -10,7 +10,7 @@
 
 #include <gsf/gsf-impl-utils.h>
 
-struct _GoComboText {
+struct _GOComboText {
 	GOComboBox parent;
 
 	GCompareFunc cmp_func;
diff --git a/goffice/gtk/go-combo-text.h b/goffice/gtk/go-combo-text.h
index 1d13e6b..f6cd629 100644
--- a/goffice/gtk/go-combo-text.h
+++ b/goffice/gtk/go-combo-text.h
@@ -10,7 +10,7 @@ G_BEGIN_DECLS
 #define GO_COMBO_TEXT(obj)	(G_TYPE_CHECK_INSTANCE_CAST (obj, GO_TYPE_COMBO_TEXT, GOComboText))
 #define GO_IS_COMBO_TEXT(obj)	(G_TYPE_CHECK_INSTANCE_TYPE (obj, GO_TYPE_COMBO_TEXT))
 
-typedef struct _GoComboText	   GOComboText;
+typedef struct _GOComboText	   GOComboText;
 
 typedef enum {		/* begin the search from : */
 	GO_COMBO_TEXT_FROM_TOP,	/* the top of the list */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]