gtk2 1.0.0-x86-mingw32 → 1.0.1-x86-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (553) hide show
  1. data/ChangeLog +52 -0
  2. data/ext/gtk2/extconf.rb +18 -9
  3. data/ext/gtk2/rbgdk.h +3 -0
  4. data/ext/gtk2/rbgdkdragcontext.c +4 -4
  5. data/ext/gtk2/rbgdkevent.c +18 -5
  6. data/ext/gtk2/rbgdkpixmap.c +43 -48
  7. data/ext/gtk2/rbgdkproperty.c +6 -5
  8. data/ext/gtk2/rbgdkscreen.c +18 -74
  9. data/ext/gtk2/rbgdkselection.c +2 -2
  10. data/ext/gtk2/rbgdkwindow.c +11 -18
  11. data/ext/gtk2/rbgdkwindowattr.c +1 -1
  12. data/ext/gtk2/rbgtkaccelgroup.c +1 -1
  13. data/ext/gtk2/rbgtkaction.c +8 -26
  14. data/ext/gtk2/rbgtkactiongroup.c +6 -6
  15. data/ext/gtk2/rbgtkadjustment.c +20 -74
  16. data/ext/gtk2/rbgtkbindingset.c +1 -1
  17. data/ext/gtk2/rbgtkbuilder.c +2 -1
  18. data/ext/gtk2/rbgtkbutton.c +1 -9
  19. data/ext/gtk2/rbgtkcalendar.c +1 -1
  20. data/ext/gtk2/rbgtkcellrendererspinner.c +0 -3
  21. data/ext/gtk2/rbgtkcellrenderertext.c +1 -2
  22. data/ext/gtk2/rbgtkcellview.c +6 -11
  23. data/ext/gtk2/rbgtkcolorselectiondialog.c +2 -28
  24. data/ext/gtk2/rbgtkcombo.c +2 -2
  25. data/ext/gtk2/rbgtkcombobox.c +9 -29
  26. data/ext/gtk2/rbgtkcontainer.c +1 -1
  27. data/ext/gtk2/rbgtkcurve.c +4 -2
  28. data/ext/gtk2/rbgtkdialog.c +2 -3
  29. data/ext/gtk2/rbgtkdrag.c +3 -3
  30. data/ext/gtk2/rbgtkentry.c +2 -2
  31. data/ext/gtk2/rbgtkentrycompletion.c +1 -4
  32. data/ext/gtk2/rbgtkfilechooser.c +32 -29
  33. data/ext/gtk2/rbgtkfilechooserdialog.c +8 -6
  34. data/ext/gtk2/rbgtkfilefilter.c +8 -4
  35. data/ext/gtk2/rbgtkframe.c +3 -4
  36. data/ext/gtk2/rbgtkhandlebox.c +0 -7
  37. data/ext/gtk2/rbgtkicontheme.c +4 -13
  38. data/ext/gtk2/rbgtkiconview.c +4 -15
  39. data/ext/gtk2/rbgtkimcontext.c +1 -1
  40. data/ext/gtk2/rbgtkinvisible.c +5 -21
  41. data/ext/gtk2/rbgtkitemfactory.c +3 -3
  42. data/ext/gtk2/rbgtklabel.c +0 -2
  43. data/ext/gtk2/rbgtklinkbutton.c +0 -2
  44. data/ext/gtk2/rbgtkmain.c +7 -10
  45. data/ext/gtk2/rbgtkmenu.c +22 -74
  46. data/ext/gtk2/rbgtkmenuitem.c +16 -55
  47. data/ext/gtk2/rbgtkmenushell.c +3 -11
  48. data/ext/gtk2/rbgtkmessagedialog.c +11 -20
  49. data/ext/gtk2/rbgtknotebook.c +0 -1
  50. data/ext/gtk2/rbgtkoptionmenu.c +1 -2
  51. data/ext/gtk2/rbgtkprintjob.c +1 -2
  52. data/ext/gtk2/rbgtkprintoperation.c +0 -2
  53. data/ext/gtk2/rbgtkradioaction.c +2 -7
  54. data/ext/gtk2/rbgtkradiobutton.c +1 -1
  55. data/ext/gtk2/rbgtkradiomenuitem.c +4 -6
  56. data/ext/gtk2/rbgtkradiotoolbutton.c +2 -4
  57. data/ext/gtk2/rbgtkrange.c +1 -2
  58. data/ext/gtk2/rbgtkrc.c +8 -9
  59. data/ext/gtk2/rbgtkrcstyle.c +2 -2
  60. data/ext/gtk2/rbgtkrecentaction.c +0 -1
  61. data/ext/gtk2/rbgtkrecentchooser.c +3 -3
  62. data/ext/gtk2/rbgtkrecentdata.c +2 -9
  63. data/ext/gtk2/rbgtkrecentfilter.c +2 -1
  64. data/ext/gtk2/rbgtkrecentfilterinfo.c +5 -16
  65. data/ext/gtk2/rbgtkrecentinfo.c +2 -2
  66. data/ext/gtk2/rbgtkrecentmanager.c +1 -2
  67. data/ext/gtk2/rbgtkruler.c +6 -16
  68. data/ext/gtk2/rbgtkscalebutton.c +16 -48
  69. data/ext/gtk2/rbgtkscrolledwindow.c +1 -1
  70. data/ext/gtk2/rbgtkselectiondata.c +10 -34
  71. data/ext/gtk2/rbgtksettings.c +1 -1
  72. data/ext/gtk2/rbgtkspinner.c +0 -3
  73. data/ext/gtk2/rbgtkstatusbar.c +5 -16
  74. data/ext/gtk2/rbgtkstatusicon.c +2 -9
  75. data/ext/gtk2/rbgtkstock.c +4 -4
  76. data/ext/gtk2/rbgtktable.c +8 -13
  77. data/ext/gtk2/rbgtktextattributes.c +0 -2
  78. data/ext/gtk2/rbgtktextbuffer.c +17 -16
  79. data/ext/gtk2/rbgtktextmark.c +7 -14
  80. data/ext/gtk2/rbgtktexttag.c +1 -2
  81. data/ext/gtk2/rbgtktextview.c +3 -4
  82. data/ext/gtk2/rbgtktoggleaction.c +5 -16
  83. data/ext/gtk2/rbgtktogglebutton.c +1 -2
  84. data/ext/gtk2/rbgtktoggletoolbutton.c +5 -16
  85. data/ext/gtk2/rbgtktoolbar.c +8 -31
  86. data/ext/gtk2/rbgtktoolitem.c +3 -1
  87. data/ext/gtk2/rbgtktreerowreference.c +4 -4
  88. data/ext/gtk2/rbgtktreesortable.c +0 -3
  89. data/ext/gtk2/rbgtktreestore.c +10 -7
  90. data/ext/gtk2/rbgtktreeview.c +5 -8
  91. data/ext/gtk2/rbgtktreeviewcolumn.c +13 -34
  92. data/ext/gtk2/rbgtkuimanager.c +2 -3
  93. data/ext/gtk2/rbgtkwidget.c +24 -44
  94. data/ext/gtk2/rbgtkwindow.c +32 -92
  95. data/lib/1.8/gtk2.so +0 -0
  96. data/lib/1.9/gtk2.so +0 -0
  97. data/lib/gtk2/base.rb +1 -1
  98. data/vendor/local/bin/gtk-builder-convert +2 -29
  99. data/vendor/local/bin/gtk-demo.exe +0 -0
  100. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  101. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  102. data/vendor/local/bin/libgailutil-18.dll +0 -0
  103. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  104. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  105. data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
  106. data/vendor/local/include/gtk-2.0/gdk/gdk.h +5 -2
  107. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +0 -4
  108. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +0 -2
  109. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +0 -7
  110. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +4 -7
  111. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
  112. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +0 -1
  113. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +0 -4
  114. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +9 -13
  115. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +0 -2
  116. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +0 -5
  117. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +6 -16
  118. data/vendor/local/include/gtk-2.0/gtk/gtk.h +0 -1
  119. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +1 -5
  120. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +3 -14
  121. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +0 -3
  122. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +0 -4
  123. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +0 -2
  124. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +2 -2
  125. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +3 -5
  126. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +0 -6
  127. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +0 -4
  128. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +0 -2
  129. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
  130. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +0 -4
  131. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1 -5
  132. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +1 -2
  133. data/vendor/local/lib/gailutil.lib +0 -0
  134. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  135. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  136. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  137. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  138. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  139. data/vendor/local/lib/libgailutil.dll.a +0 -0
  140. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  141. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  142. data/vendor/local/lib/pkgconfig/gail.pc +1 -1
  143. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
  144. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
  145. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
  146. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
  147. data/vendor/local/manifest/{gtk+-dev_2.24.0-1_win32.mft → gtk+-dev_2.22.1-1_win32.mft} +6 -9
  148. data/vendor/local/manifest/{gtk+_2.24.0-1_win32.mft → gtk+_2.22.1-1_win32.mft} +6 -2
  149. data/vendor/local/share/doc/{gtk+-2.24.0 → gtk+-2.22.1}/COPYING +0 -0
  150. data/vendor/local/share/doc/{gtk+-dev-2.24.0 → gtk+-dev-2.22.1}/COPYING +0 -0
  151. data/vendor/local/share/gtk-2.0/demo/appwindow.c +21 -0
  152. data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
  153. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
  154. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
  155. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
  156. data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
  157. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +94 -60
  158. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +58 -44
  159. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
  160. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
  161. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
  162. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
  163. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +1 -2
  164. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +208 -151
  165. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +37 -33
  166. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +239 -180
  167. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +3 -3
  168. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +3 -3
  169. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +3 -3
  170. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +3 -3
  171. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +3 -3
  172. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +3 -3
  173. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +4 -4
  174. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +3 -3
  175. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +3 -3
  176. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +3 -3
  177. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +6 -6
  178. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +4 -4
  179. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +5 -135
  180. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +47 -83
  181. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +23 -20
  182. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +126 -126
  183. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +39 -81
  184. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +199 -135
  185. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +90 -71
  186. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +200 -161
  187. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +409 -293
  188. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +435 -320
  189. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +141 -109
  190. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +234 -155
  191. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +217 -143
  192. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +124 -103
  193. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +250 -168
  194. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +131 -90
  195. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +191 -143
  196. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +53 -35
  197. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +195 -162
  198. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +112 -85
  199. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +137 -79
  200. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +176 -144
  201. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +235 -188
  202. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +134 -97
  203. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +35 -22
  204. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +70 -44
  205. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +108 -83
  206. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +744 -653
  207. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +490 -476
  208. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +44 -53
  209. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +76 -85
  210. data/vendor/local/share/gtk-doc/html/gdk/index.html +4 -4
  211. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1 -10
  212. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +9 -9
  213. data/vendor/local/share/gtk-doc/html/gdk/reference.html +3 -3
  214. data/vendor/local/share/gtk-doc/html/gdk/style.css +1 -2
  215. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +3 -3
  216. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +3 -3
  217. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +3 -3
  218. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +3 -3
  219. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +3 -3
  220. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +3 -3
  221. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +186 -193
  222. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +46 -38
  223. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +18 -18
  224. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +236 -169
  225. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +258 -175
  226. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +50 -46
  227. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +114 -78
  228. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +66 -52
  229. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +36 -30
  230. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +46 -36
  231. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +118 -97
  232. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +14 -14
  233. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +120 -95
  234. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +117 -86
  235. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +137 -96
  236. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +185 -152
  237. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +76 -59
  238. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +895 -615
  239. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +1780 -509
  240. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +163 -125
  241. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +35 -33
  242. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +87 -60
  243. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +130 -106
  244. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +44 -35
  245. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +32 -27
  246. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +25 -24
  247. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -23
  248. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +20 -19
  249. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +20 -19
  250. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +74 -69
  251. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +54 -45
  252. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +76 -57
  253. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +34 -30
  254. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +75 -53
  255. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +180 -104
  256. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +32 -29
  257. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +81 -63
  258. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +186 -344
  259. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +46 -57
  260. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +260 -311
  261. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +79 -61
  262. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +121 -97
  263. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +23 -21
  264. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +88 -68
  265. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +470 -360
  266. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +104 -71
  267. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +185 -130
  268. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +38 -33
  269. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +96 -76
  270. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +403 -331
  271. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +89 -64
  272. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +35 -30
  273. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +26 -21
  274. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +146 -102
  275. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +49 -38
  276. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +86 -60
  277. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +81 -66
  278. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +61 -52
  279. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +58 -51
  280. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +19 -18
  281. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +20 -17
  282. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +34 -29
  283. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +13 -13
  284. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +24 -30
  285. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +101 -65
  286. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +30 -25
  287. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +18 -18
  288. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +20 -19
  289. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +66 -55
  290. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +182 -140
  291. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +22 -18
  292. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +22 -18
  293. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +248 -184
  294. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +447 -321
  295. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +195 -174
  296. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +69 -58
  297. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +80 -67
  298. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -32
  299. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +41 -33
  300. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +42 -36
  301. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +272 -179
  302. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +249 -197
  303. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +76 -68
  304. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +60 -51
  305. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +180 -130
  306. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +130 -80
  307. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +168 -138
  308. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +221 -177
  309. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +49 -41
  310. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +145 -112
  311. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +118 -86
  312. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +49 -73
  313. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +81 -81
  314. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +39 -33
  315. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +452 -396
  316. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +206 -148
  317. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +25 -21
  318. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +165 -80
  319. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +66 -56
  320. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +160 -115
  321. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +25 -22
  322. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +134 -94
  323. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +44 -34
  324. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -51
  325. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +136 -109
  326. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +53 -38
  327. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +68 -53
  328. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +403 -265
  329. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +94 -74
  330. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +134 -100
  331. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +111 -80
  332. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +108 -91
  333. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +53 -42
  334. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +79 -86
  335. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +71 -63
  336. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +42 -33
  337. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +185 -218
  338. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +41 -34
  339. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +194 -135
  340. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -27
  341. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +30 -25
  342. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -17
  343. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +85 -63
  344. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +269 -202
  345. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +58 -83
  346. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +72 -61
  347. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +83 -64
  348. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +21 -21
  349. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +143 -93
  350. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +13 -13
  351. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +18 -17
  352. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +27 -24
  353. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +259 -129
  354. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +45 -38
  355. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +53 -44
  356. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +177 -132
  357. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +25 -24
  358. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +254 -190
  359. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +75 -60
  360. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +928 -546
  361. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +135 -94
  362. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +19 -18
  363. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +140 -97
  364. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +656 -494
  365. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +46 -41
  366. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +194 -164
  367. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +76 -84
  368. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +425 -340
  369. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +94 -74
  370. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +57 -43
  371. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +71 -59
  372. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +38 -32
  373. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +85 -74
  374. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +166 -133
  375. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +103 -84
  376. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +139 -116
  377. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +59 -42
  378. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +360 -249
  379. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +27 -27
  380. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +70 -60
  381. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +152 -105
  382. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +134 -46
  383. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +557 -428
  384. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +126 -95
  385. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +70 -63
  386. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +171 -123
  387. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +62 -53
  388. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +199 -170
  389. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +863 -565
  390. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +282 -203
  391. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +189 -125
  392. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +20 -17
  393. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +34 -27
  394. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +14 -14
  395. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +24 -31
  396. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +29 -24
  397. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +18 -18
  398. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +18 -17
  399. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +69 -58
  400. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +17 -16
  401. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1579 -1278
  402. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +532 -380
  403. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +39 -21
  404. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +3 -3
  405. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +3 -6
  406. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +3 -3
  407. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +3 -3
  408. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +3 -3
  409. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +3 -3
  410. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +4 -4
  411. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +3 -3
  412. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +3 -3
  413. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +3 -3
  414. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +3 -3
  415. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +15 -15
  416. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +4 -4
  417. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +16 -16
  418. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +3 -3
  419. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +3 -3
  420. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +11 -17
  421. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +20 -20
  422. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +6 -6
  423. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +3 -3
  424. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +4 -4
  425. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +3 -3
  426. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +5 -5
  427. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +3 -3
  428. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +5 -5
  429. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +28 -28
  430. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +3 -3
  431. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +7 -7
  432. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +45 -236
  433. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +385 -469
  434. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +4 -15
  435. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +4 -4
  436. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +12 -12
  437. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +4 -4
  438. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +4 -4
  439. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +4 -4
  440. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +3 -3
  441. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +3 -3
  442. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +124 -69
  443. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +211 -149
  444. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +293 -189
  445. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +246 -175
  446. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +41 -35
  447. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +47 -41
  448. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +318 -270
  449. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +22 -16
  450. data/vendor/local/share/gtk-doc/html/gtk/{GtkPaperSize.html → gtk-GtkPaperSize.html} +252 -204
  451. data/vendor/local/share/gtk-doc/html/gtk/{GtkTextIter.html → gtk-GtkTextIter.html} +806 -664
  452. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +82 -75
  453. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +289 -221
  454. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +232 -142
  455. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +20 -17
  456. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +190 -150
  457. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +408 -328
  458. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +306 -190
  459. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +53 -53
  460. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +158 -152
  461. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +136 -85
  462. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +239 -204
  463. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +343 -271
  464. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +11 -18
  465. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +20 -20
  466. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +5 -5
  467. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +5 -5
  468. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +5 -5
  469. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +7 -7
  470. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +75 -63
  471. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +75 -58
  472. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +3 -3
  473. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +3 -3
  474. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +4 -4
  475. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +4 -4
  476. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +10 -5
  477. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +3 -3
  478. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +4 -4
  479. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +5 -5
  480. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +3 -3
  481. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +3 -3
  482. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +5 -5
  483. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +7 -7
  484. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +3 -3
  485. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +3 -3
  486. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +3 -3
  487. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +6 -6
  488. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +10 -10
  489. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +90 -90
  490. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +9 -9
  491. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +31 -39
  492. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +10 -10
  493. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +14 -14
  494. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +12 -12
  495. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +412 -445
  496. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +455 -488
  497. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +4 -4
  498. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +3 -3
  499. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +3 -3
  500. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +3 -3
  501. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +3 -3
  502. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +5 -5
  503. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +5 -8
  504. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +3 -3
  505. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +3 -3
  506. data/vendor/local/share/gtk-doc/html/gtk/index.html +6 -10
  507. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +142 -194
  508. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +3 -3
  509. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +17 -17
  510. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +4 -4
  511. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +3 -3
  512. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +4 -4
  513. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +3 -3
  514. data/vendor/local/share/gtk-doc/html/gtk/style.css +1 -2
  515. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +3 -3
  516. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  517. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  518. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  519. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  520. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  521. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  522. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  523. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  524. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  525. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  526. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  527. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  528. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  529. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  530. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  531. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  532. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
  533. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
  534. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
  535. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
  536. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  537. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  538. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  539. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  540. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  541. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  542. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  543. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  544. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  545. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  546. data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +5048 -0
  547. data/vendor/local/src/tml/packaging/{gtk+_2.24.0-1_win32.sh → gtk+_2.22.1-1_win32.sh} +2 -2
  548. metadata +25 -25
  549. data/vendor/local/etc/gtk-2.0/gtkrc +0 -1
  550. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +0 -77
  551. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +0 -301
  552. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +0 -117
  553. data/vendor/local/src/tml/packaging/gtk+_2.24.0-1_win32.log +0 -4934
