]> Pileus Git - ~andy/gtk/blobdiff - docs/reference/gtk/tmpl/gtkrc.sgml
Add a note about gtkrc-2.0 being parsed by all 2.x versions.
[~andy/gtk] / docs / reference / gtk / tmpl / gtkrc.sgml
index fe52fbe8a2a9049889b60110680c4965a4ac273f..55ff8b7d836c195b807d207606da0b9a1e7940d5 100644 (file)
@@ -16,28 +16,31 @@ at runtime.
 An application can cause GTK+ to parse a specific RC
 file by calling gtk_rc_parse(). In addition to this,
 certain files will be read at the end of gtk_init().
-Unless modified, the files looked for will be <filename>.gtkrc</filename>
-in the users home directory, and 
-<filename>$localstatedir/gtk/gtkrc</filename> 
-(<literal>$localstatedir</literal> defaults to 
-<filename>/usr/local/etc</filename>).
+Unless modified, the files looked for will be 
+<filename>&lt;SYSCONFDIR&gt;/gtk-2.0/gtkrc</filename> 
+and <filename>.gtkrc-2.0</filename> in the users home directory.
+(<filename>&lt;SYSCONFDIR&gt;</filename> defaults to 
+<filename>/usr/local/etc</filename>. It can be changed with the
+<option>--prefix</option> or <option>--sysconfdir</option> options when 
+configuring GTK+.) Note that although the filenames contain the version 
+number 2.0, all 2.x versions of GTK+ look for these files.  
 </para>
 <para>
 The set of these <firstterm>default</firstterm> files
 can be retrieved with gtk_rc_get_default_files()
 and modified with gtk_rc_add_default_file() and
 gtk_rc_set_default_files().
-</para>
-<para>
-For each default file, in addition to the file itself,
-GTK+ will look for a locale-specific file that will
-be parsed in addition to the main file. For instance,
-if <literal>LANG</literal> is set to <literal>ja_JP.ujis</literal>,
-when loading the default file <filename>~/.gtkrc</filename>
-then GTK+ looks for <filename>~/.gtkrc.ja_JP.ujis</filename>,
-<filename>~/.gtkrc.ja_JP</filename>, and
-<filename>~/.gtkrc.ja</filename>, and parses the
-first one it finds.
+Additionally, the <envar>GTK2_RC_FILES</envar> environment variable
+can be set to a #G_SEARCHPATH_SEPARATOR_S-separated list of files
+in order to overwrite the set of default files at runtime.
+</para>
+<para><anchor id="locale-specific-rc"/>
+For each RC file, in addition to the file itself, GTK+ will look for 
+a locale-specific file that will be parsed after the main file. 
+For instance, if <envar>LANG</envar> is set to <literal>ja_JP.ujis</literal>,
+when loading the default file <filename>~/.gtkrc</filename> then GTK+ looks 
+for <filename>~/.gtkrc.ja_JP</filename> and <filename>~/.gtkrc.ja</filename>, 
+and parses the first of those that exists.
 </para>
 </refsect2>
 
@@ -48,9 +51,9 @@ attaches them to particular widgets. The attachment is done
 by the <literal>widget</literal>, <literal>widget_class</literal>,
 and <literal>class</literal> declarations. As an example
 of such a statement:
-<programlisting>
+<informalexample><programlisting>
 widget "mywindow.*.GtkEntry" style "my-entry-class"
-</programlisting>
+</programlisting></informalexample>
 attaches the style <literal>"my-entry-class"</literal>
 to all widgets whose <firstterm>widget class</firstterm>
 matches the <firstterm>pattern</firstterm>
@@ -63,48 +66,42 @@ any character, while <literal>"*"</literal> matches
 zero or more of any character. The three types of
 matching are against the widget path, the
 <firstterm>class path</firstterm> and the class
-heirarchy. Both the widget and the class paths consists of a
+hierarchy. Both the widget and the class paths consists of a
 <literal>"."</literal> separated list of all the
 parents of the widget and the widget itself from
 outermost to innermost. The difference is that in
 the widget path, the name assigned by
