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
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="MiscObjects.html" title="Miscellaneous">
9
9
  <link rel="prev" href="GtkHandleBox.html" title="GtkHandleBox">
10
10
  <link rel="next" href="GtkIMMulticontext.html" title="GtkIMMulticontext">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
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">
@@ -28,7 +28,7 @@
28
28
  <a href="#GtkIMContextSimple.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
29
  </td></tr>
30
30
  </table>
31
- <div class="refentry">
31
+ <div class="refentry" title="GtkIMContextSimple">
32
32
  <a name="GtkIMContextSimple"></a><div class="titlepage"></div>
33
33
  <div class="refnamediv"><table width="100%"><tr>
34
34
  <td valign="top">
@@ -37,12 +37,12 @@
37
37
  </td>
38
38
  <td valign="top" align="right"></td>
39
39
  </tr></table></div>
40
- <div class="refsynopsisdiv">
40
+ <div class="refsynopsisdiv" title="Synopsis">
41
41
  <a name="GtkIMContextSimple.synopsis"></a><h2>Synopsis</h2>
42
42
  <pre class="synopsis">
43
43
  #include &lt;gtk/gtk.h&gt;
44
44
 
45
- struct <a class="link" href="GtkIMContextSimple.html#GtkIMContextSimple-struct" title="struct GtkIMContextSimple">GtkIMContextSimple</a>;
45
+ <a class="link" href="GtkIMContextSimple.html#GtkIMContextSimple-struct" title="GtkIMContextSimple">GtkIMContextSimple</a>;
46
46
  <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> * <a class="link" href="GtkIMContextSimple.html#gtk-im-context-simple-new" title="gtk_im_context_simple_new ()">gtk_im_context_simple_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
