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="RecentDocuments.html" title="Recently Used Documents">
9
9
  <link rel="prev" href="GtkRecentChooserWidget.html" title="GtkRecentChooserWidget">
10
10
  <link rel="next" href="Builder.html" title="Interface builder">
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="#GtkRecentFilter.object-hierarchy" class="shortcut">Object Hierarchy</a>
29
29
  </td></tr>
30
30
  </table>
31
- <div class="refentry">
31
+ <div class="refentry" title="GtkRecentFilter">
32
32
  <a name="GtkRecentFilter"></a><div class="titlepage"></div>
33
33
  <div class="refnamediv"><table width="100%"><tr>
34
34
  <td valign="top">
@@ -37,17 +37,17 @@
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="GtkRecentFilter.synopsis"></a><h2>Synopsis</h2>
42
42
  <pre class="synopsis">
43
43
  #include &lt;gtk/gtk.h&gt;
44
44
 
45
45
  <a class="link" href="GtkRecentFilter.html#GtkRecentFilter-struct" title="GtkRecentFilter">GtkRecentFilter</a>;
46
- struct <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="struct GtkRecentFilterInfo">GtkRecentFilterInfo</a>;
46
+ <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="GtkRecentFilterInfo">GtkRecentFilterInfo</a>;
47
47
  enum <a class="link" href="GtkRecentFilter.html#GtkRecentFilterFlags" title="enum GtkRecentFilterFlags">GtkRecentFilterFlags</a>;
48
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (<a class="link" href="GtkRecentFilter.html#GtkRecentFilterFunc" title="GtkRecentFilterFunc ()">*GtkRecentFilterFunc</a>) (<em class="parameter"><code>const <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="struct GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> *filter_info</code></em>,
48
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (<a class="link" href="GtkRecentFilter.html#GtkRecentFilterFunc" title="GtkRecentFilterFunc ()">*GtkRecentFilterFunc</a>) (<em class="parameter"><code>const <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> *filter_info</code></em>,
49
49
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
50
- <a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="returnvalue">GtkRecentFilter</span></a> * <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-new" title="gtk_recent_filter_new ()">gtk_recent_filter_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
50
+ <a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="returnvalue">GtkRecentFilter</span></a> * <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-new" title="gtk_recent_filter_new ()">gtk_recent_filter_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
51
51
  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="GtkRecentFilter.html#gtk-recent-filter-get-name" title="gtk_recent_filter_get_name ()">gtk_recent_filter_get_name</a> (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>);
52
52
  <span class="returnvalue">void</span> <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-set-name" title="gtk_recent_filter_set_name ()">gtk_recent_filter_set_name</a> (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>,
53
53
  <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> *name</code></em>);
@@ -70,10 +70,10 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
70
70
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> data_destroy</code></em>);
71
71
  <a class="link" href="GtkRecentFilter.html#GtkRecentFilterFlags" title="enum GtkRecentFilterFlags"><span class="returnvalue">GtkRecentFilterFlags</span></a> <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-get-needed" title="gtk_recent_filter_get_needed ()">gtk_recent_filter_get_needed</a> (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>);
72
72
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-filter" title="gtk_recent_filter_filter ()">gtk_recent_filter_filter</a> (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>,
73
- <em class="parameter"><code>const <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="struct GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> *filter_info</code></em>);
73
+ <em class="parameter"><code>const <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> *filter_info</code></em>);
74
74
  </pre>
75
75
  </div>
76
- <div class="refsect1">
76
+ <div class="refsect1" title="Object Hierarchy">
77
77
  <a name="GtkRecentFilter.object-hierarchy"></a><h2>Object Hierarchy</h2>
78
78
  <pre class="synopsis">
79
79
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -82,7 +82,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
82
82
  +----GtkRecentFilter
83
83
  </pre>
84
84
  </div>
85
- <div class="refsect1">
85
+ <div class="refsect1" title="Description">
86
86
  <a name="GtkRecentFilter.description"></a><h2>Description</h2>
87
87
  <p>
88
88
  A <a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> can be used to restrict the files being shown
@@ -108,9 +108,9 @@ manually use a filter on a file with <a class="link" href="GtkRecentFilter.html#
108
108
  Recently used files are supported since GTK+ 2.10.
109
109
  </p>
110
110
  </div>
111
- <div class="refsect1">
111
+ <div class="refsect1" title="Details">
112
112
  <a name="GtkRecentFilter.details"></a><h2>Details</h2>
113
- <div class="refsect2">
113
+ <div class="refsect2" title="GtkRecentFilter">
114
114
  <a name="GtkRecentFilter-struct"></a><h3>GtkRecentFilter</h3>
115
115
  <pre class="programlisting">typedef struct _GtkRecentFilter GtkRecentFilter;</pre>
116
116
  <p>
@@ -119,9 +119,9 @@ only private fields and should not be directly accessed.
119
119
  </p>
120
120
  </div>
121
121
  <hr>
122
- <div class="refsect2">
123
- <a name="GtkRecentFilterInfo"></a><h3>struct GtkRecentFilterInfo</h3>
124
- <pre class="programlisting">struct GtkRecentFilterInfo {
122
+ <div class="refsect2" title="GtkRecentFilterInfo">
123
+ <a name="GtkRecentFilterInfo"></a><h3>GtkRecentFilterInfo</h3>
124
+ <pre class="programlisting">typedef struct {
125
125
  GtkRecentFilterFlags contains;
126
126
 
127
127
  const gchar *uri;
@@ -131,7 +131,7 @@ only private fields and should not be directly accessed.
131
131
  const gchar **groups;
132
132
 
133
133
  gint age;
134
- };
134
+ } GtkRecentFilterInfo;
135
135
  </pre>
136
136
  <p>
137
137
  A <span class="structname">GtkRecentFilterInfo</span> struct is used
@@ -143,38 +143,45 @@ to pass information about the tested file to <a class="link" href="GtkRecentFilt
143
143
  <tr>
144
144
  <td><p><span class="term"><a class="link" href="GtkRecentFilter.html#GtkRecentFilterFlags" title="enum GtkRecentFilterFlags"><span class="type">GtkRecentFilterFlags</span></a> <em class="structfield"><code><a name="GtkRecentFilterInfo.contains"></a>contains</code></em>;</span></p></td>
145
145
  <td>Flags indicating which of the following fields need
146
- are filled</td>
146
+ are filled
147
+ </td>
147
148
  </tr>
148
149
  <tr>
149
150
  <td><p><span class="term">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="GtkRecentFilterInfo.uri"></a>uri</code></em>;</span></p></td>
150
- <td>the URI of the file being tested</td>
151
+ <td>the URI of the file being tested
152
+ </td>
151
153
  </tr>
152
154
  <tr>
153
155
  <td><p><span class="term">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="GtkRecentFilterInfo.display-name"></a>display_name</code></em>;</span></p></td>
154
156
  <td>the string that will be used to display the file
155
- in the recent chooser</td>
157
+ in the recent chooser
158
+ </td>
156
159
  </tr>
157
160
  <tr>
158
161
  <td><p><span class="term">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="GtkRecentFilterInfo.mime-type"></a>mime_type</code></em>;</span></p></td>
159
- <td>the mime type of the file</td>
162
+ <td>the mime type of the file
163
+ </td>
160
164
  </tr>
161
165
  <tr>
162
166
  <td><p><span class="term">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **<em class="structfield"><code><a name="GtkRecentFilterInfo.applications"></a>applications</code></em>;</span></p></td>
163
- <td>the list of applications that have registered the file</td>
167
+ <td>the list of applications that have registered the file
168
+ </td>
164
169
  </tr>
165
170
  <tr>
166
171
  <td><p><span class="term">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **<em class="structfield"><code><a name="GtkRecentFilterInfo.groups"></a>groups</code></em>;</span></p></td>
167
- <td>the groups to which the file belongs to</td>
172
+ <td>the groups to which the file belongs to
173
+ </td>
168
174
  </tr>
169
175
  <tr>
170
176
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GtkRecentFilterInfo.age"></a>age</code></em>;</span></p></td>
171
- <td>the number of days elapsed since the file has been registered</td>
177
+ <td>the number of days elapsed since the file has been registered
178
+ </td>
172
179
  </tr>
173
180
  </tbody>
174
181
  </table></div>
175
182
  </div>
176
183
  <hr>
177
- <div class="refsect2">
184
+ <div class="refsect2" title="enum GtkRecentFilterFlags">
178
185
  <a name="GtkRecentFilterFlags"></a><h3>enum GtkRecentFilterFlags</h3>
179
186
  <pre class="programlisting">typedef enum {
180
187
  GTK_RECENT_FILTER_URI = 1 &lt;&lt; 0,
@@ -186,7 +193,7 @@ in the recent chooser</td>
186
193
  } GtkRecentFilterFlags;
187
194
  </pre>
188
195
  <p>
189
- These flags indicate what parts of a <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="struct GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> struct
196
+ These flags indicate what parts of a <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> struct
190
197
  are filled or need to be filled.
191
198
  </p>
192
199
  <div class="variablelist"><table border="0">
@@ -229,9 +236,9 @@ are filled or need to be filled.
229
236
  </table></div>
230
237
  </div>
231
238
  <hr>
232
- <div class="refsect2">
239
+ <div class="refsect2" title="GtkRecentFilterFunc ()">
233
240
  <a name="GtkRecentFilterFunc"></a><h3>GtkRecentFilterFunc ()</h3>