-<function>gtk_widget_set_name()</function> is used
+gtk_widget_set_name() is used
 if present, otherwise the class name of the widget, while
 for the widget path, the class name is always used.
 </para>
 <para>
-So, if you have a <classname>GtkEntry</classname> named
+So, if you have a #GtkEntry named
 <literal>"myentry"</literal>, inside of a of a window
 named <literal>"mywindow"</literal>, then the
-widget path is:
-<programlisting>
-"mwindow.GtkHBox.myentry"
-</programlisting>
-while the class path is:
-<programlisting>
-"GtkWindow.GtkHBox.GtkEntry"
-</programlisting>
+widget path is: <literal>"mwindow.GtkHBox.myentry"</literal>
+while the class path is: <literal>"GtkWindow.GtkHBox.GtkEntry"</literal>.
 </para>
 <para>
 Matching against class is a little different. The pattern
 match is done against all class names in the widgets
-class heirarchy (not the layout heirarchy) in sequence, so the
+class hierarchy (not the layout hierarchy) in sequence, so the
 pattern:
-<programlisting>
+<informalexample><programlisting>
 class "GtkButton" style "my-style"
-</programlisting>
-will match not just <classname>GtkButton</classname> widgets,
-but also <classname>GtkToggleButton</classname> and
-<classname>GtkCheckButton</classname> widgets, since
-those classes derive from <classname>GtkButton</classname>.
+</programlisting></informalexample>
+will match not just #GtkButton widgets,
+but also #GtkToggleButton and
+#GtkCheckButton widgets, since
+those classes derive from #GtkButton.
 </para>
 </refsect2>
 
 <refsect2><title>Toplevel declarations</title>
 <para>
 An RC file is a text file which is composed of a sequence
-of declarations. '#' characters delimit comments and
-the portion of a line after a '#' is ignored when parsing
+of declarations. <literal>'#'</literal> characters delimit comments and
+the portion of a line after a <literal>'#'</literal> is ignored when parsing
 an RC file.
 </para>
 
@@ -116,7 +113,7 @@ The possible toplevel declarations are:
     <term><literal>binding <replaceable>name</replaceable>
      { ... }</literal></term>
     <listitem>
-      <para>Declare a binding set</para>
+      <para>Declares a binding set.</para>
     </listitem>
   </varlistentry>
   <varlistentry>
@@ -124,18 +121,25 @@ The possible toplevel declarations are:
           [ style | binding [ : <replaceable>priority</replaceable> ]]
           <replaceable>name</replaceable></literal></term>
     <listitem>
-     <para>Specify a style or binding set for a particular
-     branch of the inheritance heirarchy.</para>
+     <para>Specifies a style or binding set for a particular
+     branch of the inheritance hierarchy.</para>
     </listitem>
   </varlistentry>
   <varlistentry>
     <term><literal>include <replaceable>filename</replaceable></literal></term>
     <listitem>
-      <para>Parse another file at this point</para>
+      <para>Parses another file at this point. If
+        <replaceable>filename</replaceable> is not an absolute filename, 
+        it is searched in the directories of the currently open RC files.
+      </para>
+      <para>GTK+ also tries to load a 
+        <link linkend="locale-specific-rc">locale-specific variant</link> of
+        the included file.
+       </para>
     </listitem>
   </varlistentry>
   <varlistentry>
-    <term><literal>module_path <replaceable>path></replaceable></literal></term>
+    <term><literal>module_path <replaceable>path</replaceable></literal></term>
     <listitem>
       <para>Sets a path (a list of directories separated
       by colons) that will be searched for theme engines referenced in
@@ -143,7 +147,7 @@ The possible toplevel declarations are:
     </listitem>
   </varlistentry>
   <varlistentry>
-    <term><literal>pixmap_path <replaceable>path></replaceable></literal></term>
+    <term><literal>pixmap_path <replaceable>path</replaceable></literal></term>
     <listitem>
       <para>Sets a path (a list of directories separated
       by colons) that will be searched for pixmaps referenced in
@@ -154,7 +158,7 @@ The possible toplevel declarations are:
     <term><literal>style <replaceable>name</replaceable> [ =
     <replaceable>parent</replaceable> ] { ... }</literal></term>
     <listitem>
