update to 1.10.4
[profile/ivi/clutter.git] / doc / reference / clutter / html / ClutterListModel.html
index 077dafe..5a10475 100644 (file)
 <a name="ClutterListModel.synopsis"></a><h2>Synopsis</h2>
 <pre class="synopsis">struct              <a class="link" href="ClutterListModel.html#ClutterListModel-struct" title="struct ClutterListModel">ClutterListModel</a>;
 struct              <a class="link" href="ClutterListModel.html#ClutterListModelClass" title="struct ClutterListModelClass">ClutterListModelClass</a>;
-<a class="link" href="ClutterModel.html" title="ClutterModel"><span class="returnvalue">ClutterModel</span></a> *      <a class="link" href="ClutterListModel.html#clutter-list-model-new" title="clutter_list_model_new ()">clutter_list_model_new</a>              (<em class="parameter"><code><span class="type">guint</span> n_columns</code></em>,
+<a class="link" href="ClutterModel.html" title="ClutterModel"><span class="returnvalue">ClutterModel</span></a> *      <a class="link" href="ClutterListModel.html#clutter-list-model-new" title="clutter_list_model_new ()">clutter_list_model_new</a>              (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_columns</code></em>,
                                                          <em class="parameter"><code>...</code></em>);
-<a class="link" href="ClutterModel.html" title="ClutterModel"><span class="returnvalue">ClutterModel</span></a> *      <a class="link" href="ClutterListModel.html#clutter-list-model-newv" title="clutter_list_model_newv ()">clutter_list_model_newv</a>             (<em class="parameter"><code><span class="type">guint</span> n_columns</code></em>,
-                                                         <em class="parameter"><code><span class="type">GType</span> *types</code></em>,
-                                                         <em class="parameter"><code>const <span class="type">gchar</span> * const names[]</code></em>);
+<a class="link" href="ClutterModel.html" title="ClutterModel"><span class="returnvalue">ClutterModel</span></a> *      <a class="link" href="ClutterListModel.html#clutter-list-model-newv" title="clutter_list_model_newv ()">clutter_list_model_newv</a>             (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_columns</code></em>,
+                                                         <em class="parameter"><code><a href="../gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> *types</code></em>,
+                                                         <em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> * const names[]</code></em>);
 </pre>
 </div>
 <div class="refsect1">
 <a name="ClutterListModel.object-hierarchy"></a><h2>Object Hierarchy</h2>
 <pre class="synopsis">
-  GObject
+  <a href="../gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
    +----<a class="link" href="ClutterModel.html" title="ClutterModel">ClutterModel</a>
          +----ClutterListModel
 </pre>
@@ -68,7 +68,7 @@ ClutterListModel implements
 <a name="ClutterListModel.description"></a><h2>Description</h2>
 <p>
 <a class="link" href="ClutterListModel.html" title="ClutterListModel"><span class="type">ClutterListModel</span></a> is a <a class="link" href="ClutterModel.html" title="ClutterModel"><span class="type">ClutterModel</span></a> implementation provided by
-Clutter. <a class="link" href="ClutterListModel.html" title="ClutterListModel"><span class="type">ClutterListModel</span></a> uses a <span class="type">GSequence</span> for storing the
+Clutter. <a class="link" href="ClutterListModel.html" title="ClutterListModel"><span class="type">ClutterListModel</span></a> uses a <a href="../glib/glib-Sequences.html#GSequence"><span class="type">GSequence</span></a> for storing the
 values for each row, so it's optimized for insertion and look up
 in sorted lists.
 </p>
@@ -100,7 +100,7 @@ The <a class="link" href="ClutterListModel.html#ClutterListModelClass" title="st
 <hr>
 <div class="refsect2">
 <a name="clutter-list-model-new"></a><h3>clutter_list_model_new ()</h3>
-<pre class="programlisting"><a class="link" href="ClutterModel.html" title="ClutterModel"><span class="returnvalue">ClutterModel</span></a> *      clutter_list_model_new              (<em class="parameter"><code><span class="type">guint</span> n_columns</code></em>,
+<pre class="programlisting"><a class="link" href="ClutterModel.html" title="ClutterModel"><span class="returnvalue">ClutterModel</span></a> *      clutter_list_model_new              (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_columns</code></em>,
                                                          <em class="parameter"><code>...</code></em>);</pre>
 <p>
 Creates a new default model with <em class="parameter"><code>n_columns</code></em> columns with the types 
@@ -120,8 +120,8 @@ For example:
 3
 4</pre></td>
         <td class="listing_code"><pre class="programlisting"><span class="normal">model </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="ClutterListModel.html#clutter-list-model-new">clutter_list_model_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="number">3</span><span class="symbol">,</span>
-<span class="normal">                                G_TYPE_INT</span><span class="symbol">,</span><span class="normal">      </span><span class="string">"Score"</span><span class="symbol">,</span>
-<span class="normal">                                G_TYPE_STRING</span><span class="symbol">,</span><span class="normal">   </span><span class="string">"Team"</span><span class="symbol">,</span>
+<span class="normal">                                <a href="../gobject/gobject-Type-Information.html#G-TYPE-INT:CAPS">G_TYPE_INT</a></span><span class="symbol">,</span><span class="normal">      </span><span class="string">"Score"</span><span class="symbol">,</span>
+<span class="normal">                                <a href="../gobject/gobject-Type-Information.html#G-TYPE-STRING:CAPS">G_TYPE_STRING</a></span><span class="symbol">,</span><span class="normal">   </span><span class="string">"Team"</span><span class="symbol">,</span>
 <span class="normal">                                GDK_TYPE_PIXBUF</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Logo"</span><span class="symbol">);</span></pre></td>
       </tr>
     </tbody>
@@ -132,10 +132,10 @@ For example:
 </p>
 <p>
 will create a new <a class="link" href="ClutterModel.html" title="ClutterModel"><span class="type">ClutterModel</span></a> with three columns of type int,
-string and <span class="type">GdkPixbuf</span> respectively.
+string and <a href="../gdk-pixbuf/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> respectively.
 </p>
 <p>
-Note that the name of the column can be set to <a href="/home/ebassi/gnome3/install/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL--CAPS"><code class="literal">NULL</code></a>, in which case
+Note that the name of the column can be set to <a href="/home/ebassi/gnome3/install/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a>, in which case
 the canonical name of the type held by the column will be used as
 the title.
 </p>
@@ -149,7 +149,7 @@ the title.
 <tr>
 <td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
 <td>
-<em class="parameter"><code>n_columns</code></em> number of <span class="type">GType</span> and string pairs</td>
+<em class="parameter"><code>n_columns</code></em> number of <a href="../gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> and string pairs</td>
 </tr>
 <tr>
 <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
@@ -163,9 +163,9 @@ the title.
 <hr>
 <div class="refsect2">
 <a name="clutter-list-model-newv"></a><h3>clutter_list_model_newv ()</h3>
-<pre class="programlisting"><a class="link" href="ClutterModel.html" title="ClutterModel"><span class="returnvalue">ClutterModel</span></a> *      clutter_list_model_newv             (<em class="parameter"><code><span class="type">guint</span> n_columns</code></em>,
-                                                         <em class="parameter"><code><span class="type">GType</span> *types</code></em>,
-                                                         <em class="parameter"><code>const <span class="type">gchar</span> * const names[]</code></em>);</pre>
+<pre class="programlisting"><a class="link" href="ClutterModel.html" title="ClutterModel"><span class="returnvalue">ClutterModel</span></a> *      clutter_list_model_newv             (<em class="parameter"><code><a href="../glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a> n_columns</code></em>,
+                                                         <em class="parameter"><code><a href="../gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> *types</code></em>,
+                                                         <em class="parameter"><code>const <a href="../glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> * const names[]</code></em>);</pre>
 <p>
 Non-vararg version of <a class="link" href="ClutterListModel.html#clutter-list-model-new" title="clutter_list_model_new ()"><code class="function">clutter_list_model_new()</code></a>. This function is
 useful for language bindings.
@@ -179,7 +179,7 @@ useful for language bindings.
 </tr>
 <tr>
 <td><p><span class="term"><em class="parameter"><code>types</code></em> :</span></p></td>
-<td>an array of <span class="type">GType</span> types for the columns, from first to last. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_columns]</span>
+<td>an array of <a href="../gobject/gobject-Type-Information.html#GType"><span class="type">GType</span></a> types for the columns, from first to last. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_columns]</span>
 </td>
 </tr>
 <tr>