[gtkmm] Remove unnecessary parts of the docs_override.xml files



commit 40666d1daf752668a17340d856b1f7493d5c9917
Author: Kjell Ahlstedt <kjell ahlstedt bredband net>
Date:   Tue Apr 22 09:51:23 2014 +0200

    Remove unnecessary parts of the docs_override.xml files
    
    * gdk/src/gdk_docs_override.xml:
    * gtk/src/gtk_docs_override.xml: Remove parts with no significant
    difference compared to the docs.xml files.
    Remove leftovers from gtkmm 2.

 gdk/src/gdk_docs_override.xml |  635 +------------------
 gtk/src/gtk_docs_override.xml | 1401 +----------------------------------------
 2 files changed, 12 insertions(+), 2024 deletions(-)
---
diff --git a/gdk/src/gdk_docs_override.xml b/gdk/src/gdk_docs_override.xml
index bec8513..8c7d9b4 100644
--- a/gdk/src/gdk_docs_override.xml
+++ b/gdk/src/gdk_docs_override.xml
@@ -1,81 +1,11 @@
 <root>
 
-<function name="gtk_window_move">
-<description>
-Asks the &amp;lt;link linkend=&quot;gtk-X11-arch&quot;&amp;gt;window manager&amp;lt;/link&amp;gt; to move
- window to the given position.  Window managers are free to ignore
-this; most window managers ignore requests for initial window
-positions (instead using a user-defined placement algorithm) and
-honor requests after the window has already been shown.
-
-Note: the position is the position of the gravity-determined
-reference point for the window. The gravity determines two things:
-first, the location of the reference point in root window
-coordinates; and second, which point on the window is positioned at
-the reference point.
-
-By default the gravity is #GDK_GRAVITY_NORTH_WEST, so the reference
-point is simply the @x, @y supplied to Gtk::Window::move(). The
-top-left corner of the window decorations (aka window frame or
-border) will be placed at @x, @y.  Therefore, to position a window
-at the top left of the screen, you want to use the default gravity
-(which is #GDK_GRAVITY_NORTH_WEST) and move the window to 0,0.
-
-To position a window at the bottom right corner of the screen, you
-would set #GDK_GRAVITY_SOUTH_EAST, which means that the reference
-point is at @x + the window width and @y + the window height, and
-the bottom-right corner of the window border will be placed at that
-reference point. So, to place a window in the bottom right corner
-you would first set gravity to south east, then write:
-&amp;lt;literal&amp;gt;Gtk::Window::move (window, Gdk::screen_width () - window_width,
-Gdk::screen_height () - window_height)&amp;lt;/literal&amp;gt;.
-
-The extended window manager hints specification at
-&amp;lt;ulink url=&quot;http://www.freedesktop.org/standards/wm-spec.html&quot;&amp;gt;
-http://www.freedesktop.org/standards/wm-spec.html&amp;lt;/ulink&amp;gt; has a
-nice table of gravities in the &quot;implementation notes&quot; section.
-
-The Gtk::Window::get_position() documentation may also be relevant.
-
-
-</description>
-<parameters>
-<parameter name="window">
-<parameter_description> a #GtkWindow
-</parameter_description>
-</parameter>
-<parameter name="x">
-<parameter_description> X coordinate to move window to
-</parameter_description>
-</parameter>
-<parameter name="y">
-<parameter_description> Y coordinate to move window to
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-
-
 <function name="gdk_display_manager_list_displays">
-<description>
-List all currently open displays.
-
-Since: 2.2
-</description>
-<parameters>
-<parameter name="display_manager">
-<parameter_description> a #GdkDisplayManager
-</parameter_description>
-</parameter>
-</parameters>
 <return> a list of #GdkDisplay objects.
 </return>
 </function>
 
 
-
 <function name="gdk_screen_get_toplevel_windows">
 <description>
 Obtains a list of all toplevel windows known to GDK on the screen @screen.
@@ -83,18 +13,11 @@ A toplevel window is a child of the root window (see
 gdk_get_default_root_window()).
 Since: 2.2
 </description>
-<parameters>
-<parameter name="screen">
-<parameter_description> The #GdkScreen where the toplevels are located.
-</parameter_description>
-</parameter>
-</parameters>
 <return> list of toplevel windows.
 </return>
 </function>
 
 
-
 <function name="gdk_screen_list_visuals">
 <description>
 Lists the available visuals for the specified @screen.
@@ -103,32 +26,11 @@ For example, a visual might support 24-bit color, or 8-bit color,
 and might expect pixels to be in a certain format.
 Since: 2.2
 </description>
-<parameters>
-<parameter name="screen">
-<parameter_description> the relevant #GdkScreen.
-</parameter_description>
-</parameter>
-</parameters>
 <return> a list of visuals.
 </return>
 </function>
 
 
-<function name="gdk_window_get_toplevels">
-<description>
-Obtains a list of all toplevel windows known to GDK on the default
-screen (see gdk_window_get_toplevels_for_screen()).
-A toplevel window is a child of the root window (see
-gdk_get_default_root_window()).
-
-
-</description>
-<parameters>
-</parameters>
-<return> list of toplevel windows.
-</return>
-</function>
-
 <function name="gdk_window_invalidate_rect">
 <description>
 A convenience wrapper around invalidate_region() which
@@ -154,426 +56,40 @@ invalidate the whole region.
 <return></return>
 </function>
 
-<function name="gdk_window_thaw_updates">
-<description>
-Thaws a window frozen with Gdk::Window::freeze_updates().
-
-</description>
-<parameters>
-<parameter name="window">
-<parameter_description> a #GdkWindow
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-
-<function name="gdk_window_freeze_updates">
-<description>
-Temporarily freezes a window such that it won&apos;t receive expose
-events.  The window will begin receiving expose events again when
-Gdk::Window::thaw_updates() is called. If Gdk::Window::freeze_updates()
-has been called more than once, Gdk::Window::thaw_updates() must be called
-an equal number of times to begin processing exposes.
-
-</description>
-<parameters>
-<parameter name="window">
-<parameter_description> a #GdkWindow
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gdk_display_get_pointer">
-<description>
-Gets the current location of the pointer and the current modifier
-mask for a given display.
-
-Since: 2.2
-</description>
-<parameters>
-<parameter name="display">
-<parameter_description> a #GdkDisplay
-</parameter_description>
-</parameter>
-<parameter name="screen">
-<parameter_description> location to store the screen that the
-cursor is on.
-</parameter_description>
-</parameter>
-<parameter name="x">
-<parameter_description> location to store root window X coordinate of pointer.
-</parameter_description>
-</parameter>
-<parameter name="y">
-<parameter_description> location to store root window Y coordinate of pointer.
-</parameter_description>
-</parameter>
-<parameter name="mask">
-<parameter_description> location to store current modifier mask.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gdk_set_pointer_hooks">
-<description>
-This function allows for hooking into the operation
-of getting the current location of the pointer. This
-is only useful for such low-level tools as an
-event recorder. Applications should never have any
-reason to use this facility.
-
-This function is not multihead safe. For multihead operation,
-see gdk_display_set_pointer_hooks().
-
-
-</description>
-<parameters>
-<parameter name="new_hooks">
-<parameter_description> a table of pointers to functions for getting
-quantities related to the current pointer position.
-</parameter_description>
-</parameter>
-</parameters>
-<return> the previous pointer hook table
-</return>
-</function>
-
-<function name="gdk_window_set_icon">
-<description>
-Sets the icon of @window as a pixmap or window. If using GTK+, investigate
-gtk_window_set_default_icon_list() first, and then gtk_window_set_icon_list()
-and gtk_window_set_icon(). If those don&apos;t meet your needs, look at
-gdk_window_set_icon_list(). Only if all those are too high-level do you
-want to fall back to gdk_window_set_icon().
-
-
-</description>
-<parameters>
-<parameter name="window">
-<parameter_description> a toplevel #GdkWindow
-</parameter_description>
-</parameter>
-<parameter name="icon_window">
-<parameter_description> a #GdkWindow to use for the icon.
-</parameter_description>
-</parameter>
-<parameter name="pixmap">
-<parameter_description> a #GdkPixmap to use as the icon,
-</parameter_description>
-</parameter>
-<parameter name="mask">
-<parameter_description> a 1-bit pixmap (#GdkBitmap) to use as mask for @pixmap.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gdk_set_sm_client_id">
-<description>
-Sets the &amp;lt;literal&amp;gt;SM_CLIENT_ID&amp;lt;/literal&amp;gt; property on the application&apos;s 
leader window so that
-the window manager can save the application&apos;s state using the X11R6 ICCCM
-session management protocol.
-
-See the X Session Management Library documentation for more information on
-session management and the Inter-Client Communication Conventions Manual
-(ICCCM) for information on the &amp;lt;literal&amp;gt;WM_CLIENT_LEADER&amp;lt;/literal&amp;gt; property.
-(Both documents are part of the X Window System distribution.)
-
-</description>
-<parameters>
-<parameter name="sm_client_id">
-<parameter_description> the client id assigned by the session manager when the
-connection was opened.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gdk_display_set_pointer_hooks">
-<description>
-This function allows for hooking into the operation
-of getting the current location of the pointer on a particular
-display. This is only useful for such low-level tools as an
-event recorder. Applications should never have any
-reason to use this facility.
-
-Since: 2.2
-</description>
-<parameters>
-<parameter name="display">
-<parameter_description> a #GdkDisplay
-</parameter_description>
-</parameter>
-<parameter name="new_hooks">
-<parameter_description> a table of pointers to functions for getting
-quantities related to the current pointer position.
-</parameter_description>
-</parameter>
-</parameters>
-<return> the previous pointer hook table
-</return>
-</function>
-
 <function name="gdk_screen_make_display_name">
-<description>
-Determines the name to pass to gdk_display_open() to get
-a #GdkDisplay with this screen as the default screen.
-
-Since: 2.2
-</description>
-<parameters>
-<parameter name="screen">
-<parameter_description> a #GdkScreen
-</parameter_description>
-</parameter>
-</parameters>
 <return> The name.
 </return>
 </function>
 
 <function name="gdk_drag_status">
-<description>
-Selects one of the actions offered by the drag source.
-
-This function is called by the drag destination in response to
-gdk_drag_motion() called by the drag source.
-
-</description>
-<parameters>
-<parameter name="context">
-<parameter_description> a #GdkDragContext.
-</parameter_description>
-</parameter>
-<parameter name="action">
-<parameter_description> the selected action which will be taken when a drop happens,
-or 0 to indicate that a drop will not be accepted.
-</parameter_description>
-</parameter>
-<parameter name="time_">
-<parameter_description> the timestamp for this operation.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-    <mapping class="Context" />
-</function>
-
-<function name="gdk_draw_point">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_line">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_rectangle">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_arc">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_drawable">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_image">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_segments">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_glyphs">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_layout_line">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_layout_line_with_colors">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_layout">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_layout_with_colors">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_draw_pixbuf">
-    <mapping class="Drawable" />
-<description>
-Renders a rectangular portion of a pixbuf to a drawable.  The destination
-drawable must have a colormap. All windows have a colormap, however, pixmaps
-only have colormap by default if they were created with a non-%NULL window 
-argument. Otherwise a colormap must be set on them with 
-gdk_drawable_set_colormap().
-
-On older X servers, rendering pixbufs with an alpha channel involves round 
-trips to the X server, and may be somewhat slow.
-
-The clip mask of @gc is ignored, but clip rectangles and clip regions work
-fine.
-
-If GDK is built with the Sun mediaLib library, the gdk_draw_pixbuf
-function is accelerated using mediaLib, which provides hardware
-acceleration on Intel, AMD, and Sparc chipsets.  If desired, mediaLib
-support can be turned off by setting the GDK_DISABLE_MEDIALIB environment
-variable.
-
-Since: 2.2
-
-</description>
-<parameters>
-<parameter name="drawable">
-<parameter_description> Destination drawable.
-</parameter_description>
-</parameter>
-<parameter name="gc">
-<parameter_description> a #GdkGC, used for clipping.
-</parameter_description>
-</parameter>
-<parameter name="pixbuf">
-<parameter_description> a #GdkPixbuf
-</parameter_description>
-</parameter>
-<parameter name="src_x">
-<parameter_description> Source X coordinate within pixbuf.
-</parameter_description>
-</parameter>
-<parameter name="src_y">
-<parameter_description> Source Y coordinates within pixbuf.
-</parameter_description>
-</parameter>
-<parameter name="dest_x">
-<parameter_description> Destination X coordinate within drawable.
-</parameter_description>
-</parameter>
-<parameter name="dest_y">
-<parameter_description> Destination Y coordinate within drawable.
-</parameter_description>
-</parameter>
-<parameter name="width">
-<parameter_description> Width of region to render, in pixels, or -1 to use pixbuf width.
-</parameter_description>
-</parameter>
-<parameter name="height">
-<parameter_description> Height of region to render, in pixels, or -1 to use pixbuf height.
-</parameter_description>
-</parameter>
-<parameter name="dither">
-<parameter_description> Dithering mode for #GdkRGB.
-</parameter_description>
-</parameter>
-<parameter name="x_dither">
-<parameter_description> X offset for dither.
-</parameter_description>
-</parameter>
-<parameter name="y_dither">
-<parameter_description> Y offset for dither.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gdk_draw_rgb_32_image_dithalign">
-    <mapping class="Drawable" />
-</function>
-
-<function name="gdk_drag_get_protocol_for_display">
-    <mapping class="Display" />
+    <mapping class="DragContext" />
 </function>
 
 <function name="gdk_keymap_get_for_display">
     <mapping class="Display" />
 </function>
 
-<function name="gdk_pixmap_lookup_for_display">
-    <mapping class="Display" />
-</function>
-
-<function name="gdk_display_pointer_ungrab">
-<parameters>
-<parameter name="display">
-<parameter_description> a #GdkDisplay.
-</parameter_description>
-</parameter>
-<parameter name="timestamp">
-<parameter_description> a timestap (e.g. GDK_CURRENT_TIME).
-</parameter_description>
-</parameter>
-</parameters>
-</function>
-
-<function name="gdk_display_keyboard_ungrab">
-<parameters>
-<parameter name="display">
-<parameter_description> a #GdkDisplay.
-</parameter_description>
-</parameter>
-<parameter name="timestamp">
-<parameter_description> a timestap (e.g #GDK_CURRENT_TIME).
-</parameter_description>
-</parameter>
-</parameters>
-</function>
-
-<function name="gdk_pointer_ungrab">
-<parameters>
-<parameter name="timestamp">
-<parameter_description> a timestamp from a #GdkEvent, or %GDK_CURRENT_TIME if no 
-timestamp is available.
-</parameter_description>
-</parameter>
-</parameters>
-</function>
-
-<function name="gdk_keyboard_ungrab">
-<parameters>
-<parameter name="timestamp">
-<parameter_description> a timestamp from a #GdkEvent, or %GDK_CURRENT_TIME if no
-timestamp is available.
-</parameter_description>
-</parameter>
-</parameters>
-</function>
-
 <function name="gdk_drop_finish">
-    <mapping class="Context" />
+    <mapping class="DragContext" />
 </function>
 
 <function name="gdk_drop_reply">
-    <mapping class="Context" />
+    <mapping class="DragContext" />
 </function>
 
 <function name="gdk_drag_find_window_for_screen">
-    <mapping class="Context" />
+    <mapping class="DragContext" />
 </function>
 
 <function name="gdk_drag_get_selection">
-    <mapping class="Context" />
+    <mapping class="DragContext" />
 </function>
 
 <function name="gdk_pixbuf_new_subpixbuf">
 <parameters>
 <parameter name="dummy">
 <parameter_description> dummy parameter, this is a static function but the name
-idicates a class, so this one will be stripped not the actual first parameter
+indicates a class, so this one will be stripped not the actual first parameter
 </parameter_description>
 </parameter>
 <parameter name="src_pixbuf">
@@ -608,14 +124,6 @@ to schedule the next update.
 
 Since: 2.14
 </description>
-<parameters>
-<parameter name="iter">
-<parameter_description> an animation iterator
-</parameter_description>
-</parameter>
-</parameters>
-<return> delay time in milliseconds (thousandths of a second)
-</return>
 </function>
 
 <function name="gdk_pixbuf_animation_iter_get_pixbuf">
@@ -631,14 +139,6 @@ Gdk::Pixbuf::copy() as it may get recycled as you advance the iterator.
 
 Since: 2.14
 </description>
-<parameters>
-<parameter name="iter">
-<parameter_description> an animation iterator
-</parameter_description>
-</parameter>
-</parameters>
-<return> the pixbuf to be displayed
-</return>
 </function>
 
 <function name="gdk_pixbuf_animation_iter_on_currently_loading_frame">
@@ -651,14 +151,6 @@ the updated area.
 
 Since: 2.14
 </description>
-<parameters>
-<parameter name="iter">
-<parameter_description> a #GdkPixbufAnimationIter
-</parameter_description>
-</parameter>
-</parameters>
-<return> %TRUE if the frame we&apos;re on is partially loaded, or the last frame
-</return>
 </function>
 
 <function name="gdk_pixbuf_animation_iter_advance">
@@ -685,19 +177,6 @@ display with the new pixbuf.
 
 Since: 2.14
 </description>
-<parameters>
-<parameter name="iter">
-<parameter_description> a #GdkPixbufAnimationIter
-</parameter_description>
-</parameter>
-<parameter name="current_time">
-<parameter_description> current time
-</parameter_description>
-</parameter>
-</parameters>
-<return> %TRUE if the image may need updating
-
-</return>
 </function>
 
 <function name="gdk_window_set_cursor">
@@ -706,7 +185,6 @@ Sets the mouse pointer for a #GdkWindow.
 To make the cursor invisible, use gdk_cursor_new_from_pixmap() to create
 a cursor with no pixels in it.
 </description>
-
 </function>
 
 <function name="gdk_cairo_create">
@@ -721,66 +199,6 @@ Since: 2.10
 </return>
 </function>
 
-<function name="gdk_drawable_get_image">
-<description>
-A #GdkImage stores client-side image data (pixels). In contrast,
-#GdkPixmap and #GdkWindow are server-side
-objects. gdk_drawable_get_image() obtains the pixels from a
-server-side drawable as a client-side #GdkImage.  The format of a
-#GdkImage depends on the #GdkVisual of the current display, which
-makes manipulating #GdkImage extremely difficult; therefore, in
-most cases you should use the Gdk::Pixbuf::create() method that takes a Gdk::Drawable, 
-instead of this lower-level function. A #GdkPixbuf contains image data in a
-canonicalized RGB format, rather than a display-dependent format.
-Of course, there&apos;s a convenience vs. speed tradeoff here, so you&apos;ll
-want to think about what makes sense for your application.
-
- x, @y, @width, and @height define the region of @drawable to
-obtain as an image.
-
-You would usually copy image data to the client side if you intend
-to examine the values of individual pixels, for example to darken
-an image or add a red tint. It would be prohibitively slow to
-make a round-trip request to the windowing system for each pixel,
-so instead you get all of them at once, modify them, then copy
-them all back at once.
-
-If the X server or other windowing system backend is on the local
-machine, this function may use shared memory to avoid copying
-the image data.
-
-If the source drawable is a #GdkWindow and partially offscreen
-or obscured, then the obscured portions of the returned image
-will contain undefined data.
-
-
-</description>
-<parameters>
-<parameter name="drawable">
-<parameter_description> a #GdkDrawable
-</parameter_description>
-</parameter>
-<parameter name="x">
-<parameter_description> x coordinate on @drawable
-</parameter_description>
-</parameter>
-<parameter name="y">
-<parameter_description> y coordinate on @drawable
-</parameter_description>
-</parameter>
-<parameter name="width">
-<parameter_description> width of region to get
-</parameter_description>
-</parameter>
-<parameter name="height">
-<parameter_description> height or region to get
-</parameter_description>
-</parameter>
-</parameters>
-<return> a #GdkImage containing the contents of @drawable
-</return>
-</function>
-
 <function name="gdk_window_get_update_area">
 <description>
 Transfers ownership of the update area from @window to the caller
@@ -788,48 +206,7 @@ of the function. That is, after calling this function, @window will
 no longer have an invalid/dirty region; the update area is removed
 from @window and handed to you. If a window has no update area,
 get_update_area() returns an invalid Region.
-
-
-</description>
-<parameters>
-<parameter name="window">
-<parameter_description> a #GdkWindow
-</parameter_description>
-</parameter>
-</parameters>
-<return> the update area for @window
-</return>
-</function>
-
-<function name="gdk_window_set_back_pixmap">
-<description>
-Sets the background pixmap of @window. 
-A background pixmap will be tiled, positioning the first tile at the origin of
- window, or if @parent_relative is %TRUE, the tiling will be done based on the
-origin of the parent window (useful to align tiles in a parent with tiles
-in a child).
-
-The windowing system will normally fill a window with its background
-when the window is obscured then exposed, and when you call
-gdk_window_clear().
-
-See also unset_back_pixmap().
 </description>
-<parameters>
-<parameter name="window">
-<parameter_description> a #GdkWindow
-</parameter_description>
-</parameter>
-<parameter name="pixmap">
-<parameter_description> a #GdkPixmap
-</parameter_description>
-</parameter>
-<parameter name="parent_relative">
-<parameter_description> whether the tiling origin is at the origin of @window&apos;s parent
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 </root>
diff --git a/gtk/src/gtk_docs_override.xml b/gtk/src/gtk_docs_override.xml
index 36e8889..e1f074a 100644
--- a/gtk/src/gtk_docs_override.xml
+++ b/gtk/src/gtk_docs_override.xml
@@ -29,48 +29,15 @@ attributes used for text unless a tag overrides them.
 You&apos;d typically pass the default attributes in to
 Gtk::TextIter::get_attributes() in order to get the
 attributes in effect at a given text position.
-
 </description>
-<parameters>
-<parameter name="text_view">
-<parameter_description> a #GtkTextView
- 
-</parameter_description>
-</parameter>
-</parameters>
-<return> a new #Gtk::TextAttributes
-</return>
 </function>
 
 <function name="gtk_label_get_label">
-<description>
-Fetches the text from a label widget including any embedded
-underlines indicating mnemonics and Pango markup. (See
-get_text ()).
-</description>
-<parameters>
-<parameter name="label">
-<parameter_description> a #GtkLabel
-
-</parameter_description>
-</parameter>
-</parameters>
-<return> the text of the label widget..
+<return> the text of the label widget.
 </return>
 </function>
 
 <function name="gtk_label_get_text">
-<description>
-Fetches the text from a label widget, as displayed on the
-screen. This does not include any embedded underlines
-indicating mnemonics or Pango markup. (See get_label())
-</description>
-<parameters>
-<parameter name="label">
-<parameter_description> a #GtkLabel
-</parameter_description>
-</parameter>
-</parameters>
 <return> the text in the label widget.
 </return>
 </function>
@@ -81,56 +48,15 @@ Gets the #PangoLayout used to display the label.
 The layout is useful to e.g. convert text positions to
 pixel positions, in combination with gtk_label_get_layout_offsets().
 </description>
-<parameters>
-<parameter name="label">
-<parameter_description> a #GtkLabel
-
-</parameter_description>
-</parameter>
-</parameters>
-<return> the #PangoLayout for this label
-</return>
 </function>
 
 <function name="gtk_notebook_get_tab_label_text">
-<description>
-Retrieves the text of the tab label for the page containing
- child 
-</description>
-<parameters>
-<parameter name="notebook">
-<parameter_description> a #GtkNotebook
-
-</parameter_description>
-</parameter>
-<parameter name="child">
-<parameter_description> a widget contained in a page of @notebook
-
-</parameter_description>
-</parameter>
-</parameters>
-<return>value: the text of the tab label.
+<return>the text of the tab label.
 </return>
 </function>
 
 <function name="gtk_notebook_get_menu_label_text">
-<description>
-Retrieves the text of the menu label for the page containing
- child 
-</description>
-<parameters>
-<parameter name="notebook">
-<parameter_description> a #GtkNotebook
-
-</parameter_description>
-</parameter>
-<parameter name="child">
-<parameter_description> the child widget of a page of the notebook.
-
-</parameter_description>
-</parameter>
-</parameters>
-<return>value: the text of the tab label.
+<return>the text of the tab label.
 </return>
 </function>
 
@@ -147,29 +73,7 @@ side of the text you&apos;re typing).
 
 Emits the &quot;mark_set&quot; signal as notification of the mark&apos;s initial
 placement.
-
-
 </description>
-<parameters>
-<parameter name="buffer">
-<parameter_description> a #GtkTextBuffer
-</parameter_description>
-</parameter>
-<parameter name="mark_name">
-<parameter_description> name for mark, or %NULL
-</parameter_description>
-</parameter>
-<parameter name="where">
-<parameter_description> location to place mark
-</parameter_description>
-</parameter>
-<parameter name="left_gravity">
-<parameter_description> whether the mark has left gravity
-</parameter_description>
-</parameter>
-</parameters>
-<return> the new #GtkTextMark object
-</return>
 </function>
 
 
@@ -185,19 +89,6 @@ function has been called on a mark; gtk_text_mark_get_deleted ()
 indicates that a mark no longer belongs to a buffer. The &quot;mark_deleted&quot;
 signal will be emitted as notification after the mark is deleted.
 </description>
-<parameters>
-<parameter name="buffer">
-<parameter_description> a #GtkTextBuffer
-
-</parameter_description>
-</parameter>
-<parameter name="mark">
-<parameter_description> a #GtkTextMark in @buffer
-
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 <function name="gtk_text_iter_get_tags">
@@ -205,15 +96,6 @@ signal will be emitted as notification after the mark is deleted.
 Returns a list of tags that apply to @iter, in ascending order of
 priority (highest-priority tags are last).
 </description>
-<parameters>
-<parameter name="iter">
-<parameter_description> a #GtkTextIter
-
-</parameter_description>
-</parameter>
-</parameters>
-<return> list of #GtkTextTag
-</return>
 </function>
 
 <function name="gtk_text_view_get_tabs">
@@ -222,19 +104,11 @@ Gets the default tabs for @text_view. Tags in the buffer may
 override the defaults. The returned array will be empty if
 &quot;standard&quot; (8-space) tabs are used.
 </description>
-<parameters>
-<parameter name="text_view">
-<parameter_description> a #GtkTextView
-
-</parameter_description>
-</parameter>
-</parameters>
 <return> copy of default tab array, or an empty array if &quot;standard&quot; tabs are used.
 </return>
 </function>
 
 
-
 <function name="gtk_dialog_run">
 <description>
 Blocks in a recursive main loop until the @dialog emits the
@@ -265,34 +139,7 @@ default:
   break;
 }
 &amp;lt;/programlisting&amp;gt;&amp;lt;/informalexample&amp;gt;
-
-
-</description>
-<parameters>
-<parameter name="dialog">
-<parameter_description> a #GtkDialog
-</parameter_description>
-</parameter>
-</parameters>
-<return> response ID
-</return>
-</function>
-
-<function name="gtk_accel_label_set_accel_width">
-<description>
-Sets the widget to be monitored by this accelerator label.
 </description>
-<parameters>
-<parameter name="accel_label">
-<parameter_description> Ignored :)
-</parameter_description>
-</parameter>
-<parameter name="widget">
-<parameter_description> The Widget to be monitored.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 <function name="gtk_accel_label_get_accel_width">
@@ -339,22 +186,6 @@ Emits a "value_changed" signal from the Adjustment.  This is typically called by
 <description>
 Updates the Adjustment value to ensure that the range between the parameters @lower and @upper is in the 