47
47
  <span class="returnvalue">void</span> <a class="link" href="GtkIMContextSimple.html#gtk-im-context-simple-add-table" title="gtk_im_context_simple_add_table ()">gtk_im_context_simple_add_table</a> (<em class="parameter"><code><a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a> *context_simple</code></em>,
48
48
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> *data</code></em>,
@@ -51,7 +51,7 @@ struct <a class="link" href="GtkIMContextSimple.html#GtkIMContextSi
51
51
  #define <a class="link" href="GtkIMContextSimple.html#GTK-MAX-COMPOSE-LEN:CAPS" title="GTK_MAX_COMPOSE_LEN">GTK_MAX_COMPOSE_LEN</a>
52
52
  </pre>
53
53
  </div>
54
- <div class="refsect1">
54
+ <div class="refsect1" title="Object Hierarchy">
55
55
  <a name="GtkIMContextSimple.object-hierarchy"></a><h2>Object Hierarchy</h2>
56
56
  <pre class="synopsis">
57
57
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -59,21 +59,21 @@ struct <a class="link" href="GtkIMContextSimple.html#GtkIMContextSi
59
59
  +----GtkIMContextSimple
60
60
  </pre>
61
61
  </div>
62
- <div class="refsect1">
62
+ <div class="refsect1" title="Description">
63
63
  <a name="GtkIMContextSimple.description"></a><h2>Description</h2>
64
64
  <p>
65
65
  </p>
66
66
  </div>
67
- <div class="refsect1">
67
+ <div class="refsect1" title="Details">
68
68
  <a name="GtkIMContextSimple.details"></a><h2>Details</h2>
69
- <div class="refsect2">
70
- <a name="GtkIMContextSimple-struct"></a><h3>struct GtkIMContextSimple</h3>
71
- <pre class="programlisting">struct GtkIMContextSimple;</pre>
69
+ <div class="refsect2" title="GtkIMContextSimple">
70
+ <a name="GtkIMContextSimple-struct"></a><h3>GtkIMContextSimple</h3>
71
+ <pre class="programlisting">typedef struct _GtkIMContextSimple GtkIMContextSimple;</pre>
72
72
  <p>
73
73
  </p>
74
74
  </div>
75
75
  <hr>
76
- <div class="refsect2">
76
+ <div class="refsect2" title="gtk_im_context_simple_new ()">
77
77
  <a name="gtk-im-context-simple-new"></a><h3>gtk_im_context_simple_new ()</h3>
78
78
  <pre class="programlisting"><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> * gtk_im_context_simple_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
79
79
  <p>
@@ -83,12 +83,13 @@ Creates a new <a class="link" href="GtkIMContextSimple.html" title="GtkIMContext
83
83
  <col align="left" valign="top">
84
84
  <tbody><tr>
85
85
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
86
- <td>a new <a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a>.</td>
86
+ <td> a new <a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a>.
87
+ </td>
87
88
  </tr></tbody>
88
89
  </table></div>
89
90
  </div>
90
91
  <hr>
91
- <div class="refsect2">
92
+ <div class="refsect2" title="gtk_im_context_simple_add_table ()">
92
93
  <a name="gtk-im-context-simple-add-table"></a><h3>gtk_im_context_simple_add_table ()</h3>
93
94
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_im_context_simple_add_table (<em class="parameter"><code><a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a> *context_simple</code></em>,
94
95
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> *data</code></em>,
@@ -116,22 +117,25 @@ the length of the sequence should be zero.)
116
117
  </tr>
117
118
  <tr>
118
119
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
119
- <td>the table</td>
120
+ <td>the table
121
+ </td>
120
122
  </tr>
121
123
  <tr>
122
124
  <td><p><span class="term"><em class="parameter"><code>max_seq_len</code></em> :</span></p></td>
123
125
  <td>Maximum length of a sequence in the table
124
- (cannot be greater than <a class="link" href="GtkIMContextSimple.html#GTK-MAX-COMPOSE-LEN:CAPS" title="GTK_MAX_COMPOSE_LEN"><span class="type">GTK_MAX_COMPOSE_LEN</span></a>)</td>
126
+ (cannot be greater than <a class="link" href="GtkIMContextSimple.html#GTK-MAX-COMPOSE-LEN:CAPS" title="GTK_MAX_COMPOSE_LEN"><span class="type">GTK_MAX_COMPOSE_LEN</span></a>)
127
+ </td>
125
128
  </tr>
126
129
  <tr>
127
130
  <td><p><span class="term"><em class="parameter"><code>n_seqs</code></em> :</span></p></td>
128
- <td>number of sequences in the table</td>
131
+ <td>number of sequences in the table
132
+ </td>
129
133
  </tr>
130
134
  </tbody>
131
135
  </table></div>
132
136
  </div>
133
137
  <hr>
134
- <div class="refsect2">
138
+ <div class="refsect2" title="GTK_MAX_COMPOSE_LEN">
135
139
  <a name="GTK-MAX-COMPOSE-LEN:CAPS"></a><h3>GTK_MAX_COMPOSE_LEN</h3>
136
140
  <pre class="programlisting">#define GTK_MAX_COMPOSE_LEN 7
137
141
  </pre>
@@ -143,6 +147,6 @@ The maximum length of sequences in compose tables.
143
147
  </div>
144
148
  <div class="footer">
145
149
  <hr>
146
- Generated by GTK-Doc V1.16.1</div>
150
+ Generated by GTK-Doc V1.15</div>
147
151
  </body>
148
152
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="MiscObjects.html" title="Miscellaneous">
9
9
  <link rel="prev" href="GtkIMContextSimple.html" title="GtkIMContextSimple">
10
10
  <link rel="next" href="GtkSizeGroup.html" title="GtkSizeGroup">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
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">
@@ -28,7 +28,7 @@
28
28
  <a href="#GtkIMMulticontext.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
29
  </td></tr>
30
30
  </table>
31
- <div class="refentry">
31
+ <div class="refentry" title="GtkIMMulticontext">
32
32
  <a name="GtkIMMulticontext"></a><div class="titlepage"></div>
33
33
  <div class="refnamediv"><table width="100%"><tr>
34
34
  <td valign="top">
@@ -37,12 +37,12 @@
37
37
  </td>
38
38
  <td valign="top" align="right"></td>
39
39
  </tr></table></div>
40
- <div class="refsynopsisdiv">
40
+ <div class="refsynopsisdiv" title="Synopsis">
41
41
  <a name="GtkIMMulticontext.synopsis"></a><h2>Synopsis</h2>
42
42
  <pre class="synopsis">
43
43
  #include &lt;gtk/gtk.h&gt;
44
44
 
45
- struct <a class="link" href="GtkIMMulticontext.html#GtkIMMulticontext-struct" title="struct GtkIMMulticontext">GtkIMMulticontext</a>;
45
+ <a class="link" href="GtkIMMulticontext.html#GtkIMMulticontext-struct" title="GtkIMMulticontext">GtkIMMulticontext</a>;
46
46
  <a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> * <a class="link" href="GtkIMMulticontext.html#gtk-im-multicontext-new" title="gtk_im_multicontext_new ()">gtk_im_multicontext_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
47
47
  <span class="returnvalue">void</span> <a class="link" href="GtkIMMulticontext.html#gtk-im-multicontext-append-menuitems" title="gtk_im_multicontext_append_menuitems ()">gtk_im_multicontext_append_menuitems</a>
48
48
  (<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>,
@@ -52,7 +52,7 @@ const <span class="returnvalue">char</span> * <a class="link" href="GtkIM
52
52
  <em class="parameter"><code>const <span class="type">char</span> *context_id</code></em>);
53
53
  </pre>
54
54
  </div>
55
- <div class="refsect1">
55
+ <div class="refsect1" title="Object Hierarchy">
56
56
  <a name="GtkIMMulticontext.object-hierarchy"></a><h2>Object Hierarchy</h2>
57
57
  <pre class="synopsis">
58
58
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -60,21 +60,21 @@ const <span class="returnvalue">char</span> * <a class="link" href="GtkIM
60
60
  +----GtkIMMulticontext
61
61
  </pre>
62
62
  </div>
63
- <div class="refsect1">
63
+ <div class="refsect1" title="Description">
64
64
  <a name="GtkIMMulticontext.description"></a><h2>Description</h2>
65
65
  <p>
66
66
  </p>
67
67
  </div>
68
- <div class="refsect1">
68
+ <div class="refsect1" title="Details">
69
69
  <a name="GtkIMMulticontext.details"></a><h2>Details</h2>
70
- <div class="refsect2">
71
- <a name="GtkIMMulticontext-struct"></a><h3>struct GtkIMMulticontext</h3>
72
- <pre class="programlisting">struct GtkIMMulticontext;</pre>
70
+ <div class="refsect2" title="GtkIMMulticontext">
71
+ <a name="GtkIMMulticontext-struct"></a><h3>GtkIMMulticontext</h3>
72
+ <pre class="programlisting">typedef struct _GtkIMMulticontext GtkIMMulticontext;</pre>
73
73
  <p>
74
74
  </p>
75
75
  </div>
76
76
  <hr>
77
- <div class="refsect2">
77
+ <div class="refsect2" title="gtk_im_multicontext_new ()">
78
78
  <a name="gtk-im-multicontext-new"></a><h3>gtk_im_multicontext_new ()</h3>
79
79
  <pre class="programlisting"><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> * gtk_im_multicontext_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
80
80
  <p>
@@ -84,12 +84,13 @@ Creates a new <a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticon
84
84
  <col align="left" valign="top">
85
85
  <tbody><tr>
86
86
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
87
- <td>a new <a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a>.</td>
87
+ <td> a new <a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a>.
88
+ </td>
88
89
  </tr></tbody>
89
90
  </table></div>
90
91
  </div>
91
92
  <hr>
92
- <div class="refsect2">
93
+ <div class="refsect2" title="gtk_im_multicontext_append_menuitems ()">
93
94
  <a name="gtk-im-multicontext-append-menuitems"></a><h3>gtk_im_multicontext_append_menuitems ()</h3>
94
95
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_im_multicontext_append_menuitems
95
96
  (<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>,
@@ -116,7 +117,7 @@ for the context and the global default input method.
116
117
  </table></div>
117
118
  </div>
118
119
  <hr>
119
- <div class="refsect2">
120
+ <div class="refsect2" title="gtk_im_multicontext_get_context_id ()">
120
121
  <a name="gtk-im-multicontext-get-context-id"></a><h3>gtk_im_multicontext_get_context_id ()</h3>
121
122
  <pre class="programlisting">const <span class="returnvalue">char</span> * gtk_im_multicontext_get_context_id (<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>);</pre>
122
123
  <p>
@@ -132,14 +133,16 @@ Gets the id of the currently active slave of the <em class="parameter"><code>con
132
133
  </tr>
133
134
  <tr>
134
135
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
135
- <td>the id of the currently active slave</td>
136
+ <td> the id of the currently active slave
137
+
138
+ </td>
136
139
  </tr>
137
140
  </tbody>
138
141
  </table></div>
139
142
  <p class="since">Since 2.16</p>
140
143
  </div>
141
144
  <hr>
142
- <div class="refsect2">
145
+ <div class="refsect2" title="gtk_im_multicontext_set_context_id ()">
143
146
  <a name="gtk-im-multicontext-set-context-id"></a><h3>gtk_im_multicontext_set_context_id ()</h3>
144
147
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_im_multicontext_set_context_id (<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>,
145
148
  <em class="parameter"><code>const <span class="type">char</span> *context_id</code></em>);</pre>
@@ -160,7 +163,8 @@ replaced by the slave corresponding to the new context id.
160
163
  </tr>
161
164
  <tr>
162
165
  <td><p><span class="term"><em class="parameter"><code>context_id</code></em> :</span></p></td>
163
- <td>the id to use</td>
166
+ <td>the id to use
167
+ </td>
164
168
  </tr>
165
169
  </tbody>
166
170
  </table></div>
@@ -170,6 +174,6 @@ replaced by the slave corresponding to the new context id.
170
174
  </div>
171
175
  <div class="footer">
172
176
  <hr>
173
- Generated by GTK-Doc V1.16.1</div>
177
+ Generated by GTK-Doc V1.15</div>
174
178
  </body>
175
179
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="gtkbase.html" title="Part II. GTK+ Core Reference">
9
9
  <link rel="prev" href="gtk-Drag-and-Drop.html" title="Drag and Drop">
10
10
  <link rel="next" href="gtk-Stock-Items.html" title="Stock Items">
11
- <meta name="generator" content="GTK-Doc V1.16.1 (XML mode)">
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">
@@ -30,7 +30,7 @@
30
30
  <a href="#GtkIconTheme.signals" class="shortcut">Signals</a>
31
31
  </td></tr>
32
32
  </table>
33
- <div class="refentry">
33
+ <div class="refentry" title="GtkIconTheme">
34
34
  <a name="GtkIconTheme"></a><div class="titlepage"></div>
35
35
  <div class="refnamediv"><table width="100%"><tr>
36
36
  <td valign="top">
@@ -39,13 +39,13 @@
39
39
  </td>
40
40
  <td valign="top" align="right"></td>
41
41
  </tr></table></div>
42
- <div class="refsynopsisdiv">
42
+ <div class="refsynopsisdiv" title="Synopsis">
43
43
  <a name="GtkIconTheme.synopsis"></a><h2>Synopsis</h2>
44
44
  <pre class="synopsis">
45
45
  #include &lt;gtk/gtk.h&gt;
46
46
 
47
47
  <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo">GtkIconInfo</a>;
48
- struct <a class="link" href="GtkIconTheme.html#GtkIconTheme-struct" title="struct GtkIconTheme">GtkIconTheme</a>;
48
+ <a class="link" href="GtkIconTheme.html#GtkIconTheme-struct" title="GtkIconTheme">GtkIconTheme</a>;
49
49
  enum <a class="link" href="GtkIconTheme.html#GtkIconLookupFlags" title="enum GtkIconLookupFlags">GtkIconLookupFlags</a>;
50
50
  #define <a class="link" href="GtkIconTheme.html#GTK-ICON-THEME-ERROR:CAPS" title="GTK_ICON_THEME_ERROR">GTK_ICON_THEME_ERROR</a>
51
51
  enum <a class="link" href="GtkIconTheme.html#GtkIconThemeError" title="enum GtkIconThemeError">GtkIconThemeError</a>;
@@ -54,10 +54,16 @@ enum <a class="link" href="GtkIconTheme.html#GtkIconThemeError" t
54
54
  <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-for-screen" title="gtk_icon_theme_get_for_screen ()">gtk_icon_theme_get_for_screen</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
55
55
  <span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-screen" title="gtk_icon_theme_set_screen ()">gtk_icon_theme_set_screen</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
56
56
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
57
- #define <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path">gtk_icon_theme_set_search_path</a>
58
- #define <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-search-path" title="gtk_icon_theme_get_search_path">gtk_icon_theme_get_search_path</a>
59
- #define <a class="link" href="GtkIconTheme.html#gtk-icon-theme-append-search-path" title="gtk_icon_theme_append_search_path">gtk_icon_theme_append_search_path</a>
60
- #define <a class="link" href="GtkIconTheme.html#gtk-icon-theme-prepend-search-path" title="gtk_icon_theme_prepend_search_path">gtk_icon_theme_prepend_search_path</a>
57
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path ()">gtk_icon_theme_set_search_path</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
58
+ <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> *path[]</code></em>,
59
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_elements</code></em>);
60
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-search-path" title="gtk_icon_theme_get_search_path ()">gtk_icon_theme_get_search_path</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
61
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **path[]</code></em>,
62
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_elements</code></em>);
63
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-append-search-path" title="gtk_icon_theme_append_search_path ()">gtk_icon_theme_append_search_path</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
64
+ <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> *path</code></em>);
65
+ <span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-prepend-search-path" title="gtk_icon_theme_prepend_search_path ()">gtk_icon_theme_prepend_search_path</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
66
+ <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> *path</code></em>);
61
67
  <span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-custom-theme" title="gtk_icon_theme_set_custom_theme ()">gtk_icon_theme_set_custom_theme</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