@@ -7,8 +7,8 @@
7
7
  <link rel="home" href="index.html" title="GTK+ Reference Manual">
8
8
  <link rel="up" href="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
9
9
  <link rel="prev" href="MenusAndCombos.html" title="Menus, Combo Box, Toolbar">
10
- <link rel="next" href="GtkComboBoxText.html" title="GtkComboBoxText">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
10
+ <link rel="next" href="GtkComboBoxEntry.html" title="GtkComboBoxEntry">
11
+ <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
12
12
  <link rel="stylesheet" href="style.css" type="text/css">
13
13
  </head>
14
14
  <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
@@ -18,7 +18,7 @@
18
18
  <td><a accesskey="u" href="MenusAndCombos.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
19
  <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
20
  <th width="100%" align="center">GTK+ Reference Manual</th>
21
- <td><a accesskey="n" href="GtkComboBoxText.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
21
+ <td><a accesskey="n" href="GtkComboBoxEntry.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
22
  </tr>
23
23
  <tr><td colspan="5" class="shortcuts">
24
24
  <a href="#GtkComboBox.synopsis" class="shortcut">Top</a>
@@ -36,7 +36,7 @@
36
36
  <a href="#GtkComboBox.signals" class="shortcut">Signals</a>
37
37
  </td></tr>
38
38
  </table>
39
- <div class="refentry">
39
+ <div class="refentry" title="GtkComboBox">
40
40
  <a name="GtkComboBox"></a><div class="titlepage"></div>
41
41
  <div class="refnamediv"><table width="100%"><tr>
42
42
  <td valign="top">
@@ -45,17 +45,14 @@
45
45
  </td>
46
46
  <td valign="top" align="right"><img src="combo-box.png"></td>
47
47
  </tr></table></div>
48
- <div class="refsynopsisdiv">
48
+ <div class="refsynopsisdiv" title="Synopsis">
49
49
  <a name="GtkComboBox.synopsis"></a><h2>Synopsis</h2>
50
50
  <pre class="synopsis">
51
51
  #include &lt;gtk/gtk.h&gt;
52
52
 