current page (i.e. between @value and @value + @page_size).  If this range is larger than the page size, then 
only the start of it will be in the current page.  A "changed" signal will be emitted if the value is changed.
 </description>
-<parameters>
-<parameter name="adjustment">
-<parameter_description> Ignored :)
-</parameter_description>
-</parameter>
-<parameter name="upper">
-<parameter_description> The upper value.
-</parameter_description>
-</parameter>
-<parameter name="lower">
-<parameter_description> The lower value.
-</parameter_description>
-</parameter>
-</parameters>
-<return>
-</return>
 </function>
 
 <function name="gtk_adjustment_set_value">
@@ -430,14 +261,6 @@ Sets the direction and shadow of this Arrow.
 Gets a list of all widgets anchored at this child anchor.
 
 </description>
-<parameters>
-<parameter name="anchor">
-<parameter_description> a #GtkTextChildAnchor
-</parameter_description>
-</parameter>
-</parameters>
-<return> list of widgets anchored at @anchor
-</return>
 </function>
 
 
@@ -498,73 +321,16 @@ i.e. new_order&lt;literal&gt;[newpos] = oldpos&lt;/literal&gt;
 </function>
 
 
-<function name="gtk_tree_view_column_get_cell_renderers">
-<description>
-Returns a list of all the cell renderers in the column,
-in no particular order. 
-
-</description>
-<parameters>
-<parameter name="tree_column">
-<parameter_description> A #GtkTreeViewColumn
-</parameter_description>
-</parameter>
-</parameters>
-<return> A list of #GtkCellRenderers
-</return>
-</function>
-
-
 <function name="gtk_tree_view_get_columns">
 <description>
 Returns a list of all the #GtkTreeViewColumn s currently in @tree_view.