62
68
  <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> *theme_name</code></em>);
63
69
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-has-icon" title="gtk_icon_theme_has_icon ()">gtk_icon_theme_has_icon</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
@@ -90,14 +96,14 @@ enum <a class="link" href="GtkIconTheme.html#GtkIconThemeError" t
90
96
  <span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-add-builtin-icon" title="gtk_icon_theme_add_builtin_icon ()">gtk_icon_theme_add_builtin_icon</a> (<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> *icon_name</code></em>,
91
97
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>,
92
98
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
93
- <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-copy" title="gtk_icon_info_copy ()">gtk_icon_info_copy</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
99
+ <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-copy" title="gtk_icon_info_copy ()">gtk_icon_info_copy</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
94
100
  <span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()">gtk_icon_info_free</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
95
- <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-new-for-pixbuf" title="gtk_icon_info_new_for_pixbuf ()">gtk_icon_info_new_for_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
101
+ <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-new-for-pixbuf" title="gtk_icon_info_new_for_pixbuf ()">gtk_icon_info_new_for_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
96
102
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
97
103
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-base-size" title="gtk_icon_info_get_base_size ()">gtk_icon_info_get_base_size</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
98
- #define <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename">gtk_icon_info_get_filename</a>
99
- <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()">gtk_icon_info_get_builtin_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
100
- <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()">gtk_icon_info_load_icon</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
104
+ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename ()">gtk_icon_info_get_filename</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
105
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()">gtk_icon_info_get_builtin_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
106
+ <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()">gtk_icon_info_load_icon</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
101
107
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);
102
108
  <span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-info-set-raw-coordinates" title="gtk_icon_info_set_raw_coordinates ()">gtk_icon_info_set_raw_coordinates</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
103
109
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> raw_coordinates</code></em>);
@@ -109,20 +115,20 @@ enum <a class="link" href="GtkIconTheme.html#GtkIconThemeError" t
109
115
  const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-display-name" title="gtk_icon_info_get_display_name ()">gtk_icon_info_get_display_name</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
110
116
  </pre>
111
117
  </div>
112
- <div class="refsect1">
118
+ <div class="refsect1" title="Object Hierarchy">
113
119
  <a name="GtkIconTheme.object-hierarchy"></a><h2>Object Hierarchy</h2>
114
120
  <pre class="synopsis">
115
121
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
116
122
  +----GtkIconTheme
117
123
  </pre>
118
124
  </div>
119
- <div class="refsect1">
125
+ <div class="refsect1" title="Signals">
120
126
  <a name="GtkIconTheme.signals"></a><h2>Signals</h2>
121
127
  <pre class="synopsis">
122
- "<a class="link" href="GtkIconTheme.html#GtkIconTheme-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>
128
+ "<a class="link" href="GtkIconTheme.html#GtkIconTheme-changed" title='The "changed" signal'>changed</a>" : Run Last
123
129
  </pre>
124
130
  </div>
125
- <div class="refsect1">
131
+ <div class="refsect1" title="Description">
126
132
  <a name="GtkIconTheme.description"></a><h2>Description</h2>
127
133
  <p>
128
134
  <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> provides a facility for looking up icons by name
@@ -230,9 +236,9 @@ being used, looking up an icon can be as simple as:
230
236
  </div>
231
237
 
232
238
  </div>
233
- <div class="refsect1">
239
+ <div class="refsect1" title="Details">
234
240
  <a name="GtkIconTheme.details"></a><h2>Details</h2>
235
- <div class="refsect2">
241
+ <div class="refsect2" title="GtkIconInfo">
236
242
  <a name="GtkIconInfo"></a><h3>GtkIconInfo</h3>
237
243
  <pre class="programlisting">typedef struct _GtkIconInfo GtkIconInfo;</pre>
238
244
  <p>
@@ -241,9 +247,9 @@ an icon theme.
241
247
  </p>
242
248
  </div>
243
249
  <hr>
244
- <div class="refsect2">
245
- <a name="GtkIconTheme-struct"></a><h3>struct GtkIconTheme</h3>
246
- <pre class="programlisting">struct GtkIconTheme;</pre>
250
+ <div class="refsect2" title="GtkIconTheme">
251
+ <a name="GtkIconTheme-struct"></a><h3>GtkIconTheme</h3>
252
+ <pre class="programlisting">typedef struct _GtkIconTheme GtkIconTheme;</pre>
247
253
  <p>
248
254
  Acts as a database of information about an icon theme.
249
255
  Normally, you retrieve the icon theme for a particular
@@ -255,7 +261,7 @@ object and set the icon theme name explicitely using
255
261
  </p>
256
262
  </div>
257
263
  <hr>
258
- <div class="refsect2">
264
+ <div class="refsect2" title="enum GtkIconLookupFlags">
259
265
  <a name="GtkIconLookupFlags"></a><h3>enum GtkIconLookupFlags</h3>
260
266
  <pre class="programlisting">typedef enum