234
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (*GtkRecentFilterFunc) (<em class="parameter"><code>const <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="struct GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> *filter_info</code></em>,
241
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (*GtkRecentFilterFunc) (<em class="parameter"><code>const <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> *filter_info</code></em>,
235
242
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
236
243
  <p>
237
244
  The type of function that is used with custom filters,
@@ -242,8 +249,8 @@ see <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-add-custom" tit
242
249
  <tbody>
243
250
  <tr>
244
251
  <td><p><span class="term"><em class="parameter"><code>filter_info</code></em> :</span></p></td>
245
- <td>a <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="struct GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> that is filled according
246
- to the <em class="parameter"><code>needed</code></em> flags passed to <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-add-custom" title="gtk_recent_filter_add_custom ()"><code class="function">gtk_recent_filter_add_custom()</code></a>
252
+ <td>a <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> that is filled according
253
+ to the <em class="parameter"><code>needed</code></em> flags passed to <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-add-custom" title="gtk_recent_filter_add_custom ()"><code class="function">gtk_recent_filter_add_custom()</code></a>
247
254
  </td>
248
255
  </tr>
249
256
  <tr>
@@ -254,15 +261,16 @@ to the <em class="parameter"><code>needed</code></em> flags passed to <a class="
254
261
  <tr>
255
262
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
256
263
  <td>
257
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the file should be displayed</td>
264
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the file should be displayed
265
+ </td>
258
266
  </tr>
259
267
  </tbody>
260
268
  </table></div>
261
269
  </div>
262
270
  <hr>
263
- <div class="refsect2">
271
+ <div class="refsect2" title="gtk_recent_filter_new ()">
264
272
  <a name="gtk-recent-filter-new"></a><h3>gtk_recent_filter_new ()</h3>
265
- <pre class="programlisting"><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="returnvalue">GtkRecentFilter</span></a> * gtk_recent_filter_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
273
+ <pre class="programlisting"><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="returnvalue">GtkRecentFilter</span></a> * gtk_recent_filter_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
266
274
  <p>
267
275
  Creates a new <a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> with no rules added to it.
268
276
  Such filter does not accept any recently used resources, so is not
@@ -290,14 +298,15 @@ To create a filter that accepts any recently used resource, use:
290
298
  <col align="left" valign="top">
291
299
  <tbody><tr>
292
300
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
293
- <td>a new <a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a>
301
+ <td> a new <a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a>
302
+
294
303
  </td>
295
304
  </tr></tbody>
296
305
  </table></div>
297
306
  <p class="since">Since 2.10</p>
298
307
  </div>
299
308
  <hr>
300
- <div class="refsect2">
309
+ <div class="refsect2" title="gtk_recent_filter_get_name ()">
301
310
  <a name="gtk-recent-filter-get-name"></a><h3>gtk_recent_filter_get_name ()</h3>
302
311
  <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_recent_filter_get_name (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>);</pre>
303
312
  <p>
@@ -314,15 +323,17 @@ See <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-set-name" title
314
323
  </tr>
315
324
  <tr>
316
325
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
317
- <td>the name of the filter, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. The returned string
318
- is owned by the filter object and should not be freed.</td>
326
+ <td> the name of the filter, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. The returned string
327
+ is owned by the filter object and should not be freed.
328
+
329
+ </td>
319
330
  </tr>
320
331
  </tbody>
321
332
  </table></div>
322
333
  <p class="since">Since 2.10</p>
323
334
  </div>
324
335
  <hr>
325
- <div class="refsect2">
336
+ <div class="refsect2" title="gtk_recent_filter_set_name ()">
326
337
  <a name="gtk-recent-filter-set-name"></a><h3>gtk_recent_filter_set_name ()</h3>
327
338
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_filter_set_name (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>,
328
339
  <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> *name</code></em>);</pre>
@@ -349,7 +360,7 @@ user interface if there is a selectable list of filters.
349
360
  <p class="since">Since 2.10</p>
350
361
  </div>
351
362
  <hr>
352
- <div class="refsect2">
363
+ <div class="refsect2" title="gtk_recent_filter_add_mime_type ()">
353
364
  <a name="gtk-recent-filter-add-mime-type"></a><h3>gtk_recent_filter_add_mime_type ()</h3>
354
365
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_filter_add_mime_type (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>,
355
366
  <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> *mime_type</code></em>);</pre>
@@ -366,14 +377,15 @@ Adds a rule that allows resources based on their registered MIME type.
366
377
  </tr>
367
378
  <tr>
368
379
  <td><p><span class="term"><em class="parameter"><code>mime_type</code></em> :</span></p></td>
369
- <td>a MIME type</td>
380
+ <td>a MIME type
381
+ </td>
370
382
  </tr>
371
383
  </tbody>
372
384
  </table></div>
373
385
  <p class="since">Since 2.10</p>
374
386
  </div>
375
387
  <hr>
376
- <div class="refsect2">
388
+ <div class="refsect2" title="gtk_recent_filter_add_pattern ()">
377
389
  <a name="gtk-recent-filter-add-pattern"></a><h3>gtk_recent_filter_add_pattern ()</h3>
378
390
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_filter_add_pattern (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>,
379
391
  <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> *pattern</code></em>);</pre>
@@ -391,14 +403,15 @@ display name.
391
403
  </tr>
392
404
  <tr>
393
405
  <td><p><span class="term"><em class="parameter"><code>pattern</code></em> :</span></p></td>
394
- <td>a file pattern</td>
406
+ <td>a file pattern
407
+ </td>
395
408
  </tr>
396
409
  </tbody>
397
410
  </table></div>
398
411
  <p class="since">Since 2.10</p>
399
412
  </div>
400
413
  <hr>
401
- <div class="refsect2">
414
+ <div class="refsect2" title="gtk_recent_filter_add_pixbuf_formats ()">
402
415
  <a name="gtk-recent-filter-add-pixbuf-formats"></a><h3>gtk_recent_filter_add_pixbuf_formats ()</h3>
403
416
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_filter_add_pixbuf_formats
404
417
  (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>);</pre>
@@ -417,7 +430,7 @@ by GdkPixbuf.
417
430
  <p class="since">Since 2.10</p>
418
431
  </div>
419
432
  <hr>
420
- <div class="refsect2">
433
+ <div class="refsect2" title="gtk_recent_filter_add_application ()">
421
434
  <a name="gtk-recent-filter-add-application"></a><h3>gtk_recent_filter_add_application ()</h3>
422
435
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_filter_add_application (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>,
423
436
  <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> *application</code></em>);</pre>
@@ -435,14 +448,15 @@ that has registered them.
435
448
  </tr>
436
449
  <tr>
437
450
  <td><p><span class="term"><em class="parameter"><code>application</code></em> :</span></p></td>
438
- <td>an application name</td>
451
+ <td>an application name
452
+ </td>
439
453
  </tr>
440
454
  </tbody>
441
455
  </table></div>
442
456
  <p class="since">Since 2.10</p>
443
457
  </div>
444
458
  <hr>
445
- <div class="refsect2">
459
+ <div class="refsect2" title="gtk_recent_filter_add_group ()">
446
460
  <a name="gtk-recent-filter-add-group"></a><h3>gtk_recent_filter_add_group ()</h3>
447
461
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_filter_add_group (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>,
448
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> *group</code></em>);</pre>
@@ -460,14 +474,15 @@ to which they belong
460
474
  </tr>
461
475
  <tr>
462
476
  <td><p><span class="term"><em class="parameter"><code>group</code></em> :</span></p></td>
463
- <td>a group name</td>
477
+ <td>a group name
478
+ </td>
464
479
  </tr>
465
480
  </tbody>
466
481
  </table></div>
467
482
  <p class="since">Since 2.10</p>
468
483
  </div>
469
484
  <hr>
470
- <div class="refsect2">
485
+ <div class="refsect2" title="gtk_recent_filter_add_age ()">
471
486
  <a name="gtk-recent-filter-add-age"></a><h3>gtk_recent_filter_add_age ()</h3>
472
487
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_filter_add_age (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>,
473
488
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> days</code></em>);</pre>
@@ -485,14 +500,15 @@ of days elapsed since they were last modified.
485
500
  </tr>
486
501
  <tr>
487
502
  <td><p><span class="term"><em class="parameter"><code>days</code></em> :</span></p></td>
488
- <td>number of days</td>
503
+ <td>number of days
504
+ </td>
489
505
  </tr>
490
506
  </tbody>
491
507
  </table></div>
492
508
  <p class="since">Since 2.10</p>
493
509
  </div>
494
510
  <hr>
495
- <div class="refsect2">
511
+ <div class="refsect2" title="gtk_recent_filter_add_custom ()">
496
512
  <a name="gtk-recent-filter-add-custom"></a><h3>gtk_recent_filter_add_custom ()</h3>
497
513
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_filter_add_custom (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>,
498
514
  <em class="parameter"><code><a class="link" href="GtkRecentFilter.html#GtkRecentFilterFlags" title="enum GtkRecentFilterFlags"><span class="type">GtkRecentFilterFlags</span></a> needed</code></em>,
@@ -517,12 +533,14 @@ it isn't needed by the filter.
517
533
  <tr>
518
534
  <td><p><span class="term"><em class="parameter"><code>needed</code></em> :</span></p></td>
519
535
  <td>bitfield of flags indicating the information that the custom
520
- filter function needs.</td>
536
+ filter function needs.
537
+ </td>
521
538
  </tr>
522
539
  <tr>
523
540
  <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
524
541
  <td>callback function; if the function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, then
525
- the file will be displayed.</td>
542
+ the file will be displayed.
543
+ </td>
526
544
  </tr>
527
545
  <tr>
528
546
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
@@ -531,14 +549,15 @@ the file will be displayed.</td>
531
549
  </tr>
532
550
  <tr>
533
551
  <td><p><span class="term"><em class="parameter"><code>data_destroy</code></em> :</span></p></td>
534
- <td>function to call to free <em class="parameter"><code>data</code></em> when it is no longer needed.</td>
552
+ <td>function to call to free <em class="parameter"><code>data</code></em> when it is no longer needed.
553
+ </td>
535
554
  </tr>
536
555
  </tbody>
537
556
  </table></div>
538
557
  <p class="since">Since 2.10</p>
539
558
  </div>
540
559
  <hr>
541
- <div class="refsect2">
560
+ <div class="refsect2" title="gtk_recent_filter_get_needed ()">
542
561
  <a name="gtk-recent-filter-get-needed"></a><h3>gtk_recent_filter_get_needed ()</h3>
543
562
  <pre class="programlisting"><a class="link" href="GtkRecentFilter.html#GtkRecentFilterFlags" title="enum GtkRecentFilterFlags"><span class="returnvalue">GtkRecentFilterFlags</span></a> gtk_recent_filter_get_needed (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>);</pre>
544
563
  <p>
@@ -560,8 +579,9 @@ is intended principally for use in the implementation of
560
579
  </tr>
561
580
  <tr>
562
581
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
563
- <td>bitfield of flags indicating needed fields when
564
- calling <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-filter" title="gtk_recent_filter_filter ()"><code class="function">gtk_recent_filter_filter()</code></a>
582
+ <td> bitfield of flags indicating needed fields when
583
+ calling <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-filter" title="gtk_recent_filter_filter ()"><code class="function">gtk_recent_filter_filter()</code></a>
584
+
565
585
  </td>
566
586
  </tr>
567
587
  </tbody>
@@ -569,13 +589,13 @@ calling <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-filter" tit
569
589
  <p class="since">Since 2.10</p>
570
590
  </div>
571
591
  <hr>
572
- <div class="refsect2">
592
+ <div class="refsect2" title="gtk_recent_filter_filter ()">
573
593
  <a name="gtk-recent-filter-filter"></a><h3>gtk_recent_filter_filter ()</h3>
574
594
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_filter_filter (<em class="parameter"><code><a class="link" href="GtkRecentFilter.html" title="GtkRecentFilter"><span class="type">GtkRecentFilter</span></a> *filter</code></em>,
575
- <em class="parameter"><code>const <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="struct GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> *filter_info</code></em>);</pre>
595
+ <em class="parameter"><code>const <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> *filter_info</code></em>);</pre>
576
596
  <p>
577
597
  Tests whether a file should be displayed according to <em class="parameter"><code>filter</code></em>.
578
- The <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="struct GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> structure <em class="parameter"><code>filter_info</code></em> should include
598
+ The <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> structure <em class="parameter"><code>filter_info</code></em> should include
579
599
  the fields returned from <a class="link" href="GtkRecentFilter.html#gtk-recent-filter-get-needed" title="gtk_recent_filter_get_needed ()"><code class="function">gtk_recent_filter_get_needed()</code></a>.
580
600
  </p>
581
601
  <p>
@@ -593,20 +613,22 @@ is intended principally for use in the implementation of
593
613
  </tr>
594
614
  <tr>
595
615
  <td><p><span class="term"><em class="parameter"><code>filter_info</code></em> :</span></p></td>
596
- <td>a <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="struct GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> structure containing information
597
- about a recently used resource</td>
616
+ <td>a <a class="link" href="GtkRecentFilter.html#GtkRecentFilterInfo" title="GtkRecentFilterInfo"><span class="type">GtkRecentFilterInfo</span></a> structure containing information
617
+ about a recently used resource
618
+ </td>
598
619
  </tr>
599
620
  <tr>
600
621
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
601
- <td>
602
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the file should be displayed</td>
622
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the file should be displayed
623
+
624
+ </td>
603
625
  </tr>
604
626
  </tbody>
605
627
  </table></div>
606
628
  <p class="since">Since 2.10</p>
607
629
  </div>
608
630
  </div>
609
- <div class="refsect1">
631
+ <div class="refsect1" title="See Also">
610
632
  <a name="GtkRecentFilter.see-also"></a><h2>See Also</h2>
611
633
  <p>
612
634
  <a class="link" href="GtkRecentChooser.html" title="GtkRecentChooser"><span class="type">GtkRecentChooser</span></a>
@@ -615,6 +637,6 @@ about a recently used resource</td>
615
637
  </div>
616
638
  <div class="footer">
617
639
  <hr>
618
- Generated by GTK-Doc V1.16.1</div>
640
+ Generated by GTK-Doc V1.15</div>
619
641
  </body>
620
642
  </html>
@@ -8,7 +8,7 @@
8
8
  <link rel="up" href="RecentDocuments.html" title="Recently Used Documents">
9
9
  <link rel="prev" href="RecentDocuments.html" title="Recently Used Documents">
10
10
  <link rel="next" href="GtkRecentChooser.html" title="GtkRecentChooser">
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">
@@ -32,7 +32,7 @@
32
32
  <a href="#GtkRecentManager.signals" class="shortcut">Signals</a>
33
33
  </td></tr>
34
34
  </table>
35
- <div class="refentry">
35
+ <div class="refentry" title="GtkRecentManager">
36
36
  <a name="GtkRecentManager"></a><div class="titlepage"></div>
37
37
  <div class="refnamediv"><table width="100%"><tr>
38
38
  <td valign="top">
@@ -41,14 +41,14 @@
41
41
  </td>
42
42
  <td valign="top" align="right"></td>
43
43
  </tr></table></div>
44
- <div class="refsynopsisdiv">
44
+ <div class="refsynopsisdiv" title="Synopsis">
45
45
  <a name="GtkRecentManager.synopsis"></a><h2>Synopsis</h2>
46
46
  <pre class="synopsis">
47
47
  #include &lt;gtk/gtk.h&gt;
48
48
 
49
- struct <a class="link" href="GtkRecentManager.html#GtkRecentManager-struct" title="struct GtkRecentManager">GtkRecentManager</a>;
49
+ <a class="link" href="GtkRecentManager.html#GtkRecentManager-struct" title="GtkRecentManager">GtkRecentManager</a>;
50
50
  <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo">GtkRecentInfo</a>;
51
- struct <a class="link" href="GtkRecentManager.html#GtkRecentData" title="struct GtkRecentData">GtkRecentData</a>;
51
+ <a class="link" href="GtkRecentManager.html#GtkRecentData" title="GtkRecentData">GtkRecentData</a>;
52
52
  #define <a class="link" href="GtkRecentManager.html#GTK-RECENT-MANAGER-ERROR:CAPS" title="GTK_RECENT_MANAGER_ERROR">GTK_RECENT_MANAGER_ERROR</a>
53
53
  enum <a class="link" href="GtkRecentManager.html#GtkRecentManagerError" title="enum GtkRecentManagerError">GtkRecentManagerError</a>;
54
54
  <a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="returnvalue">GtkRecentManager</span></a> * <a class="link" href="GtkRecentManager.html#gtk-recent-manager-new" title="gtk_recent_manager_new ()">gtk_recent_manager_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
@@ -60,7 +60,7 @@ enum <a class="link" href="GtkRecentManager.html#GtkRecentManager
60
60
  <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> *uri</code></em>);
61
61
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkRecentManager.html#gtk-recent-manager-add-full" title="gtk_recent_manager_add_full ()">gtk_recent_manager_add_full</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
62
62
  <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> *uri</code></em>,
63
- <em class="parameter"><code>const <a class="link" href="GtkRecentManager.html#GtkRecentData" title="struct GtkRecentData"><span class="type">GtkRecentData</span></a> *recent_data</code></em>);
63
+ <em class="parameter"><code>const <a class="link" href="GtkRecentManager.html#GtkRecentData" title="GtkRecentData"><span class="type">GtkRecentData</span></a> *recent_data</code></em>);
64
64
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkRecentManager.html#gtk-recent-manager-remove-item" title="gtk_recent_manager_remove_item ()">gtk_recent_manager_remove_item</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
65
65
  <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> *uri</code></em>,