-
 </description>
-<parameters>
-<parameter name="tree_view">
-<parameter_description> A #GtkTreeView
-</parameter_description>
-</parameter>
-</parameters>
-<return> A list of #GtkTreeViewColumn s
-</return>
-</function>
-
-<function name="gtk_tree_view_set_tooltip_row">
-<description>
-Sets the tip area of tooltip to be the area covered by the row at path.
-See also set_tooltip_column() for a simpler alternative.
-
-See also Tooltip::set_tip_area().
-</description>
-<parameters>
-<parameter name="tree_view">
-<parameter_description> a #GtkTreeView
-</parameter_description>
-</parameter>
-<parameter name="tooltip">
-<parameter_description>A Gtk::Tooltip.
-</parameter_description>
-</parameter>
-<parameter name="path">
-<parameter_description>A Gtk::TreePath.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
-
-
 <function name="gtk_window_get_default_icon_list">
 <description>
 Gets the value set by Gtk::Window::set_default_icon_list().
-
 </description>
-<parameters>
-</parameters>
-<return> copy of default icon list
-</return>
 </function>
 
 
@@ -625,10 +391,6 @@ functionality.
 </function>
 
 <function name="gtk_notebook_append_page">
-<description>
-Appends a page to @notebook.
-
-</description>
 <parameters>
 <parameter name="notebook">
 <parameter_description> a #GtkNotebook