261
267
  {
@@ -289,7 +295,7 @@ Used to specify options for <a class="link" href="GtkIconTheme.html#gtk-icon-the
289
295
  <td><p><a name="GTK-ICON-LOOKUP-USE-BUILTIN:CAPS"></a><span class="term"><code class="literal">GTK_ICON_LOOKUP_USE_BUILTIN</code></span></p></td>
290
296
  <td>When passed to
291
297
  <a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()"><code class="function">gtk_icon_theme_lookup_icon()</code></a> includes builtin icons
292
- as well as files. For a builtin icon, <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename"><code class="function">gtk_icon_info_get_filename()</code></a>
298
+ as well as files. For a builtin icon, <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename ()"><code class="function">gtk_icon_info_get_filename()</code></a>
293
299
  returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> and you need to call <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()"><code class="function">gtk_icon_info_get_builtin_pixbuf()</code></a>.
294
300
  </td>
295
301
  </tr>
@@ -310,7 +316,7 @@ Used to specify options for <a class="link" href="GtkIconTheme.html#gtk-icon-the
310
316
  </table></div>
311
317
  </div>
312
318
  <hr>
313
- <div class="refsect2">
319
+ <div class="refsect2" title="GTK_ICON_THEME_ERROR">
314
320
  <a name="GTK-ICON-THEME-ERROR:CAPS"></a><h3>GTK_ICON_THEME_ERROR</h3>
315
321
  <pre class="programlisting">#define GTK_ICON_THEME_ERROR gtk_icon_theme_error_quark ()
316
322
  </pre>
@@ -319,7 +325,7 @@ The <a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuar
319
325
  </p>
320
326
  </div>
321
327
  <hr>
322
- <div class="refsect2">
328
+ <div class="refsect2" title="enum GtkIconThemeError">
323
329
  <a name="GtkIconThemeError"></a><h3>enum GtkIconThemeError</h3>
324
330
  <pre class="programlisting">typedef enum {
325
331
  GTK_ICON_THEME_NOT_FOUND,
@@ -346,7 +352,7 @@ Error codes for GtkIconTheme operations.
346
352
  </table></div>
347
353
  </div>
348
354
  <hr>
349
- <div class="refsect2">
355
+ <div class="refsect2" title="gtk_icon_theme_new ()">
350
356
  <a name="gtk-icon-theme-new"></a><h3>gtk_icon_theme_new ()</h3>
351
357
  <pre class="programlisting"><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * gtk_icon_theme_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
352
358
  <p>
@@ -360,13 +366,15 @@ a new icon theme object for scratch.
360
366
  <col align="left" valign="top">
361
367
  <tbody><tr>
362
368
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
363
- <td>the newly created <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> object.</td>
369
+ <td> the newly created <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> object.
370
+
371
+ </td>
364
372
  </tr></tbody>
365
373
  </table></div>
366
374
  <p class="since">Since 2.4</p>
367
375
  </div>
368
376
  <hr>
369
- <div class="refsect2">
377
+ <div class="refsect2" title="gtk_icon_theme_get_default ()">
370
378
  <a name="gtk-icon-theme-get-default"></a><h3>gtk_icon_theme_get_default ()</h3>
371
379
  <pre class="programlisting"><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * gtk_icon_theme_get_default (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
372
380
  <p>
@@ -377,17 +385,17 @@ Gets the icon theme for the default screen. See
377
385
  <col align="left" valign="top">
378
386
  <tbody><tr>
379
387
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
380
- <td>A unique <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> associated with
381
- the default screen. This icon theme is associated with
382
- the screen and can be used as long as the screen
383
- is open. Do not ref or unref it. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
388
+ <td> A unique <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> associated with
389
+ the default screen. This icon theme is associated with
390
+ the screen and can be used as long as the screen
391
+ is open. Do not ref or unref it. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
384
392
  </td>
385
393
  </tr></tbody>
386
394
  </table></div>
387
395
  <p class="since">Since 2.4</p>
388
396
  </div>
389
397
  <hr>
390
- <div class="refsect2">
398
+ <div class="refsect2" title="gtk_icon_theme_get_for_screen ()">
391
399
  <a name="gtk-icon-theme-get-for-screen"></a><h3>gtk_icon_theme_get_for_screen ()</h3>
392
400
  <pre class="programlisting"><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * gtk_icon_theme_get_for_screen (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
393
401
  <p>
@@ -410,10 +418,10 @@ a single icon theme object will be shared between users.
410
418
  </tr>
411
419
  <tr>
412
420
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
413
- <td>A unique <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> associated with
414
- the given screen. This icon theme is associated with
415
- the screen and can be used as long as the screen
416
- is open. Do not ref or unref it. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
421
+ <td> A unique <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> associated with
422
+ the given screen. This icon theme is associated with
423
+ the screen and can be used as long as the screen
424
+ is open. Do not ref or unref it. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
417
425
  </td>
418
426
  </tr>
419
427
  </tbody>
@@ -421,7 +429,7 @@ is open. Do not ref or unref it. <span class="annotation">[<acronym title="Don't
421
429
  <p class="since">Since 2.4</p>
422
430
  </div>
423
431
  <hr>
424
- <div class="refsect2">
432
+ <div class="refsect2" title="gtk_icon_theme_set_screen ()">
425
433
  <a name="gtk-icon-theme-set-screen"></a><h3>gtk_icon_theme_set_screen ()</h3>
426
434
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_theme_set_screen (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
427
435
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
@@ -448,10 +456,11 @@ which might be different for different screens.
448
456
  <p class="since">Since 2.4</p>
449
457
  </div>
450
458
  <hr>
451
- <div class="refsect2">
452
- <a name="gtk-icon-theme-set-search-path"></a><h3>gtk_icon_theme_set_search_path</h3>
453
- <pre class="programlisting">#define gtk_icon_theme_set_search_path gtk_icon_theme_set_search_path_utf8
454
- </pre>
459
+ <div class="refsect2" title="gtk_icon_theme_set_search_path ()">
460
+ <a name="gtk-icon-theme-set-search-path"></a><h3>gtk_icon_theme_set_search_path ()</h3>
461
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_theme_set_search_path (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
462
+ <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> *path[]</code></em>,
463
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_elements</code></em>);</pre>
455
464
  <p>
456
465
  Sets the search path for the icon theme object. When looking
457
466
  for an icon theme, GTK+ will search for a subdirectory of
@@ -479,23 +488,26 @@ rather than directly on the icon path.)
479
488
  </tr>
480
489
  <tr>
481
490
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
482
- <td>array of directories that are searched for icon themes</td>
491
+ <td>array of directories that are searched for icon themes
492
+ </td>
483
493
  </tr>
484
494
  <tr>
485
495
  <td><p><span class="term"><em class="parameter"><code>n_elements</code></em> :</span></p></td>
486
- <td>number of elements in <em class="parameter"><code>path</code></em>.</td>
496
+ <td>number of elements in <em class="parameter"><code>path</code></em>.
497
+ </td>
487
498
  </tr>
488
499
  </tbody>
489
500
  </table></div>
490
501
  <p class="since">Since 2.4</p>
491
502
  </div>
492
503
  <hr>
493
- <div class="refsect2">
494
- <a name="gtk-icon-theme-get-search-path"></a><h3>gtk_icon_theme_get_search_path</h3>
495
- <pre class="programlisting">#define gtk_icon_theme_get_search_path gtk_icon_theme_get_search_path_utf8
496
- </pre>
504
+ <div class="refsect2" title="gtk_icon_theme_get_search_path ()">
505
+ <a name="gtk-icon-theme-get-search-path"></a><h3>gtk_icon_theme_get_search_path ()</h3>
506
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_theme_get_search_path (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
507
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **path[]</code></em>,
508
+ <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_elements</code></em>);</pre>
497
509
  <p>
498
- Gets the current search path. See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path"><code class="function">gtk_icon_theme_set_search_path()</code></a>.
510
+ Gets the current search path. See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path ()"><code class="function">gtk_icon_theme_set_search_path()</code></a>.
499
511
  </p>
500
512
  <div class="variablelist"><table border="0">
501
513
  <col align="left" valign="top">
@@ -507,14 +519,14 @@ Gets the current search path. See <a class="link" href="GtkIconTheme.html#gtk-ic
507
519
  </tr>
508
520
  <tr>
509
521
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
510
- <td>(array length=n_elements) (out): location to store a list of icon theme path directories or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
511
- The stored value should be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
522
+ <td> location to store a list of icon theme path directories or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
523
+ The stored value should be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
512
524
  </td>
513
525
  </tr>
514
526
  <tr>
515
527
  <td><p><span class="term"><em class="parameter"><code>n_elements</code></em> :</span></p></td>
516
528
  <td>location to store number of elements
517
- in <em class="parameter"><code>path</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
529
+ in <em class="parameter"><code>path</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
518
530
  </td>
519
531
  </tr>
520
532
  </tbody>
@@ -522,13 +534,13 @@ in <em class="parameter"><code>path</code></em>, or <a href="http://library.gnom
522
534
  <p class="since">Since 2.4</p>
523
535
  </div>
524
536
  <hr>
525
- <div class="refsect2">
526
- <a name="gtk-icon-theme-append-search-path"></a><h3>gtk_icon_theme_append_search_path</h3>
527
- <pre class="programlisting">#define gtk_icon_theme_append_search_path gtk_icon_theme_append_search_path_utf8
528
- </pre>
537
+ <div class="refsect2" title="gtk_icon_theme_append_search_path ()">
538
+ <a name="gtk-icon-theme-append-search-path"></a><h3>gtk_icon_theme_append_search_path ()</h3>
539
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_theme_append_search_path (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
540
+ <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> *path</code></em>);</pre>
529
541
  <p>
530
542
  Appends a directory to the search path.
531
- See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path"><code class="function">gtk_icon_theme_set_search_path()</code></a>.
543
+ See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path ()"><code class="function">gtk_icon_theme_set_search_path()</code></a>.
532
544
  </p>
533
545
  <div class="variablelist"><table border="0">
534
546
  <col align="left" valign="top">
@@ -540,20 +552,21 @@ See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" titl
540
552
  </tr>
541
553
  <tr>
542
554
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
543
- <td>directory name to append to the icon path</td>
555
+ <td>directory name to append to the icon path
556
+ </td>
544
557
  </tr>
545
558
  </tbody>
546
559
  </table></div>
547
560
  <p class="since">Since 2.4</p>
548
561
  </div>
549
562
  <hr>
550
- <div class="refsect2">
551
- <a name="gtk-icon-theme-prepend-search-path"></a><h3>gtk_icon_theme_prepend_search_path</h3>
552
- <pre class="programlisting">#define gtk_icon_theme_prepend_search_path gtk_icon_theme_prepend_search_path_utf8
553
- </pre>
563
+ <div class="refsect2" title="gtk_icon_theme_prepend_search_path ()">
564
+ <a name="gtk-icon-theme-prepend-search-path"></a><h3>gtk_icon_theme_prepend_search_path ()</h3>
565
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_theme_prepend_search_path (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
566
+ <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> *path</code></em>);</pre>
554
567
  <p>
555
568
  Prepends a directory to the search path.
556
- See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path"><code class="function">gtk_icon_theme_set_search_path()</code></a>.
569
+ See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path ()"><code class="function">gtk_icon_theme_set_search_path()</code></a>.
557
570
  </p>
558
571
  <div class="variablelist"><table border="0">
559
572
  <col align="left" valign="top">
@@ -565,14 +578,15 @@ See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" titl
565
578
  </tr>
566
579
  <tr>
567
580
  <td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
568
- <td>directory name to prepend to the icon path</td>
581
+ <td>directory name to prepend to the icon path
582
+ </td>
569
583
  </tr>
570
584
  </tbody>
571
585
  </table></div>
572
586
  <p class="since">Since 2.4</p>
573
587
  </div>
574
588
  <hr>
575
- <div class="refsect2">
589
+ <div class="refsect2" title="gtk_icon_theme_set_custom_theme ()">
576
590
  <a name="gtk-icon-theme-set-custom-theme"></a><h3>gtk_icon_theme_set_custom_theme ()</h3>
577
591
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_theme_set_custom_theme (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
578
592
  <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> *theme_name</code></em>);</pre>
@@ -593,14 +607,15 @@ and <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-for-screen" title
593
607
  <tr>
594
608
  <td><p><span class="term"><em class="parameter"><code>theme_name</code></em> :</span></p></td>
595
609
  <td>name of icon theme to use instead of configured theme,
596
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to unset a previously set custom theme</td>
610
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to unset a previously set custom theme
611
+ </td>
597
612
  </tr>
598
613
  </tbody>
599
614
  </table></div>
600
615
  <p class="since">Since 2.4</p>
601
616
  </div>
602
617
  <hr>
603
- <div class="refsect2">
618
+ <div class="refsect2" title="gtk_icon_theme_has_icon ()">
604
619
  <a name="gtk-icon-theme-has-icon"></a><h3>gtk_icon_theme_has_icon ()</h3>
605
620
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_icon_theme_has_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
606
621
  <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> *icon_name</code></em>);</pre>
@@ -618,20 +633,22 @@ for a particular name.
618
633
  </tr>
619
634
  <tr>
620
635
  <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
621
- <td>the name of an icon</td>
636
+ <td>the name of an icon
637
+ </td>
622
638
  </tr>
623
639
  <tr>
624
640
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
625
- <td>
626
- <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>icon_theme</code></em> includes an
627
- icon for <em class="parameter"><code>icon_name</code></em>.</td>
641
+ <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>icon_theme</code></em> includes an
642
+ icon for <em class="parameter"><code>icon_name</code></em>.
643
+
644
+ </td>
628
645
  </tr>
629
646
  </tbody>
630
647
  </table></div>
631
648
  <p class="since">Since 2.4</p>
632
649
  </div>
633
650
  <hr>
634
- <div class="refsect2">
651
+ <div class="refsect2" title="gtk_icon_theme_lookup_icon ()">
635
652
  <a name="gtk-icon-theme-lookup-icon"></a><h3>gtk_icon_theme_lookup_icon ()</h3>
636
653
  <pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_theme_lookup_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
637
654
  <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> *icon_name</code></em>,
@@ -654,21 +671,25 @@ combines these two steps if all you need is the pixbuf.)
654
671
  </tr>
655
672
  <tr>
656
673
  <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
657
- <td>the name of the icon to lookup</td>
674
+ <td>the name of the icon to lookup
675
+ </td>
658
676
  </tr>
659
677
  <tr>
660
678
  <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
661
- <td>desired icon size</td>
679
+ <td>desired icon size
680
+ </td>
662
681
  </tr>
663
682
  <tr>
664
683
  <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
665
- <td>flags modifying the behavior of the icon lookup</td>
684
+ <td>flags modifying the behavior of the icon lookup
685
+ </td>
666
686
  </tr>
667
687
  <tr>
668
688
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
669
- <td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing information
689
+ <td> a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing information
670
690
  about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon wasn't found. Free with
671
691
  <a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()"><code class="function">gtk_icon_info_free()</code></a>
692
+
672
693
  </td>
673
694
  </tr>
674
695
  </tbody>
@@ -676,7 +697,7 @@ about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-St
676
697
  <p class="since">Since 2.4</p>
677
698
  </div>
678
699
  <hr>
679
- <div class="refsect2">
700
+ <div class="refsect2" title="gtk_icon_theme_choose_icon ()">
680
701
  <a name="gtk-icon-theme-choose-icon"></a><h3>gtk_icon_theme_choose_icon ()</h3>
681
702
  <pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_theme_choose_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
682
703
  <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> *icon_names[]</code></em>,
@@ -705,21 +726,25 @@ inherited icon themes.
705
726
  <tr>
706
727
  <td><p><span class="term"><em class="parameter"><code>icon_names</code></em> :</span></p></td>
707
728
  <td>
708
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of icon names to lookup</td>
729
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of icon names to lookup
730
+ </td>
709
731
  </tr>
710
732
  <tr>
711
733
  <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
712
- <td>desired icon size</td>
734
+ <td>desired icon size
735
+ </td>
713
736
  </tr>
714
737
  <tr>
715
738
  <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
716
- <td>flags modifying the behavior of the icon lookup</td>
739
+ <td>flags modifying the behavior of the icon lookup
740
+ </td>
717
741
  </tr>
718
742
  <tr>
719
743
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
720
- <td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing information
744
+ <td> a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing information
721
745
  about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon wasn't found. Free with
722
746
  <a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()"><code class="function">gtk_icon_info_free()</code></a>
747
+
723
748
  </td>
724
749
  </tr>
725
750
  </tbody>
@@ -727,7 +752,7 @@ about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-St
727
752
  <p class="since">Since 2.12</p>
728
753
  </div>
729
754
  <hr>
730
- <div class="refsect2">
755
+ <div class="refsect2" title="gtk_icon_theme_lookup_by_gicon ()">
731
756
  <a name="gtk-icon-theme-lookup-by-gicon"></a><h3>gtk_icon_theme_lookup_by_gicon ()</h3>
732
757
  <pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_theme_lookup_by_gicon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
733
758
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>,
@@ -749,21 +774,25 @@ The icon can then be rendered into a pixbuf using
749
774
  </tr>
750
775
  <tr>
751
776
  <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
752
- <td>the <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> to look up</td>
777
+ <td>the <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> to look up
778
+ </td>
753
779
  </tr>
754
780
  <tr>
755
781
  <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
756
- <td>desired icon size</td>
782
+ <td>desired icon size
783
+ </td>
757
784
  </tr>
758
785
  <tr>
759
786
  <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
760
- <td>flags modifying the behavior of the icon lookup</td>
787
+ <td>flags modifying the behavior of the icon lookup
788
+ </td>
761
789
  </tr>
762
790
  <tr>
763
791
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
764
- <td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing
765
- information about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon
766
- wasn't found. Free with <a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()"><code class="function">gtk_icon_info_free()</code></a>
792
+ <td> a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing
793
+ information about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon
794
+ wasn't found. Free with <a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()"><code class="function">gtk_icon_info_free()</code></a>
795
+
767
796
  </td>
768
797
  </tr>
769
798
  </tbody>
@@ -771,7 +800,7 @@ wasn't found. Free with <a class="link" href="GtkIconTheme.html#gtk-icon-info-fr
771
800
  <p class="since">Since 2.14</p>
772
801
  </div>
773
802
  <hr>
774
- <div class="refsect2">
803
+ <div class="refsect2" title="gtk_icon_theme_load_icon ()">
775
804
  <a name="gtk-icon-theme-load-icon"></a><h3>gtk_icon_theme_load_icon ()</h3>
776
805
  <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_icon_theme_load_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
777
806
  <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> *icon_name</code></em>,
@@ -803,28 +832,32 @@ icon theme loaded, which would be a waste of memory.
803
832
  </tr>
804
833
  <tr>
805
834
  <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
806
- <td>the name of the icon to lookup</td>
835
+ <td>the name of the icon to lookup
836
+ </td>
807
837
  </tr>
808
838
  <tr>
809
839
  <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
810
840
  <td>the desired icon size. The resulting icon may not be
811
- exactly this size; see <a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()"><code class="function">gtk_icon_info_load_icon()</code></a>.</td>
841
+ exactly this size; see <a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()"><code class="function">gtk_icon_info_load_icon()</code></a>.
842
+ </td>
812
843
  </tr>
813
844
  <tr>
814
845
  <td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
815
- <td>flags modifying the behavior of the icon lookup</td>
846
+ <td>flags modifying the behavior of the icon lookup
847
+ </td>
816
848
  </tr>
817
849
  <tr>
818
850
  <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
819
- <td>Location to store error information on failure, 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>
851
+ <td> Location to store error information on failure, 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>
820
852
  </td>
821
853
  </tr>
822
854
  <tr>
823
855
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
824
- <td>the rendered icon; this may be a newly
825
- created icon or a new reference to an internal icon, so you must not modify
826
- the icon. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> to release your reference to the
827
- icon. <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon isn't found. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
856
+ <td> the rendered icon; this may be a newly created icon
857
+ or a new reference to an internal icon, so you must not modify
858
+ the icon. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> to release your reference to the
859
+ icon. <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon isn't found.
860
+
828
861
  </td>
829
862
  </tr>
830
863
  </tbody>
@@ -832,7 +865,7 @@ icon. <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros
832
865
  <p class="since">Since 2.4</p>
833
866
  </div>
834
867
  <hr>
835
- <div class="refsect2">
868
+ <div class="refsect2" title="gtk_icon_theme_list_contexts ()">
836
869
  <a name="gtk-icon-theme-list-contexts"></a><h3>gtk_icon_theme_list_contexts ()</h3>
837
870
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gtk_icon_theme_list_contexts (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>);</pre>
838
871
  <p>
@@ -849,10 +882,10 @@ hierarchy of icon themes
849
882
  </tr>
850
883
  <tr>
851
884
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
852
- <td>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> list holding the names of all the
853
- contexts in the theme. You must first free each element
854
- in the list with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, then free the list itself
855
- with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
885
+ <td> a <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> list holding the names of all the
886
+ contexts in the theme. You must first free each element
887
+ in the list with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, then free the list itself
888
+ with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym> utf8]</span>
856
889
  </td>
857
890
  </tr>
858
891
  </tbody>
@@ -860,7 +893,7 @@ with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Li
860
893
  <p class="since">Since 2.12</p>
861
894
  </div>
862
895
  <hr>
863
- <div class="refsect2">
896
+ <div class="refsect2" title="gtk_icon_theme_list_icons ()">
864
897
  <a name="gtk-icon-theme-list-icons"></a><h3>gtk_icon_theme_list_icons ()</h3>
865
898
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gtk_icon_theme_list_icons (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
866
899
  <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> *context</code></em>);</pre>
@@ -882,14 +915,15 @@ but will typically include such values as "Applications" and
882
915
  <tr>
883
916
  <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
884
917
  <td>a string identifying a particular type of icon,
885
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to list all icons.</td>
918
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to list all icons.
919
+ </td>
886
920
  </tr>
887
921
  <tr>
888
922
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
889
- <td>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> list
890
- holding the names of all the icons in the theme. You must first
891
- free each element in the list with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, then free the list
892
- itself with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
923
+ <td> a <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> list holding the names of all the
924
+ icons in the theme. You must first free each element
925
+ in the list with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, then free the list itself
926
+ with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym> utf8]</span>
893
927
  </td>
894
928
  </tr>
895
929
  </tbody>
@@ -897,7 +931,7 @@ itself with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Li
897
931
  <p class="since">Since 2.4</p>
898
932
  </div>
899
933
  <hr>
900
- <div class="refsect2">
934
+ <div class="refsect2" title="gtk_icon_theme_get_icon_sizes ()">
901
935
  <a name="gtk-icon-theme-get-icon-sizes"></a><h3>gtk_icon_theme_get_icon_sizes ()</h3>
902
936
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> * gtk_icon_theme_get_icon_sizes (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
903
937
  <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> *icon_name</code></em>);</pre>
@@ -917,20 +951,23 @@ is zero-terminated.
917
951
  </tr>
918
952
  <tr>
919
953
  <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
920
- <td>the name of an icon</td>
954
+ <td>the name of an icon
955
+ </td>
921
956
  </tr>
922
957
  <tr>
923
958
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
924
- <td>An newly allocated array describing the sizes at
959
+ <td> An newly allocated array describing the sizes at
925
960
  which the icon is available. The array should 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>
926
- when it is no longer needed.</td>
961
+ when it is no longer needed.
962
+
963
+ </td>
927
964
  </tr>
928
965
  </tbody>
929
966
  </table></div>
930
967
  <p class="since">Since 2.6</p>
931
968
  </div>
932
969
  <hr>
933
- <div class="refsect2">
970
+ <div class="refsect2" title="gtk_icon_theme_get_example_icon_name ()">
934
971
  <a name="gtk-icon-theme-get-example-icon-name"></a><h3>gtk_icon_theme_get_example_icon_name ()</h3>
935
972
  <pre class="programlisting"><span class="returnvalue">char</span> * gtk_icon_theme_get_example_icon_name
936
973
  (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>);</pre>
@@ -949,15 +986,17 @@ a list of themes to the user.)
949
986
  </tr>