-      <para>Declare a style</para>
+      <para>Declares a style.</para>
     </listitem>
   </varlistentry>
   <varlistentry>
@@ -162,7 +166,7 @@ The possible toplevel declarations are:
           [ style | binding [ : <replaceable>priority</replaceable> ]]
           <replaceable>name</replaceable></literal></term>
     <listitem>
-     <para>Specify a style or binding set for a particular
+     <para>Specifies a style or binding set for a particular
      group of widgets by matching on the widget pathname.</para>
     </listitem>
   </varlistentry>
@@ -171,7 +175,7 @@ The possible toplevel declarations are:
           [ style | binding [ : <replaceable>priority</replaceable> ]]
           <replaceable>name</replaceable></literal></term>
     <listitem>
-     <para>Specify a style or binding set for a particular
+     <para>Specifies a style or binding set for a particular
      group of widgets by matching on the class pathname.</para>
     </listitem>
   </varlistentry>
@@ -188,7 +192,7 @@ or <literal>class</literal> declaration. All styles
 applying to a particular widget are composited together
 with <literal>widget</literal> declarations overriding
 <literal>widget_class</literal> declarations which, in
-turn, override <literal>widget</literal> declarations.
+turn, override <literal>class</literal> declarations.
 Within each type of declaration, later declarations override
 earlier ones.
 </para>
@@ -203,7 +207,7 @@ elements are:
       <replaceable>color</replaceable></literal></term>
      <listitem>
        <para>
-         Set color used for the background of most widgets.
+         Sets the color used for the background of most widgets.
        </para>
      </listitem>
   </varlistentry>
@@ -212,7 +216,7 @@ elements are:
       <replaceable>color</replaceable></literal></term>
      <listitem>
        <para>
-         Set color used for the foreground of most widgets.
+         Sets the color used for the foreground of most widgets.
        </para>
      </listitem>
   </varlistentry>
@@ -221,9 +225,9 @@ elements are:
       <replaceable>color</replaceable></literal></term>
      <listitem>
        <para>
-         Set color used for the background of widgets displaying
+         Sets the color used for the background of widgets displaying
          editable text. This color is used for the background
-         of, among others, #GtkText, #GtkEntry, #GtkList, and #GtkClist.
+         of, among others, #GtkText, #GtkEntry, #GtkList, and #GtkCList.
        </para>
      </listitem>
   </varlistentry>
@@ -232,19 +236,22 @@ elements are:
       <replaceable>color</replaceable></literal></term>
      <listitem>
        <para>
-         Set color used for foreground of widgets using
+         Sets the color used for foreground of widgets using
          <literal>base</literal> for the background color.
        </para>
      </listitem>
   </varlistentry>
   <varlistentry>
-    <term><literal>bg_text[<replaceable>state</replaceable>] =
-      <replaceable>color</replaceable></literal></term>
+    <term><literal>bg_pixmap[<replaceable>state</replaceable>] =
+      <replaceable>pixmap</replaceable></literal></term>
      <listitem>
        <para>