53
- struct <a class="link" href="GtkComboBox.html#GtkComboBox-struct" title="struct GtkComboBox">GtkComboBox</a>;
53
+ <a class="link" href="GtkComboBox.html#GtkComboBox-struct" title="GtkComboBox">GtkComboBox</a>;
54
54
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-new" title="gtk_combo_box_new ()">gtk_combo_box_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
55
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-new-with-entry" title="gtk_combo_box_new_with_entry ()">gtk_combo_box_new_with_entry</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
56
55
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-new-with-model" title="gtk_combo_box_new_with_model ()">gtk_combo_box_new_with_model</a> (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);
57
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-new-with-model-and-entry" title="gtk_combo_box_new_with_model_and_entry ()">gtk_combo_box_new_with_model_and_entry</a>
58
- (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);
59
56
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-wrap-width" title="gtk_combo_box_get_wrap_width ()">gtk_combo_box_get_wrap_width</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
60
57
  <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-wrap-width" title="gtk_combo_box_set_wrap_width ()">gtk_combo_box_set_wrap_width</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
61
58
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>);
@@ -71,9 +68,9 @@ struct <a class="link" href="GtkComboBox.html#GtkComboBox-struct" t
71
68
  <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-active" title="gtk_combo_box_set_active ()">gtk_combo_box_set_active</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
72
69
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);
73
70
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-active-iter" title="gtk_combo_box_get_active_iter ()">gtk_combo_box_get_active_iter</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
74
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
71
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
75
72
  <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-active-iter" title="gtk_combo_box_set_active_iter ()">gtk_combo_box_set_active_iter</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
76
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
73
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);
77
74
  <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-get-model" title="gtk_combo_box_get_model ()">gtk_combo_box_get_model</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
78
75
  <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-model" title="gtk_combo_box_set_model ()">gtk_combo_box_set_model</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
79
76
  <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);
@@ -90,7 +87,7 @@ struct <a class="link" href="GtkComboBox.html#GtkComboBox-struct" t
90
87
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-get-active-text" title="gtk_combo_box_get_active_text ()">gtk_combo_box_get_active_text</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
91
88
  <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-popup" title="gtk_combo_box_popup ()">gtk_combo_box_popup</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
92
89
  <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-popdown" title="gtk_combo_box_popdown ()">gtk_combo_box_popdown</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
93
- <a href="/usr/share/gtk-doc/html/atk/AtkObject.html"><span class="returnvalue">AtkObject</span></a> * <a class="link" href="GtkComboBox.html#gtk-combo-box-get-popup-accessible" title="gtk_combo_box_get_popup_accessible ()">gtk_combo_box_get_popup_accessible</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
90
+ <a href="/usr/share/gtk-doc/html/atk/AtkObject.html"><span class="returnvalue">AtkObject</span></a>* <a class="link" href="GtkComboBox.html#gtk-combo-box-get-popup-accessible" title="gtk_combo_box_get_popup_accessible ()">gtk_combo_box_get_popup_accessible</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
94
91
  <a class="link" href="GtkTreeView.html#GtkTreeViewRowSeparatorFunc" title="GtkTreeViewRowSeparatorFunc ()"><span class="returnvalue">GtkTreeViewRowSeparatorFunc</span></a> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-row-separator-func" title="gtk_combo_box_get_row_separator_func ()">gtk_combo_box_get_row_separator_func</a>
95
92
  (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
96
93
  <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-row-separator-func" title="gtk_combo_box_set_row_separator_func ()">gtk_combo_box_set_row_separator_func</a>
@@ -112,13 +109,9 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
112
109
  <em class="parameter"><code><a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> sensitivity</code></em>);
113
110
  <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="returnvalue">GtkSensitivityType</span></a> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-button-sensitivity" title="gtk_combo_box_get_button_sensitivity ()">gtk_combo_box_get_button_sensitivity</a>
114
111
  (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
115
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-has-entry" title="gtk_combo_box_get_has_entry ()">gtk_combo_box_get_has_entry</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
116
- <span class="returnvalue">void</span> <a class="link" href="GtkComboBox.html#gtk-combo-box-set-entry-text-column" title="gtk_combo_box_set_entry_text_column ()">gtk_combo_box_set_entry_text_column</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
117
- <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> text_column</code></em>);
118
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkComboBox.html#gtk-combo-box-get-entry-text-column" title="gtk_combo_box_get_entry_text_column ()">gtk_combo_box_get_entry_text_column</a> (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);
119
112
  </pre>
120
113
  </div>
121
- <div class="refsect1">
114
+ <div class="refsect1" title="Object Hierarchy">
122
115
  <a name="GtkComboBox.object-hierarchy"></a><h2>Object Hierarchy</h2>
123
116
  <pre class="synopsis">
124
117
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -129,25 +122,22 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
129
122
  +----<a class="link" href="GtkBin.html" title="GtkBin">GtkBin</a>
130
123
  +----GtkComboBox
131
124
  +----<a class="link" href="GtkComboBoxEntry.html" title="GtkComboBoxEntry">GtkComboBoxEntry</a>
132
- +----<a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText">GtkComboBoxText</a>
133
125
  </pre>
134
126
  </div>
135
- <div class="refsect1">
127
+ <div class="refsect1" title="Implemented Interfaces">
136
128
  <a name="GtkComboBox.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
137
129
  <p>
138
130
  GtkComboBox implements
139
131
  AtkImplementorIface, <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>, <a class="link" href="GtkCellLayout.html" title="GtkCellLayout">GtkCellLayout</a> and <a class="link" href="GtkCellEditable.html" title="GtkCellEditable">GtkCellEditable</a>.</p>
140
132
  </div>
141
- <div class="refsect1">
133
+ <div class="refsect1" title="Properties">
142
134
  <a name="GtkComboBox.properties"></a><h2>Properties</h2>
143
135
  <pre class="synopsis">
144
136
  "<a class="link" href="GtkComboBox.html#GtkComboBox--active" title='The "active" property'>active</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
145
137
  "<a class="link" href="GtkComboBox.html#GtkComboBox--add-tearoffs" title='The "add-tearoffs" property'>add-tearoffs</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
146
138
  "<a class="link" href="GtkComboBox.html#GtkComboBox--button-sensitivity" title='The "button-sensitivity" property'>button-sensitivity</a>" <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> : Read / Write
147
139
  "<a class="link" href="GtkComboBox.html#GtkComboBox--column-span-column" title='The "column-span-column" property'>column-span-column</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
148
- "<a class="link" href="GtkComboBox.html#GtkComboBox--entry-text-column" title='The "entry-text-column" property'>entry-text-column</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
149
140
  "<a class="link" href="GtkComboBox.html#GtkComboBox--focus-on-click" title='The "focus-on-click" property'>focus-on-click</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
150
- "<a class="link" href="GtkComboBox.html#GtkComboBox--has-entry" title='The "has-entry" property'>has-entry</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write / Construct Only
151
141
  "<a class="link" href="GtkComboBox.html#GtkComboBox--has-frame" title='The "has-frame" property'>has-frame</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
152
142
  "<a class="link" href="GtkComboBox.html#GtkComboBox--model" title='The "model" property'>model</a>" <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>* : Read / Write
153
143
  "<a class="link" href="GtkComboBox.html#GtkComboBox--popup-shown" title='The "popup-shown" property'>popup-shown</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
@@ -156,7 +146,7 @@ GtkComboBox implements
156
146
  "<a class="link" href="GtkComboBox.html#GtkComboBox--wrap-width" title='The "wrap-width" property'>wrap-width</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
157
147
  </pre>
158
148
  </div>
159
- <div class="refsect1">
149
+ <div class="refsect1" title="Style Properties">
160
150
  <a name="GtkComboBox.style-properties"></a><h2>Style Properties</h2>
161
151
  <pre class="synopsis">
162
152
  "<a class="link" href="GtkComboBox.html#GtkComboBox--s-appears-as-list" title='The "appears-as-list" style property'>appears-as-list</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
@@ -164,46 +154,18 @@ GtkComboBox implements
164
154
  "<a class="link" href="GtkComboBox.html#GtkComboBox--s-shadow-type" title='The "shadow-type" style property'>shadow-type</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read
165
155
  </pre>
166
156
  </div>
167
- <div class="refsect1">
157
+ <div class="refsect1" title="Signals">
168
158
  <a name="GtkComboBox.signals"></a><h2>Signals</h2>
169
159
  <pre class="synopsis">
170
- "<a class="link" href="GtkComboBox.html#GtkComboBox-changed" title='The "changed" signal'>changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
171
- "<a class="link" href="GtkComboBox.html#GtkComboBox-move-active" title='The "move-active" signal'>move-active</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
172
- "<a class="link" href="GtkComboBox.html#GtkComboBox-popdown" title='The "popdown" signal'>popdown</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
173
- "<a class="link" href="GtkComboBox.html#GtkComboBox-popup" title='The "popup" signal'>popup</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
160
+ "<a class="link" href="GtkComboBox.html#GtkComboBox-changed" title='The "changed" signal'>changed</a>" : Run Last
161
+ "<a class="link" href="GtkComboBox.html#GtkComboBox-move-active" title='The "move-active" signal'>move-active</a>" : Run Last / Action
162
+ "<a class="link" href="GtkComboBox.html#GtkComboBox-popdown" title='The "popdown" signal'>popdown</a>" : Run Last / Action
163
+ "<a class="link" href="GtkComboBox.html#GtkComboBox-popup" title='The "popup" signal'>popup</a>" : Run Last / Action
174
164
  </pre>
175
165
  </div>
176
- <div class="refsect1">
166
+ <div class="refsect1" title="Description">
177
167
  <a name="GtkComboBox.description"></a><h2>Description</h2>
178
168
  <p>
179
- A GtkComboBox is a widget that allows the user to choose from a list of
180
- valid choices. The GtkComboBox displays the selected choice. When
181
- activated, the GtkComboBox displays a popup which allows the user to
182
- make a new choice. The style in which the selected value is displayed,
183
- and the style of the popup is determined by the current theme. It may
184
- be similar to a Windows-style combo box.
185
- </p>
186
- <p>
187
- The GtkComboBox uses the model-view pattern; the list of valid choices
188
- is specified in the form of a tree model, and the display of the choices
189
- can be adapted to the data in the model by using cell renderers, as you
190
- would in a tree view. This is possible since GtkComboBox implements the
191
- <a class="link" href="GtkCellLayout.html" title="GtkCellLayout"><span class="type">GtkCellLayout</span></a> interface. The tree model holding the valid choices is
192
- not restricted to a flat list, it can be a real tree, and the popup will
193
- reflect the tree structure.
194
- </p>
195
- <p>
196
- To allow the user to enter values not in the model, the 'has-entry'
197
- property allows the GtkComboBox to contain a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>. This entry
198
- can be accessed by calling <a class="link" href="GtkBin.html#gtk-bin-get-child" title="gtk_bin_get_child ()"><code class="function">gtk_bin_get_child()</code></a> on the combo box.
199
- </p>
200
- <p>
201
- For a simple list of textual choices, the model-view API of GtkComboBox
202
- can be a bit overwhelming. In this case, <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a> offers a
203
- simple alternative. Both GtkComboBox and <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a> can contain
204
- an entry.
205
- </p>
206
- <p>
207
169
  A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> is a widget that allows the user to choose from a
208
170
  list of valid choices. The <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> displays the selected
