~canonical-dx-team/ubuntu/maverick/gtk+2.0/menuproxy

« back to all changes in this revision

Viewing changes to docs/reference/gtk/html/GtkCombo.html

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2009-09-23 06:36:41 UTC
  • mfrom: (1.3.2 upstream)
  • mto: (72.2.8 sid) (1.6.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 129.
  • Revision ID: james.westby@ubuntu.com-20090923063641-69c7g7h68iy4u5o3
Import upstream version 2.18.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
<link rel="chapter" href="gtk-migrating-GtkBuilder.html" title="Migrating from libglade to GtkBuilder">
50
50
<link rel="chapter" href="gtk-migrating-tooltips.html" title="Migrating from GtkTooltips to GtkTooltip">
51
51
<link rel="chapter" href="gtk-migrating-entry-icons.html" title="Migrating from SexyIconEntry to GtkEntry">
 
52
<link rel="chapter" href="gtk-migrating-label-links.html" title="Migrating from SexyUrlLabel to GtkLabel">
 
53
<link rel="chapter" href="gtk-migrating-ClientSideWindows.html" title="Migrating to client-side windows">
52
54
<link rel="part" href="pt05.html" title="Part V. GTK+ Tools">
53
55
<link rel="glossary" href="glossary.html" title="Glossary">
54
56
<link rel="index" href="api-index-full.html" title="Index of all symbols">
61
63
<link rel="index" href="api-index-2-12.html" title="Index of new symbols in 2.12">
62
64
<link rel="index" href="api-index-2-14.html" title="Index of new symbols in 2.14">
63
65
<link rel="index" href="api-index-2-16.html" title="Index of new symbols in 2.16">
 
66
<link rel="index" href="api-index-2-18.html" title="Index of new symbols in 2.18">
64
67
</head>
65
68
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
66
69
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
198
201
As of GTK+ 2.4, <a class="link" href="GtkCombo.html" title="GtkCombo"><span class="type">GtkCombo</span></a> has been deprecated in favor of <a class="link" href="GtkComboBoxEntry.html" title="GtkComboBoxEntry"><span class="type">GtkComboBoxEntry</span></a>.
199
202
</p>
200
203
<div class="example">
201
 
<a name="gtkcombo-simple-example"></a><p class="title"><b>Example 58. Creating a <span class="structname">GtkCombo</span> widget with simple text
 
204
<a name="gtkcombo-simple-example"></a><p class="title"><b>Example 59. Creating a <span class="structname">GtkCombo</span> widget with simple text
202
205
items.</b></p>
203
206
<div class="example-contents"><pre class="programlisting">
204
207
  GtkWidget *combo;
213
216
</pre></div>
214
217
</div>
215
218
<br class="example-break"><div class="example">
216
 
<a name="id1327259"></a><p class="title"><b>Example 59. Creating a <span class="structname">GtkCombo</span> widget with a complex item.</b></p>
 
219
<a name="id1154733"></a><p class="title"><b>Example 60. Creating a <span class="structname">GtkCombo</span> widget with a complex item.</b></p>
217
220
<div class="example-contents"><pre class="programlisting">
218
221
  GtkWidget *combo, *item, *hbox, *arrow, *label;
219
222
  combo = gtk_combo_new ();
307
310
</div>
308
311
<p>
309
312
Convenience function to set all of the items in the popup list.
310
 
(See the <a class="link" href="GtkCombo.html#gtkcombo-simple-example" title="Example 58. Creating a GtkCombo widget with simple text items.">example</a> above.)
 
313
(See the <a class="link" href="GtkCombo.html#gtkcombo-simple-example" title="Example 59. Creating a GtkCombo widget with simple text items.">example</a> above.)
311
314
</p>
312
315
<div class="variablelist"><table border="0">
313
316
<col align="left" valign="top">