950
987
  <tr>
951
988
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
952
- <td>the name of an example icon or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
953
- Free with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td>
989
+ <td> the name of an example icon or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
990
+ Free with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
991
+
992
+ </td>
954
993
  </tr>
955
994
  </tbody>
956
995
  </table></div>
957
996
  <p class="since">Since 2.4</p>
958
997
  </div>
959
998
  <hr>
960
- <div class="refsect2">
999
+ <div class="refsect2" title="gtk_icon_theme_rescan_if_needed ()">
961
1000
  <a name="gtk-icon-theme-rescan-if-needed"></a><h3>gtk_icon_theme_rescan_if_needed ()</h3>
962
1001
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_icon_theme_rescan_if_needed (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>);</pre>
963
1002
  <p>
@@ -975,16 +1014,17 @@ next time <em class="parameter"><code>icon_theme</code></em> is accessed.
975
1014
  </tr>
976
1015
  <tr>
977
1016
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
978
- <td>
979
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon theme has changed and needed
980
- to be reloaded.</td>
1017
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon theme has changed and needed
1018
+ to be reloaded.
1019
+
1020
+ </td>
981
1021
  </tr>
982
1022
  </tbody>
983
1023
  </table></div>
984
1024
  <p class="since">Since 2.4</p>
985
1025
  </div>