@@ -647,11 +409,6 @@ Appends a page to @notebook.
 </function>
 
 <function name="gtk_notebook_append_page_menu">
-<description>
-Appends a page to @notebook, specifying the widget to use as the
-label in the popup menu.
-
-</description>
 <parameters>
 <parameter name="notebook">
 <parameter_description> a #GtkNotebook
@@ -675,10 +432,6 @@ menu.
 </function>
 
 <function name="gtk_notebook_insert_page">
-<description>
-Insert a page into @notebook at the given position
-
-</description>
 <parameters>
 <parameter name="notebook">
 <parameter_description> a #GtkNotebook
@@ -702,11 +455,6 @@ or -1 to append the page after all other pages.
 </function>
 
 <function name="gtk_notebook_insert_page_menu">
-<description>
-Insert a page into @notebook at the given position, specifying
-the widget to use as the label in the popup menu.
-
-</description>
 <parameters>
 <parameter name="notebook">
 <parameter_description> a #GtkNotebook
@@ -735,10 +483,6 @@ or -1 to append the page after all other pages.
 </function>
 
 <function name="gtk_notebook_prepend_page">
-<description>
-Prepends a page to @notebook.
-
-</description>
 <parameters>
 <parameter name="notebook">
 <parameter_description> a #GtkNotebook
@@ -757,11 +501,6 @@ Prepends a page to @notebook.
 </function>
 
 <function name="gtk_notebook_prepend_page_menu">
-<description>
-Prepends a page to @notebook, specifying the widget to use as the
-label in the popup menu.
-
-</description>
 <parameters>
 <parameter name="notebook">
 <parameter_description> a #GtkNotebook
@@ -849,175 +588,6 @@ realized.
 <return></return>
 </function>
 
-<function name="gtk_widget_modify_base">
-<description>
-Sets the base color for a widget in a particular state.
-All other style values are left untouched. The base color
-is the background color used along with the text color
-(see gtk_widget_modify_text()) for widgets such as #GtkEntry
-and #GtkTextView. See also gtk_widget_modify_style().
-
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget.
-</parameter_description>
-</parameter>
-<parameter name="state">
-<parameter_description> the state for which to set the base color.
-</parameter_description>
-</parameter>
-<parameter name="color">
-<parameter_description> the color to assign (does not need to be allocated).
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gtk_widget_modify_bg">
-<description>
-Sets the background color for a widget in a particular state.  All
-other style values are left untouched. See also
-gtk_widget_modify_style().
-
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget.
-</parameter_description>
-</parameter>
-<parameter name="state">
-<parameter_description> the state for which to set the background color.
-</parameter_description>
-</parameter>
-<parameter name="color">
-<parameter_description> the color to assign (does not need to be allocated).
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gtk_widget_modify_fg">
-<description>
-Sets the foreground color for a widget in a particular state.  All
-other style values are left untouched. See also
-gtk_widget_modify_style().
-
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget.
-</parameter_description>
-</parameter>
-<parameter name="state">
-<parameter_description> the state for which to set the foreground color.
-</parameter_description>
-</parameter>
-<parameter name="color">
-<parameter_description> the color to assign (does not need to be allocated).
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gtk_widget_modify_font">
-<description>
-Sets the font to use for a widget.  All other style values are left
-untouched. See also gtk_widget_modify_style().
-
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget
-</parameter_description>
-</parameter>
-<parameter name="font_desc">
-<parameter_description> the font description to use.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gtk_widget_modify_text">
-<description>
-Sets the text color for a widget in a particular state.  All other
-style values are left untouched. The text color is the foreground
-color used along with the base color (see gtk_widget_modify_base())
-for widgets such as #GtkEntry and #GtkTextView. See also
-gtk_widget_modify_style().
-
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget.
-</parameter_description>
-</parameter>
-<parameter name="state">
-<parameter_description> the state for which to set the text color.
-</parameter_description>
-</parameter>
-<parameter name="color">
-<parameter_description> the color to assign (does not need to be allocated).
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gtk_widget_set_style">
-<description>
-Sets the #GtkStyle for a widget (@widget-&amp;gt;style). You probably don&apos;t
-want to use this function; it interacts badly with themes, because
-themes work by replacing the #GtkStyle. Instead, use
-gtk_widget_modify_style().
-
-
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget
-</parameter_description>
-</parameter>
-<parameter name="style">
-<parameter_description> a #GtkStyle.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gtk_widget_shape_combine_mask">
-<description>
-Sets a shape for this widget&apos;s GDK window. This allows for
-transparent windows etc., see gdk_window_shape_combine_mask()
-for more information.
-
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget.
-</parameter_description>
-</parameter>
-<parameter name="shape_mask">
-<parameter_description> shape to be added.
-</parameter_description>
-</parameter>
-<parameter name="offset_x">
-<parameter_description> X position of shape mask with respect to @window.
-</parameter_description>
-</parameter>
-<parameter name="offset_y">
-<parameter_description> Y position of shape mask with respect to @window.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
 <function name="gtk_widget_set_tooltip_markup">
 <description>
 Sets @markup as the contents of the tooltip, which is marked up with