-         Set a background pixmap to be used in place of
+         Sets a background pixmap to be used in place of
          the <literal>bg</literal> color (or for #GtkText,
-         in place of the <literal>base</literal> color.
+         in place of the <literal>base</literal> color. The special
+         value <literal>"&lt;parent&gt;"</literal> may be used to indicate that the widget should
+         use the same background pixmap as its parent. The special value
+         <literal>"&lt;none&gt;"</literal> may be used to indicate no background pixmap.
        </para>
      </listitem>
   </varlistentry>
@@ -252,7 +259,9 @@ elements are:
     <term><literal>font = <replaceable>font</replaceable></literal></term>
      <listitem>
        <para>
-         Set the font for a widget.
+         Sets the font for a widget. <replaceable>font</replaceable> must be
+         a XLFD font description, e.g. 
+         <literal>"-*-helvetica-medium-r-normal--10-*-*-*-*-*-*-*"</literal>.
        </para>
      </listitem>
   </varlistentry>
@@ -260,11 +269,27 @@ elements are:
     <term><literal>fontset = <replaceable>font</replaceable></literal></term>
      <listitem>
        <para>
-         Set the fontset for a widget. Overrides any
-         <literal>font</literal> declarations.
+         Sets the fontset for a widget. Overrides any
+         <literal>font</literal> declarations. <replaceable>font</replaceable> 
+         must be a comma-separated list of XLFD font descriptions, e.g.
+         <literal>"-JIS-Fixed-Medium-R-Normal--26-180-100-100-C-240,
+                   -JIS-Fixed-Medium-R-Normal--26-180-100-100-C-120,
+                   -GB-Fixed-Medium-R-Normal--26-180-100-100-C-240,
+                   -Adobe-Courier-Bold-R-Normal--25-180-100-100-M-150"</literal>.
        </para>
      </listitem>
   </varlistentry>
+  <varlistentry>
+    <term><literal>font_name = <replaceable>font</replaceable></literal></term>
+     <listitem>
+       <para>
+         Sets the font for a widget. Overrides any
+         <literal>font</literal> or <literal>fontset</literal> declarations. 
+         <replaceable>font</replaceable> must be a Pango font name, e.g.
+         <literal>"Sans Italic 10"</literal>.
+       </para>
+     </listitem>   
+  </varlistentry>
   <varlistentry>
     <term><literal>stock[<replaceable>"stock-id"</replaceable>] = { <replaceable>icon source specifications</replaceable> }</literal></term>
      <listitem>
@@ -273,6 +298,23 @@ elements are:
        </para>
      </listitem>
   </varlistentry>
+  <varlistentry>
+    <term><literal>engine <replaceable>"engine"</replaceable> { <replaceable>engine-specific
+settings</replaceable> }</literal></term>
+     <listitem>
+       <para>
+        Defines the engine to be used when drawing with this style.
+       </para>
+     </listitem>
+  </varlistentry>
+  <varlistentry>
+    <term><literal><replaceable>class</replaceable>::<replaceable>property</replaceable> = <replaceable>value</replaceable></literal></term>
+     <listitem>
+       <para>
+        Sets a <link linkend="style-properties">style property</link> for a widget class.
+       </para>
+     </listitem>
+  </varlistentry>
 </variablelist>
 </para>
 <para>
@@ -284,7 +326,7 @@ state of the widget. The states are:
     <term><literal>NORMAL</literal></term>
     <listitem>
       <para>
-        A color used for a widget in its normal state
+        A color used for a widget in its normal state.
       </para>
     </listitem>
   </varlistentry>
@@ -317,8 +359,8 @@ state of the widget. The states are:
     <listitem>
       <para>
         A color used to highlight data selected by the user.
-        for instance, the selected ListItems in a List widget, and the
-        selection in an Editable widget.
+        for instance, the selected items in a list widget, and the
+        selection in an editable widget.
       </para>
     </listitem>
   </varlistentry>
@@ -327,21 +369,26 @@ state of the widget. The states are:
     <listitem>
       <para>
         A color used for the background of widgets that have
-        been set insensitive with gtk_widget_set_sensitive()
+        been set insensitive with gtk_widget_set_sensitive().
       </para>
     </listitem>
   </varlistentry>
 </variablelist>
 </para>
 
-<para>
-Colors can be specified as a string <literal>"&hash;rrrrggggbbbb"</literal>,
-<literal>"&hash;rrrgggbbb"</literal>, <literal>"&hash;rrggbb"</literal>,
-or <literal>"&hash;rgb"</literal>, where <literal>r</literal>
-<literal>g</literal>, and <literal>b</literal> are
-hex digits, or they can be specified as a triplet of floats
+<para><anchor id="color-format"/>
+Colors can be specified as a string containing a color name (GTK+ knows
+all names from the X color database 
+<filename>/usr/lib/X11/rgb.txt</filename>),  
+in one of the hexadecimal forms <literal>&num;rrrrggggbbbb</literal>,
+<literal>&num;rrrgggbbb</literal>, <literal>&num;rrggbb</literal>,
+or <literal>&num;rgb</literal>, where <literal>r</literal>,
+<literal>g</literal> and <literal>b</literal> are
+hex digits, or they can be specified as a triplet 
 <literal>{ <replaceable>r</replaceable>, <replaceable>g</replaceable>,
-<replaceable>b</replaceable>}</literal>.
+<replaceable>b</replaceable>}</literal>, where <literal>r</literal>,
+<literal>g</literal> and <literal>b</literal> are either integers in 
+the range 0-65635 or floats in the range 0.0-1.0.
 </para>
 
 <para>