986
1026
  <hr>
987
- <div class="refsect2">
1027
+ <div class="refsect2" title="gtk_icon_theme_add_builtin_icon ()">
988
1028
  <a name="gtk-icon-theme-add-builtin-icon"></a><h3>gtk_icon_theme_add_builtin_icon ()</h3>
989
1029
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_theme_add_builtin_icon (<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> *icon_name</code></em>,
990
1030
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>,
@@ -1011,28 +1051,31 @@ via <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-creat
1011
1051
  <tbody>
1012
1052
  <tr>
1013
1053
  <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
1014
- <td>the name of the icon to register</td>
1054
+ <td>the name of the icon to register
1055
+ </td>
1015
1056
  </tr>
1016
1057
  <tr>
1017
1058
  <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
1018
1059
  <td>the size at which to register the icon (different
1019
- images can be registered for the same icon name
1020
- at different sizes.)</td>
1060
+ images can be registered for the same icon name
1061
+ at different sizes.)
1062
+ </td>
1021
1063
  </tr>
1022
1064
  <tr>
1023
1065
  <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
1024
1066
  <td>
1025
1067
  <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> that contains the image to use
1026
- for <em class="parameter"><code>icon_name</code></em>.</td>
1068
+ for <em class="parameter"><code>icon_name</code></em>.
1069
+ </td>
1027
1070
  </tr>