66
66
  <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>);
@@ -80,7 +80,7 @@ enum <a class="link" href="GtkRecentManager.html#GtkRecentManager
80
80
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkRecentManager.html#gtk-recent-manager-purge-items" title="gtk_recent_manager_purge_items ()">gtk_recent_manager_purge_items</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
81
81
  <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>);
82
82
 
83
- <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="returnvalue">GtkRecentInfo</span></a> * <a class="link" href="GtkRecentManager.html#gtk-recent-info-ref" title="gtk_recent_info_ref ()">gtk_recent_info_ref</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
83
+ <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="returnvalue">GtkRecentInfo</span></a> * <a class="link" href="GtkRecentManager.html#gtk-recent-info-ref" title="gtk_recent_info_ref ()">gtk_recent_info_ref</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
84
84
  <span class="returnvalue">void</span> <a class="link" href="GtkRecentManager.html#gtk-recent-info-unref" title="gtk_recent_info_unref ()">gtk_recent_info_unref</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
85
85
  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="GtkRecentManager.html#gtk-recent-info-get-uri" title="gtk_recent_info_get_uri ()">gtk_recent_info_get_uri</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
86
86
  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="GtkRecentManager.html#gtk-recent-info-get-display-name" title="gtk_recent_info_get_display_name ()">gtk_recent_info_get_display_name</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
@@ -96,19 +96,19 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
96
96
  <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> **app_exec</code></em>,
97
97
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> *count</code></em>,
98
98
  <em class="parameter"><code><span class="type">time_t</span> *time_</code></em>);
99
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** <a class="link" href="GtkRecentManager.html#gtk-recent-info-get-applications" title="gtk_recent_info_get_applications ()">gtk_recent_info_get_applications</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
99
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** <a class="link" href="GtkRecentManager.html#gtk-recent-info-get-applications" title="gtk_recent_info_get_applications ()">gtk_recent_info_get_applications</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
100
100
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>);
101
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkRecentManager.html#gtk-recent-info-last-application" title="gtk_recent_info_last_application ()">gtk_recent_info_last_application</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
102
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** <a class="link" href="GtkRecentManager.html#gtk-recent-info-get-groups" title="gtk_recent_info_get_groups ()">gtk_recent_info_get_groups</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
101
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkRecentManager.html#gtk-recent-info-last-application" title="gtk_recent_info_last_application ()">gtk_recent_info_last_application</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
102
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** <a class="link" href="GtkRecentManager.html#gtk-recent-info-get-groups" title="gtk_recent_info_get_groups ()">gtk_recent_info_get_groups</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
103
103
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>);
104
104
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkRecentManager.html#gtk-recent-info-has-group" title="gtk_recent_info_has_group ()">gtk_recent_info_has_group</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
105
105
  <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> *group_name</code></em>);
106
106
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkRecentManager.html#gtk-recent-info-has-application" title="gtk_recent_info_has_application ()">gtk_recent_info_has_application</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
107
107
  <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> *app_name</code></em>);
108
- <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="GtkRecentManager.html#gtk-recent-info-get-icon" title="gtk_recent_info_get_icon ()">gtk_recent_info_get_icon</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
108
+ <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="GtkRecentManager.html#gtk-recent-info-get-icon" title="gtk_recent_info_get_icon ()">gtk_recent_info_get_icon</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
109
109
  <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>);
110
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkRecentManager.html#gtk-recent-info-get-short-name" title="gtk_recent_info_get_short_name ()">gtk_recent_info_get_short_name</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
111
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkRecentManager.html#gtk-recent-info-get-uri-display" title="gtk_recent_info_get_uri_display ()">gtk_recent_info_get_uri_display</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
110
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkRecentManager.html#gtk-recent-info-get-short-name" title="gtk_recent_info_get_short_name ()">gtk_recent_info_get_short_name</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
111
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkRecentManager.html#gtk-recent-info-get-uri-display" title="gtk_recent_info_get_uri_display ()">gtk_recent_info_get_uri_display</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
112
112
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkRecentManager.html#gtk-recent-info-get-age" title="gtk_recent_info_get_age ()">gtk_recent_info_get_age</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
113
113
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkRecentManager.html#gtk-recent-info-is-local" title="gtk_recent_info_is_local ()">gtk_recent_info_is_local</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
114
114
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkRecentManager.html#gtk-recent-info-exists" title="gtk_recent_info_exists ()">gtk_recent_info_exists</a> (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);
@@ -116,14 +116,14 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
116
116
  <em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info_b</code></em>);
117
117
  </pre>
118
118
  </div>
119
- <div class="refsect1">
119
+ <div class="refsect1" title="Object Hierarchy">
120
120
  <a name="GtkRecentManager.object-hierarchy"></a><h2>Object Hierarchy</h2>
121
121
  <pre class="synopsis">
122
122
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
123
123
  +----GtkRecentManager
124
124
  </pre>
125
125
  </div>
126
- <div class="refsect1">
126
+ <div class="refsect1" title="Properties">
127
127
  <a name="GtkRecentManager.properties"></a><h2>Properties</h2>
128
128
  <pre class="synopsis">