@@ -1046,18 +616,7 @@ Since: 2.12
 </function>
 
 <function name="gtk_widget_get_composite_name">
-<description>
-Obtains the composite name of a widget. 
-
-
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget
-</parameter_description>
-</parameter>
-</parameters>
-<return> the composite name of @widget, or an emoty string if @widget is not
+<return> the composite name of @widget, or an empty string if @widget is not
 a composite child.
 </return>
 </function>
@@ -1085,50 +644,6 @@ widget you&apos;d like to make the default using GTK_WIDGET_SET_FLAGS().
 <return></return>
 </function>
 
-<function name="gtk_widget_get_snapshot">
-<description>
-Create a #GdkPixmap of the contents of the widget and its children.
-
-Works even if the widget is obscured. The depth and visual of the
-resulting pixmap is dependent on the widget being snapshot and likely
-differs from those of a target widget displaying the pixmap.
-The function gdk_pixbuf_get_from_drawable() can be used to convert
-the pixmap to a visual independant representation.
-
-The snapshot area used by this function is the @widget's allocation plus
-any extra space occupied by additional windows belonging to this widget
-(such as the arrows of a spin button).
-Thus, the resulting snapshot pixmap is possibly larger than the allocation.
-
-The resulting pixmap is shrunken to
-match the specified clip_rect. The (x,y) coordinates of @clip_rect are
-interpreted widget relative. If width or height of @clip_rect are 0 or
-negative, the width or height of the resulting pixmap will be shrunken
-by the respective amount.
-For instance a @clip_rect &lt;literal&gt;{ +5, +5, -10, -10 }&lt;/literal&gt; will
-chop off 5 pixels at each side of the snapshot pixmap.
-If non-%NULL, @clip_rect will contain the exact widget-relative snapshot
-coordinates upon return. A @clip_rect of &lt;literal&gt;{ -1, -1, 0, 0 }&lt;/literal&gt;
-can be used to preserve the auto-grown snapshot area and use @clip_rect
-as a pure output parameter.
-
-The returned pixmap can be an empty RefPtr, if the resulting @clip_area was empty.
-
-Since: 2.14
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description>    a #GtkWidget
-</parameter_description>
-</parameter>
-<parameter name="clip_rect">
-<parameter_description> a #GdkRectangle
-</parameter_description>
-</parameter>
-</parameters>
-<return> #GdkPixmap snapshot of the widget
-</return>
-</function>
 
 <function name="gtk_window_set_focus">
 <description>
@@ -1180,81 +695,7 @@ passes the correct target list to this function.
     <mapping class="Widget" />
 </function>
 
-<function name="gdk_drawable_get_image">
-<description>
-A #GdkImage stores client-side image data (pixels). In contrast,
-#GdkPixmap and #GdkWindow are server-side
-objects. gdk_drawable_get_image() obtains the pixels from a
-server-side drawable as a client-side #GdkImage.  The format of a
-#GdkImage depends on the #GdkVisual of the current display, which
-makes manipulating #GdkImage extremely difficult; therefore, in
-most cases you should use the Gdk::Pixbuf constructor that takes a Gdk::Drawable instead of
-this lower-level function. A #GdkPixbuf contains image data in a
-canonicalized RGB format, rather than a display-dependent format.
-Of course, there&apos;s a convenience vs. speed tradeoff here, so you&apos;ll
-want to think about what makes sense for your application.
-
- x, @y, @width, and @height define the region of @drawable to
-obtain as an image.
-
-You would usually copy image data to the client side if you intend
-to examine the values of individual pixels, for example to darken
-an image or add a red tint. It would be prohibitively slow to
-make a round-trip request to the windowing system for each pixel,
-so instead you get all of them at once, modify them, then copy
-them all back at once.
-
-If the X server or other windowing system backend is on the local
-machine, this function may use shared memory to avoid copying
-the image data.
-
-If the source drawable is a #GdkWindow and partially offscreen
-or obscured, then the obscured portions of the returned image
-will contain undefined data.
-
-
-</description>
-<parameters>
-<parameter name="drawable">
-<parameter_description> a #GdkDrawable
-</parameter_description>
-</parameter>
-<parameter name="x">
-<parameter_description> x coordinate on @drawable
-</parameter_description>
-</parameter>
-<parameter name="y">
-<parameter_description> y coordinate on @drawable
-</parameter_description>
-</parameter>
-<parameter name="width">
-<parameter_description> width of region to get
-</parameter_description>
-</parameter>
-<parameter name="height">
-<parameter_description> height or region to get
-</parameter_description>
-</parameter>
-</parameters>
-<return> a #GdkImage containing the contents of @drawable
-</return>
-</function>
-
 <function name="gtk_clipboard_wait_for_text">
-<description>
-Requests the contents of the clipboard as text and converts
-the result to UTF-8 if necessary. This function waits for
-the data to be received using the main loop, so events,
-timeouts, etc, may be dispatched during the wait.
-
-
-</description>
-<parameters>
-<parameter name="clipboard">
-<parameter_description> a #GtkClipboard
-</parameter_description>
-</parameter>
-</parameters>
 <return> A UTF-8 string, which is empty if retrieving
 the selection data failed. (This could happen
 for various reasons, in particular if the
@@ -1264,12 +705,6 @@ clipboard could not be converted into text form.)
 </function>
 
 <function name="gtk_tree_path_to_string">
-<description>
-Generates a string representation of the path.  This string is a &apos;:&apos;
-separated list of numbers.  For example, &quot;4:10:0:3&quot; would be an acceptable return value for this 
string.
-
-
-</description>
 <parameters>
 <parameter name="path">
 <parameter_description> A #GtkTreePath
@@ -1281,13 +716,6 @@ separated list of numbers.  For example, &quot;4:10:0:3&quot; would be an accept
 </function>
 
 <function name="gtk_tree_model_get_string_from_iter">
-<description>
-Generates a string representation of the iter. This string is a &apos;:&apos;
-separated list of numbers. For example, &quot;4:10:0:3&quot; would be an
-acceptable return value for this string.
-
-Since: 2.2
-</description>
 <parameters>
 <parameter name="tree_model">
 <parameter_description> A #GtkTreeModel.
@@ -1302,86 +730,6 @@ Since: 2.2
 </return>
 </function>
 
-<function name="gtk_paint_arrow">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_box">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_box_gap">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_check">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_diamond">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_expander">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_extension">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_flat_box">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_focus">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_handle">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_hline">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_layout">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_option">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_polygon">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_resize_grip">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_shadow">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_shadow_gap">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_slider">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_tab">
-    <mapping class="Style" />
-</function>
-
-<function name="gtk_paint_vline">
-    <mapping class="Style" />
-</function>
-
 <function name="gtk_window_set_icon_from_file">
 <description>
 Sets the icon for the window.
@@ -1427,23 +775,6 @@ with a pixbuf created by loading the image from @filename.
 </parameters>
 </function>
 
-<function name="gtk_widget_style_get_property">
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget
-</parameter_description>
-</parameter>
-<parameter name="the_property_name">
-<parameter_description> the name of a style property
-</parameter_description>
-</parameter>
-<parameter name="value">
-<parameter_description> location to return the property value 
-</parameter_description>
-</parameter>
-</parameters>
-</function>
-
 <function name="gtk_drag_dest_get_target_list">
     <mapping class="Widget" />
 </function>
@@ -1472,110 +803,12 @@ with a pixbuf created by loading the image from @filename.
     <mapping class="Widget" />
 </function>
 