1028
1071
  </tbody>
1029
1072
  </table></div>
1030
1073
  <p class="since">Since 2.4</p>
1031
1074
  </div>
1032
1075
  <hr>
1033
- <div class="refsect2">
1076
+ <div class="refsect2" title="gtk_icon_info_copy ()">
1034
1077
  <a name="gtk-icon-info-copy"></a><h3>gtk_icon_info_copy ()</h3>
1035
- <pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_info_copy (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
1078
+ <pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_info_copy (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
1036
1079
  <p>
1037
1080
  Make a copy of a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a>.
1038
1081
  </p>
@@ -1046,14 +1089,16 @@ Make a copy of a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="Gtk
1046
1089
  </tr>
1047
1090
  <tr>
1048
1091
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1049
- <td>the new GtkIconInfo</td>
1092
+ <td> the new GtkIconInfo
1093
+
1094
+ </td>
1050
1095
  </tr>
1051
1096
  </tbody>
1052
1097
  </table></div>
1053
1098
  <p class="since">Since 2.4</p>
1054
1099
  </div>
1055
1100
  <hr>
1056
- <div class="refsect2">
1101
+ <div class="refsect2" title="gtk_icon_info_free ()">
1057
1102
  <a name="gtk-icon-info-free"></a><h3>gtk_icon_info_free ()</h3>
1058
1103
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_info_free (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
1059
1104
  <p>
@@ -1070,9 +1115,9 @@ Free a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo">
1070
1115
  <p class="since">Since 2.4</p>
1071
1116
  </div>
1072
1117
  <hr>
1073
- <div class="refsect2">
1118
+ <div class="refsect2" title="gtk_icon_info_new_for_pixbuf ()">
1074
1119
  <a name="gtk-icon-info-new-for-pixbuf"></a><h3>gtk_icon_info_new_for_pixbuf ()</h3>
1075
- <pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_info_new_for_pixbuf (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
1120
+ <pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_info_new_for_pixbuf (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
1076
1121
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
1077
1122
  <p>
1078
1123
  Creates a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> for a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>.
@@ -1092,7 +1137,8 @@ Creates a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInf
1092
1137
  </tr>
1093
1138
  <tr>
1094
1139
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1095
- <td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a>
1140
+ <td> a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a>
1141
+
1096
1142
  </td>
1097
1143
  </tr>
1098
1144
  </tbody>
@@ -1100,7 +1146,7 @@ Creates a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInf
1100
1146
  <p class="since">Since 2.14</p>
1101
1147
  </div>
1102
1148
  <hr>
1103
- <div class="refsect2">
1149
+ <div class="refsect2" title="gtk_icon_info_get_base_size ()">
1104
1150
  <a name="gtk-icon-info-get-base-size"></a><h3>gtk_icon_info_get_base_size ()</h3>
1105
1151
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_icon_info_get_base_size (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
1106
1152
  <p>
@@ -1123,18 +1169,19 @@ they are attached.
1123
1169
  </tr>
1124
1170
  <tr>
1125
1171
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1126
- <td>the base size, or 0, if no base
1127
- size is known for the icon.</td>
1172
+ <td> the base size, or 0, if no base
1173
+ size is known for the icon.
1174
+
1175
+ </td>
1128
1176
  </tr>
1129
1177
  </tbody>
1130
1178
  </table></div>
1131
1179
  <p class="since">Since 2.4</p>
1132
1180
  </div>
1133
1181
  <hr>
1134
- <div class="refsect2">
1135
- <a name="gtk-icon-info-get-filename"></a><h3>gtk_icon_info_get_filename</h3>
1136
- <pre class="programlisting">#define gtk_icon_info_get_filename gtk_icon_info_get_filename_utf8
1137
- </pre>
1182
+ <div class="refsect2" title="gtk_icon_info_get_filename ()">
1183
+ <a name="gtk-icon-info-get-filename"></a><h3>gtk_icon_info_get_filename ()</h3>
1184
+ <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_icon_info_get_filename (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
1138
1185
  <p>
1139
1186
  Gets the filename for the icon. If the
1140
1187
  <a class="link" href="GtkIconTheme.html#GTK-ICON-LOOKUP-USE-BUILTIN:CAPS"><code class="literal">GTK_ICON_LOOKUP_USE_BUILTIN</code></a> flag was passed
@@ -1144,20 +1191,29 @@ case, you should use <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-b
1144
1191
  </p>
1145
1192
  <div class="variablelist"><table border="0">
1146
1193
  <col align="left" valign="top">
1147
- <tbody><tr>
1194
+ <tbody>
1195
+ <tr>
1196
+ <td><p><span class="term"><em class="parameter"><code>icon_info</code></em> :</span></p></td>
1197
+ <td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a>
1198
+ </td>
1199
+ </tr>
1200
+ <tr>
1148
1201
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1149
- <td>the filename for the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1150
- if <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()"><code class="function">gtk_icon_info_get_builtin_pixbuf()</code></a> should
1151
- be used instead. The return value is owned by
1152
- GTK+ and should not be modified or freed.</td>
1153
- </tr></tbody>
1202
+ <td> the filename for the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1203
+ if <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()"><code class="function">gtk_icon_info_get_builtin_pixbuf()</code></a> should
1204
+ be used instead. The return value is owned by
1205
+ GTK+ and should not be modified or freed.
1206
+
1207
+ </td>
1208
+ </tr>
1209
+ </tbody>
1154
1210
  </table></div>
1155
1211
  <p class="since">Since 2.4</p>
1156
1212
  </div>
1157
1213
  <hr>
1158
- <div class="refsect2">
1214
+ <div class="refsect2" title="gtk_icon_info_get_builtin_pixbuf ()">
1159
1215
  <a name="gtk-icon-info-get-builtin-pixbuf"></a><h3>gtk_icon_info_get_builtin_pixbuf ()</h3>
1160
- <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_icon_info_get_builtin_pixbuf (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
1216
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_icon_info_get_builtin_pixbuf (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
1161
1217
  <p>
1162
1218
  Gets the built-in image for this icon, if any. To allow
1163
1219
  GTK+ to use built in icon images, you must pass the
@@ -1169,14 +1225,15 @@ GTK+ to use built in icon images, you must pass the
1169
1225
  <tbody>
1170
1226
  <tr>
1171
1227
  <td><p><span class="term"><em class="parameter"><code>icon_info</code></em> :</span></p></td>
1172
- <td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure</td>
1228
+ <td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure
1229
+ </td>
1173
1230
  </tr>
1174
1231
  <tr>
1175
1232
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1176
- <td>the built-in image pixbuf, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. No
1177
- extra reference is added to the returned pixbuf, so if
1178
- you want to keep it around, you must use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a>.
1179
- The returned image must not be modified. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1233
+ <td> the built-in image pixbuf, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. No
1234
+ extra reference is added to the returned pixbuf, so if
1235
+ you want to keep it around, you must use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a>.
1236
+ The returned image must not be modified. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1180
1237
  </td>
1181
1238
  </tr>
1182
1239
  </tbody>
@@ -1184,9 +1241,9 @@ The returned image must not be modified. <span class="annotation">[<acronym titl
1184
1241
  <p class="since">Since 2.4</p>
1185
1242
  </div>
1186
1243
  <hr>
1187
- <div class="refsect2">
1244
+ <div class="refsect2" title="gtk_icon_info_load_icon ()">
1188
1245
  <a name="gtk-icon-info-load-icon"></a><h3>gtk_icon_info_load_icon ()</h3>
1189
- <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_icon_info_load_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
1246
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> * gtk_icon_info_load_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
1190
1247
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
1191
1248
  <p>
1192
1249
  Renders an icon previously looked up in an icon theme using
@@ -1211,16 +1268,16 @@ returned by this function will be scaled to the exact size.
1211
1268
  </tr>
1212
1269
  <tr>
1213
1270
  <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
1214
- <td>location to store error information on failure,
1215
- 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>
1271
+ <td> location to store error information on failure, 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>
1216
1272
  </td>
1217
1273
  </tr>
1218
1274
  <tr>
1219
1275
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1220
- <td>the rendered icon; this may be a newly
1221
- created icon or a new reference to an internal icon, so you must
1222
- not modify the icon. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> to release your reference
1223
- to the icon. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1276
+ <td> the rendered icon; this may be a newly created icon
1277
+ or a new reference to an internal icon, so you must not modify
1278
+ the icon. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> to release your reference to the
1279
+ icon.
1280
+
1224
1281
  </td>
1225
1282
  </tr>
1226
1283
  </tbody>
@@ -1228,7 +1285,7 @@ to the icon. <span class="annotation">[<acronym title="Free data after the code
1228
1285
  <p class="since">Since 2.4</p>
1229
1286
  </div>
1230
1287
  <hr>
1231
- <div class="refsect2">
1288
+ <div class="refsect2" title="gtk_icon_info_set_raw_coordinates ()">
1232
1289
  <a name="gtk-icon-info-set-raw-coordinates"></a><h3>gtk_icon_info_set_raw_coordinates ()</h3>
1233
1290
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_info_set_raw_coordinates (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
1234
1291
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> raw_coordinates</code></em>);</pre>
@@ -1243,7 +1300,7 @@ Raw coordinates are somewhat strange; they are specified to be with
1243
1300
  respect to the unscaled pixmap for PNG and XPM icons, but for SVG
1244
1301
  icons, they are in a 1000x1000 coordinate space that is scaled
1245
1302
  to the final size of the icon. You can determine if the icon is an SVG
1246
- icon by using <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename"><code class="function">gtk_icon_info_get_filename()</code></a>, and seeing if it is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1303
+ icon by using <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename ()"><code class="function">gtk_icon_info_get_filename()</code></a>, and seeing if it is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1247
1304
  and ends in '.svg'.
1248
1305
  </p>
1249
1306
  <p>
@@ -1261,15 +1318,16 @@ for older API's, and is not expected to be useful for applications.
1261
1318
  <tr>
1262
1319
  <td><p><span class="term"><em class="parameter"><code>raw_coordinates</code></em> :</span></p></td>
1263
1320
  <td>whether the coordinates of embedded rectangles
1264
- and attached points should be returned in their original
1265
- (unscaled) form.</td>
1321
+ and attached points should be returned in their original
1322
+ (unscaled) form.
1323
+ </td>
1266
1324
  </tr>
1267
1325
  </tbody>
1268
1326
  </table></div>
1269
1327
  <p class="since">Since 2.4</p>
1270
1328
  </div>
1271
1329
  <hr>
1272
- <div class="refsect2">
1330
+ <div class="refsect2" title="gtk_icon_info_get_embedded_rect ()">
1273
1331
  <a name="gtk-icon-info-get-embedded-rect"></a><h3>gtk_icon_info_get_embedded_rect ()</h3>
1274
1332
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_icon_info_get_embedded_rect (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
1275
1333
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);</pre>
@@ -1292,20 +1350,22 @@ information about the coordinate system.
1292
1350
  <td><p><span class="term"><em class="parameter"><code>rectangle</code></em> :</span></p></td>
1293
1351
  <td>
1294
1352
  <a href="http://library.gnome.org/devel/gdk/unstable/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> in which to store embedded
1295
- rectangle coordinates; coordinates are only stored
1296
- when this function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.</td>
1353
+ rectangle coordinates; coordinates are only stored
1354
+ when this function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>.
1355
+ </td>
1297
1356
  </tr>
1298
1357
  <tr>
1299
1358
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1300
- <td>
1301
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon has an embedded rectangle</td>
1359
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon has an embedded rectangle
1360
+
1361
+ </td>
1302
1362
  </tr>
1303
1363
  </tbody>
1304
1364
  </table></div>
1305
1365
  <p class="since">Since 2.4</p>
1306
1366
  </div>
1307
1367
  <hr>
1308
- <div class="refsect2">
1368
+ <div class="refsect2" title="gtk_icon_info_get_attach_points ()">
1309
1369
  <a name="gtk-icon-info-get-attach-points"></a><h3>gtk_icon_info_get_attach_points ()</h3>
1310
1370
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_icon_info_get_attach_points (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
1311
1371
  <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk/unstable/gdk-Points-Rectangles-and-Regions.html#GdkPoint"><span class="type">GdkPoint</span></a> **points</code></em>,
@@ -1325,26 +1385,27 @@ emblems or overlays to the icon.
1325
1385
  </tr>
1326
1386
  <tr>
1327
1387
  <td><p><span class="term"><em class="parameter"><code>points</code></em> :</span></p></td>
1328
- <td>(array length=n_points) (out): location to store pointer to an array of points, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1329
- free the array of points with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1388
+ <td> location to store pointer to an array of points, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1389
+ free the array of points with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1330
1390
  </td>
1331
1391
  </tr>
1332
1392
  <tr>
1333
1393
  <td><p><span class="term"><em class="parameter"><code>n_points</code></em> :</span></p></td>
1334
- <td>location to store the number of points in <em class="parameter"><code>points</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>
1394
+ <td> location to store the number of points in <em class="parameter"><code>points</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>
1335
1395
  </td>
1336
1396
  </tr>
1337
1397
  <tr>
1338
1398
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1339
- <td>
1340
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if there are any attach points for the icon.</td>
1399
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if there are any attach points for the icon.
1400
+
1401
+ </td>
1341
1402
  </tr>
1342
1403
  </tbody>
1343
1404
  </table></div>
1344
1405
  <p class="since">Since 2.4</p>
1345
1406
  </div>
1346
1407
  <hr>
1347
- <div class="refsect2">
1408
+ <div class="refsect2" title="gtk_icon_info_get_display_name ()">
1348
1409
  <a name="gtk-icon-info-get-display-name"></a><h3>gtk_icon_info_get_display_name ()</h3>
1349
1410
  <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_icon_info_get_display_name (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
1350
1411
  <p>
@@ -1362,21 +1423,23 @@ visible context like a list of icons.
1362
1423
  </tr>
1363
1424
  <tr>
1364
1425
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1365
- <td>the display name for the icon or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, if
1366
- the icon doesn't have a specified display name. This value
1367
- is owned <em class="parameter"><code>icon_info</code></em> and must not be modified or free.</td>
1426
+ <td> the display name for the icon or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, if
1427
+ the icon doesn't have a specified display name. This value
1428
+ is owned <em class="parameter"><code>icon_info</code></em> and must not be modified or free.
1429
+
1430
+ </td>
1368
1431
  </tr>
1369
1432
  </tbody>
1370
1433
  </table></div>
1371
1434
  <p class="since">Since 2.4</p>
1372
1435
  </div>
1373
1436
  </div>
1374
- <div class="refsect1">
1437
+ <div class="refsect1" title="Signal Details">
1375
1438
  <a name="GtkIconTheme.signal-details"></a><h2>Signal Details</h2>
1376
- <div class="refsect2">
1439
+ <div class="refsect2" title='The "changed" signal'>
1377
1440
  <a name="GtkIconTheme-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
1378
1441
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme,
1379
- <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>
1442
+ <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>
1380
1443
  <p>
1381
1444
  Emitted when the current icon theme is switched or GTK+ detects
1382
1445
  that a change has occurred in the contents of the current
@@ -1387,7 +1450,8 @@ icon theme.
1387
1450
  <tbody>
1388
1451
  <tr>
1389
1452
  <td><p><span class="term"><em class="parameter"><code>icon_theme</code></em> :</span></p></td>
1390
- <td>the icon theme</td>
1453
+ <td>the icon theme
1454
+ </td>
1391
1455
  </tr>
1392
1456
  <tr>
1393
1457
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1400,6 +1464,6 @@ icon theme.
1400
1464
  </div>
1401
1465
  <div class="footer">
1402
1466
  <hr>
1403
- Generated by GTK-Doc V1.16.1</div>
1467
+ Generated by GTK-Doc V1.15</div>
1404
1468
  </body>
1405
1469
  </html>