Sophie

Sophie

distrib > Mageia > 7 > i586 > by-pkgid > e40b0b2b839eccdb3c85993a7b738115 > files > 195

gtkmm-documentation-3.24.0-1.mga7.noarch.rpm

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Intermediate types</title>
<link rel="stylesheet" type="text/css" href="style.css">
<meta name="generator" content="DocBook XSL Stylesheets V1.79.1">
<link rel="home" href="index.html" title="Programming with gtkmm 3">
<link rel="up" href="chapter-basics.html" title="Chapter 3. Basics">
<link rel="prev" href="sec-basics-ustring.html" title="Glib::ustring">
<link rel="next" href="sec-basics-gobj-and-wrap.html" title="Mixing C and C++ APIs">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<div class="navheader">
<table width="100%" summary="Navigation header">
<tr><th colspan="3" align="center">Intermediate types</th></tr>
<tr>
<td width="20%" align="left">
<a accesskey="p" href="sec-basics-ustring.html"><img src="icons/prev.png" alt="Prev"></a> </td>
<th width="60%" align="center">Chapter 3. Basics</th>
<td width="20%" align="right"> <a accesskey="n" href="sec-basics-gobj-and-wrap.html"><img src="icons/next.png" alt="Next"></a>
</td>
</tr>
</table>
<hr>
</div>
<div class="sect1">
<div class="titlepage"><div><div><h2 class="title" style="clear: both">
<a name="sec-intermediate-types"></a>Intermediate types</h2></div></div></div>
<p>Some API related to gtkmm uses intermediate data containers, such as <code class="classname">Glib::StringArrayHandle</code>, instead of a specific Standard C++ container such as <code class="classname">std::vector</code> or <code class="classname">std::list</code>, though <span class="application">gtkmm</span> itself now uses just <code class="classname">std::vector</code> since <span class="application">gtkmm</span> 3.0.</p>
<p>You should not declare these types yourself. You should instead use whatever Standard C++ container you prefer. glibmm will do the conversion for you. Here are some of these intermediate types:
</p>
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
<li class="listitem"><p><code class="classname">Glib::StringArrayHandle</code> or <code class="classname">Glib::ArrayHandle&lt;Glib::ustring&gt;</code>: Use <code class="classname">std::vector&lt;Glib::ustring&gt;</code>, <code class="classname">std::list&lt;Glib::ustring&gt;</code>, <span class="type">const char*[]</span>, etc.</p></li>
<li class="listitem"><p><code class="classname">Glib::ListHandle&lt;Gtk::Widget*&gt;</code>: Use <code class="classname">std::vector&lt;Gtk::Widget*&gt;</code>, <code class="classname">std::list&lt;Gtk::Widget*&gt;</code>, etc.</p></li>
<li class="listitem"><p><code class="classname">Glib::SListHandle&lt;Gtk::Widget*&gt;</code>: Use <code class="classname">std::vector&lt;Gtk::Widget*&gt;</code>, <code class="classname">std::list&lt;Gtk::Widget*&gt;</code>, etc.</p></li>
</ul></div>
<p>

</p>
</div>
<div class="navfooter">
<hr>
<table width="100%" summary="Navigation footer">
<tr>
<td width="40%" align="left">
<a accesskey="p" href="sec-basics-ustring.html"><img src="icons/prev.png" alt="Prev"></a> </td>
<td width="20%" align="center"><a accesskey="u" href="chapter-basics.html"><img src="icons/up.png" alt="Up"></a></td>
<td width="40%" align="right"> <a accesskey="n" href="sec-basics-gobj-and-wrap.html"><img src="icons/next.png" alt="Next"></a>
</td>
</tr>
<tr>
<td width="40%" align="left" valign="top">Glib::ustring </td>
<td width="20%" align="center"><a accesskey="h" href="index.html"><img src="icons/home.png" alt="Home"></a></td>
<td width="40%" align="right" valign="top"> Mixing C and C++ APIs</td>
</tr>
</table>
</div>
</body>
</html>