209
171
  choice. When activated, the <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> displays a popup
@@ -230,16 +192,16 @@ the data in a model. It consists of the functions <a class="link" href="GtkCombo
230
192
  <a class="link" href="GtkComboBox.html#gtk-combo-box-get-active-text" title="gtk_combo_box_get_active_text ()"><code class="function">gtk_combo_box_get_active_text()</code></a>.
231
193
  </p>
232
194
  </div>
233
- <div class="refsect1">
195
+ <div class="refsect1" title="Details">
234
196
  <a name="GtkComboBox.details"></a><h2>Details</h2>
235
- <div class="refsect2">
236
- <a name="GtkComboBox-struct"></a><h3>struct GtkComboBox</h3>
237
- <pre class="programlisting">struct GtkComboBox;</pre>
197
+ <div class="refsect2" title="GtkComboBox">
198
+ <a name="GtkComboBox-struct"></a><h3>GtkComboBox</h3>
199
+ <pre class="programlisting">typedef struct _GtkComboBox GtkComboBox;</pre>
238
200
  <p>
239
201
  </p>
240
202
  </div>
241
203
  <hr>
242
- <div class="refsect2">
204
+ <div class="refsect2" title="gtk_combo_box_new ()">
243
205
  <a name="gtk-combo-box-new"></a><h3>gtk_combo_box_new ()</h3>
244
206
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
245
207
  <p>
@@ -249,28 +211,15 @@ Creates a new empty <a class="link" href="GtkComboBox.html" title="GtkComboBox">
249
211
  <col align="left" valign="top">
250
212
  <tbody><tr>
251
213
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
252
- <td>A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
214
+ <td> A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.
215
+
216
+ </td>
253
217
  </tr></tbody>
254
218
  </table></div>
255
219
  <p class="since">Since 2.4</p>
256
220
  </div>
257
221
  <hr>