129
129
  "<a class="link" href="GtkRecentManager.html#GtkRecentManager--filename" title='The "filename" property'>filename</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only
@@ -131,13 +131,13 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
131
131
  "<a class="link" href="GtkRecentManager.html#GtkRecentManager--size" title='The "size" property'>size</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
132
132
  </pre>
133
133
  </div>
134
- <div class="refsect1">
134
+ <div class="refsect1" title="Signals">
135
135
  <a name="GtkRecentManager.signals"></a><h2>Signals</h2>
136
136
  <pre class="synopsis">
137
- "<a class="link" href="GtkRecentManager.html#GtkRecentManager-changed" title='The "changed" signal'>changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
137
+ "<a class="link" href="GtkRecentManager.html#GtkRecentManager-changed" title='The "changed" signal'>changed</a>" : Run First
138
138
  </pre>
139
139
  </div>
140
- <div class="refsect1">
140
+ <div class="refsect1" title="Description">
141
141
  <a name="GtkRecentManager.description"></a><h2>Description</h2>
142
142
  <p>
143
143
  <a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> provides a facility for adding, removing and
@@ -217,11 +217,11 @@ While looking up a recently used file is as simple as:
217
217
  Recently used files are supported since GTK+ 2.10.
218
218
  </p>
219
219
  </div>
220
- <div class="refsect1">
220
+ <div class="refsect1" title="Details">
221
221
  <a name="GtkRecentManager.details"></a><h2>Details</h2>
222
- <div class="refsect2">
223
- <a name="GtkRecentManager-struct"></a><h3>struct GtkRecentManager</h3>
224
- <pre class="programlisting">struct GtkRecentManager;</pre>
222
+ <div class="refsect2" title="GtkRecentManager">
223
+ <a name="GtkRecentManager-struct"></a><h3>GtkRecentManager</h3>
224
+ <pre class="programlisting">typedef struct _GtkRecentManager GtkRecentManager;</pre>
225
225
  <p>
226
226
  Acts as a database of information about the list of recently
227
227
  used files. Normally, you retrieve the recent manager for a
@@ -230,7 +230,7 @@ and it will contain information about current recent manager
230
230
  for that screen.</p>
231
231
  </div>
232
232
  <hr>
233
- <div class="refsect2">
233
+ <div class="refsect2" title="GtkRecentInfo">
234
234
  <a name="GtkRecentInfo"></a><h3>GtkRecentInfo</h3>
235
235
  <pre class="programlisting">typedef struct _GtkRecentInfo GtkRecentInfo;</pre>
236
236
  <p>
@@ -239,9 +239,9 @@ recently used files list.
239
239
  </p>
240
240
  </div>
241
241
  <hr>
242
- <div class="refsect2">
243
- <a name="GtkRecentData"></a><h3>struct GtkRecentData</h3>
244
- <pre class="programlisting">struct GtkRecentData {
242
+ <div class="refsect2" title="GtkRecentData">
243
+ <a name="GtkRecentData"></a><h3>GtkRecentData</h3>
244
+ <pre class="programlisting">typedef struct {
245
245
  gchar *display_name;
246
246
  gchar *description;
247
247
 
@@ -253,7 +253,7 @@ recently used files list.
253
253
  gchar **groups;
254
254
 
255
255
  gboolean is_private;
256
- };
256
+ } GtkRecentData;
257
257
  </pre>
258
258
  <p>
259
259
  Meta-data to be passed to <a class="link" href="GtkRecentManager.html#gtk-recent-manager-add-full" title="gtk_recent_manager_add_full ()"><code class="function">gtk_recent_manager_add_full()</code></a> when
@@ -265,43 +265,50 @@ registering a recently used resource.
265
265
  <tr>
266
266
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="GtkRecentData.display-name"></a>display_name</code></em>;</span></p></td>
267
267
  <td>a UTF-8 encoded string, containing the name of the recently
268
- used resource to be displayed, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>;</td>
268
+ used resource to be displayed, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>;
269
+ </td>
269
270
  </tr>
270
271
  <tr>
271
272
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="GtkRecentData.description"></a>description</code></em>;</span></p></td>
272
273
  <td>a UTF-8 encoded string, containing a short description of
273
- the resource, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>;</td>
274
+ the resource, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>;
275
+ </td>
274
276
  </tr>
275
277
  <tr>
276
278
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="GtkRecentData.mime-type"></a>mime_type</code></em>;</span></p></td>
277
- <td>the MIME type of the resource;</td>
279
+ <td>the MIME type of the resource;
280
+ </td>
278
281
  </tr>
279
282
  <tr>
280
283
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="GtkRecentData.app-name"></a>app_name</code></em>;</span></p></td>
281
284
  <td>the name of the application that is registering this recently
282
- used resource;</td>
285
+ used resource;
286
+ </td>
283
287
  </tr>
284
288
  <tr>
285
289
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *<em class="structfield"><code><a name="GtkRecentData.app-exec"></a>app_exec</code></em>;</span></p></td>
286
290
  <td>command line used to launch this resource; may contain the
287
- "%f" and "%u" escape characters which will be expanded
288
- to the resource file path and URI respectively when the command line
289
- is retrieved;</td>
291
+ "%f" and "%u" escape characters which will be expanded
292
+ to the resource file path and URI respectively when the command line
293
+ is retrieved;
294
+ </td>
290
295
  </tr>
291
296
  <tr>
292
297
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **<em class="structfield"><code><a name="GtkRecentData.groups"></a>groups</code></em>;</span></p></td>
293
- <td>a vector of strings containing groups names;</td>
298
+ <td>a vector of strings containing groups names;
299
+ </td>
294
300
  </tr>
295
301
  <tr>
296
302
  <td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> <em class="structfield"><code><a name="GtkRecentData.is-private"></a>is_private</code></em>;</span></p></td>
297
303
  <td>whether this resource should be displayed only by the
298
- applications that have registered it or not.</td>
304
+ applications that have registered it or not.
305
+ </td>
299
306
  </tr>
300
307
  </tbody>
301
308
  </table></div>
302
309
  </div>
303
310
  <hr>
304
- <div class="refsect2">
311
+ <div class="refsect2" title="GTK_RECENT_MANAGER_ERROR">
305
312
  <a name="GTK-RECENT-MANAGER-ERROR:CAPS"></a><h3>GTK_RECENT_MANAGER_ERROR</h3>
306
313
  <pre class="programlisting">#define GTK_RECENT_MANAGER_ERROR (gtk_recent_manager_error_quark ())
307
314
  </pre>
@@ -310,7 +317,7 @@ The <a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuar
310
317
  </p>
311
318
  </div>
312
319
  <hr>
313
- <div class="refsect2">
320
+ <div class="refsect2" title="enum GtkRecentManagerError">
314
321
  <a name="GtkRecentManagerError"></a><h3>enum GtkRecentManagerError</h3>
315
322
  <pre class="programlisting">typedef enum