-<function name="gtk_ui_manager_add_ui_from_file">
-<parameters>
-<parameter name="self">
-<parameter_description> a #GtkUIManager object
-</parameter_description>
-</parameter>
-<parameter name="filename">
-<parameter_description> the name of the file to parse 
-</parameter_description>
-</parameter>
-</parameters>
-</function>
-
-<function name="gtk_icon_theme_load_icon">
-<parameters>
-<parameter name="icon_theme">
-<parameter_description> a #GtkIconTheme
-</parameter_description>
-</parameter>
-<parameter name="icon_name">
-<parameter_description> the name of the icon to lookup
-</parameter_description>
-</parameter>
-<parameter name="size">
-<parameter_description> the desired icon size. The resulting icon may not be exactly this size; see 
gtk_icon_info_load_icon().
-</parameter_description>
-</parameter>
-<parameter name="flags">
-<parameter_description> flags modifying the behavior of the icon lookup
-</parameter_description>
-</parameter>
-</parameters>
-</function>
 
 <function name="gtk_icon_theme_get_example_icon_name">
-<description>
-Gets the name of an icon that is representative of the
-current theme (for instance, to use when presenting
-a list of themes to the user.)
-
-Since: 2.4
-</description>
-<parameters>
-<parameter name="icon_theme">
-<parameter_description> a #GtkIconTheme
-</parameter_description>
-</parameter>
-</parameters>
 <return>
 </return>
 </function>
 
-<function name="gtk_file_chooser_add_shortcut_folder">
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-<parameter name="folder">
-<parameter_description> filename of the folder to add
-</parameter_description>
-</parameter>
-</parameters>
-</function>
-
-<function name="gtk_file_chooser_remove_shortcut_folder">
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-<parameter name="folder">
-<parameter_description> filename of the folder to remove
-</parameter_description>
-</parameter>
-</parameters>
-</function>
-
-<function name="gtk_file_chooser_add_shortcut_folder_uri">
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-<parameter name="uri">
-<parameter_description> URI of the folder to add
-</parameter_description>
-</parameter>
-</parameters>
-</function>
-
-<function name="gtk_file_chooser_remove_shortcut_folder_uri">
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-<parameter name="uri">
-<parameter_description> URI of the folder to remove
-</parameter_description>
-</parameter>
-</parameters>
-</function>
-
 <function name="gtk_tree_view_move_column_after">
 <description>
 Moves @column to be after to @base_column.  See also move_column_to_start().
@@ -1692,11 +925,6 @@ gtk_get_current_event_time() instead.
 </function>
 
 <function name="gtk_tree_view_column_cell_get_size">
-<description>
-Obtains the width and height needed to render the column.  This is used
-primarily by the #GtkTreeView.
-
-</description>
 <parameters>
 <parameter name="tree_column">
 <parameter_description> A #GtkTreeViewColumn.
@@ -1728,13 +956,6 @@ primarily by the #GtkTreeView.
 
 
 <function name="gtk_tree_view_column_cell_get_position">
-<description>
-Obtains the horizontal position and size of a cell in a column. If the
-cell is not found in the column, @start_pos and @width are not changed and
-%FALSE is returned.
-
-
-</description>
 <parameters>
 <parameter name="tree_column">
 <parameter_description> a #GtkTreeViewColumn
@@ -1754,8 +975,6 @@ cell is not found in the column, @start_pos and @width are not changed and
 </parameter_description>
 </parameter>
 </parameters>
-<return> %TRUE if @cell belongs to @tree_column.
-</return>
 </function>
 
 <function name="gtk_tree_view_set_vadjustment">
@@ -1849,19 +1068,7 @@ can only happen when the widget is realized.
 Sets the model for a #GtkTreeView.  If the @tree_view already has a model
 set, it will remove it before setting the new model. Use unset_model() to
 unset the old model.
-
 </description>
-<parameters>
-<parameter name="tree_view">
-<parameter_description> A #GtkTreeNode.
-</parameter_description>
-</parameter>
-<parameter name="model">
-<parameter_description> The model.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 <function name="gtk_ui_manager_add_ui">
@@ -1912,31 +1119,6 @@ is added after its siblings.
 <return></return>
 </function>
 
-<function name="gtk_window_get_frame_dimensions">
-<parameters>
-<parameter name="window">
-<parameter_description> a #GtkWindow
-</parameter_description>
-</parameter>
-<parameter name="left">
-<parameter_description> location to store the width of the frame at the left.
-</parameter_description>
-</parameter>
-<parameter name="top">
-<parameter_description> location to store the height of the frame at the top.
-</parameter_description>
-</parameter>
-<parameter name="right">
-<parameter_description> location to store the width of the frame at the returns.
-</parameter_description>
-</parameter>
-<parameter name="bottom">
-<parameter_description> location to store the height of the frame at the bottom.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
 
 <function name="gtk_window_get_default_size">
 <parameters>
@@ -1957,7 +1139,6 @@ is added after its siblings.
 </function>
 
 <function name="gtk_window_get_size">
-
 <parameters>
 <parameter name="window">
 <parameter_description> a #GtkWindow
@@ -1976,12 +1157,6 @@ is added after its siblings.
 </function>
 
 <function name="gtk_icon_info_get_filename">
-<parameters>
-<parameter name="icon_info">
-<parameter_description> a #GtkIconInfo
-</parameter_description>
-</parameter>
-</parameters>
 <return> the filename for the icon, or %NULL
 if gtk_icon_info_get_builtin_pixbuf() should
 be used instead.
@@ -2001,12 +1176,6 @@ The returned image must not be modified.
 </function>
 
 <function name="gtk_file_chooser_get_preview_filename">
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> the filename to preview, or an empty string if no file
 is selected, or if the selected file cannot be represented
 as a local filename.
@@ -2014,47 +1183,23 @@ as a local filename.
 </function>
 
 <function name="gtk_file_chooser_get_preview_uri">
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> the URI for the file to preview, or an empty string if no file is
 selected.
 </return>
 </function>
 
 <function name="gtk_file_chooser_get_current_folder_uri">
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> the URI for the current folder.
 </return>
 </function>
 
 <function name="gtk_file_chooser_get_uri">
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> The currently selected URI, or an empty string
 if no file is selected.
 </return>
 </function>
 
 <function name="gtk_file_chooser_get_filename">
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> The currently selected filename, or an empty string
 if no file is selected, or the selected file can&apos;t
 be represented with a local filename.
@@ -2088,17 +1233,6 @@ unset the old model.
 Since: 2.6
 
 </description>
-<parameters>
-<parameter name="cell_view">
-<parameter_description> a #GtkCellView
-</parameter_description>
-</parameter>
-<parameter name="model">
-<parameter_description> a #GtkTreeModel
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 <function name="gtk_text_iter_forward_search">
@@ -2144,8 +1278,6 @@ character in @str will match embedded pixbufs or child widgets.
 </parameter_description>
 </parameter>
 </parameters>
-<return> whether a match was found
-</return>
 </function>
 
 
@@ -2179,8 +1311,6 @@ Same as gtk_text_iter_forward_search(), but moves backward.
 </parameter_description>
 </parameter>
 </parameters>
-<return> whether a match was found
-</return>
 </function>
 
 <function name="gtk_button_get_image">
@@ -2190,14 +1320,7 @@ Same as gtk_text_iter_forward_search(), but moves backward.
     or specified as a stock item to the constructor.
 
     Since: 2.6
-
   </description>
-  <parameters>
-    <parameter name="button">
-      <parameter_description> a #GtkButton
-      </parameter_description>
-    </parameter>
-  </parameters>
   <return></return>
 </function>
 
@@ -2206,43 +1329,6 @@ Same as gtk_text_iter_forward_search(), but moves backward.
   <description>
     See the Image::Image(const Gtk::StockID&amp; stock_id, IconSize size) constructor for details.
   </description>
-  <parameters>
-    <parameter name="image">
-      <parameter_description> a #GtkImage
-      </parameter_description>
-    </parameter>
-    <parameter name="stock_id">
-      <parameter_description> a stock icon name
-      </parameter_description>
-    </parameter>
-    <parameter name="size">
-      <parameter_description> a stock icon size
-      </parameter_description>
-    </parameter>
-  </parameters>
-  <return></return>
-</function>
-
-
-<function name="gtk_image_set_from_pixmap">
-<description>
-See the Image::Image(const Glib::RefPtr&lt;Gdk::Pixmap&gt;&amp; pixmap, const 
Glib::RefPtr&lt;Gdk::Bitmap&gt;&amp; mask) constructor for details.
-</description>
-<parameters>
-<parameter name="image">
-<parameter_description> a #GtkImage
-</parameter_description>
-</parameter>
-<parameter name="pixmap">
-<parameter_description> a #Gdk::Pixmap
-</parameter_description>
-</parameter>
-<parameter name="mask">
-<parameter_description> a #Gdk::Bitmap
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 <function name="gtk_image_set_from_pixbuf">
@@ -2262,27 +1348,6 @@ See the Image::Image(const Glib::RefPtr&lt;Gdk::Pixbuf&gt;&amp; pixbuf) construc
 <return></return>
 </function>
 