@@ -352,33 +399,33 @@ direction, state, and size. The <literal>*</literal> character can be used as a
 wildcard, and if direction/state/size are omitted they default to
 <literal>*</literal>. So for example, the following specifies different icons to
 use for left-to-right and right-to-left languages:
-<programlisting>
+<informalexample><programlisting>
 stock["my-stock-item"] = 
 {
   { "itemltr.png", LTR, *, * },
   { "itemrtl.png", RTL, *, * }
 }
-</programlisting>
+</programlisting></informalexample>
 This could be abbreviated as follows:
-<programlisting>
+<informalexample><programlisting>
 stock["my-stock-item"] = 
 {
   { "itemltr.png", LTR },
   { "itemrtl.png", RTL }
 }
-</programlisting>
+</programlisting></informalexample>
 </para>
 
 <para>
 You can specify custom icons for specific sizes, as follows:
-<programlisting>
+<informalexample><programlisting>
 stock["my-stock-item"] = 
 {
   { "itemmenusize.png", *, *, "gtk-menu" },
   { "itemtoolbarsize.png", *, *, "gtk-large-toolbar" }
   { "itemgeneric.png" } /* implicit *, *, * as a fallback */
 }
-</programlisting>
+</programlisting></informalexample>
 The sizes that come with GTK+ itself are <literal>"gtk-menu"</literal>,
 <literal>"gtk-small-toolbar"</literal>, <literal>"gtk-large-toolbar"</literal>,
 <literal>"gtk-button"</literal>, <literal>"gtk-dialog"</literal>. Applications
@@ -387,15 +434,14 @@ can define other sizes.
 
 <para>
 It's also possible to use custom icons for a given state, for example:
-You can specify custom icons for specific sizes, as follows:
-<programlisting>
+<informalexample><programlisting>
 stock["my-stock-item"] = 
 {
   { "itemprelight.png", *, PRELIGHT },
   { "iteminsensitive.png", *, INSENSITIVE }, 
   { "itemgeneric.png" } /* implicit *, *, * as a fallback */
 }
-</programlisting>
+</programlisting></informalexample>
 </para>
 
 <para>
@@ -416,7 +462,7 @@ taken on particular key presses. The form of a binding
 set declaration is:
 </para>
 