316
323
  {
@@ -373,7 +380,7 @@ Error codes for GtkRecentManager operations
373
380
  </table></div>
374
381
  </div>
375
382
  <hr>
376
- <div class="refsect2">
383
+ <div class="refsect2" title="gtk_recent_manager_new ()">
377
384
  <a name="gtk-recent-manager-new"></a><h3>gtk_recent_manager_new ()</h3>
378
385
  <pre class="programlisting"><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="returnvalue">GtkRecentManager</span></a> * gtk_recent_manager_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
379
386
  <p>
@@ -390,13 +397,15 @@ needed. You should use <a class="link" href="GtkRecentManager.html#gtk-recent-ma
390
397
  <col align="left" valign="top">
391
398
  <tbody><tr>
392
399
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
393
- <td>A newly created <a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> object.</td>
400
+ <td> A newly created <a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> object.
401
+
402
+ </td>
394
403
  </tr></tbody>
395
404
  </table></div>
396
405
  <p class="since">Since 2.10</p>
397
406
  </div>
398
407
  <hr>
399
- <div class="refsect2">
408
+ <div class="refsect2" title="gtk_recent_manager_get_default ()">
400
409
  <a name="gtk-recent-manager-get-default"></a><h3>gtk_recent_manager_get_default ()</h3>
401
410
  <pre class="programlisting"><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="returnvalue">GtkRecentManager</span></a> * gtk_recent_manager_get_default (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
402
411
  <p>
@@ -408,17 +417,17 @@ returned instance will be freed when you application terminates.
408
417
  <col align="left" valign="top">
409
418
  <tbody><tr>
410
419
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
411
- <td>A unique <a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a>. 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>
420
+ <td> A unique <a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a>. 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>
412
421
  </td>
413
422
  </tr></tbody>
414
423
  </table></div>
415
424
  <p class="since">Since 2.10</p>
416
425
  </div>
417
426
  <hr>
418
- <div class="refsect2">
427
+ <div class="refsect2" title="gtk_recent_manager_get_for_screen ()">
419
428
  <a name="gtk-recent-manager-get-for-screen"></a><h3>gtk_recent_manager_get_for_screen ()</h3>
420
429
  <pre class="programlisting"><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="returnvalue">GtkRecentManager</span></a> * gtk_recent_manager_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>
421
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
430
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
422
431
  <h3 class="title">Warning</h3>
423
432
  <p><code class="literal">gtk_recent_manager_get_for_screen</code> has been deprecated since version 2.12 and should not be used in newly-written code. This function has been deprecated and should
424
433
  not be used in newly written code. Calling this function is
@@ -444,21 +453,23 @@ users.
444
453
  </tr>
445
454
  <tr>
446
455
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
447
- <td>A unique <a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> associated with the given
448
- screen. This recent manager is associated to the with the screen
449
- and can be used as long as the screen is open. Do not ref or
450
- unref it.</td>
456
+ <td> A unique <a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> associated with the given
457
+ screen. This recent manager is associated to the with the screen
458
+ and can be used as long as the screen is open. Do not ref or
459
+ unref it.
460
+
461
+ </td>
451
462
  </tr>
452
463
  </tbody>
453
464
  </table></div>
454
465
  <p class="since">Since 2.10</p>
455
466
  </div>
456
467
  <hr>
457
- <div class="refsect2">
468
+ <div class="refsect2" title="gtk_recent_manager_set_screen ()">
458
469
  <a name="gtk-recent-manager-set-screen"></a><h3>gtk_recent_manager_set_screen ()</h3>
459
470
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_manager_set_screen (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
460
471
  <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>
461
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
472
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
462
473
  <h3 class="title">Warning</h3>
463
474
  <p><code class="literal">gtk_recent_manager_set_screen</code> has been deprecated since version 2.12 and should not be used in newly-written code. This function has been deprecated and should
464
475
  not be used in newly written code. Calling this function has
@@ -487,7 +498,7 @@ storage.
487
498
  <p class="since">Since 2.10</p>
488
499
  </div>
489
500
  <hr>
490
- <div class="refsect2">
501
+ <div class="refsect2" title="gtk_recent_manager_add_item ()">
491
502
  <a name="gtk-recent-manager-add-item"></a><h3>gtk_recent_manager_add_item ()</h3>
492
503
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_manager_add_item (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
493
504
  <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> *uri</code></em>);</pre>
@@ -514,27 +525,29 @@ define the metadata for the resource pointed by <em class="parameter"><code>uri<
514
525
  </tr>
515
526
  <tr>
516
527
  <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
517
- <td>a valid URI</td>
528
+ <td>a valid URI
529
+ </td>
518
530
  </tr>
519
531
  <tr>
520
532
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
521
- <td>
522
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the new item was successfully added
523
- to the recently used resources list</td>
533
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the new item was successfully added
534
+ to the recently used resources list
535
+
536
+ </td>
524
537
  </tr>
525
538
  </tbody>
526
539
  </table></div>
527
540
  <p class="since">Since 2.10</p>
528
541
  </div>
529
542
  <hr>
530
- <div class="refsect2">
543
+ <div class="refsect2" title="gtk_recent_manager_add_full ()">
531
544
  <a name="gtk-recent-manager-add-full"></a><h3>gtk_recent_manager_add_full ()</h3>
532
545
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_manager_add_full (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
533
546
  <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> *uri</code></em>,
534
- <em class="parameter"><code>const <a class="link" href="GtkRecentManager.html#GtkRecentData" title="struct GtkRecentData"><span class="type">GtkRecentData</span></a> *recent_data</code></em>);</pre>
547
+ <em class="parameter"><code>const <a class="link" href="GtkRecentManager.html#GtkRecentData" title="GtkRecentData"><span class="type">GtkRecentData</span></a> *recent_data</code></em>);</pre>
535
548
  <p>
536
549
  Adds a new resource, pointed by <em class="parameter"><code>uri</code></em>, into the recently used
537
- resources list, using the metadata specified inside the <a class="link" href="GtkRecentManager.html#GtkRecentData" title="struct GtkRecentData"><span class="type">GtkRecentData</span></a>
550
+ resources list, using the metadata specified inside the <a class="link" href="GtkRecentManager.html#GtkRecentData" title="GtkRecentData"><span class="type">GtkRecentData</span></a>
538
551
  structure passed in <em class="parameter"><code>recent_data</code></em>.
539
552
  </p>
540
553
  <p>
@@ -544,13 +557,13 @@ list.
544
557
  <p>
545
558
  In order to register the new recently used resource, metadata about
546
559
  the resource must be passed as well as the URI; the metadata is
547
- stored in a <a class="link" href="GtkRecentManager.html#GtkRecentData" title="struct GtkRecentData"><span class="type">GtkRecentData</span></a> structure, which must contain the MIME
560
+ stored in a <a class="link" href="GtkRecentManager.html#GtkRecentData" title="GtkRecentData"><span class="type">GtkRecentData</span></a> structure, which must contain the MIME
548
561
  type of the resource pointed by the URI; the name of the application
549
562
  that is registering the item, and a command line to be used when
550
563
  launching the item.
551
564
  </p>
552
565
  <p>
553
- Optionally, a <a class="link" href="GtkRecentManager.html#GtkRecentData" title="struct GtkRecentData"><span class="type">GtkRecentData</span></a> structure might contain a UTF-8 string
566
+ Optionally, a <a class="link" href="GtkRecentManager.html#GtkRecentData" title="GtkRecentData"><span class="type">GtkRecentData</span></a> structure might contain a UTF-8 string
554
567
  to be used when viewing the item instead of the last component of the
555
568
  URI; a short description of the item; whether the item should be
556
569
  considered private - that is, should be displayed only by the
@@ -566,24 +579,27 @@ applications that have registered it.
566
579
  </tr>
567
580
  <tr>
568
581
  <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
569
- <td>a valid URI</td>
582
+ <td>a valid URI
583
+ </td>
570
584
  </tr>
571
585
  <tr>
572
586
  <td><p><span class="term"><em class="parameter"><code>recent_data</code></em> :</span></p></td>
573
- <td>metadata of the resource</td>
587
+ <td>metadata of the resource
588
+ </td>
574
589
  </tr>
575
590
  <tr>
576
591
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
577
- <td>
578
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the new item was successfully added to the
579
- recently used resources list, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
592
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the new item was successfully added to the
593
+ recently used resources list, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
594
+
595
+ </td>
580
596
  </tr>
581
597
  </tbody>
582
598
  </table></div>
583
599
  <p class="since">Since 2.10</p>
584
600
  </div>
585
601
  <hr>
586
- <div class="refsect2">
602
+ <div class="refsect2" title="gtk_recent_manager_remove_item ()">
587
603
  <a name="gtk-recent-manager-remove-item"></a><h3>gtk_recent_manager_remove_item ()</h3>
588
604
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_manager_remove_item (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
589
605
  <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> *uri</code></em>,
@@ -602,25 +618,27 @@ list handled by a recent manager.
602
618
  </tr>
603
619
  <tr>
604
620
  <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
605
- <td>the URI of the item you wish to remove</td>
621
+ <td>the URI of the item you wish to remove
622
+ </td>
606
623
  </tr>
607
624
  <tr>
608
625
  <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
609
- <td>return location for a <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
626
+ <td> return location for a <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
610
627
  </td>
611
628
  </tr>
612
629
  <tr>
613
630
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
614
- <td>
615
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the item pointed by <em class="parameter"><code>uri</code></em> has been successfully
616
- removed by the recently used resources list, and <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
631
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the item pointed by <em class="parameter"><code>uri</code></em> has been successfully
632
+ removed by the recently used resources list, and <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
633
+
634
+ </td>
617
635
  </tr>
618
636
  </tbody>
619
637
  </table></div>
620
638
  <p class="since">Since 2.10</p>
621
639
  </div>
622
640
  <hr>
623
- <div class="refsect2">
641
+ <div class="refsect2" title="gtk_recent_manager_lookup_item ()">
624
642
  <a name="gtk-recent-manager-lookup-item"></a><h3>gtk_recent_manager_lookup_item ()</h3>
625
643
  <pre class="programlisting"><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="returnvalue">GtkRecentInfo</span></a> * gtk_recent_manager_lookup_item (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
626
644
  <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> *uri</code></em>,
@@ -640,26 +658,29 @@ like its MIME type, or its display name.
640
658
  </tr>
641
659
  <tr>
642
660
  <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
643
- <td>a URI</td>
661
+ <td>a URI
662
+ </td>
644
663
  </tr>
645
664
  <tr>
646
665
  <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
647
- <td>a return location for a <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
666
+ <td> a return location for a <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
648
667
  </td>
649
668
  </tr>
650
669
  <tr>
651
670
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
652
- <td>a <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> structure containing information
653
- about the resource pointed by <em class="parameter"><code>uri</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the URI was
654
- not registered in the recently used resources list. Free with
655
- <a class="link" href="GtkRecentManager.html#gtk-recent-info-unref" title="gtk_recent_info_unref ()"><code class="function">gtk_recent_info_unref()</code></a>.</td>
671
+ <td> a <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> structure containing information
672
+ about the resource pointed by <em class="parameter"><code>uri</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the URI was
673
+ not registered in the recently used resources list. Free with
674
+ <a class="link" href="GtkRecentManager.html#gtk-recent-info-unref" title="gtk_recent_info_unref ()"><code class="function">gtk_recent_info_unref()</code></a>.
675
+
676
+ </td>
656
677
  </tr>
657
678
  </tbody>
658
679
  </table></div>
659
680
  <p class="since">Since 2.10</p>
660
681
  </div>
661
682
  <hr>
662
- <div class="refsect2">
683
+ <div class="refsect2" title="gtk_recent_manager_has_item ()">
663
684
  <a name="gtk-recent-manager-has-item"></a><h3>gtk_recent_manager_has_item ()</h3>
664
685
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_manager_has_item (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
665
686
  <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> *uri</code></em>);</pre>
@@ -677,19 +698,21 @@ with <em class="parameter"><code>uri</code></em> inside the recent manager.
677
698
  </tr>
678
699
  <tr>
679
700
  <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
680
- <td>a URI</td>
701
+ <td>a URI
702
+ </td>
681
703
  </tr>
682
704
  <tr>
683
705
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
684
- <td>
685
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the resource was found, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
706
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the resource was found, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
707
+
708
+ </td>
686
709
  </tr>
687
710
  </tbody>
688
711
  </table></div>
689
712
  <p class="since">Since 2.10</p>
690
713
  </div>
691
714
  <hr>
692
- <div class="refsect2">
715
+ <div class="refsect2" title="gtk_recent_manager_move_item ()">
693
716
  <a name="gtk-recent-manager-move-item"></a><h3>gtk_recent_manager_move_item ()</h3>
694
717
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_manager_move_item (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
695
718
  <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> *uri</code></em>,
@@ -712,33 +735,35 @@ by the URIs, but only the URI used in the recently used resources list.
712
735
  </tr>
713
736
  <tr>
714
737
  <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
715
- <td>the URI of a recently used resource</td>
738
+ <td>the URI of a recently used resource
739
+ </td>
716
740
  </tr>
717
741
  <tr>
718
742
  <td><p><span class="term"><em class="parameter"><code>new_uri</code></em> :</span></p></td>
719
- <td>the new URI of the recently used resource, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to
720
- remove the item pointed by <em class="parameter"><code>uri</code></em> in the list. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
743
+ <td> the new URI of the recently used resource, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to
744
+ remove the item pointed by <em class="parameter"><code>uri</code></em> in the list. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
721
745
  </td>
722
746
  </tr>
723
747
  <tr>
724
748
  <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
725
- <td>a return location for a <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
749
+ <td> a return location for a <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
726
750
  </td>
727
751
  </tr>
728
752
  <tr>
729
753
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
730
- <td>
731
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success.</td>
754
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success.
755
+
756
+ </td>
732
757
  </tr>
733
758
  </tbody>
734
759
  </table></div>
735
760
  <p class="since">Since 2.10</p>
736
761
  </div>
737
762
  <hr>
738
- <div class="refsect2">
763
+ <div class="refsect2" title="gtk_recent_manager_get_limit ()">
739
764
  <a name="gtk-recent-manager-get-limit"></a><h3>gtk_recent_manager_get_limit ()</h3>
740
765
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_recent_manager_get_limit (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>);</pre>
741
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
766
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
742
767
  <h3 class="title">Warning</h3>
743
768
  <p><code class="literal">gtk_recent_manager_get_limit</code> has been deprecated since version 2.22 and should not be used in newly-written code. The length of the list should be managed by the
744
769
  view (implementing <a class="link" href="GtkRecentChooser.html" title="GtkRecentChooser"><span class="type">GtkRecentChooser</span></a>), and not by the model (the
@@ -758,18 +783,20 @@ function should return.
758
783
  </tr>
759
784
  <tr>
760
785
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
761
- <td>the number of items to return, or -1 for every item.</td>
786
+ <td> the number of items to return, or -1 for every item.
787
+
788
+ </td>
762
789
  </tr>
763
790
  </tbody>
764
791
  </table></div>
765
792
  <p class="since">Since 2.10</p>
766
793
  </div>
767
794
  <hr>
768
- <div class="refsect2">
795
+ <div class="refsect2" title="gtk_recent_manager_set_limit ()">
769
796
  <a name="gtk-recent-manager-set-limit"></a><h3>gtk_recent_manager_set_limit ()</h3>
770
797
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_manager_set_limit (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
771
798
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> limit</code></em>);</pre>
772
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
799
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
773
800
  <h3 class="title">Warning</h3>
774
801
  <p><code class="literal">gtk_recent_manager_set_limit</code> has been deprecated since version 2.22 and should not be used in newly-written code. The length of the list should be managed by the
775
802
  view (implementing <a class="link" href="GtkRecentChooser.html" title="GtkRecentChooser"><span class="type">GtkRecentChooser</span></a>), and not by the model (the
@@ -790,14 +817,15 @@ items.
790
817
  </tr>
791
818
  <tr>
792
819
  <td><p><span class="term"><em class="parameter"><code>limit</code></em> :</span></p></td>
793
- <td>the maximum number of items to return, or -1.</td>
820
+ <td>the maximum number of items to return, or -1.
821
+ </td>
794
822
  </tr>
795
823
  </tbody>
796
824
  </table></div>
797
825
  <p class="since">Since 2.10</p>
798
826
  </div>
799
827
  <hr>
800
- <div class="refsect2">
828
+ <div class="refsect2" title="gtk_recent_manager_get_items ()">
801
829
  <a name="gtk-recent-manager-get-items"></a><h3>gtk_recent_manager_get_items ()</h3>
802
830
  <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_recent_manager_get_items (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>);</pre>
803
831
  <p>
@@ -813,10 +841,10 @@ Gets the list of recently used resources.
813
841
  </tr>
814
842
  <tr>
815
843
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
816
- <td>a list of
817
- newly allocated <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> objects. Use
818
- <a class="link" href="GtkRecentManager.html#gtk-recent-info-unref" title="gtk_recent_info_unref ()"><code class="function">gtk_recent_info_unref()</code></a> on each item inside the list, and then
819
- free the list itself using <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> GtkRecentInfo][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
844
+ <td> a list of
845
+ newly allocated <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> objects. Use
846
+ <a class="link" href="GtkRecentManager.html#gtk-recent-info-unref" title="gtk_recent_info_unref ()"><code class="function">gtk_recent_info_unref()</code></a> on each item inside the list, and then
847
+ free the list itself using <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> GtkRecentInfo][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym> GtkRecentInfo]</span>
820
848
  </td>
821
849
  </tr>
822
850
  </tbody>
@@ -824,7 +852,7 @@ free the list itself using <a href="http://library.gnome.org/devel/glib/unstable
824
852
  <p class="since">Since 2.10</p>
825
853
  </div>
826
854
  <hr>
827
- <div class="refsect2">
855
+ <div class="refsect2" title="gtk_recent_manager_purge_items ()">
828
856
  <a name="gtk-recent-manager-purge-items"></a><h3>gtk_recent_manager_purge_items ()</h3>
829
857
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_recent_manager_purge_items (<em class="parameter"><code><a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *manager</code></em>,
830
858
  <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>
@@ -841,22 +869,24 @@ Purges every item from the recently used resources list.
841
869
  </tr>
842
870
  <tr>
843
871
  <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
844
- <td>a return location for a <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
872
+ <td> a return location for a <a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
845
873
  </td>
846
874
  </tr>
847
875
  <tr>
848
876
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
849
- <td>the number of items that have been removed from the
850
- recently used resources list.</td>
877
+ <td> the number of items that have been removed from the
878
+ recently used resources list.
879
+
880
+ </td>
851
881
  </tr>
852
882
  </tbody>
853
883
  </table></div>
854
884
  <p class="since">Since 2.10</p>
855
885
  </div>
856
886
  <hr>
857
- <div class="refsect2">
887
+ <div class="refsect2" title="gtk_recent_info_ref ()">
858
888
  <a name="gtk-recent-info-ref"></a><h3>gtk_recent_info_ref ()</h3>
859
- <pre class="programlisting"><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="returnvalue">GtkRecentInfo</span></a> * gtk_recent_info_ref (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
889
+ <pre class="programlisting"><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="returnvalue">GtkRecentInfo</span></a> * gtk_recent_info_ref (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
860
890
  <p>
861
891
  Increases the reference count of <em class="parameter"><code>recent_info</code></em> by one.
862
892
  </p>
@@ -870,15 +900,17 @@ Increases the reference count of <em class="parameter"><code>recent_info</code><
870
900
  </tr>
871
901
  <tr>
872
902
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
873
- <td>the recent info object with its reference count increased
874
- by one.</td>
903
+ <td> the recent info object with its reference count increased
904
+ by one.
905
+
906
+ </td>
875
907
  </tr>
876
908
  </tbody>
877
909
  </table></div>
878
910
  <p class="since">Since 2.10</p>
879
911
  </div>
880
912
  <hr>
881
- <div class="refsect2">
913
+ <div class="refsect2" title="gtk_recent_info_unref ()">
882
914
  <a name="gtk-recent-info-unref"></a><h3>gtk_recent_info_unref ()</h3>
883
915
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_recent_info_unref (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
884
916
  <p>
@@ -896,7 +928,7 @@ count reaches zero, <em class="parameter"><code>info</code></em> is deallocated,
896
928
  <p class="since">Since 2.10</p>
897
929
  </div>
898
930
  <hr>
899
- <div class="refsect2">
931
+ <div class="refsect2" title="gtk_recent_info_get_uri ()">
900
932
  <a name="gtk-recent-info-get-uri"></a><h3>gtk_recent_info_get_uri ()</h3>
901
933
  <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_recent_info_get_uri (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
902
934
  <p>
@@ -912,15 +944,17 @@ Gets the URI of the resource.
912
944
  </tr>
913
945
  <tr>
914
946
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
915
- <td>the URI of the resource. The returned string is
916
- owned by the recent manager, and should not be freed.</td>
947
+ <td> the URI of the resource. The returned string is
948
+ owned by the recent manager, and should not be freed.
949
+
950
+ </td>
917
951
  </tr>
918
952
  </tbody>
919
953
  </table></div>
920
954
  <p class="since">Since 2.10</p>
921
955
  </div>
922
956
  <hr>
923
- <div class="refsect2">
957
+ <div class="refsect2" title="gtk_recent_info_get_display_name ()">
924
958
  <a name="gtk-recent-info-get-display-name"></a><h3>gtk_recent_info_get_display_name ()</h3>
925
959
  <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_recent_info_get_display_name (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
926
960
  <p>
@@ -937,15 +971,17 @@ of the resource is obtained.
937
971
  </tr>
938
972
  <tr>
939
973
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
940
- <td>the display name of the resource. The returned string
941
- is owned by the recent manager, and should not be freed.</td>
974
+ <td> the display name of the resource. The returned string
975
+ is owned by the recent manager, and should not be freed.
976
+
977
+ </td>
942
978
  </tr>
943
979
  </tbody>
944
980
  </table></div>
945
981
  <p class="since">Since 2.10</p>
946
982
  </div>
947
983
  <hr>
948
- <div class="refsect2">
984
+ <div class="refsect2" title="gtk_recent_info_get_description ()">
949
985
  <a name="gtk-recent-info-get-description"></a><h3>gtk_recent_info_get_description ()</h3>
950
986
  <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_recent_info_get_description (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
951
987
  <p>
@@ -961,15 +997,17 @@ Gets the (short) description of the resource.
961
997
  </tr>
962
998
  <tr>
963
999
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
964
- <td>the description of the resource. The returned string
965
- is owned by the recent manager, and should not be freed.</td>
1000
+ <td> the description of the resource. The returned string
1001
+ is owned by the recent manager, and should not be freed.
1002
+
1003
+ </td>
966
1004
  </tr>
967
1005
  </tbody>
968
1006
  </table></div>
969
1007
  <p class="since">Since 2.10</p>
970
1008
  </div>
971
1009
  <hr>
972
- <div class="refsect2">
1010
+ <div class="refsect2" title="gtk_recent_info_get_mime_type ()">
973
1011
  <a name="gtk-recent-info-get-mime-type"></a><h3>gtk_recent_info_get_mime_type ()</h3>
974
1012
  <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_recent_info_get_mime_type (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
975
1013
  <p>
@@ -985,15 +1023,17 @@ Gets the MIME type of the resource.
985
1023
  </tr>
986
1024
  <tr>
987
1025
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
988
- <td>the MIME type of the resource. The returned string
989
- is owned by the recent manager, and should not be freed.</td>
1026
+ <td> the MIME type of the resource. The returned string
1027
+ is owned by the recent manager, and should not be freed.
1028
+
1029
+ </td>
990
1030
  </tr>
991
1031
  </tbody>
992
1032
  </table></div>
993
1033
  <p class="since">Since 2.10</p>
994
1034
  </div>
995
1035
  <hr>
996
- <div class="refsect2">
1036
+ <div class="refsect2" title="gtk_recent_info_get_added ()">
997
1037
  <a name="gtk-recent-info-get-added"></a><h3>gtk_recent_info_get_added ()</h3>
998
1038
  <pre class="programlisting"><span class="returnvalue">time_t</span> gtk_recent_info_get_added (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
999
1039
  <p>
@@ -1010,15 +1050,17 @@ was added to the recently used resources list.
1010
1050
  </tr>
1011
1051
  <tr>
1012
1052
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1013
- <td>the number of seconds elapsed from system's Epoch when
1014
- the resource was added to the list, or -1 on failure.</td>
1053
+ <td> the number of seconds elapsed from system's Epoch when
1054
+ the resource was added to the list, or -1 on failure.
1055
+
1056
+ </td>
1015
1057
  </tr>
1016
1058
  </tbody>
1017
1059
  </table></div>
1018
1060
  <p class="since">Since 2.10</p>
1019
1061
  </div>
1020
1062
  <hr>
1021
- <div class="refsect2">
1063
+ <div class="refsect2" title="gtk_recent_info_get_modified ()">
1022
1064
  <a name="gtk-recent-info-get-modified"></a><h3>gtk_recent_info_get_modified ()</h3>
1023
1065
  <pre class="programlisting"><span class="returnvalue">time_t</span> gtk_recent_info_get_modified (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1024
1066
  <p>
@@ -1035,15 +1077,17 @@ was last modified.
1035
1077
  </tr>
1036
1078
  <tr>
1037
1079
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1038
- <td>the number of seconds elapsed from system's Epoch when
1039
- the resource was last modified, or -1 on failure.</td>
1080
+ <td> the number of seconds elapsed from system's Epoch when
1081
+ the resource was last modified, or -1 on failure.
1082
+
1083
+ </td>
1040
1084
  </tr>
1041
1085
  </tbody>
1042
1086
  </table></div>
1043
1087
  <p class="since">Since 2.10</p>
1044
1088
  </div>
1045
1089
  <hr>
1046
- <div class="refsect2">
1090
+ <div class="refsect2" title="gtk_recent_info_get_visited ()">
1047
1091
  <a name="gtk-recent-info-get-visited"></a><h3>gtk_recent_info_get_visited ()</h3>
1048
1092
  <pre class="programlisting"><span class="returnvalue">time_t</span> gtk_recent_info_get_visited (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1049
1093
  <p>
@@ -1060,15 +1104,17 @@ was last visited.
1060
1104
  </tr>
1061
1105
  <tr>
1062
1106
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1063
- <td>the number of seconds elapsed from system's Epoch when
1064
- the resource was last visited, or -1 on failure.</td>
1107
+ <td> the number of seconds elapsed from system's Epoch when
1108
+ the resource was last visited, or -1 on failure.
1109
+
1110
+ </td>
1065
1111
  </tr>
1066
1112
  </tbody>
1067
1113
  </table></div>
1068
1114
  <p class="since">Since 2.10</p>
1069
1115
  </div>
1070
1116
  <hr>
1071
- <div class="refsect2">
1117
+ <div class="refsect2" title="gtk_recent_info_get_private_hint ()">
1072
1118
  <a name="gtk-recent-info-get-private-hint"></a><h3>gtk_recent_info_get_private_hint ()</h3>
1073
1119
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_info_get_private_hint (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1074
1120
  <p>
@@ -1086,15 +1132,16 @@ applications that have registered them.
1086
1132
  </tr>
1087
1133
  <tr>
1088
1134
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1089
- <td>
1090
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the private flag was found, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
1135
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the private flag was found, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1136
+
1137
+ </td>
1091
1138
  </tr>
1092
1139
  </tbody>
1093
1140
  </table></div>
1094
1141
  <p class="since">Since 2.10</p>
1095
1142
  </div>
1096
1143
  <hr>
1097
- <div class="refsect2">
1144
+ <div class="refsect2" title="gtk_recent_info_get_application_info ()">
1098
1145
  <a name="gtk-recent-info-get-application-info"></a><h3>gtk_recent_info_get_application_info ()</h3>
1099
1146
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_info_get_application_info
1100
1147
  (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
@@ -1120,40 +1167,42 @@ storage specification, they will be expanded.
1120
1167
  </tr>
1121
1168
  <tr>
1122
1169
  <td><p><span class="term"><em class="parameter"><code>app_name</code></em> :</span></p></td>
1123
- <td>the name of the application that has registered this item</td>
1170
+ <td>the name of the application that has registered this item
1171
+ </td>
1124
1172
  </tr>
1125
1173
  <tr>
1126
1174
  <td><p><span class="term"><em class="parameter"><code>app_exec</code></em> :</span></p></td>
1127
- <td>return location for the string containing the command line. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1175
+ <td> return location for the string containing the command line. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1128
1176
  </td>
1129
1177
  </tr>
1130
1178
  <tr>
1131
1179
  <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
1132
- <td>return location for the number of times this item was registered. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1180
+ <td> return location for the number of times this item was registered. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1133
1181
  </td>
1134
1182
  </tr>
1135
1183
  <tr>
1136
1184
  <td><p><span class="term"><em class="parameter"><code>time_</code></em> :</span></p></td>
1137
- <td>return location for the timestamp this item was last registered
1138
- for this application. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1185
+ <td> return location for the timestamp this item was last registered
1186
+ for this application. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
1139
1187
  </td>
1140
1188
  </tr>
1141
1189
  <tr>
1142
1190
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1143
- <td>
1144
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if an application with <em class="parameter"><code>app_name</code></em> has registered this
1145
- resource inside the recently used list, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise. The
1146
- <em class="parameter"><code>app_exec</code></em> string is owned by the <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> and should not be
1147
- modified or freed</td>
1191
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if an application with <em class="parameter"><code>app_name</code></em> has registered this
1192
+ resource inside the recently used list, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise. The
1193
+ <em class="parameter"><code>app_exec</code></em> string is owned by the <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> and should not be
1194
+ modified or freed
1195
+
1196
+ </td>
1148
1197
  </tr>
1149
1198
  </tbody>
1150
1199
  </table></div>
1151
1200
  <p class="since">Since 2.10</p>
1152
1201
  </div>
1153
1202
  <hr>
1154
- <div class="refsect2">
1203
+ <div class="refsect2" title="gtk_recent_info_get_applications ()">
1155
1204
  <a name="gtk-recent-info-get-applications"></a><h3>gtk_recent_info_get_applications ()</h3>
1156
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** gtk_recent_info_get_applications (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
1205
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** gtk_recent_info_get_applications (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
1157
1206
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>);</pre>
1158
1207
  <p>
1159
1208
  Retrieves the list of applications that have registered this resource.
@@ -1168,13 +1217,13 @@ Retrieves the list of applications that have registered this resource.
1168
1217
  </tr>
1169
1218
  <tr>
1170
1219
  <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
1171
- <td>return location for the length of the returned list. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1220
+ <td> return location for the length of the returned list. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1172
1221
  </td>
1173
1222
  </tr>
1174
1223
  <tr>
1175
1224
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1176
- <td>a newly allocated <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of strings.
1177
- Use <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a> to free it. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length zero-terminated=1][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1225
+ <td> a newly allocated
1226
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of strings. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a> to free it. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length zero-terminated=1]</span>
1178
1227
  </td>
1179
1228
  </tr>
1180
1229
  </tbody>
@@ -1182,9 +1231,9 @@ Use <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Fu
1182
1231
  <p class="since">Since 2.10</p>
1183
1232
  </div>
1184
1233
  <hr>
1185
- <div class="refsect2">
1234
+ <div class="refsect2" title="gtk_recent_info_last_application ()">
1186
1235
  <a name="gtk-recent-info-last-application"></a><h3>gtk_recent_info_last_application ()</h3>
1187
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_recent_info_last_application (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1236
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_recent_info_last_application (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1188
1237
  <p>
1189
1238
  Gets the name of the last application that have registered the
1190
1239
  recently used resource represented by <em class="parameter"><code>info</code></em>.
@@ -1199,16 +1248,18 @@ recently used resource represented by <em class="parameter"><code>info</code></e
1199
1248
  </tr>
1200
1249
  <tr>
1201
1250
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1202
- <td>an application name. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> to free it.</td>
1251
+ <td> an application name. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> to free it.
1252
+
1253
+ </td>
1203
1254
  </tr>
1204
1255
  </tbody>
1205
1256
  </table></div>
1206
1257
  <p class="since">Since 2.10</p>
1207
1258
  </div>
1208
1259
  <hr>
1209
- <div class="refsect2">
1260
+ <div class="refsect2" title="gtk_recent_info_get_groups ()">
1210
1261
  <a name="gtk-recent-info-get-groups"></a><h3>gtk_recent_info_get_groups ()</h3>
1211
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** gtk_recent_info_get_groups (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
1262
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> ** gtk_recent_info_get_groups (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
1212
1263
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>);</pre>
1213
1264
  <p>
1214
1265
  Returns all groups registered for the recently used item <em class="parameter"><code>info</code></em>. The
@@ -1225,13 +1276,13 @@ optionally be <a href="http://library.gnome.org/devel/glib/unstable/glib-Standar
1225
1276
  </tr>
1226
1277
  <tr>
1227
1278
  <td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
1228
- <td>return location for the number of groups returned. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1279
+ <td> return location for the number of groups returned. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1229
1280
  </td>
1230
1281
  </tr>
1231
1282
  <tr>
1232
1283
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1233
- <td>a newly allocated <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> terminated array of strings.
1234
- Use <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a> to free it. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length zero-terminated=1][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1284
+ <td> a newly allocated
1285
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> terminated array of strings. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a> to free it. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length zero-terminated=1]</span>
1235
1286
  </td>
1236
1287
  </tr>
1237
1288
  </tbody>
@@ -1239,7 +1290,7 @@ Use <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Fu
1239
1290
  <p class="since">Since 2.10</p>
1240
1291
  </div>
1241
1292
  <hr>
1242
- <div class="refsect2">
1293
+ <div class="refsect2" title="gtk_recent_info_has_group ()">
1243
1294
  <a name="gtk-recent-info-has-group"></a><h3>gtk_recent_info_has_group ()</h3>
1244
1295
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_info_has_group (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
1245
1296
  <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> *group_name</code></em>);</pre>
@@ -1257,19 +1308,21 @@ recently used item <em class="parameter"><code>info</code></em>.
1257
1308
  </tr>
1258
1309
  <tr>
1259
1310
  <td><p><span class="term"><em class="parameter"><code>group_name</code></em> :</span></p></td>
1260
- <td>name of a group</td>
1311
+ <td>name of a group
1312
+ </td>
1261
1313
  </tr>
1262
1314
  <tr>
1263
1315
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1264
- <td>
1265
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the group was found.</td>
1316
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the group was found.
1317
+
1318
+ </td>
1266
1319
  </tr>
1267
1320
  </tbody>
1268
1321
  </table></div>
1269
1322
  <p class="since">Since 2.10</p>
1270
1323
  </div>
1271
1324
  <hr>
1272
- <div class="refsect2">
1325
+ <div class="refsect2" title="gtk_recent_info_has_application ()">
1273
1326
  <a name="gtk-recent-info-has-application"></a><h3>gtk_recent_info_has_application ()</h3>
1274
1327
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_info_has_application (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
1275
1328
  <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> *app_name</code></em>);</pre>
@@ -1286,22 +1339,24 @@ Checks whether an application registered this resource using <em class="paramete
1286
1339
  </tr>
1287
1340
  <tr>
1288
1341
  <td><p><span class="term"><em class="parameter"><code>app_name</code></em> :</span></p></td>
1289
- <td>a string containing an application name</td>
1342
+ <td>a string containing an application name
1343
+ </td>
1290
1344
  </tr>
1291
1345
  <tr>
1292
1346
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1293
- <td>
1294
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if an application with name <em class="parameter"><code>app_name</code></em> was found,
1295
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
1347
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if an application with name <em class="parameter"><code>app_name</code></em> was found,
1348
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1349
+
1350
+ </td>
1296
1351
  </tr>
1297
1352
  </tbody>
1298
1353
  </table></div>
1299
1354
  <p class="since">Since 2.10</p>
1300
1355
  </div>
1301
1356
  <hr>
1302
- <div class="refsect2">
1357
+ <div class="refsect2" title="gtk_recent_info_get_icon ()">
1303
1358
  <a name="gtk-recent-info-get-icon"></a><h3>gtk_recent_info_get_icon ()</h3>
1304
- <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_recent_info_get_icon (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
1359
+ <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_recent_info_get_icon (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>,
1305
1360
  <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>);</pre>
1306
1361
  <p>
1307
1362
  Retrieves the icon of size <em class="parameter"><code>size</code></em> associated to the resource MIME type.
@@ -1316,12 +1371,14 @@ Retrieves the icon of size <em class="parameter"><code>size</code></em> associat
1316
1371
  </tr>
1317
1372
  <tr>
1318
1373
  <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
1319
- <td>the size of the icon in pixels</td>
1374
+ <td>the size of the icon in pixels
1375
+ </td>
1320
1376
  </tr>
1321
1377
  <tr>
1322
1378
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1323
- <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> containing the icon,
1324
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. 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> when finished using the icon. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
1379
+ <td> a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-gdk-pixbuf.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> containing the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Use
1380
+ <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> when finished using the icon.
1381
+
1325
1382
  </td>
1326
1383
  </tr>
1327
1384
  </tbody>
@@ -1329,9 +1386,9 @@ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht
1329
1386
  <p class="since">Since 2.10</p>
1330
1387
  </div>
1331
1388
  <hr>
1332
- <div class="refsect2">
1389
+ <div class="refsect2" title="gtk_recent_info_get_short_name ()">
1333
1390
  <a name="gtk-recent-info-get-short-name"></a><h3>gtk_recent_info_get_short_name ()</h3>
1334
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_recent_info_get_short_name (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1391
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_recent_info_get_short_name (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1335
1392
  <p>
1336
1393
  Computes a valid UTF-8 string that can be used as the name of the item in a
1337
1394
  menu or list. For example, calling this function on an item that refers to
@@ -1347,17 +1404,19 @@ menu or list. For example, calling this function on an item that refers to
1347
1404
  </tr>
1348
1405
  <tr>
1349
1406
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1350
- <td>A newly-allocated string in UTF-8 encoding; free it with
1351
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td>
1407
+ <td> A newly-allocated string in UTF-8 encoding; free it with
1408
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.
1409
+
1410
+ </td>
1352
1411
  </tr>
1353
1412
  </tbody>
1354
1413
  </table></div>
1355
1414
  <p class="since">Since 2.10</p>
1356
1415
  </div>
1357
1416
  <hr>
1358
- <div class="refsect2">
1417
+ <div class="refsect2" title="gtk_recent_info_get_uri_display ()">
1359
1418
  <a name="gtk-recent-info-get-uri-display"></a><h3>gtk_recent_info_get_uri_display ()</h3>
1360
- <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_recent_info_get_uri_display (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1419
+ <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_recent_info_get_uri_display (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1361
1420
  <p>
1362
1421
  Gets a displayable version of the resource's URI. If the resource
1363
1422
  is local, it returns a local path; if the resource is not local,
@@ -1373,15 +1432,17 @@ it returns the UTF-8 encoded content of <a class="link" href="GtkRecentManager.h
1373
1432
  </tr>
1374
1433
  <tr>
1375
1434
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1376
- <td>a newly allocated UTF-8 string containing the
1377
- resource's URI or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done using it.</td>
1435
+ <td> a newly allocated UTF-8 string containing the
1436
+ resource's URI or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. Use <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when done using it.
1437
+
1438
+ </td>
1378
1439
  </tr>
1379
1440
  </tbody>
1380
1441
  </table></div>
1381
1442
  <p class="since">Since 2.10</p>
1382
1443
  </div>
1383
1444
  <hr>
1384
- <div class="refsect2">
1445
+ <div class="refsect2" title="gtk_recent_info_get_age ()">
1385
1446
  <a name="gtk-recent-info-get-age"></a><h3>gtk_recent_info_get_age ()</h3>
1386
1447
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_recent_info_get_age (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1387
1448
  <p>
@@ -1398,15 +1459,17 @@ pointed by <em class="parameter"><code>info</code></em>.
1398
1459
  </tr>
1399
1460
  <tr>
1400
1461
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1401
- <td>a positive integer containing the number of days elapsed
1402
- since the time this resource was last modified.</td>
1462
+ <td> a positive integer containing the number of days elapsed
1463
+ since the time this resource was last modified.
1464
+
1465
+ </td>
1403
1466
  </tr>
1404
1467
  </tbody>
1405
1468
  </table></div>
1406
1469
  <p class="since">Since 2.10</p>
1407
1470
  </div>
1408
1471
  <hr>
1409
- <div class="refsect2">
1472
+ <div class="refsect2" title="gtk_recent_info_is_local ()">
1410
1473
  <a name="gtk-recent-info-is-local"></a><h3>gtk_recent_info_is_local ()</h3>
1411
1474
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_info_is_local (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1412
1475
  <p>
@@ -1423,15 +1486,16 @@ scheme of its URI.
1423
1486
  </tr>
1424
1487
  <tr>
1425
1488
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1426
- <td>
1427
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the resource is local.</td>
1489
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the resource is local.
1490
+
1491
+ </td>
1428
1492
  </tr>
1429
1493
  </tbody>
1430
1494
  </table></div>
1431
1495
  <p class="since">Since 2.10</p>
1432
1496
  </div>
1433
1497
  <hr>
1434
- <div class="refsect2">
1498
+ <div class="refsect2" title="gtk_recent_info_exists ()">
1435
1499
  <a name="gtk-recent-info-exists"></a><h3>gtk_recent_info_exists ()</h3>
1436
1500
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_info_exists (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info</code></em>);</pre>
1437
1501
  <p>
@@ -1448,15 +1512,16 @@ the moment this check is done only on resources pointing to local files.
1448
1512
  </tr>
1449
1513
  <tr>
1450
1514
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1451
- <td>
1452
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the resource exists</td>
1515
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the resource exists
1516
+
1517
+ </td>
1453
1518
  </tr>
1454
1519
  </tbody>
1455
1520
  </table></div>
1456
1521
  <p class="since">Since 2.10</p>
1457
1522
  </div>
1458
1523
  <hr>
1459
- <div class="refsect2">
1524
+ <div class="refsect2" title="gtk_recent_info_match ()">
1460
1525
  <a name="gtk-recent-info-match"></a><h3>gtk_recent_info_match ()</h3>
1461
1526
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_recent_info_match (<em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info_a</code></em>,
1462
1527
  <em class="parameter"><code><a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> *info_b</code></em>);</pre>
@@ -1479,18 +1544,19 @@ resource.
1479
1544
  </tr>
1480
1545
  <tr>
1481
1546
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1482
- <td>
1483
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if both <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> structures point to se same
1484
- resource, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
1547
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if both <a class="link" href="GtkRecentManager.html#GtkRecentInfo" title="GtkRecentInfo"><span class="type">GtkRecentInfo</span></a> structures point to se same
1548
+ resource, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.
1549
+
1550
+ </td>
1485
1551
  </tr>
1486
1552
  </tbody>
1487
1553
  </table></div>
1488
1554
  <p class="since">Since 2.10</p>
1489
1555
  </div>
1490
1556
  </div>
1491
- <div class="refsect1">
1557
+ <div class="refsect1" title="Property Details">
1492
1558
  <a name="GtkRecentManager.property-details"></a><h2>Property Details</h2>
1493
- <div class="refsect2">
1559
+ <div class="refsect2" title='The "filename" property'>
1494
1560
  <a name="GtkRecentManager--filename"></a><h3>The <code class="literal">"filename"</code> property</h3>
1495
1561
  <pre class="programlisting"> "filename" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only</pre>
1496
1562
  <p>
@@ -1501,10 +1567,10 @@ used resources list
1501
1567
  <p class="since">Since 2.10</p>
1502
1568
  </div>
1503
1569
  <hr>
1504
- <div class="refsect2">
1570
+ <div class="refsect2" title='The "limit" property'>
1505
1571
  <a name="GtkRecentManager--limit"></a><h3>The <code class="literal">"limit"</code> property</h3>
1506
1572
  <pre class="programlisting"> "limit" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1507
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1573
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1508
1574
  <h3 class="title">Warning</h3>
1509
1575
  <p><code class="literal">GtkRecentManager:limit</code> has been deprecated since version 2.22 and should not be used in newly-written code. Setting this property does not have any effect.
1510
1576
  The length of the list should be managed by the view (implementing
@@ -1520,7 +1586,7 @@ The maximum number of items to be returned by the
1520
1586
  <p class="since">Since 2.10</p>
1521
1587
  </div>
1522
1588
  <hr>
1523
- <div class="refsect2">
1589
+ <div class="refsect2" title='The "size" property'>
1524
1590
  <a name="GtkRecentManager--size"></a><h3>The <code class="literal">"size"</code> property</h3>
1525
1591
  <pre class="programlisting"> "size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1526
1592
  <p>
@@ -1531,12 +1597,12 @@ The size of the recently used resources list.
1531
1597
  <p class="since">Since 2.10</p>
1532
1598
  </div>
1533
1599
  </div>
1534
- <div class="refsect1">
1600
+ <div class="refsect1" title="Signal Details">
1535
1601
  <a name="GtkRecentManager.signal-details"></a><h2>Signal Details</h2>
1536
- <div class="refsect2">
1602
+ <div class="refsect2" title='The "changed" signal'>
1537
1603
  <a name="GtkRecentManager-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
1538
1604
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkRecentManager.html" title="GtkRecentManager"><span class="type">GtkRecentManager</span></a> *recent_manager,
1539
- <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-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
1605
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run First</pre>
1540
1606
  <p>
1541
1607
  Emitted when the current recently used resources manager changes its
1542
1608
  contents.
@@ -1546,7 +1612,8 @@ contents.
1546
1612
  <tbody>
1547
1613
  <tr>
1548
1614
  <td><p><span class="term"><em class="parameter"><code>recent_manager</code></em> :</span></p></td>
1549
- <td>the recent manager</td>
1615
+ <td>the recent manager
1616
+ </td>
1550
1617
  </tr>
1551
1618
  <tr>
1552
1619
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1560,6 +1627,6 @@ contents.
1560
1627
  </div>
1561
1628
  <div class="footer">
1562
1629
  <hr>
1563
- Generated by GTK-Doc V1.16.1</div>
1630
+ Generated by GTK-Doc V1.15</div>
1564
1631
  </body>
1565
1632
  </html>