-<function name="gtk_image_set_from_image">
-<description>
-See the Image::Image(const Glib::RefPtr&lt;Gdk::Image&gt;&amp; image, const 
Glib::RefPtr&lt;Gdk::Bitmap&gt;&amp; mask) constructor for details.
-</description>
-<parameters>
-<parameter name="image">
-<parameter_description> a #GtkImage
-</parameter_description>
-</parameter>
-<parameter name="gdk_image">
-<parameter_description> a #Gdk::Image
-</parameter_description>
-</parameter>
-<parameter name="mask">
-<parameter_description> a #Gdk::Bitmap
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
 <function name="gtk_image_set_from_file">
 <description>
 See the Image::Image(const std::string&amp; file) constructor for details.
@@ -2313,21 +1378,6 @@ will be updated appropriately.
 
 Since: 2.6
 </description>
-<parameters>
-<parameter name="image">
-<parameter_description> a #GtkImage
-</parameter_description>
-</parameter>
-<parameter name="icon_name">
-<parameter_description> an icon name
-</parameter_description>
-</parameter>
-<parameter name="size">
-<parameter_description> a stock icon size
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 <function name="gtk_icon_factory_add_default">
@@ -2339,13 +1389,6 @@ Since: 2.6
     application that comes with icons. The default icon factories
     can be overridden by themes.
   </description>
-  <parameters>
-    <parameter name="factory">
-      <parameter_description> a #GtkIconFactory
-      </parameter_description>
-    </parameter>
-  </parameters>
-  <return></return>
 </function>
 
 <function name="gtk_tool_button_set_stock_id">
@@ -2355,19 +1398,7 @@ Since: 2.6
     overridden by &quot;label&quot; and &quot;icon_widget&quot; properties.
 
     Since: 2.4
-
   </description>
-  <parameters>
-    <parameter name="button">
-      <parameter_description> a #GtkToolButton
-      </parameter_description>
-    </parameter>
-    <parameter name="stock_id">
-      <parameter_description> a name of a stock item, or %NULL
-      </parameter_description>
-    </parameter>
-  </parameters>
-  <return></return>
 </function>
 
 <function name="gtk_image_get_icon_name">
@@ -2400,31 +1431,12 @@ Since: 2.6
 <description>
 Retrieves the text displayed superimposed on the progress bar,
 if any.
-
-
 </description>
-<parameters>
-<parameter name="pbar">
-<parameter_description> a #GtkProgressBar
-</parameter_description>
-</parameter>
-</parameters>
 <return> text.
 </return>
 </function>
 
 <function name="gtk_color_button_get_title">
-<description>
-Gets the title of the color selection dialog.
-
-Since: 2.4
-</description>
-<parameters>
-<parameter name="color_button">
-<parameter_description> a #GtkColorButton
-</parameter_description>
-</parameter>
-</parameters>
 <return>The title
 </return>
 </function>
@@ -2436,12 +1448,6 @@ See gtk_file_chooser_set_current_folder().
 
 Since: 2.4
 </description>
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> the full path of the current folder, possibly empty if the current
 path cannot be represented as a local filename.  This function may also return
 and empty string if the file chooser was unable to load the last folder that was
@@ -2451,55 +1457,17 @@ gtk_file_chooser_set_current_folder() on a nonexistent folder.
 </function>
 
 <function name="gtk_file_chooser_list_shortcut_folders">
-<description>
-Queries the list of shortcut folders in the file chooser, as set by
-gtk_file_chooser_add_shortcut_folder().
-
-Since: 2.4
-</description>
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> A list of folder filenames, if there are any shortcut
-folders..
-
-
+folders.
 </return>
 </function>
 
 <function name="gtk_file_chooser_list_shortcut_folder_uris">
-<description>
-Queries the list of shortcut folders in the file chooser, as set by
-gtk_file_chooser_add_shortcut_folder_uri().
-
-Since: 2.4
-</description>
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> A list of folder URIs
 </return>
 </function>
 
 <function name="gtk_file_chooser_list_filters">
-<description>
-Lists the current set of user-selectable filters; see
-gtk_file_chooser_add_filter(), gtk_file_chooser_remove_filter().
-
-Since: 2.4
-</description>
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> a list containing the current set of
 user selectable filters.
 </return>
@@ -2507,18 +1475,6 @@ user selectable filters.
 
 
 <function name="gtk_file_chooser_get_uris">
-<description>
-Lists all the selected files and subfolders in the current folder of
- chooser  The returned names are full absolute URIs.
-
-Since: 2.4
-</description>
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> a list containing the URIs of all selected
 files and subfolders in the current folder.
 </return>
@@ -2526,20 +1482,6 @@ files and subfolders in the current folder.
 
 
 <function name="gtk_file_chooser_get_filenames">
-<description>
-Lists all the selected files and subfolders in the current folder of
- chooser  The returned names are full absolute paths. If files in the current
-folder cannot be represented as local filenames they will be ignored. (See
-gtk_file_chooser_get_uris())
-
-Since: 2.4
-</description>
-<parameters>
-<parameter name="chooser">
-<parameter_description> a #GtkFileChooser
-</parameter_description>
-</parameter>
-</parameters>
 <return> a list containing the filenames of all selected
 files and subfolders in the current folder.
 </return>
@@ -2569,61 +1511,6 @@ icons in the theme.
 </return>
 </function>
 
-<function name="gtk_widget_render_icon">
-<description>
-A convenience function that uses the theme engine and RC file
-settings for the widget to look up @stock_id and render it to
-a pixbuf. @stock_id should be a stock icon ID such as
-#GTK_STOCK_OPEN or #GTK_STOCK_OK. @size should be a size
-such as #GTK_ICON_SIZE_MENU. @detail should be a string that
-identifies the widget or code doing the rendering, so that
-theme engines can special-case rendering for that widget or code.
-
-The pixels in the returned #GdkPixbuf are shared with the rest of
-the application and should not be modified. The pixbuf should be freed
-after use with g_object_unref().
-
-
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget
-</parameter_description>
-</parameter>
-<parameter name="stock_id">
-<parameter_description> a stock ID
-</parameter_description>
-</parameter>
-<parameter name="size">
-<parameter_description> a stock size. A size of (GtkIconSize)-1 means render at 
-the size of the source and don&apos;t scale (if there are multiple 
-source sizes, GTK+ picks one of the available sizes).
-</parameter_description>
-</parameter>
-<parameter name="detail">
-<parameter_description> render detail to pass to theme engine
-</parameter_description>
-</parameter>
-</parameters>
-<return> a new pixbuf if the stock ID was known.
-</return>
-</function>
-
-<function name="gtk_table_get_homogeneous">
-<description>
-Returns whether the table cells are all constrained to the same
-width and height. (See set_homogenous())
-</description>
-<parameters>
-<parameter name="table">
-<parameter_description> a #GtkTable
-</parameter_description>
-</parameter>
-</parameters>
-<return> %TRUE if the cells are all constrained to the same size
-</return>
-</function>
-
 
 <!-- I don't know what this GTK+ documentation means by "update its internal state". murrayc. -->
 <function name="gtk_widget_add_mnemonic_label">
@@ -2635,19 +1522,7 @@ widget is destroyed, so the caller must make sure to update
 its internal state at this point as well.
 
 Since: 2.4
-
 </description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget
-</parameter_description>
-</parameter>
-<parameter name="label">
-<parameter_description> a #GtkWidget that acts as a mnemonic label for @widget.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 
@@ -2658,26 +1533,9 @@ If @widget is managed with Gtk::manage(), and you don&apos;t want to use @widget
 again then you should delete @widget, because there will no longer be any parent 
 container to delete it automatically.
 </description>
-<parameters>
-<parameter name="container">
-<parameter_description> a #GtkContainer
-</parameter_description>
-</parameter>
-<parameter name="widget">
-<parameter_description> a current child of @container
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 <function name="gtk_page_setup_to_key_file">
-<description>
-This function adds the page setup from @setup to @key_file.
-
-Since: 2.12
-
-</description>
 <parameters>
 <parameter name="setup">
 <parameter_description> a #GtkPageSetup
@@ -2696,12 +1554,6 @@ Since: 2.12
 </function>
 
 <function name="gtk_print_settings_to_key_file">
-<description>
-This function adds the print settings from @settings to @key_file.
-
-Since: 2.12
-
-</description>
 <parameters>
 <parameter name="settings">
 <parameter_description> a #GtkPrintSettings
@@ -2721,33 +1573,11 @@ Since: 2.12
 
 
 <function name="gtk_about_dialog_get_program_name">
-<description>
-Return value: The program name.
-
-Since: 2.12
-</description>
-<parameters>
-<parameter name="about">
-<parameter_description> a #GtkAboutDialog
-</parameter_description>
-</parameter>
-</parameters>
 <return> The program name.
 </return>
 </function>
 
 <function name="gtk_about_dialog_get_website_label">