258
- <div class="refsect2">
259
- <a name="gtk-combo-box-new-with-entry"></a><h3>gtk_combo_box_new_with_entry ()</h3>
260
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new_with_entry (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
261
- <p>
262
- Creates a new empty <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> with an entry.
263
- </p>
264
- <div class="variablelist"><table border="0">
265
- <col align="left" valign="top">
266
- <tbody><tr>
267
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
268
- <td>A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
269
- </tr></tbody>
270
- </table></div>
271
- </div>
272
- <hr>
273
- <div class="refsect2">
222
+ <div class="refsect2" title="gtk_combo_box_new_with_model ()">
274
223
  <a name="gtk-combo-box-new-with-model"></a><h3>gtk_combo_box_new_with_model ()</h3>
275
224
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new_with_model (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
276
225
  <p>
@@ -281,36 +230,21 @@ Creates a new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span
281
230
  <tbody>
282
231
  <tr>
283
232
  <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
284
- <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.</td>
233
+ <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>.
234
+ </td>
285
235
  </tr>
286
236
  <tr>
287
237
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
288
- <td>A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
238
+ <td> A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.
239
+
240
+ </td>
289
241
  </tr>
290
242
  </tbody>
291
243
  </table></div>
292
244
  <p class="since">Since 2.4</p>
293
245
  </div>
294
246
  <hr>
295
- <div class="refsect2">
296
- <a name="gtk-combo-box-new-with-model-and-entry"></a><h3>gtk_combo_box_new_with_model_and_entry ()</h3>
297
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new_with_model_and_entry
298
- (<em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
299
- <p>
300
- Creates a new empty <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> with an entry
301
- and with the model initialized to <em class="parameter"><code>model</code></em>.
302
- </p>
303
- <div class="variablelist"><table border="0">
304
- <col align="left" valign="top">
305
- <tbody><tr>
306
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
307
- <td>A new <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
308
- </td>
309
- </tr></tbody>
310
- </table></div>
311
- </div>
312
- <hr>
313
- <div class="refsect2">
247
+ <div class="refsect2" title="gtk_combo_box_get_wrap_width ()">
314
248
  <a name="gtk-combo-box-get-wrap-width"></a><h3>gtk_combo_box_get_wrap_width ()</h3>
315
249
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_combo_box_get_wrap_width (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
316
250
  <p>
@@ -328,14 +262,16 @@ is in table mode.
328
262
  </tr>
329
263
  <tr>
330
264
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
331
- <td>the wrap width.</td>
265
+ <td> the wrap width.
266
+
267
+ </td>
332
268
  </tr>
333
269
  </tbody>
334
270
  </table></div>
335
271
  <p class="since">Since 2.6</p>
336
272
  </div>
337
273
  <hr>
338
- <div class="refsect2">
274
+ <div class="refsect2" title="gtk_combo_box_set_wrap_width ()">
339
275
  <a name="gtk-combo-box-set-wrap-width"></a><h3>gtk_combo_box_set_wrap_width ()</h3>
340
276
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_wrap_width (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
341
277
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>);</pre>
@@ -354,14 +290,15 @@ in a table.
354
290
  </tr>
355
291
  <tr>
356
292
  <td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
357
- <td>Preferred number of columns</td>
293
+ <td>Preferred number of columns
294
+ </td>
358
295
  </tr>
359
296
  </tbody>
360
297
  </table></div>
361
298
  <p class="since">Since 2.4</p>
362
299
  </div>
363
300
  <hr>
364
- <div class="refsect2">
301
+ <div class="refsect2" title="gtk_combo_box_get_row_span_column ()">
365
302
  <a name="gtk-combo-box-get-row-span-column"></a><h3>gtk_combo_box_get_row_span_column ()</h3>
366
303
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_combo_box_get_row_span_column (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
367
304
  <p>
@@ -377,14 +314,16 @@ Returns the column with row span information for <em class="parameter"><code>com
377
314
  </tr>
378
315
  <tr>
379
316
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
380
- <td>the row span column.</td>
317
+ <td> the row span column.
318
+
319
+ </td>
381
320
  </tr>
382
321
  </tbody>
383
322
  </table></div>
384
323
  <p class="since">Since 2.6</p>
385
324
  </div>
386
325
  <hr>
387
- <div class="refsect2">
326
+ <div class="refsect2" title="gtk_combo_box_set_row_span_column ()">
388
327
  <a name="gtk-combo-box-set-row-span-column"></a><h3>gtk_combo_box_set_row_span_column ()</h3>
389
328
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_row_span_column (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
390
329
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row_span</code></em>);</pre>
@@ -398,18 +337,20 @@ an item should span.
398
337
  <tbody>
399
338
  <tr>
400
339
  <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
401
- <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
340
+ <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.
341
+ </td>
402
342
  </tr>
403
343
  <tr>
404
344
  <td><p><span class="term"><em class="parameter"><code>row_span</code></em> :</span></p></td>
405
- <td>A column in the model passed during construction.</td>
345
+ <td>A column in the model passed during construction.
346
+ </td>
406
347
  </tr>
407
348
  </tbody>
408
349
  </table></div>
409
350
  <p class="since">Since 2.4</p>
410
351
  </div>
411
352
  <hr>
412
- <div class="refsect2">
353
+ <div class="refsect2" title="gtk_combo_box_get_column_span_column ()">
413
354
  <a name="gtk-combo-box-get-column-span-column"></a><h3>gtk_combo_box_get_column_span_column ()</h3>
414
355
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_combo_box_get_column_span_column
415
356
  (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
@@ -426,14 +367,16 @@ Returns the column with column span information for <em class="parameter"><code>
426
367
  </tr>
427
368
  <tr>
428
369
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
429
- <td>the column span column.</td>
370
+ <td> the column span column.
371
+
372
+ </td>
430
373
  </tr>
431
374
  </tbody>
432
375
  </table></div>
433
376
  <p class="since">Since 2.6</p>
434
377
  </div>
435
378
  <hr>
436
- <div class="refsect2">
379
+ <div class="refsect2" title="gtk_combo_box_set_column_span_column ()">
437
380
  <a name="gtk-combo-box-set-column-span-column"></a><h3>gtk_combo_box_set_column_span_column ()</h3>
438
381
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_column_span_column
439
382
  (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
@@ -453,14 +396,15 @@ how many columns an item should span.
453
396
  </tr>
454
397
  <tr>
455
398
  <td><p><span class="term"><em class="parameter"><code>column_span</code></em> :</span></p></td>
456
- <td>A column in the model passed during construction</td>
399
+ <td>A column in the model passed during construction
400
+ </td>
457
401
  </tr>
458
402
  </tbody>
459
403
  </table></div>
460
404
  <p class="since">Since 2.4</p>
461
405
  </div>
462
406
  <hr>
463
- <div class="refsect2">
407
+ <div class="refsect2" title="gtk_combo_box_get_active ()">
464
408
  <a name="gtk-combo-box-get-active"></a><h3>gtk_combo_box_get_active ()</h3>
465
409
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_combo_box_get_active (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
466
410
  <p>
@@ -468,7 +412,7 @@ Returns the index of the currently active item, or -1 if there's no
468
412
  active item. If the model is a non-flat treemodel, and the active item
469
413
  is not an immediate child of the root of the tree, this function returns
470
414
  <code class="literal">gtk_tree_path_get_indices (path)[0]</code>, where
471
- <code class="literal">path</code> is the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the active item.
415
+ <code class="literal">path</code> is the <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> of the active item.
472
416
  </p>
473
417
  <div class="variablelist"><table border="0">
474
418
  <col align="left" valign="top">
@@ -480,15 +424,17 @@ is not an immediate child of the root of the tree, this function returns
480
424
  </tr>
481
425
  <tr>
482
426
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
483
- <td>An integer which is the index of the currently active item,
484
- or -1 if there's no active item.</td>
427
+ <td> An integer which is the index of the currently active item,
428
+ or -1 if there's no active item.
429
+
430
+ </td>
485
431
  </tr>
486
432
  </tbody>
487
433
  </table></div>
488
434
  <p class="since">Since 2.4</p>
489
435
  </div>
490
436
  <hr>
491
- <div class="refsect2">
437
+ <div class="refsect2" title="gtk_combo_box_set_active ()">
492
438
  <a name="gtk-combo-box-set-active"></a><h3>gtk_combo_box_set_active ()</h3>
493
439
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_active (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
494
440
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> index_</code></em>);</pre>
@@ -506,17 +452,18 @@ Sets the active item of <em class="parameter"><code>combo_box</code></em> to be
506
452
  <tr>
507
453
  <td><p><span class="term"><em class="parameter"><code>index_</code></em> :</span></p></td>
508
454
  <td>An index in the model passed during construction, or -1 to have
509
- no active item</td>
455
+ no active item
456
+ </td>
510
457
  </tr>
511
458
  </tbody>
512
459
  </table></div>
513
460
  <p class="since">Since 2.4</p>
514
461
  </div>
515
462
  <hr>
516
- <div class="refsect2">
463
+ <div class="refsect2" title="gtk_combo_box_get_active_iter ()">
517
464
  <a name="gtk-combo-box-get-active-iter"></a><h3>gtk_combo_box_get_active_iter ()</h3>
518
465
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_combo_box_get_active_iter (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
519
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
466
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
520
467
  <p>
521
468
  Sets <em class="parameter"><code>iter</code></em> to point to the current active item, if it exists.
522
469
  </p>
@@ -530,23 +477,24 @@ Sets <em class="parameter"><code>iter</code></em> to point to the current active
530
477
  </tr>
531
478
  <tr>
532
479
  <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
533
- <td>The uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
480
+ <td> The uninitialized <a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
534
481
  </td>
535
482
  </tr>
536
483
  <tr>
537
484
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
538
- <td>
539
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em> was set</td>
485
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if <em class="parameter"><code>iter</code></em> was set
486
+
487
+ </td>
540
488
  </tr>
541
489
  </tbody>
542
490
  </table></div>
543
491
  <p class="since">Since 2.4</p>
544
492
  </div>
545
493
  <hr>
546
- <div class="refsect2">
494
+ <div class="refsect2" title="gtk_combo_box_set_active_iter ()">
547
495
  <a name="gtk-combo-box-set-active-iter"></a><h3>gtk_combo_box_set_active_iter ()</h3>
548
496
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_active_iter (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
549
- <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
497
+ <em class="parameter"><code><a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a> *iter</code></em>);</pre>
550
498
  <p>
551
499
  Sets the current active item to be the one referenced by <em class="parameter"><code>iter</code></em>, or
552
500
  unsets the active item if <em class="parameter"><code>iter</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
@@ -561,7 +509,7 @@ unsets the active item if <em class="parameter"><code>iter</code></em> is <a hre
561
509
  </tr>
562
510
  <tr>
563
511
  <td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
564
- <td>The <a class="link" href="GtkTreeModel.html#GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
512
+ <td> The <a class="link" href="GtkTreeModel.html#GtkTreeIter" title="GtkTreeIter"><span class="type">GtkTreeIter</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
565
513
  </td>
566
514
  </tr>
567
515
  </tbody>
@@ -569,7 +517,7 @@ unsets the active item if <em class="parameter"><code>iter</code></em> is <a hre
569
517
  <p class="since">Since 2.4</p>
570
518
  </div>
571
519
  <hr>
572
- <div class="refsect2">
520
+ <div class="refsect2" title="gtk_combo_box_get_model ()">
573
521
  <a name="gtk-combo-box-get-model"></a><h3>gtk_combo_box_get_model ()</h3>
574
522
  <pre class="programlisting"><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="returnvalue">GtkTreeModel</span></a> * gtk_combo_box_get_model (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
575
523
  <p>
@@ -585,8 +533,7 @@ Returns the <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span
585
533
  </tr>
586
534
  <tr>
587
535
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
588
- <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> which was passed
589
- during construction. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
536
+ <td> A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> which was passed during construction. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
590
537
  </td>
591
538
  </tr>
592
539
  </tbody>
@@ -594,7 +541,7 @@ during construction. <span class="annotation">[<acronym title="Don't free data a
594
541
  <p class="since">Since 2.4</p>
595
542
  </div>
596
543
  <hr>
597
- <div class="refsect2">
544
+ <div class="refsect2" title="gtk_combo_box_set_model ()">
598
545
  <a name="gtk-combo-box-set-model"></a><h3>gtk_combo_box_set_model ()</h3>
599
546
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_model (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
600
547
  <em class="parameter"><code><a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a> *model</code></em>);</pre>
@@ -617,7 +564,7 @@ cell renderers for the new model.
617
564
  </tr>
618
565
  <tr>
619
566
  <td><p><span class="term"><em class="parameter"><code>model</code></em> :</span></p></td>
620
- <td>A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
567
+ <td> A <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
621
568
  </td>
622
569
  </tr>
623
570
  </tbody>
@@ -625,13 +572,9 @@ cell renderers for the new model.
625
572
  <p class="since">Since 2.4</p>
626
573
  </div>
627
574
  <hr>
628
- <div class="refsect2">
575
+ <div class="refsect2" title="gtk_combo_box_new_text ()">
629
576
  <a name="gtk-combo-box-new-text"></a><h3>gtk_combo_box_new_text ()</h3>
630
577
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_combo_box_new_text (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
631
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
632
- <h3 class="title">Warning</h3>
633
- <p><code class="literal">gtk_combo_box_new_text</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a></p>
634
- </div>
635
578
  <p>
636
579
  Convenience function which constructs a new text combo box, which is a
637
580
  <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> just displaying strings. If you use this function to create
@@ -644,21 +587,17 @@ following convenience functions: <a class="link" href="GtkComboBox.html#gtk-comb
644
587
  <col align="left" valign="top">
645
588
  <tbody><tr>
646
589
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
647
- <td>A new text combo box. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
590
+ <td> A new text combo box. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
648
591
  </td>
649
592
  </tr></tbody>
650
593
  </table></div>
651
594
  <p class="since">Since 2.4</p>
652
595
  </div>
653
596
  <hr>
654
- <div class="refsect2">
597
+ <div class="refsect2" title="gtk_combo_box_append_text ()">
655
598
  <a name="gtk-combo-box-append-text"></a><h3>gtk_combo_box_append_text ()</h3>
656
599
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_append_text (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
657
600
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
658
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
659
- <h3 class="title">Warning</h3>
660
- <p><code class="literal">gtk_combo_box_append_text</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a></p>
661
- </div>
662
601
  <p>
663
602
  Appends <em class="parameter"><code>string</code></em> to the list of strings stored in <em class="parameter"><code>combo_box</code></em>. Note that
664
603
  you can only use this function with combo boxes constructed with
@@ -674,22 +613,19 @@ you can only use this function with combo boxes constructed with
674
613
  </tr>
675
614
  <tr>
676
615
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
677
- <td>A string</td>
616
+ <td>A string
617
+ </td>
678
618
  </tr>
679
619
  </tbody>
680
620
  </table></div>
681
621
  <p class="since">Since 2.4</p>
682
622
  </div>
683
623
  <hr>
684
- <div class="refsect2">
624
+ <div class="refsect2" title="gtk_combo_box_insert_text ()">
685
625
  <a name="gtk-combo-box-insert-text"></a><h3>gtk_combo_box_insert_text ()</h3>
686
626
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_insert_text (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
687
627
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>,
688
628
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
689
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
690
- <h3 class="title">Warning</h3>
691
- <p><code class="literal">gtk_combo_box_insert_text</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a></p>
692
- </div>
693
629
  <p>
694
630
  Inserts <em class="parameter"><code>string</code></em> at <em class="parameter"><code>position</code></em> in the list of strings stored in <em class="parameter"><code>combo_box</code></em>.
695
631
  Note that you can only use this function with combo boxes constructed
@@ -710,21 +646,18 @@ with <a class="link" href="GtkComboBox.html#gtk-combo-box-new-text" title="gtk_c
710
646
  </tr>
711
647
  <tr>
712
648
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
713
- <td>A string</td>
649
+ <td>A string
650
+ </td>
714
651
  </tr>
715
652
  </tbody>
716
653
  </table></div>
717
654
  <p class="since">Since 2.4</p>
718
655
  </div>
719
656
  <hr>
720
- <div class="refsect2">
657
+ <div class="refsect2" title="gtk_combo_box_prepend_text ()">
721
658
  <a name="gtk-combo-box-prepend-text"></a><h3>gtk_combo_box_prepend_text ()</h3>
722
659
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_prepend_text (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
723
660
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
724
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
725
- <h3 class="title">Warning</h3>
726
- <p><code class="literal">gtk_combo_box_prepend_text</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a></p>
727
- </div>
728
661
  <p>
729
662
  Prepends <em class="parameter"><code>string</code></em> to the list of strings stored in <em class="parameter"><code>combo_box</code></em>. Note that
730
663
  you can only use this function with combo boxes constructed with
@@ -740,21 +673,18 @@ you can only use this function with combo boxes constructed with
740
673
  </tr>
741
674
  <tr>
742
675
  <td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
743
- <td>A string</td>
676
+ <td>A string
677
+ </td>
744
678
  </tr>
745
679
  </tbody>
746
680
  </table></div>
747
681
  <p class="since">Since 2.4</p>
748
682
  </div>
749
683
  <hr>
750
- <div class="refsect2">
684
+ <div class="refsect2" title="gtk_combo_box_remove_text ()">
751
685
  <a name="gtk-combo-box-remove-text"></a><h3>gtk_combo_box_remove_text ()</h3>
752
686
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_remove_text (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
753
687
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> position</code></em>);</pre>
754
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
755
- <h3 class="title">Warning</h3>
756
- <p><code class="literal">gtk_combo_box_remove_text</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a></p>
757
- </div>
758
688
  <p>
759
689
  Removes the string at <em class="parameter"><code>position</code></em> from <em class="parameter"><code>combo_box</code></em>. Note that you can only use
760
690
  this function with combo boxes constructed with <a class="link" href="GtkComboBox.html#gtk-combo-box-new-text" title="gtk_combo_box_new_text ()"><code class="function">gtk_combo_box_new_text()</code></a>.
@@ -769,28 +699,20 @@ this function with combo boxes constructed with <a class="link" href="GtkComboBo
769
699
  </tr>
770
700
  <tr>
771
701
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
772
- <td>Index of the item to remove</td>
702
+ <td>Index of the item to remove
703
+ </td>
773
704
  </tr>
774
705
  </tbody>
775
706
  </table></div>
776
707
  <p class="since">Since 2.4</p>
777
708
  </div>
778
709
  <hr>
779
- <div class="refsect2">
710
+ <div class="refsect2" title="gtk_combo_box_get_active_text ()">
780
711
  <a name="gtk-combo-box-get-active-text"></a><h3>gtk_combo_box_get_active_text ()</h3>
781
712
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_combo_box_get_active_text (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
782
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
783
- <h3 class="title">Warning</h3>
784
- <p><code class="literal">gtk_combo_box_get_active_text</code> has been deprecated since version 2.24 and should not be used in newly-written code. If you used this with a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> constructed with
785
- <a class="link" href="GtkComboBox.html#gtk-combo-box-new-text" title="gtk_combo_box_new_text ()"><code class="function">gtk_combo_box_new_text()</code></a> then you should now use <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a> and
786
- <a class="link" href="GtkComboBoxText.html#gtk-combo-box-text-get-active-text" title="gtk_combo_box_text_get_active_text ()"><code class="function">gtk_combo_box_text_get_active_text()</code></a> instead. Or if you used this with a
787
- <a class="link" href="GtkComboBoxEntry.html" title="GtkComboBoxEntry"><span class="type">GtkComboBoxEntry</span></a> then you should now use <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> with
788
- <a class="link" href="GtkComboBox.html#GtkComboBox--has-entry" title='The "has-entry" property'><span class="type">"has-entry"</span></a> as <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> and use
789
- gtk_entry_get_text (GTK_ENTRY (gtk_bin_get_child (GTK_BIN (combobox))).</p>
790
- </div>
791
713
  <p>
792
714
  Returns the currently active string in <em class="parameter"><code>combo_box</code></em> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none
793
- is selected. Note that you can only use this function with combo
715
+ is selected. Note that you can only use this function with combo
794
716
  boxes constructed with <a class="link" href="GtkComboBox.html#gtk-combo-box-new-text" title="gtk_combo_box_new_text ()"><code class="function">gtk_combo_box_new_text()</code></a> and with
795
717
  <a class="link" href="GtkComboBoxEntry.html" title="GtkComboBoxEntry"><span class="type">GtkComboBoxEntry</span></a>s.
796
718
  </p>
@@ -804,15 +726,17 @@ boxes constructed with <a class="link" href="GtkComboBox.html#gtk-combo-box-new-
804
726
  </tr>
805
727
  <tr>
806
728
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
807
- <td>a newly allocated string containing the currently active text.
808
- Must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td>
729
+ <td> a newly allocated string containing the currently active text.
730
+ Must be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
731
+
732
+ </td>
809
733
  </tr>
810
734
  </tbody>
811
735
  </table></div>
812
736
  <p class="since">Since 2.6</p>
813
737
  </div>
814
738
  <hr>
815
- <div class="refsect2">
739
+ <div class="refsect2" title="gtk_combo_box_popup ()">
816
740
  <a name="gtk-combo-box-popup"></a><h3>gtk_combo_box_popup ()</h3>
817
741
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_popup (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
818
742
  <p>
@@ -833,7 +757,7 @@ applications should have little use for it.
833
757
  <p class="since">Since 2.4</p>
834
758
  </div>
835
759
  <hr>
836
- <div class="refsect2">
760
+ <div class="refsect2" title="gtk_combo_box_popdown ()">
837
761
  <a name="gtk-combo-box-popdown"></a><h3>gtk_combo_box_popdown ()</h3>
838
762
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_popdown (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
839
763
  <p>
@@ -854,9 +778,9 @@ applications should have little use for it.
854
778
  <p class="since">Since 2.4</p>
855
779
  </div>
856
780
  <hr>
857
- <div class="refsect2">
781
+ <div class="refsect2" title="gtk_combo_box_get_popup_accessible ()">
858
782
  <a name="gtk-combo-box-get-popup-accessible"></a><h3>gtk_combo_box_get_popup_accessible ()</h3>
859
- <pre class="programlisting"><a href="/usr/share/gtk-doc/html/atk/AtkObject.html"><span class="returnvalue">AtkObject</span></a> * gtk_combo_box_get_popup_accessible (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
783
+ <pre class="programlisting"><a href="/usr/share/gtk-doc/html/atk/AtkObject.html"><span class="returnvalue">AtkObject</span></a>* gtk_combo_box_get_popup_accessible (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
860
784
  <p>
861
785
  Gets the accessible object corresponding to the combo box's popup.
862
786
  </p>
@@ -874,8 +798,8 @@ applications should have little use for it.
874
798
  </tr>
875
799
  <tr>
876
800
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
877
- <td>the accessible object corresponding
878
- to the combo box's popup. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
801
+ <td> the accessible object corresponding to the combo box's popup.
802
+
879
803
  </td>
880
804
  </tr>
881
805
  </tbody>
@@ -883,7 +807,7 @@ to the combo box's popup. <span class="annotation">[<acronym title="Don't free d
883
807
  <p class="since">Since 2.6</p>
884
808
  </div>
885
809
  <hr>
886
- <div class="refsect2">
810
+ <div class="refsect2" title="gtk_combo_box_get_row_separator_func ()">
887
811
  <a name="gtk-combo-box-get-row-separator-func"></a><h3>gtk_combo_box_get_row_separator_func ()</h3>
888
812
  <pre class="programlisting"><a class="link" href="GtkTreeView.html#GtkTreeViewRowSeparatorFunc" title="GtkTreeViewRowSeparatorFunc ()"><span class="returnvalue">GtkTreeViewRowSeparatorFunc</span></a> gtk_combo_box_get_row_separator_func
889
813
  (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
@@ -900,14 +824,16 @@ Returns the current row separator function.
900
824
  </tr>
901
825
  <tr>
902
826
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
903
- <td>the current row separator function.</td>
827
+ <td> the current row separator function.
828
+
829
+ </td>
904
830
  </tr>
905
831
  </tbody>
906
832
  </table></div>
907
833
  <p class="since">Since 2.6</p>
908
834
  </div>
909
835
  <hr>
910
- <div class="refsect2">
836
+ <div class="refsect2" title="gtk_combo_box_set_row_separator_func ()">
911
837
  <a name="gtk-combo-box-set-row-separator-func"></a><h3>gtk_combo_box_set_row_separator_func ()</h3>
912
838
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_row_separator_func
913
839
  (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
@@ -934,12 +860,12 @@ function is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-
934
860
  </tr>
935
861
  <tr>
936
862
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
937
- <td>user data to pass to <em class="parameter"><code>func</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
863
+ <td> user data to pass to <em class="parameter"><code>func</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
938
864
  </td>
939
865
  </tr>
940
866
  <tr>
941
867
  <td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
942
- <td>destroy notifier for <em class="parameter"><code>data</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
868
+ <td> destroy notifier for <em class="parameter"><code>data</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
943
869
  </td>
944
870
  </tr>
945
871
  </tbody>
@@ -947,7 +873,7 @@ function is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-
947
873
  <p class="since">Since 2.6</p>
948
874
  </div>
949
875
  <hr>
950
- <div class="refsect2">
876
+ <div class="refsect2" title="gtk_combo_box_set_add_tearoffs ()">
951
877
  <a name="gtk-combo-box-set-add-tearoffs"></a><h3>gtk_combo_box_set_add_tearoffs ()</h3>
952
878
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_add_tearoffs (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
953
879
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> add_tearoffs</code></em>);</pre>
@@ -960,20 +886,21 @@ menu item.
960
886
  <tbody>
961
887
  <tr>
962
888
  <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
963
- <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
889
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
964
890
  </td>
965
891
  </tr>
966
892
  <tr>
967
893
  <td><p><span class="term"><em class="parameter"><code>add_tearoffs</code></em> :</span></p></td>
968
894
  <td>
969
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to add tearoff menu items</td>
895
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to add tearoff menu items
896
+ </td>
970
897
  </tr>
971
898
  </tbody>
972
899
  </table></div>
973
900
  <p class="since">Since 2.6</p>
974
901
  </div>
975
902
  <hr>
976
- <div class="refsect2">
903
+ <div class="refsect2" title="gtk_combo_box_get_add_tearoffs ()">
977
904
  <a name="gtk-combo-box-get-add-tearoffs"></a><h3>gtk_combo_box_get_add_tearoffs ()</h3>
978
905
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_combo_box_get_add_tearoffs (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
979
906
  <p>
@@ -989,13 +916,14 @@ Gets the current value of the :add-tearoffs property.
989
916
  </tr>
990
917
  <tr>
991
918
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
992
- <td>the current value of the :add-tearoffs property.</td>
919
+ <td> the current value of the :add-tearoffs property.
920
+ </td>
993
921
  </tr>
994
922
  </tbody>
995
923
  </table></div>
996
924
  </div>
997
925
  <hr>
998
- <div class="refsect2">
926
+ <div class="refsect2" title="gtk_combo_box_set_title ()">
999
927
  <a name="gtk-combo-box-set-title"></a><h3>gtk_combo_box_set_title ()</h3>
1000
928
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_title (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
1001
929
  <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *title</code></em>);</pre>
@@ -1007,19 +935,20 @@ Sets the menu's title in tearoff mode.
1007
935
  <tbody>
1008
936
  <tr>
1009
937
  <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1010
- <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
938
+ <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1011
939
  </td>
1012
940
  </tr>
1013
941
  <tr>
1014
942
  <td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
1015
- <td>a title for the menu in tearoff mode</td>
943
+ <td>a title for the menu in tearoff mode
944
+ </td>
1016
945
  </tr>
1017
946
  </tbody>
1018
947
  </table></div>
1019
948
  <p class="since">Since 2.10</p>
1020
949
  </div>
1021
950
  <hr>
1022
- <div class="refsect2">
951
+ <div class="refsect2" title="gtk_combo_box_get_title ()">
1023
952
  <a name="gtk-combo-box-get-title"></a><h3>gtk_combo_box_get_title ()</h3>
1024
953
  <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_combo_box_get_title (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
1025
954
  <p>
@@ -1036,15 +965,17 @@ Gets the current title of the menu in tearoff mode. See
1036
965
  </tr>
1037
966
  <tr>
1038
967
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1039
- <td>the menu's title in tearoff mode. This is an internal copy of the
1040
- string which must not be freed.</td>
968
+ <td> the menu's title in tearoff mode. This is an internal copy of the
969
+ string which must not be freed.
970
+
971
+ </td>
1041
972
  </tr>
1042
973
  </tbody>
1043
974
  </table></div>
1044
975
  <p class="since">Since 2.10</p>
1045
976
  </div>
1046
977
  <hr>
1047
- <div class="refsect2">
978
+ <div class="refsect2" title="gtk_combo_box_set_focus_on_click ()">
1048
979
  <a name="gtk-combo-box-set-focus-on-click"></a><h3>gtk_combo_box_set_focus_on_click ()</h3>
1049
980
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_focus_on_click (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo</code></em>,
1050
981
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> focus_on_click</code></em>);</pre>
@@ -1064,15 +995,16 @@ the main area of the application.
1064
995
  </tr>
1065
996
  <tr>
1066
997
  <td><p><span class="term"><em class="parameter"><code>focus_on_click</code></em> :</span></p></td>
1067
- <td>whether the combo box grabs focus when clicked
1068
- with the mouse</td>
998
+ <td>whether the combo box grabs focus when clicked
999
+ with the mouse
1000
+ </td>
1069
1001
  </tr>
1070
1002
  </tbody>
1071
1003
  </table></div>
1072
1004
  <p class="since">Since 2.6</p>
1073
1005
  </div>
1074
1006
  <hr>
1075
- <div class="refsect2">
1007
+ <div class="refsect2" title="gtk_combo_box_get_focus_on_click ()">
1076
1008
  <a name="gtk-combo-box-get-focus-on-click"></a><h3>gtk_combo_box_get_focus_on_click ()</h3>
1077
1009
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_combo_box_get_focus_on_click (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo</code></em>);</pre>
1078
1010
  <p>
@@ -1089,16 +1021,17 @@ with the mouse. See <a class="link" href="GtkComboBox.html#gtk-combo-box-set-foc
1089
1021
  </tr>
1090
1022
  <tr>
1091
1023
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1092
- <td>
1093
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the combo box grabs focus when it is
1094
- clicked with the mouse.</td>
1024
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the combo box grabs focus when it is
1025
+ clicked with the mouse.
1026
+
1027
+ </td>
1095
1028
  </tr>
1096
1029
  </tbody>
1097
1030
  </table></div>
1098
1031
  <p class="since">Since 2.6</p>
1099
1032
  </div>
1100
1033
  <hr>
1101
- <div class="refsect2">
1034
+ <div class="refsect2" title="gtk_combo_box_set_button_sensitivity ()">
1102
1035
  <a name="gtk-combo-box-set-button-sensitivity"></a><h3>gtk_combo_box_set_button_sensitivity ()</h3>
1103
1036
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_button_sensitivity
1104
1037
  (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
@@ -1118,14 +1051,15 @@ or only if there is at least one item to display (<a class="link" href="GtkRange
1118
1051
  </tr>
1119
1052
  <tr>
1120
1053
  <td><p><span class="term"><em class="parameter"><code>sensitivity</code></em> :</span></p></td>
1121
- <td>specify the sensitivity of the dropdown button</td>
1054
+ <td>specify the sensitivity of the dropdown button
1055
+ </td>
1122
1056
  </tr>
1123
1057
  </tbody>
1124
1058
  </table></div>
1125
1059
  <p class="since">Since 2.14</p>
1126
1060
  </div>
1127
1061
  <hr>
1128
- <div class="refsect2">
1062
+ <div class="refsect2" title="gtk_combo_box_get_button_sensitivity ()">
1129
1063
  <a name="gtk-combo-box-get-button-sensitivity"></a><h3>gtk_combo_box_get_button_sensitivity ()</h3>
1130
1064
  <pre class="programlisting"><a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="returnvalue">GtkSensitivityType</span></a> gtk_combo_box_get_button_sensitivity
1131
1065
  (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
@@ -1143,98 +1077,22 @@ sensitive or not when there are no items in the model.
1143
1077
  </tr>
1144
1078
  <tr>
1145
1079
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1146
- <td>
1147
- <a class="link" href="GtkRange.html#GTK-SENSITIVITY-ON:CAPS"><code class="literal">GTK_SENSITIVITY_ON</code></a> if the dropdown button
1148
- is sensitive when the model is empty, <a class="link" href="GtkRange.html#GTK-SENSITIVITY-OFF:CAPS"><code class="literal">GTK_SENSITIVITY_OFF</code></a>
1149
- if the button is always insensitive or
1150
- <a class="link" href="GtkRange.html#GTK-SENSITIVITY-AUTO:CAPS"><code class="literal">GTK_SENSITIVITY_AUTO</code></a> if it is only sensitive as long as
1151
- the model has one item to be selected.</td>
1152
- </tr>
1153
- </tbody>
1154
- </table></div>
1155
- <p class="since">Since 2.14</p>
1156
- </div>
1157
- <hr>
1158
- <div class="refsect2">
1159
- <a name="gtk-combo-box-get-has-entry"></a><h3>gtk_combo_box_get_has_entry ()</h3>
1160
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_combo_box_get_has_entry (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
1161
- <p>
1162
- Returns whether the combo box has an entry.
1163
- </p>
1164
- <div class="variablelist"><table border="0">
1165
- <col align="left" valign="top">
1166
- <tbody>
1167
- <tr>
1168
- <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1169
- <td>a <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1170
- </td>
1171
- </tr>
1172
- <tr>
1173
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1174
- <td>whether there is an entry in <em class="parameter"><code>combo_box</code></em>.</td>
1175
- </tr>
1176
- </tbody>
1177
- </table></div>
1178
- <p class="since">Since 2.24</p>
1179
- </div>
1180
- <hr>
1181
- <div class="refsect2">
1182
- <a name="gtk-combo-box-set-entry-text-column"></a><h3>gtk_combo_box_set_entry_text_column ()</h3>
1183
- <pre class="programlisting"><span class="returnvalue">void</span> gtk_combo_box_set_entry_text_column (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>,
1184
- <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> text_column</code></em>);</pre>
1185
- <p>
1186
- Sets the model column which <em class="parameter"><code>combo_box</code></em> should use to get strings from
1187
- to be <em class="parameter"><code>text_column</code></em>. The column <em class="parameter"><code>text_column</code></em> in the model of <em class="parameter"><code>combo_box</code></em>
1188
- must be of type <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Type-Information.html#G-TYPE-STRING:CAPS"><code class="literal">G_TYPE_STRING</code></a>.
1189
- </p>
1190
- <p>
1191
- This is only relevant if <em class="parameter"><code>combo_box</code></em> has been created with
1192
- <a class="link" href="GtkComboBox.html#GtkComboBox--has-entry" title='The "has-entry" property'><span class="type">"has-entry"</span></a> as <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.
1193
- </p>
1194
- <div class="variablelist"><table border="0">
1195
- <col align="left" valign="top">
1196
- <tbody>
1197
- <tr>
1198
- <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1199
- <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>
1080
+ <td> <a class="link" href="GtkRange.html#GTK-SENSITIVITY-ON:CAPS"><code class="literal">GTK_SENSITIVITY_ON</code></a> if the dropdown button
1081
+ is sensitive when the model is empty, <a class="link" href="GtkRange.html#GTK-SENSITIVITY-OFF:CAPS"><code class="literal">GTK_SENSITIVITY_OFF</code></a>
1082
+ if the button is always insensitive or
1083
+ <a class="link" href="GtkRange.html#GTK-SENSITIVITY-AUTO:CAPS"><code class="literal">GTK_SENSITIVITY_AUTO</code></a> if it is only sensitive as long as
1084
+ the model has one item to be selected.
1085
+
1200
1086
  </td>
1201
1087
  </tr>
1202
- <tr>
1203
- <td><p><span class="term"><em class="parameter"><code>text_column</code></em> :</span></p></td>
1204
- <td>A column in <em class="parameter"><code>model</code></em> to get the strings from for
1205
- the internal entry</td>
1206
- </tr>
1207
- </tbody>
1208
- </table></div>
1209
- <p class="since">Since 2.24</p>
1210
- </div>
1211
- <hr>
1212
- <div class="refsect2">
1213
- <a name="gtk-combo-box-get-entry-text-column"></a><h3>gtk_combo_box_get_entry_text_column ()</h3>
1214
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_combo_box_get_entry_text_column (<em class="parameter"><code><a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *combo_box</code></em>);</pre>
1215
- <p>
1216
- Returns the column which <em class="parameter"><code>combo_box</code></em> is using to get the strings
1217
- from to display in the internal entry.
1218
- </p>
1219
- <div class="variablelist"><table border="0">
1220
- <col align="left" valign="top">
1221
- <tbody>
1222
- <tr>
1223
- <td><p><span class="term"><em class="parameter"><code>combo_box</code></em> :</span></p></td>
1224
- <td>A <a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a>.</td>
1225
- </tr>
1226
- <tr>
1227
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1228
- <td>A column in the data source model of <em class="parameter"><code>combo_box</code></em>.</td>
1229
- </tr>
1230
1088
  </tbody>
1231
1089
  </table></div>
1232
- <p class="since">Since 2.24</p>
1090
+ <p class="since">Since 2.14</p>
1233
1091
  </div>
1234
1092
  </div>
1235
- <div class="refsect1">
1093
+ <div class="refsect1" title="Property Details">
1236
1094
  <a name="GtkComboBox.property-details"></a><h2>Property Details</h2>
1237
- <div class="refsect2">
1095
+ <div class="refsect2" title='The "active" property'>
1238
1096
  <a name="GtkComboBox--active"></a><h3>The <code class="literal">"active"</code> property</h3>
1239
1097
  <pre class="programlisting"> "active" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1240
1098
  <p>
@@ -1242,14 +1100,14 @@ The item which is currently active. If the model is a non-flat treemodel,
1242
1100
  and the active item is not an immediate child of the root of the tree,
1243
1101
  this property has the value
1244
1102
  <code class="literal">gtk_tree_path_get_indices (path)[0]</code>,
1245
- where <code class="literal">path</code> is the <a class="link" href="GtkTreeModel.html#GtkTreePath"><span class="type">GtkTreePath</span></a> of the active item.
1103
+ where <code class="literal">path</code> is the <a class="link" href="GtkTreeModel.html#GtkTreePath" title="GtkTreePath"><span class="type">GtkTreePath</span></a> of the active item.
1246
1104
  </p>
1247
1105
  <p>Allowed values: &gt;= G_MAXULONG</p>
1248
1106
  <p>Default value: -1</p>
1249
1107
  <p class="since">Since 2.4</p>
1250
1108
  </div>
1251
1109
  <hr>
1252
- <div class="refsect2">
1110
+ <div class="refsect2" title='The "add-tearoffs" property'>
1253
1111
  <a name="GtkComboBox--add-tearoffs"></a><h3>The <code class="literal">"add-tearoffs"</code> property</h3>
1254
1112
  <pre class="programlisting"> "add-tearoffs" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1255
1113
  <p>
@@ -1263,7 +1121,7 @@ Note that this only affects menu style combo boxes.
1263
1121
  <p class="since">Since 2.6</p>
1264
1122
  </div>
1265
1123
  <hr>
1266
- <div class="refsect2">
1124
+ <div class="refsect2" title='The "button-sensitivity" property'>
1267
1125
  <a name="GtkComboBox--button-sensitivity"></a><h3>The <code class="literal">"button-sensitivity"</code> property</h3>
1268
1126
  <pre class="programlisting"> "button-sensitivity" <a class="link" href="GtkRange.html#GtkSensitivityType" title="enum GtkSensitivityType"><span class="type">GtkSensitivityType</span></a> : Read / Write</pre>
1269
1127
  <p>
@@ -1274,7 +1132,7 @@ the model is empty.
1274
1132
  <p class="since">Since 2.14</p>
1275
1133
  </div>
1276
1134
  <hr>
1277
- <div class="refsect2">
1135
+ <div class="refsect2" title='The "column-span-column" property'>
1278
1136
  <a name="GtkComboBox--column-span-column"></a><h3>The <code class="literal">"column-span-column"</code> property</h3>
1279
1137
  <pre class="programlisting"> "column-span-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1280
1138
  <p>
@@ -1290,36 +1148,14 @@ in the list will span.
1290
1148
  <p class="since">Since 2.4</p>
1291
1149
  </div>
1292
1150
  <hr>
1293
- <div class="refsect2">
1294
- <a name="GtkComboBox--entry-text-column"></a><h3>The <code class="literal">"entry-text-column"</code> property</h3>
1295
- <pre class="programlisting"> "entry-text-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1296
- <p>
1297
- The column in the combo box's model to associate with strings from the entry
1298
- if the combo was created with <a class="link" href="GtkComboBox.html#GtkComboBox--has-entry" title='The "has-entry" property'><span class="type">"has-entry"</span></a> = <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.
1299
- </p>
1300
- <p>Allowed values: &gt;= G_MAXULONG</p>
1301
- <p>Default value: -1</p>
1302
- <p class="since">Since 2.24</p>
1303
- </div>
1304
- <hr>
1305
- <div class="refsect2">
1151
+ <div class="refsect2" title='The "focus-on-click" property'>
1306
1152
  <a name="GtkComboBox--focus-on-click"></a><h3>The <code class="literal">"focus-on-click"</code> property</h3>
1307
1153
  <pre class="programlisting"> "focus-on-click" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1308
1154
  <p>Whether the combo box grabs focus when it is clicked with the mouse.</p>
1309
1155
  <p>Default value: TRUE</p>
1310
1156
  </div>
1311
1157
  <hr>
1312
- <div class="refsect2">
1313
- <a name="GtkComboBox--has-entry"></a><h3>The <code class="literal">"has-entry"</code> property</h3>
1314
- <pre class="programlisting"> "has-entry" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write / Construct Only</pre>
1315
- <p>
1316
- Whether the combo box has an entry.
1317
- </p>
1318
- <p>Default value: FALSE</p>
1319
- <p class="since">Since 2.24</p>
1320
- </div>
1321
- <hr>
1322
- <div class="refsect2">
1158
+ <div class="refsect2" title='The "has-frame" property'>
1323
1159
  <a name="GtkComboBox--has-frame"></a><h3>The <code class="literal">"has-frame"</code> property</h3>
1324
1160
  <pre class="programlisting"> "has-frame" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1325
1161
  <p>
@@ -1330,7 +1166,7 @@ is drawn around the entry.
1330
1166
  <p class="since">Since 2.6</p>
1331
1167
  </div>
1332
1168
  <hr>
1333
- <div class="refsect2">
1169
+ <div class="refsect2" title='The "model" property'>
1334
1170
  <a name="GtkComboBox--model"></a><h3>The <code class="literal">"model"</code> property</h3>
1335
1171
  <pre class="programlisting"> "model" <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>* : Read / Write</pre>
1336
1172
  <p>
@@ -1340,7 +1176,7 @@ in the list.
1340
1176
  <p class="since">Since 2.4</p>
1341
1177
  </div>
1342
1178
  <hr>
1343
- <div class="refsect2">
1179
+ <div class="refsect2" title='The "popup-shown" property'>
1344
1180
  <a name="GtkComboBox--popup-shown"></a><h3>The <code class="literal">"popup-shown"</code> property</h3>
1345
1181
  <pre class="programlisting"> "popup-shown" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
1346
1182
  <p>
@@ -1352,7 +1188,7 @@ it allows you to connect to notify::popup-shown.
1352
1188
  <p class="since">Since 2.10</p>
1353
1189
  </div>
1354
1190
  <hr>
1355
- <div class="refsect2">
1191
+ <div class="refsect2" title='The "row-span-column" property'>
1356
1192
  <a name="GtkComboBox--row-span-column"></a><h3>The <code class="literal">"row-span-column"</code> property</h3>
1357
1193
  <pre class="programlisting"> "row-span-column" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1358
1194
  <p>
@@ -1369,7 +1205,7 @@ by this property must be greater than zero and not larger than wrap-width.
1369
1205
  <p class="since">Since 2.4</p>
1370
1206
  </div>
1371
1207
  <hr>
1372
- <div class="refsect2">
1208
+ <div class="refsect2" title='The "tearoff-title" property'>
1373
1209
  <a name="GtkComboBox--tearoff-title"></a><h3>The <code class="literal">"tearoff-title"</code> property</h3>
1374
1210
  <pre class="programlisting"> "tearoff-title" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1375
1211
  <p>
@@ -1380,7 +1216,7 @@ when the popup is torn-off.
1380
1216
  <p class="since">Since 2.10</p>
1381
1217
  </div>
1382
1218
  <hr>
1383
- <div class="refsect2">
1219
+ <div class="refsect2" title='The "wrap-width" property'>
1384
1220
  <a name="GtkComboBox--wrap-width"></a><h3>The <code class="literal">"wrap-width"</code> property</h3>
1385
1221
  <pre class="programlisting"> "wrap-width" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1386
1222
  <p>
@@ -1393,16 +1229,16 @@ determined by wrap-width.
1393
1229
  <p class="since">Since 2.4</p>
1394
1230
  </div>
1395
1231
  </div>
1396
- <div class="refsect1">
1232
+ <div class="refsect1" title="Style Property Details">
1397
1233
  <a name="GtkComboBox.style-property-details"></a><h2>Style Property Details</h2>
1398
- <div class="refsect2">
1234
+ <div class="refsect2" title='The "appears-as-list" style property'>
1399
1235
  <a name="GtkComboBox--s-appears-as-list"></a><h3>The <code class="literal">"appears-as-list"</code> style property</h3>
1400
1236
  <pre class="programlisting"> "appears-as-list" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
1401
1237
  <p>Whether dropdowns should look like lists rather than menus.</p>
1402
1238
  <p>Default value: FALSE</p>
1403
1239
  </div>
1404
1240
  <hr>
1405
- <div class="refsect2">
1241
+ <div class="refsect2" title='The "arrow-size" style property'>
1406
1242
  <a name="GtkComboBox--s-arrow-size"></a><h3>The <code class="literal">"arrow-size"</code> style property</h3>
1407
1243
  <pre class="programlisting"> "arrow-size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1408
1244
  <p>
@@ -1416,7 +1252,7 @@ by arrow size.
1416
1252
  <p class="since">Since 2.12</p>
1417
1253
  </div>
1418
1254
  <hr>
1419
- <div class="refsect2">
1255
+ <div class="refsect2" title='The "shadow-type" style property'>
1420
1256
  <a name="GtkComboBox--s-shadow-type"></a><h3>The <code class="literal">"shadow-type"</code> style property</h3>
1421
1257
  <pre class="programlisting"> "shadow-type" <a class="link" href="gtk-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read</pre>
1422
1258
  <p>
@@ -1426,12 +1262,12 @@ Which kind of shadow to draw around the combo box.
1426
1262
  <p class="since">Since 2.12</p>
1427
1263
  </div>
1428
1264
  </div>
1429
- <div class="refsect1">
1265
+ <div class="refsect1" title="Signal Details">
1430
1266
  <a name="GtkComboBox.signal-details"></a><h2>Signal Details</h2>
1431
- <div class="refsect2">
1267
+ <div class="refsect2" title='The "changed" signal'>
1432
1268
  <a name="GtkComboBox-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
1433
1269
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *widget,
1434
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
1270
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
1435
1271
  <p>
1436
1272
  The changed signal is emitted when the active
1437
1273
  item is changed. The can be due to the user selecting
@@ -1445,7 +1281,8 @@ as well as when selecting an item from the GtkComboBoxEntry's list.
1445
1281
  <tbody>
1446
1282
  <tr>
1447
1283
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1448
- <td>the object which received the signal</td>
1284
+ <td>the object which received the signal
1285
+ </td>
1449
1286
  </tr>
1450
1287
  <tr>
1451
1288
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1456,11 +1293,11 @@ as well as when selecting an item from the GtkComboBoxEntry's list.
1456
1293
  <p class="since">Since 2.4</p>
1457
1294
  </div>
1458
1295
  <hr>
1459
- <div class="refsect2">
1296
+ <div class="refsect2" title='The "move-active" signal'>
1460
1297
  <a name="GtkComboBox-move-active"></a><h3>The <code class="literal">"move-active"</code> signal</h3>
1461
1298
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *widget,
1462
1299
  <a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> scroll_type,
1463
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
1300
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
1464
1301
  <p>
1465
1302
  The ::move-active signal is a
1466
1303
  <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
@@ -1471,7 +1308,8 @@ which gets emitted to move the active selection.
1471
1308
  <tbody>
1472
1309
  <tr>
1473
1310
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1474
- <td>the object that received the signal</td>
1311
+ <td>the object that received the signal
1312
+ </td>
1475
1313
  </tr>
1476
1314
  <tr>
1477
1315
  <td><p><span class="term"><em class="parameter"><code>scroll_type</code></em> :</span></p></td>
@@ -1487,10 +1325,10 @@ which gets emitted to move the active selection.
1487
1325
  <p class="since">Since 2.12</p>
1488
1326
  </div>
1489
1327
  <hr>
1490
- <div class="refsect2">
1328
+ <div class="refsect2" title='The "popdown" signal'>
1491
1329
  <a name="GtkComboBox-popdown"></a><h3>The <code class="literal">"popdown"</code> signal</h3>
1492
1330
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *button,
1493
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
1331
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
1494
1332
  <p>
1495
1333
  The ::popdown signal is a
1496
1334
  <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
@@ -1504,7 +1342,8 @@ The default bindings for this signal are Alt+Up and Escape.
1504
1342
  <tbody>
1505
1343
  <tr>
1506
1344
  <td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
1507
- <td>the object which received the signal</td>
1345
+ <td>the object which received the signal
1346
+ </td>
1508
1347
  </tr>
1509
1348
  <tr>
1510
1349
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1515,10 +1354,10 @@ The default bindings for this signal are Alt+Up and Escape.
1515
1354
  <p class="since">Since 2.12</p>
1516
1355
  </div>
1517
1356
  <hr>
1518
- <div class="refsect2">
1357
+ <div class="refsect2" title='The "popup" signal'>
1519
1358
  <a name="GtkComboBox-popup"></a><h3>The <code class="literal">"popup"</code> signal</h3>
1520
1359
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkComboBox.html" title="GtkComboBox"><span class="type">GtkComboBox</span></a> *widget,
1521
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
1360
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
1522
1361
  <p>
1523
1362
  The ::popup signal is a
1524
1363
  <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
@@ -1532,7 +1371,8 @@ The default binding for this signal is Alt+Down.
1532
1371
  <tbody>
1533
1372
  <tr>
1534
1373
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1535
- <td>the object that received the signal</td>
1374
+ <td>the object that received the signal
1375
+ </td>
1536
1376
  </tr>
1537
1377
  <tr>
1538
1378
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1543,13 +1383,15 @@ The default binding for this signal is Alt+Down.
1543
1383
  <p class="since">Since 2.12</p>
1544
1384
  </div>
1545
1385
  </div>
1546
- <div class="refsect1">
1386
+ <div class="refsect1" title="See Also">
1547
1387
  <a name="GtkComboBox.see-also"></a><h2>See Also</h2>
1548
- <a class="link" href="GtkComboBoxText.html" title="GtkComboBoxText"><span class="type">GtkComboBoxText</span></a>, <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>
1388
+ <p>
1389
+ <a class="link" href="GtkComboBoxEntry.html" title="GtkComboBoxEntry"><span class="type">GtkComboBoxEntry</span></a>, <a class="link" href="GtkTreeModel.html" title="GtkTreeModel"><span class="type">GtkTreeModel</span></a>, <a class="link" href="GtkCellRenderer.html" title="GtkCellRenderer"><span class="type">GtkCellRenderer</span></a>
1390
+ </p>
1549
1391
  </div>
1550
1392
  </div>
1551
1393
  <div class="footer">
1552
1394
  <hr>
1553
- Generated by GTK-Doc V1.16.1</div>
1395
+ Generated by GTK-Doc V1.15</div>
1554
1396
  </body>
1555
1397
  </html>