-<programlisting>
+<informalexample><programlisting>
 binding <replaceable>name</replaceable> {
   bind <replaceable>key</replaceable> { 
     <replaceable>signalname</replaceable> (<replaceable>param</replaceable>, ...)
@@ -424,7 +470,7 @@ binding <replaceable>name</replaceable> {
   }
   ...
 }
-</programlisting>
+</programlisting></informalexample>
 
 <para>
 <replaceable>key</replaceable> is a string consisting of a 
@@ -452,7 +498,7 @@ modifiers can be:
 The action that is bound to the key is a sequence
 of signal names (strings) followed by parameters for 
 each signal. The signals must be action signals.
-(See gtk_signal_new()). Each parameter can be
+(See g_signal_new()). Each parameter can be
 a float, integer, string, or unquoted string
 representing an enumeration value. The types of
 the parameters specified must match the types of the 
@@ -469,16 +515,19 @@ and only then by order of specification. (Later
 overrides earlier). The priorities that can
 be specified are (highest to lowest):
 <simplelist>
-<member><literal>HIGHEST</literal></member>
-<member><literal>RC</literal></member>
-<member><literal>APPLICATION</literal></member>
-<member><literal>GTK</literal></member>
-<member><literal>LOWEST</literal></member>
+<member><literal>highest</literal></member>
+<member><literal>rc</literal></member>
+<member><literal>theme</literal></member>
+<member><literal>application</literal></member>
+<member><literal>gtk</literal></member>
+<member><literal>lowest</literal></member>
 </simplelist>
-<literal>RC</literal> is the default for bindings
-read from an RC file, <literal>APPLICATION</literal>
+<literal>rc</literal> is the default for bindings
+read from an RC file, <literal>theme</literal>
+is the default for bindings read from theme RC files,
+<literal>application</literal> 
 should be used for bindings an application sets
-up, and <literal>GTK</literal> is used for bindings
+up, and <literal>gtk</literal> is used for bindings
 that GTK+ creates internally.
 </para>
 </refsect2>
@@ -507,67 +556,17 @@ This can later be composited together with other
 @xthickness: 
 @ythickness: 
 
-<!-- ##### STRUCT GtkRcStyleClass ##### -->
-<para>
-
-</para>
-
-
 <!-- ##### ENUM GtkRcFlags ##### -->
 <para>
 The #GtkRcFlags enumeration is used as a bitmask
 to specify which fields of a #GtkRcStyle have been
 set for each state.
 </para>
-<variablelist>
- <varlistentry><term> %GTK_RC_FG </term>
- <listitem>
-   <para>
-   If present, the foreground color has been set for this state.
-   </para>
- </listitem>
- </varlistentry>
- <varlistentry><term> %GTK_RC_BG </term>
- <listitem>
-   <para>
-   If present, the background color has been set for this state.
-   </para>
- </listitem>
- </varlistentry>
- <varlistentry><term> %GTK_RC_TEXT </term>
- <listitem>
-   <para>
-   If present, the text color has been set for this state.
-   </para>
- </listitem>
- </varlistentry>
- <varlistentry><term> %GTK_RC_BASE </term>
- <listitem>
-   <para>
-   If present, the base color has been set for this state.
-   </para>
- </listitem>
- </varlistentry>
-</variablelist>
-
-@GTK_RC_FG: 
-@GTK_RC_BG: 
-@GTK_RC_TEXT: 
-@GTK_RC_BASE: 
-
-<!-- ##### USER_FUNCTION GtkImageLoader ##### -->
-<para>
-A GtkImageLoader is used to load a filename found in
-a RC file.
-</para>
-
-@window: the window for creating image
-@colormap: the colormap for this image
-@mask: a pointer to the location to store the mask
-@transparent_color: the transparent color for the image
-@filename: filename to load
-@Returns: a #GtkPixmap representing @filename
 
+@GTK_RC_FG: If present, the foreground color has been set for this state.
+@GTK_RC_BG: If present, the background color has been set for this state.
+@GTK_RC_TEXT: If present, the text color has been set for this state.
+@GTK_RC_BASE: If present, the base color has been set for this state.
 
 <!-- ##### ENUM GtkRcTokenType ##### -->
 <para>
@@ -604,6 +603,7 @@ specific portions of a RC file.
 @GTK_RC_TOKEN_LOWEST: 
 @GTK_RC_TOKEN_GTK: 
 @GTK_RC_TOKEN_APPLICATION: 
+@GTK_RC_TOKEN_THEME: 
 @GTK_RC_TOKEN_RC: 
 @GTK_RC_TOKEN_HIGHEST: 
 @GTK_RC_TOKEN_ENGINE: 
@@ -615,30 +615,41 @@ specific portions of a RC file.
 @GTK_RC_TOKEN_RTL: 
 @GTK_RC_TOKEN_LAST: 
 
+<!-- ##### FUNCTION gtk_rc_scanner_new ##### -->
+<para>
+
+</para>
+
+@Returns: 
+
+
 <!-- ##### FUNCTION gtk_rc_get_style ##### -->
 <para>
-Finds all matching RC styles for a given widget,
-composites them together, and then creates a 
-#GtkStyle representing the composite appearance.
-(GTK+ actually keeps a cache of previously 
-created styles, so a new style may not be
-created.)
 </para>
 
-@widget: a #GtkWidget
-@Returns: the resulting style. The caller should
-reference the result, since GTK+ will retain the
-initial reference count itself for the cache
-of created styles.
+@widget: 
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_rc_get_style_by_paths ##### -->
+<para>
+
+</para>
+
+@settings: 
+@widget_path: 
+@class_path: 
+@type: 
+@Returns: 
 
 
 <!-- ##### FUNCTION gtk_rc_add_widget_name_style ##### -->
 <para>
-Add a RcStyle that will be looked up by a match against
+Adds a #GtkRcStyle that will be looked up by a match against
 the widget's pathname. This is equivalent to a:
-<programlisting>
+<literal>
 widget PATTERN style STYLE
-</programlisting>
+</literal>
 statement in a RC file.
 </para>
 
@@ -648,12 +659,11 @@ statement in a RC file.
 
 <!-- ##### FUNCTION gtk_rc_add_widget_class_style ##### -->
 <para>
-Add a RcStyle that will be looked up by a match against
+Adds a #GtkRcStyle that will be looked up by a match against
 the widget's class pathname. This is equivalent to a:
-
-<programlisting>
+<literal>
 widget_class PATTERN style STYLE
-</programlisting>
+</literal>
 statement in a RC file.
 </para>
 
@@ -663,11 +673,11 @@ statement in a RC file.
 
 <!-- ##### FUNCTION gtk_rc_add_class_style ##### -->
 <para>
-Add a RcStyle that will be looked up by a matching against
-the class heirarchy of the widget. This is equivalent to a:
-<programlisting>
+Adds a #GtkRcStyle that will be looked up by a matching against
+the class hierarchy of the widget. This is equivalent to a:
+<literal>
 class PATTERN style STYLE
-</programlisting>
+</literal>
 statement in a RC file.
 </para>
 
@@ -677,15 +687,16 @@ statement in a RC file.
 
 <!-- ##### FUNCTION gtk_rc_parse ##### -->
 <para>
-Parse a given resource file.
+Parses a given resource file.
 </para>
 
-@filename: the filename of a file to parse.
+@filename: the filename of a file to parse. If @filename is not absolute, it
+  is searched in the current directory.
 
 
 <!-- ##### FUNCTION gtk_rc_parse_string ##### -->
 <para>
-Parse resource information directly from a string.
+Parses resource information directly from a string.
 </para>
 
 @rc_string: a string to parse.
@@ -693,52 +704,50 @@ Parse resource information directly from a string.
 
 <!-- ##### FUNCTION gtk_rc_reparse_all ##### -->
 <para>
-If the modification time on any previously read file
-has changed, discard all style information
-and then reread all previously read RC files.
 </para>
 
-@Returns: %TRUE if the files were reread.
+@Returns: 
+
+
+<!-- ##### FUNCTION gtk_rc_reparse_all_for_settings ##### -->
+<para>
+
+</para>
+
+@settings: 
+@force_load: 
+@Returns: 
 
 
 <!-- ##### FUNCTION gtk_rc_add_default_file ##### -->
 <para>
-Adds a file to the list of files to be parsed at the
-end of gtk_init().
 </para>
 
-@filename: the pathname to the file.
+@filename: 
 
 
 <!-- ##### FUNCTION gtk_rc_get_default_files ##### -->
 <para>
-Retrieves the current list of RC files that will be parsed
-at the end of gtk_init()
 </para>
 
-@Returns: A NULL terminated array of filenames. This memory
-is owned by GTK+ and must not be freed by the application.
-If you want to store this information, you should make a 
-copy.
+@Returns: 
 
 
 <!-- ##### FUNCTION gtk_rc_set_default_files ##### -->
 <para>
-Sets the list of files that GTK+ will read at the
-end of gtk_init()
 </para>
 
-@filenames: A %NULL terminated list of filenames.
+@filenames: 
 
 
 <!-- ##### FUNCTION gtk_rc_parse_color ##### -->
 <para>
-Parses a color in the format expected in a RC file.
+Parses a color in the <link linkend="color-format">format</link> expected in a RC file.
 </para>
 
 @scanner: a #GtkScanner
 @color: a pointer to a #GtkColor structure in which to store the result
-@Returns: %G_TOKEN_NONE if parsing suceeded, otherwise the token
+@Returns: %G_TOKEN_NONE if parsing succeeded, otherwise the token
 that was expected but not found.
 
 
@@ -751,7 +760,7 @@ in a RC file.
 @scanner: a #GtkScanner (must be initialized for parsing an RC file)
 @state: A pointer to a #GtkStateType variable in which to
 store the result.
-@Returns: %G_TOKEN_NONE if parsing suceeded, otherwise the token
+@Returns: %G_TOKEN_NONE if parsing succeeded, otherwise the token
 that was expected but not found.
 
 
@@ -764,41 +773,37 @@ in a RC file.
 @scanner: a #GtkScanner (must be initialized for parsing an RC file)
 @priority: A pointer to #GtkPathPriorityType variable in which
 to store the result.
-@Returns: %G_TOKEN_NONE if parsing suceeded, otherwise the token
+@Returns: %G_TOKEN_NONE if parsing succeeded, otherwise the token
 that was expected but not found.
 
 
 <!-- ##### FUNCTION gtk_rc_find_module_in_path ##### -->
 <para>
-Looks up a file in the current module path.
 </para>
 
 @module_file: The name of the module to search for.
-@Returns: The filename, if found. (Must be freed with g_free()),
-otherwise %NULL.
+@Returns: 
 
 
 <!-- ##### FUNCTION gtk_rc_find_pixmap_in_path ##### -->
 <para>
-Looks up a file in the current pixmap path. If the file is
-not found, it outputs a warning message using g_warning()
-and returns %NULL.
 </para>
 
+@settings: 
 @scanner: a #GtkScanner. Used for printing out warning messages
 if the file is not found.
 @pixmap_file: The name of the file to search for.
-@Returns: The filename, if found. (Must be freed with g_free()),
+@Returns: The filename, if found (must be freed with g_free()),
 otherwise %NULL.
+<!-- # Unused Parameters # -->
+@context: 
 
 
 <!-- ##### FUNCTION gtk_rc_get_module_dir ##### -->
 <para>
-Returns the directory in which GTK+ will look for
-theme engines.
 </para>
 
-@Returns: The directory. (Must be freed with g_free())
+@Returns: 
 
 
 <!-- ##### FUNCTION gtk_rc_get_im_module_path ##### -->
@@ -824,36 +829,16 @@ be installed. (GTK+ does not actually use this directory
 itself.)
 </para>
 
-@Returns: The directory. (Must be freed with g_free())
-
-
-<!-- ##### FUNCTION gtk_rc_set_image_loader ##### -->
-<para>
-Sets the function that GTK+ will use to load images 
-</para>
-
-@loader: the #GtkImageLoader to use
-
-
-<!-- ##### FUNCTION gtk_rc_load_image ##### -->
-<para>
-Internal function. Loads an image using the current
-image loader.
-</para>
-
-@colormap: the colormap to use for the image
-@transparent_color: the transparent color for the image
-@filename: the filename of the image file
-@Returns: a #GtkPixmap representing @filename
+@Returns: The directory (must be freed with g_free()).
 
 
 <!-- ##### FUNCTION gtk_rc_style_new ##### -->
 <para>
-Create a new #GtkRcStyle with no fields set and
+Creates a new #GtkRcStyle with no fields set and
 a reference count of 1.
 </para>
 
-@Returns: the newly create #GtkRcStyle
+@Returns: the newly-created #GtkRcStyle
 
 
 <!-- ##### FUNCTION gtk_rc_style_copy ##### -->
@@ -867,7 +852,7 @@ a reference count of 1.
 
 <!-- ##### FUNCTION gtk_rc_style_ref ##### -->
 <para>
-Increment the reference count of a #GtkRcStyle.
+Increments the reference count of a #GtkRcStyle.
 </para>
 
 @rc_style: a #GtkRcStyle
@@ -875,8 +860,8 @@ Increment the reference count of a #GtkRcStyle.
 
 <!-- ##### FUNCTION gtk_rc_style_unref ##### -->
 <para>
-Decrement the reference count of a #GtkRcStyle and
-free if the result is 0.
+Decrements the reference count of a #GtkRcStyle and
+frees if the result is 0.
 </para>
 
 @rc_style: a #GtkRcStyle