-<description>
-Return value: The label used for the website link.
-
-Since: 2.6
-</description>
-<parameters>
-<parameter name="about">
-<parameter_description> a #GtkAboutDialog
-</parameter_description>
-</parameter>
-</parameters>
 <return> The label used for the website link. 
 </return>
 </function>
@@ -2760,14 +1590,6 @@ the completion or an empty string if there&apos;s no completion ongoing.
 
 Since: 2.12
 </description>
-<parameters>
-<parameter name="completion">
-<parameter_description> a #GtkEntryCompletion
-</parameter_description>
-</parameter>
-</parameters>
-<return> the prefix for the current completion
-</return>
 </function>
 
 
@@ -2778,19 +1600,7 @@ a model set, it will remove it before setting the new model.
 Use unset_model() to unset the old model.
 
 Since: 2.4
-
 </description>
-<parameters>
-<parameter name="completion">
-<parameter_description> A #GtkEntryCompletion.
-</parameter_description>
-</parameter>
-<parameter name="model">
-<parameter_description> The #GtkTreeModel.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 
@@ -2840,12 +1650,6 @@ hierarchy of icon themes.
 
 Since: 2.12
 </description>
-<parameters>
-<parameter name="icon_theme">
-<parameter_description> a #GtkIconTheme
-</parameter_description>
-</parameter>
-</parameters>
 <return> a list holding the names of all the
 contexts in the theme.
 </return>
@@ -2860,19 +1664,7 @@ it before setting the new model. Use unset_model() to
 unset the old model.
 
 Since: 2.6
-
 </description>
-<parameters>
-<parameter name="icon_view">
-<parameter_description> A #GtkIconView.
-</parameter_description>
-</parameter>
-<parameter name="model">
-<parameter_description> The model.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 
@@ -2912,26 +1704,9 @@ Sets the tip area of @tooltip to be the area covered by the item at @path.
 See also Tooltip::set_tip_area().
 
 Since: 2.12
-
 </description>
-<parameters>
-<parameter name="icon_view">
-<parameter_description> a #GtkIconView
-</parameter_description>
-</parameter>
-<parameter name="tooltip">
-<parameter_description> a #GtkTooltip
-</parameter_description>
-</parameter>
-<parameter name="path">
-<parameter_description> a #GtkTreePath
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
-
 <function name="gtk_combo_box_set_model">
 <description>
 Sets the model used by @combo_box to be @model. Will unset a previously set
@@ -2942,22 +1717,9 @@ call gtk_cell_layout_clear() yourself if you need to set up different
 cell renderers for the new model.
 
 Since: 2.4
-
 </description>
-<parameters>
-<parameter name="combo_box">
-<parameter_description> A #GtkComboBox
-</parameter_description>
-</parameter>
-<parameter name="model">
-<parameter_description> A #GtkTreeModel
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
-
 <function name="gtk_page_setup_to_file">
 <description>
 This function saves the information from @setup to @file_name.
@@ -2965,18 +1727,6 @@ This function saves the information from @setup to @file_name.
 
 Since: 2.12
 </description>
-<parameters>
-<parameter name="setup">
-<parameter_description> a #GtkPageSetup
-</parameter_description>
-</parameter>
-<parameter name="file_name">
-<parameter_description> the file to save to
-</parameter_description>
-</parameter>
-</parameters>
-<return> %TRUE on success
-</return>
 </function>
 
 
@@ -2987,18 +1737,6 @@ This function saves the print settings from @settings to @file_name.
 
 Since: 2.12
 </description>
-<parameters>
-<parameter name="settings">
-<parameter_description> a #GtkPrintSettings
-</parameter_description>
-</parameter>
-<parameter name="file_name">
-<parameter_description> the file to save to
-</parameter_description>
-</parameter>
-</parameters>
-<return> %TRUE on success
-</return>
 </function>
 
 
@@ -3008,15 +1746,7 @@ Requests the printer details. When the details are available,
 the details_acquired signal will be emitted.
 
 Since: 2.12
-
 </description>
-<parameters>
-<parameter name="printer">
-<parameter_description> a #GtkPrinter
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 
@@ -3026,12 +1756,6 @@ Return value: a list of cell renderers.
 
 Since: 2.12
 </description>
-<parameters>
-<parameter name="cell_layout">
-<parameter_description> a #GtkCellLayout
-</parameter_description>
-</parameter>
-</parameters>
 <return> a list of cell renderers.
 </return>
 </function>
@@ -3040,7 +1764,7 @@ Since: 2.12
 <function name="gtk_widget_error_bell">
 <description>
 Notifies the user about an input-related error on this widget. 
-If the Gtk::Settings gtk-error-bell proeprty is true, it calls
+If the Gtk::Settings gtk-error-bell property is true, it calls
 Gdk::Window::beep(), otherwise it does nothing.
 
 Note that the effect of Gdk::Window::beep() can be configured in many
@@ -3048,47 +1772,17 @@ ways, depending on the windowing backend and the desktop environment
 or window manager that is used.
 
 Since: 2.12
-
 </description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
 </function>
 
 
 <function name="gtk_widget_get_tooltip_markup">
-<description>
-Gets the contents of the tooltip for @widget.
-
-Since: 2.12
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget
-</parameter_description>
-</parameter>
-</parameters>
 <return> the tooltip text.
 </return>
 </function>
 
 
 <function name="gtk_widget_get_tooltip_text">
-<description>
-Gets the contents of the tooltip for @widget.
-
-Since: 2.12
-</description>
-<parameters>
-<parameter name="widget">
-<parameter_description> a #GtkWidget
-</parameter_description>
-</parameter>
-</parameters>
 <return> the tooltip text.
 </return>
 </function>
@@ -3103,24 +1797,6 @@ combines these two steps if all you need is the pixbuf.)
 
 Since: 2.4
 </description>
-<parameters>
-<parameter name="icon_theme">
-<parameter_description> a #GtkIconTheme
-</parameter_description>
-</parameter>
-<parameter name="icon_name">
-<parameter_description> the name of the icon to lookup
-</parameter_description>
-</parameter>
-<parameter name="size">
-<parameter_description> desired icon size
-</parameter_description>
-</parameter>
-<parameter name="flags">
-<parameter_description> flags modifying the behavior of the icon lookup
-</parameter_description>
-</parameter>
-</parameters>
 <return> an IconInfo structure containing information
 about the icon. IconInfo::operator bool() will return false if the icon wasn&apos;t found.
 For instance, if (icon_info) { ... }.
@@ -3128,62 +1804,11 @@ For instance, if (icon_info) { ... }.
 </function>
 
 
-<function name="gtk_toolbar_set_icon_size">
-<description>
-This function sets the size of stock icons in the toolbar. You
-can call it both before you add the icons and after they&apos;ve been
-added. The size you set will override user preferences for the default
-icon size.
-
-This should only be used for special-purpose toolbars, normal
-application toolbars should respect the user preferences for the
-size of icons.
-
-Since: 2.12
-</description>
-<parameters>
-<parameter name="toolbar">
-<parameter_description> A #GtkToolbar
-</parameter_description>
-</parameter>
-<parameter name="icon_size">
-<parameter_description> The #GtkIconSize that stock icons in the toolbar shall have.
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-<function name="gtk_toolbar_unset_icon_size">
-<description>
-Unsets toolbar icon size set with gtk_toolbar_set_icon_size(), so that
-user preferences will be used to determine the icon size.
-
-Since: 2.12
-</description>
-<parameters>
-<parameter name="toolbar">
-<parameter_description> a #GtkToolbar
-</parameter_description>
-</parameter>
-</parameters>
-<return></return>
-</function>
-
-
 <function name="gtk_entry_get_text">
 <description>
 Retrieves the contents of the entry widget.
 See also gtk_editable_get_chars().
-
-
 </description>
-<parameters>
-<parameter name="entry">
-<parameter_description> a #GtkEntry
-</parameter_description>
-</parameter>
-</parameters>
 <return>The contents of the entry widget.
 </return>
 </function>
@@ -3195,12 +1820,6 @@ Gets the contents of the selection data as a container of URIs.
 
 Since: 2.6
 </description>
-<parameters>
-<parameter name="selection_data">
-<parameter_description> a #GtkSelectionData
-</parameter_description>
-</parameter>
-</parameters>
 <return>If the selection data contains a list of
 URIs, a container containing the URIs, otherwise an empty container.
 </return>
@@ -3211,17 +1830,9 @@ URIs, a container containing the URIs, otherwise an empty container.
 Gets all objects that have been constructed by the Gtk::Builder.
 
 Since: 3.8
-
 </description>
-<parameters>
-<parameter name="builder">
-<parameter_description> a #GtkBuilder
-</parameter_description>
-</parameter>
-</parameters>
 <return> a vector containing all the objects
 constructed by the Gtk::Builder instance.
-
 </return>
 </function>
 


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