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="DisplayWidgets.html" title="Display Widgets">
9
9
  <link rel="prev" href="GtkImage.html" title="GtkImage">
10
10
  <link rel="next" href="GtkProgressBar.html" title="GtkProgressBar">
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">
@@ -34,7 +34,7 @@
34
34
  <a href="#GtkLabel.signals" class="shortcut">Signals</a>
35
35
  </td></tr>
36
36
  </table>
37
- <div class="refentry">
37
+ <div class="refentry" title="GtkLabel">
38
38
  <a name="GtkLabel"></a><div class="titlepage"></div>
39
39
  <div class="refnamediv"><table width="100%"><tr>
40
40
  <td valign="top">
@@ -43,13 +43,13 @@
43
43
  </td>
44
44
  <td valign="top" align="right"><img src="label.png"></td>
45
45
  </tr></table></div>
46
- <div class="refsynopsisdiv">
46
+ <div class="refsynopsisdiv" title="Synopsis">
47
47
  <a name="GtkLabel.synopsis"></a><h2>Synopsis</h2>
48
48
  <pre class="synopsis">
49
49
  #include &lt;gtk/gtk.h&gt;
50
50
 
51
- struct <a class="link" href="GtkLabel.html#GtkLabel-struct" title="struct GtkLabel">GtkLabel</a>;
52
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkLabel.html#gtk-label-new" title="gtk_label_new ()">gtk_label_new</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);
51
+ <a class="link" href="GtkLabel.html#GtkLabel-struct" title="GtkLabel">GtkLabel</a>;
52
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkLabel.html#gtk-label-new" title="gtk_label_new ()">gtk_label_new</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);
53
53
  <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-text" title="gtk_label_set_text ()">gtk_label_set_text</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
54
54
  <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> *str</code></em>);
55
55
  <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-set-attributes" title="gtk_label_set_attributes ()">gtk_label_set_attributes</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
@@ -82,8 +82,8 @@ struct <a class="link" href="GtkLabel.html#GtkLabel-struct" title="
82
82
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>);
83
83
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> <a class="link" href="GtkLabel.html#gtk-label-get-mnemonic-keyval" title="gtk_label_get_mnemonic_keyval ()">gtk_label_get_mnemonic_keyval</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
84
84
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkLabel.html#gtk-label-get-selectable" title="gtk_label_get_selectable ()">gtk_label_get_selectable</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
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="GtkLabel.html#gtk-label-get-text" title="gtk_label_get_text ()">gtk_label_get_text</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
86
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkLabel.html#gtk-label-new-with-mnemonic" title="gtk_label_new_with_mnemonic ()">gtk_label_new_with_mnemonic</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);
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="GtkLabel.html#gtk-label-get-text" title="gtk_label_get_text ()">gtk_label_get_text</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
86
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkLabel.html#gtk-label-new-with-mnemonic" title="gtk_label_new_with_mnemonic ()">gtk_label_new_with_mnemonic</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);
87
87
  <span class="returnvalue">void</span> <a class="link" href="GtkLabel.html#gtk-label-select-region" title="gtk_label_select_region ()">gtk_label_select_region</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
88
88
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> start_offset</code></em>,
89
89
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> end_offset</code></em>);
@@ -126,7 +126,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
126
126
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkLabel.html#gtk-label-get-track-visited-links" title="gtk_label_get_track_visited_links ()">gtk_label_get_track_visited_links</a> (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);
127
127
  </pre>
128
128
  </div>
129
- <div class="refsect1">
129
+ <div class="refsect1" title="Object Hierarchy">
130
130
  <a name="GtkLabel.object-hierarchy"></a><h2>Object Hierarchy</h2>
131
131
  <pre class="synopsis">
132
132
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -139,13 +139,13 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
139
139
  +----<a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery">GtkTipsQuery</a>
140
140
  </pre>
141
141
  </div>
142
- <div class="refsect1">
142
+ <div class="refsect1" title="Implemented Interfaces">
143
143
  <a name="GtkLabel.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
144
144
  <p>
145
145
  GtkLabel implements
146
146
  AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
147
147
  </div>
148
- <div class="refsect1">
148
+ <div class="refsect1" title="Properties">
149
149
  <a name="GtkLabel.properties"></a><h2>Properties</h2>
150
150
  <pre class="synopsis">
151
151
  "<a class="link" href="GtkLabel.html#GtkLabel--angle" title='The "angle" property'>angle</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write
@@ -169,24 +169,24 @@ GtkLabel implements
169
169
  "<a class="link" href="GtkLabel.html#GtkLabel--wrap-mode" title='The "wrap-mode" property'>wrap-mode</a>" <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="type">PangoWrapMode</span></a> : Read / Write
170
170
  </pre>
171
171
  </div>
172
- <div class="refsect1">
172
+ <div class="refsect1" title="Signals">
173
173
  <a name="GtkLabel.signals"></a><h2>Signals</h2>
174
174
  <pre class="synopsis">
175
- "<a class="link" href="GtkLabel.html#GtkLabel-activate-current-link" title='The "activate-current-link" signal'>activate-current-link</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
176
- "<a class="link" href="GtkLabel.html#GtkLabel-activate-link" title='The "activate-link" signal'>activate-link</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
177
- "<a class="link" href="GtkLabel.html#GtkLabel-copy-clipboard" title='The "copy-clipboard" signal'>copy-clipboard</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
178
- "<a class="link" href="GtkLabel.html#GtkLabel-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
179
- "<a class="link" href="GtkLabel.html#GtkLabel-populate-popup" title='The "populate-popup" signal'>populate-popup</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
175
+ "<a class="link" href="GtkLabel.html#GtkLabel-activate-current-link" title='The "activate-current-link" signal'>activate-current-link</a>" : Run Last / Action
176
+ "<a class="link" href="GtkLabel.html#GtkLabel-activate-link" title='The "activate-link" signal'>activate-link</a>" : Run Last
177
+ "<a class="link" href="GtkLabel.html#GtkLabel-copy-clipboard" title='The "copy-clipboard" signal'>copy-clipboard</a>" : Run Last / Action
178
+ "<a class="link" href="GtkLabel.html#GtkLabel-move-cursor" title='The "move-cursor" signal'>move-cursor</a>" : Run Last / Action
179
+ "<a class="link" href="GtkLabel.html#GtkLabel-populate-popup" title='The "populate-popup" signal'>populate-popup</a>" : Run Last
180
180
  </pre>
181
181
  </div>
182
- <div class="refsect1">
182
+ <div class="refsect1" title="Description">
183
183
  <a name="GtkLabel.description"></a><h2>Description</h2>
184
184
  <p>
185
185
  The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget displays a small amount of text. As the name
186
186
  implies, most labels are used to label another widget such as a
187
187
  <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>, a <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a>, or a <a class="link" href="GtkOptionMenu.html" title="GtkOptionMenu"><span class="type">GtkOptionMenu</span></a>.
188
188
  </p>
189
- <div class="refsect2">
189
+ <div class="refsect2" title="GtkLabel as GtkBuildable">
190
190
  <a name="GtkLabel-BUILDER-UI"></a><h3>GtkLabel as GtkBuildable</h3>
191
191
  <p>
192
192
  The GtkLabel implementation of the GtkBuildable interface supports a
@@ -195,7 +195,7 @@ elements. the &lt;attribute&gt; element has attributes named name, value,
195
195
  start and end and allows you to specify <a href="/usr/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttribute"><span class="type">PangoAttribute</span></a> values for this label.
196
196
  </p>
197
197
  <div class="example">
198
- <a name="id637785"></a><p class="title"><b>Example 13. A UI definition fragment specifying Pango attributes</b></p>
198
+ <a name="id676774"></a><p class="title"><b>Example 13. A UI definition fragment specifying Pango attributes</b></p>
199
199
  <div class="example-contents">
200
200
  <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
201
201
  <tbody>
@@ -227,8 +227,8 @@ content instead.
227
227
  </p>
228
228
  </div>
229
229
  <hr>
230
- <div class="refsect2">
231
- <a name="id637808"></a><h3>Mnemonics</h3>
230
+ <div class="refsect2" title="Mnemonics">
231
+ <a name="id676797"></a><h3>Mnemonics</h3>
232
232
  <p>
233
233
  Labels may contain <em class="firstterm">mnemonics</em>. Mnemonics are
234
234
  underlined characters in the label, used for keyboard navigation.
@@ -304,8 +304,8 @@ To create a mnemonic for a widget alongside the label, such as a
304
304
  </p>
305
305
  </div>
306
306
  <hr>
307
- <div class="refsect2">
308
- <a name="id637930"></a><h3>Markup (styled text)</h3>
307
+ <div class="refsect2" title="Markup (styled text)">
308
+ <a name="id676919"></a><h3>Markup (styled text)</h3>
309
309
  <p>
310
310
  To make it easy to format text in a label (changing colors, fonts,
311
311
  etc.), label text can be provided in a simple <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">markup format</a>.
@@ -347,8 +347,8 @@ being displayed, so translations will cause problems.
347
347
  </p>
348
348
  </div>
349
349
  <hr>
350
- <div class="refsect2">
351
- <a name="id638047"></a><h3>Selectable labels</h3>
350
+ <div class="refsect2" title="Selectable labels">
351
+ <a name="id677036"></a><h3>Selectable labels</h3>
352
352
  <p>
353
353
  Labels can be made selectable with <a class="link" href="GtkLabel.html#gtk-label-set-selectable" title="gtk_label_set_selectable ()"><code class="function">gtk_label_set_selectable()</code></a>.
354
354
  Selectable labels allow the user to copy the label contents to
@@ -357,8 +357,8 @@ the clipboard. Only labels that contain useful-to-copy information
357
357
  </p>
358
358
  </div>
359
359
  <hr>
360
- <div class="refsect2">
361
- <a name="id638070"></a><h3>Text layout</h3>
360
+ <div class="refsect2" title="Text layout">
361
+ <a name="id677059"></a><h3>Text layout</h3>
362
362
  <p>
363
363
  A label can contain any number of paragraphs, but will have
364
364
  performance problems if it contains more than a small number.
@@ -376,8 +376,8 @@ aligns in its available space, see <a class="link" href="GtkMisc.html#gtk-misc-s
376
376
  </p>
377
377
  </div>
378
378
  <hr>
379
- <div class="refsect2">
380
- <a name="id638121"></a><h3>Links</h3>
379
+ <div class="refsect2" title="Links">
380
+ <a name="id677110"></a><h3>Links</h3>
381
381
  <p>
382
382
  Since 2.18, GTK+ supports markup for clickable hyperlinks in addition
383
383
  to regular Pango markup. The markup for links is borrowed from HTML, using the
@@ -402,20 +402,20 @@ the <a class="link" href="GtkLabel.html#GtkLabel-activate-link" title='The "acti
402
402
  </p>
403
403
  </div>
404
404
  </div>
405
- <div class="refsect1">
405
+ <div class="refsect1" title="Details">
406
406
  <a name="GtkLabel.details"></a><h2>Details</h2>
407
- <div class="refsect2">
408
- <a name="GtkLabel-struct"></a><h3>struct GtkLabel</h3>
409
- <pre class="programlisting">struct GtkLabel;</pre>
407
+ <div class="refsect2" title="GtkLabel">
408
+ <a name="GtkLabel-struct"></a><h3>GtkLabel</h3>
409
+ <pre class="programlisting">typedef struct _GtkLabel GtkLabel;</pre>
410
410
  <p>
411
411
  This should not be accessed directly. Use the accessor functions as
412
412
  described below.
413
413
  </p>
414
414
  </div>
415
415
  <hr>
416
- <div class="refsect2">
416
+ <div class="refsect2" title="gtk_label_new ()">
417
417
  <a name="gtk-label-new"></a><h3>gtk_label_new ()</h3>
418
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_label_new (<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> *str</code></em>);</pre>
418
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_label_new (<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> *str</code></em>);</pre>
419
419
  <p>
420
420
  Creates a new label with the given text inside it. You can
421
421
  pass <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get an empty label widget.
@@ -425,18 +425,19 @@ pass <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.
425
425
  <tbody>
426
426
  <tr>
427
427
  <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
428
- <td>The text of the label</td>
428
+ <td>The text of the label
429
+ </td>
429
430
  </tr>
430
431
  <tr>
431
432
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
432
- <td>the new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
433
+ <td> the new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
433
434
  </td>
434
435
  </tr>
435
436
  </tbody>
436
437
  </table></div>
437
438
  </div>
438
439
  <hr>
439
- <div class="refsect2">
440
+ <div class="refsect2" title="gtk_label_set_text ()">
440
441
  <a name="gtk-label-set-text"></a><h3>gtk_label_set_text ()</h3>
441
442
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_text (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
442
443
  <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> *str</code></em>);</pre>
@@ -457,13 +458,14 @@ This will also clear any previously set mnemonic accelerators.
457
458
  </tr>
458
459
  <tr>
459
460
  <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
460
- <td>The text you want to set</td>
461
+ <td>The text you want to set
462
+ </td>
461
463
  </tr>
462
464
  </tbody>
463
465
  </table></div>
464
466
  </div>
465
467
  <hr>
466
- <div class="refsect2">
468
+ <div class="refsect2" title="gtk_label_set_attributes ()">
467
469
  <a name="gtk-label-set-attributes"></a><h3>gtk_label_set_attributes ()</h3>
468
470
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_attributes (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
469
471
  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a> *attrs</code></em>);</pre>
@@ -473,7 +475,7 @@ label text.
473
475
  </p>
474
476
  <p>
475
477
  </p>
476
- <div class="note" style="margin-left: 0.5in; margin-right: 0.5in;">
478
+ <div class="note" title="Note" style="margin-left: 0.5in; margin-right: 0.5in;">
477
479
  <h3 class="title">Note</h3>
478
480
  <p>The attributes set with this function will be applied
479
481
  and merged with any other attributes previously effected by way
@@ -501,7 +503,7 @@ to the label after the markup string is parsed.</p>
501
503
  </table></div>
502
504
  </div>
503
505
  <hr>
504
- <div class="refsect2">
506
+ <div class="refsect2" title="gtk_label_set_markup ()">
505
507
  <a name="gtk-label-set-markup"></a><h3>gtk_label_set_markup ()</h3>
506
508
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_markup (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
507
509
  <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> *str</code></em>);</pre>
@@ -542,13 +544,14 @@ external data, you may need to escape it with <a href="http://library.gnome.org/
542
544
  </tr>
543
545
  <tr>
544
546
  <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
545
- <td>a markup string (see <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup format</a>)</td>
547
+ <td>a markup string (see <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup format</a>)
548
+ </td>
546
549
  </tr>
547
550
  </tbody>
548
551
  </table></div>
549
552
  </div>
550
553
  <hr>
551
- <div class="refsect2">
554
+ <div class="refsect2" title="gtk_label_set_markup_with_mnemonic ()">
552
555
  <a name="gtk-label-set-markup-with-mnemonic"></a><h3>gtk_label_set_markup_with_mnemonic ()</h3>
553
556
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_markup_with_mnemonic (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
554
557
  <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> *str</code></em>);</pre>
@@ -572,13 +575,14 @@ automatically, or explicitly using <a class="link" href="GtkLabel.html#gtk-label
572
575
  </tr>
573
576
  <tr>
574
577
  <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
575
- <td>a markup string (see <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup format</a>)</td>
578
+ <td>a markup string (see <a href="/usr/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup format</a>)
579
+ </td>
576
580
  </tr>
577
581
  </tbody>
578
582
  </table></div>
579
583
  </div>
580
584
  <hr>
581
- <div class="refsect2">
585
+ <div class="refsect2" title="gtk_label_set_pattern ()">
582
586
  <a name="gtk-label-set-pattern"></a><h3>gtk_label_set_pattern ()</h3>
583
587
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_pattern (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
584
588
  <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>
@@ -593,17 +597,19 @@ The pattern of underlines you want under the existing text within the
593
597
  <tbody>
594
598
  <tr>
595
599
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
596
- <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to set the pattern to.</td>
600
+ <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to set the pattern to.
601
+ </td>
597
602
  </tr>
598
603
  <tr>
599
604
  <td><p><span class="term"><em class="parameter"><code>pattern</code></em> :</span></p></td>
600
- <td>The pattern as described above.</td>
605
+ <td>The pattern as described above.
606
+ </td>
601
607
  </tr>
602
608
  </tbody>
603
609
  </table></div>
604
610
  </div>
605
611
  <hr>
606
- <div class="refsect2">
612
+ <div class="refsect2" title="gtk_label_set_justify ()">
607
613
  <a name="gtk-label-set-justify"></a><h3>gtk_label_set_justify ()</h3>
608
614
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_justify (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
609
615
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> jtype</code></em>);</pre>
@@ -632,7 +638,7 @@ effect on labels containing only a single line.
632
638
  </table></div>
633
639
  </div>
634
640
  <hr>
635
- <div class="refsect2">
641
+ <div class="refsect2" title="gtk_label_set_ellipsize ()">
636
642
  <a name="gtk-label-set-ellipsize"></a><h3>gtk_label_set_ellipsize ()</h3>
637
643
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_ellipsize (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
638
644
  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a> mode</code></em>);</pre>
@@ -658,7 +664,7 @@ if there is not enough space to render the entire string.
658
664
  <p class="since">Since 2.6</p>
659
665
  </div>
660
666
  <hr>
661
- <div class="refsect2">
667
+ <div class="refsect2" title="gtk_label_set_width_chars ()">
662
668
  <a name="gtk-label-set-width-chars"></a><h3>gtk_label_set_width_chars ()</h3>
663
669
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
664
670
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_chars</code></em>);</pre>
@@ -675,14 +681,15 @@ Sets the desired width in characters of <em class="parameter"><code>label</code>
675
681
  </tr>
676
682
  <tr>
677
683
  <td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
678
- <td>the new desired width, in characters.</td>
684
+ <td>the new desired width, in characters.
685
+ </td>
679
686
  </tr>
680
687
  </tbody>
681
688
  </table></div>
682
689
  <p class="since">Since 2.6</p>
683
690
  </div>
684
691
  <hr>
685
- <div class="refsect2">
692
+ <div class="refsect2" title="gtk_label_set_max_width_chars ()">
686
693
  <a name="gtk-label-set-max-width-chars"></a><h3>gtk_label_set_max_width_chars ()</h3>
687
694
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_max_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
688
695
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_chars</code></em>);</pre>
@@ -699,18 +706,19 @@ Sets the desired maximum width in characters of <em class="parameter"><code>labe
699
706
  </tr>
700
707
  <tr>
701
708
  <td><p><span class="term"><em class="parameter"><code>n_chars</code></em> :</span></p></td>
702
- <td>the new desired maximum width, in characters.</td>
709
+ <td>the new desired maximum width, in characters.
710
+ </td>
703
711
  </tr>
704
712
  </tbody>
705
713
  </table></div>
706
714
  <p class="since">Since 2.6</p>
707
715
  </div>
708
716
  <hr>
709
- <div class="refsect2">
717
+ <div class="refsect2" title="gtk_label_get ()">
710
718
  <a name="gtk-label-get"></a><h3>gtk_label_get ()</h3>
711
719
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_get (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
712
720
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **str</code></em>);</pre>
713
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
721
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
714
722
  <h3 class="title">Warning</h3>
715
723
  <p><code class="literal">gtk_label_get</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkLabel.html#gtk-label-get-text" title="gtk_label_get_text ()"><code class="function">gtk_label_get_text()</code></a> instead.</p>
716
724
  </div>
@@ -724,21 +732,23 @@ must not write to it.
724
732
  <tbody>
725
733
  <tr>
726
734
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
727
- <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget you want to get the text from.</td>
735
+ <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget you want to get the text from.
736
+ </td>
728
737
  </tr>
729
738
  <tr>
730
739
  <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
731
- <td>The reference to the pointer you want to point to the text.</td>
740
+ <td>The reference to the pointer you want to point to the text.
741
+ </td>
732
742
  </tr>
733
743
  </tbody>
734
744
  </table></div>
735
745
  </div>
736
746
  <hr>
737
- <div class="refsect2">
747
+ <div class="refsect2" title="gtk_label_parse_uline ()">
738
748
  <a name="gtk-label-parse-uline"></a><h3>gtk_label_parse_uline ()</h3>
739
749
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gtk_label_parse_uline (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
740
750
  <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> *string</code></em>);</pre>
741
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
751
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
742
752
  <h3 class="title">Warning</h3>
743
753
  <p><code class="literal">gtk_label_parse_uline</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkLabel.html#gtk-label-set-use-underline" title="gtk_label_set_use_underline ()"><code class="function">gtk_label_set_use_underline()</code></a> instead.</p>
744
754
  </div>
@@ -754,21 +764,24 @@ probably only used within the GTK+ library itself for menu items and such.
754
764
  <tbody>
755
765
  <tr>
756
766
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
757
- <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to affect.</td>
767
+ <td>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to affect.
768
+ </td>
758
769
  </tr>
759
770
  <tr>
760
771
  <td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
761
- <td>The string you want to parse for underlines.</td>
772
+ <td>The string you want to parse for underlines.
773
+ </td>
762
774
  </tr>
763
775
  <tr>
764
776
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
765
- <td>The lowercase keyval of the last character underlined.</td>
777
+ <td>The lowercase keyval of the last character underlined.
778
+ </td>
766
779
  </tr>
767
780
  </tbody>
768
781
  </table></div>
769
782
  </div>
770
783
  <hr>
771
- <div class="refsect2">
784
+ <div class="refsect2" title="gtk_label_set_line_wrap ()">
772
785
  <a name="gtk-label-set-line-wrap"></a><h3>gtk_label_set_line_wrap ()</h3>
773
786
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_line_wrap (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
774
787
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> wrap</code></em>);</pre>
@@ -794,13 +807,14 @@ set the label's width using <a class="link" href="GtkWidget.html#gtk-widget-set-
794
807
  </tr>
795
808
  <tr>
796
809
  <td><p><span class="term"><em class="parameter"><code>wrap</code></em> :</span></p></td>
797
- <td>the setting</td>
810
+ <td>the setting
811
+ </td>
798
812
  </tr>
799
813
  </tbody>
800
814
  </table></div>
801
815
  </div>
802
816
  <hr>
803
- <div class="refsect2">
817
+ <div class="refsect2" title="gtk_label_set_line_wrap_mode ()">
804
818
  <a name="gtk-label-set-line-wrap-mode"></a><h3>gtk_label_set_line_wrap_mode ()</h3>
805
819
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_line_wrap_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
806
820
  <em class="parameter"><code><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="type">PangoWrapMode</span></a> wrap_mode</code></em>);</pre>
@@ -819,18 +833,19 @@ wrap on word boundaries.
819
833
  </tr>
820
834
  <tr>
821
835
  <td><p><span class="term"><em class="parameter"><code>wrap_mode</code></em> :</span></p></td>
822
- <td>the line wrapping mode</td>
836
+ <td>the line wrapping mode
837
+ </td>
823
838
  </tr>
824
839
  </tbody>
825
840
  </table></div>
826
841
  <p class="since">Since 2.10</p>
827
842
  </div>
828
843
  <hr>
829
- <div class="refsect2">
844
+ <div class="refsect2" title="gtk_label_set">
830
845
  <a name="gtk-label-set"></a><h3>gtk_label_set</h3>
831
846
  <pre class="programlisting">#define gtk_label_set gtk_label_set_text
832
847
  </pre>
833
- <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
848
+ <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
834
849
  <h3 class="title">Warning</h3>
835
850
  <p><code class="literal">gtk_label_set</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkLabel.html#gtk-label-set-text" title="gtk_label_set_text ()"><code class="function">gtk_label_set_text()</code></a> instead.</p>
836
851
  </div>
@@ -839,7 +854,7 @@ Sets the text within the GtkLabel widget.
839
854
  </p>
840
855
  </div>
841
856
  <hr>
842
- <div class="refsect2">
857
+ <div class="refsect2" title="gtk_label_get_layout_offsets ()">
843
858
  <a name="gtk-label-get-layout-offsets"></a><h3>gtk_label_get_layout_offsets ()</h3>
844
859
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_get_layout_offsets (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
845
860
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
@@ -864,19 +879,19 @@ and from pixels using <a href="/usr/share/gtk-doc/html/pango/pango-Glyph-Storage
864
879
  </tr>
865
880
  <tr>
866
881
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
867
- <td>location to store X offset of layout, 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>
882
+ <td> location to store X offset of layout, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
868
883
  </td>
869
884
  </tr>
870
885
  <tr>
871
886
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
872
- <td>location to store Y offset of layout, 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>
887
+ <td> location to store Y offset of layout, 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>
873
888
  </td>
874
889
  </tr>
875
890
  </tbody>
876
891
  </table></div>
877
892
  </div>
878
893
  <hr>
879
- <div class="refsect2">
894
+ <div class="refsect2" title="gtk_label_get_mnemonic_keyval ()">
880
895
  <a name="gtk-label-get-mnemonic-keyval"></a><h3>gtk_label_get_mnemonic_keyval ()</h3>
881
896
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a> gtk_label_get_mnemonic_keyval (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
882
897
  <p>
@@ -894,14 +909,14 @@ mnemonic set up it returns <span class="type">GDK_VoidSymbol</span>.
894
909
  </tr>
895
910
  <tr>
896
911
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
897
- <td>GDK keyval usable for accelerators, or <span class="type">GDK_VoidSymbol</span>
912
+ <td> GDK keyval usable for accelerators, or <span class="type">GDK_VoidSymbol</span>
898
913
  </td>
899
914
  </tr>
900
915
  </tbody>
901
916
  </table></div>
902
917
  </div>
903
918
  <hr>
904
- <div class="refsect2">
919
+ <div class="refsect2" title="gtk_label_get_selectable ()">
905
920
  <a name="gtk-label-get-selectable"></a><h3>gtk_label_get_selectable ()</h3>
906
921
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_label_get_selectable (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
907
922
  <p>
@@ -917,16 +932,16 @@ Gets the value set by <a class="link" href="GtkLabel.html#gtk-label-set-selectab
917
932
  </tr>
918
933
  <tr>
919
934
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
920
- <td>
921
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user can copy text from the label</td>
935
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user can copy text from the label
936
+ </td>
922
937
  </tr>
923
938
  </tbody>
924
939
  </table></div>
925
940
  </div>
926
941
  <hr>
927
- <div class="refsect2">
942
+ <div class="refsect2" title="gtk_label_get_text ()">
928
943
  <a name="gtk-label-get-text"></a><h3>gtk_label_get_text ()</h3>
929
- <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_label_get_text (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
944
+ <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_label_get_text (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
930
945
  <p>
931
946
  Fetches the text from a label widget, as displayed on the
932
947
  screen. This does not include any embedded underlines
@@ -942,16 +957,17 @@ indicating mnemonics or Pango markup. (See <a class="link" href="GtkLabel.html#g
942
957
  </tr>
943
958
  <tr>
944
959
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
945
- <td>the text in the label widget. This is the internal
946
- string used by the label, and must not be modified.</td>
960
+ <td> the text in the label widget. This is the internal
961
+ string used by the label, and must not be modified.
962
+ </td>
947
963
  </tr>
948
964
  </tbody>
949
965
  </table></div>
950
966
  </div>
951
967
  <hr>
952
- <div class="refsect2">
968
+ <div class="refsect2" title="gtk_label_new_with_mnemonic ()">
953
969
  <a name="gtk-label-new-with-mnemonic"></a><h3>gtk_label_new_with_mnemonic ()</h3>
954
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_label_new_with_mnemonic (<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> *str</code></em>);</pre>
970
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_label_new_with_mnemonic (<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> *str</code></em>);</pre>
955
971
  <p>
956
972
  Creates a new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>, containing the text in <em class="parameter"><code>str</code></em>.
957
973
  </p>
@@ -976,18 +992,19 @@ and be activated by the mnemonic.
976
992
  <tr>
977
993
  <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
978
994
  <td>The text of the label, with an underscore in front of the
979
- mnemonic character</td>
995
+ mnemonic character
996
+ </td>
980
997
  </tr>
981
998
  <tr>
982
999
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
983
- <td>the new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
1000
+ <td> the new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>
984
1001
  </td>
985
1002
  </tr>
986
1003
  </tbody>
987
1004
  </table></div>
988
1005
  </div>
989
1006
  <hr>
990
- <div class="refsect2">
1007
+ <div class="refsect2" title="gtk_label_select_region ()">
991
1008
  <a name="gtk-label-select-region"></a><h3>gtk_label_select_region ()</h3>
992
1009
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_select_region (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
993
1010
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> start_offset</code></em>,
@@ -1008,17 +1025,19 @@ this function has no effect. If <em class="parameter"><code>start_offset</code><
1008
1025
  </tr>
1009
1026
  <tr>
1010
1027
  <td><p><span class="term"><em class="parameter"><code>start_offset</code></em> :</span></p></td>
1011
- <td>start offset (in characters not bytes)</td>
1028
+ <td>start offset (in characters not bytes)
1029
+ </td>
1012
1030
  </tr>
1013
1031
  <tr>
1014
1032
  <td><p><span class="term"><em class="parameter"><code>end_offset</code></em> :</span></p></td>
1015
- <td>end offset (in characters not bytes)</td>
1033
+ <td>end offset (in characters not bytes)
1034
+ </td>
1016
1035
  </tr>
1017
1036
  </tbody>
1018
1037
  </table></div>
1019
1038
  </div>
1020
1039
  <hr>
1021
- <div class="refsect2">
1040
+ <div class="refsect2" title="gtk_label_set_mnemonic_widget ()">
1022
1041
  <a name="gtk-label-set-mnemonic-widget"></a><h3>gtk_label_set_mnemonic_widget ()</h3>
1023
1042
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_mnemonic_widget (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1024
1043
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
@@ -1049,14 +1068,14 @@ and toggle focus between the colliding widgets otherwise.
1049
1068
  </tr>
1050
1069
  <tr>
1051
1070
  <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
1052
- <td>the target <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1071
+ <td> the target <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1053
1072
  </td>
1054
1073
  </tr>
1055
1074
  </tbody>
1056
1075
  </table></div>
1057
1076
  </div>
1058
1077
  <hr>
1059
- <div class="refsect2">
1078
+ <div class="refsect2" title="gtk_label_set_selectable ()">
1060
1079
  <a name="gtk-label-set-selectable"></a><h3>gtk_label_set_selectable ()</h3>
1061
1080
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_selectable (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1062
1081
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
@@ -1075,13 +1094,14 @@ copy-and-paste.
1075
1094
  <tr>
1076
1095
  <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
1077
1096
  <td>
1078
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to allow selecting text in the label</td>
1097
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to allow selecting text in the label
1098
+ </td>
1079
1099
  </tr>
1080
1100
  </tbody>
1081
1101
  </table></div>
1082
1102
  </div>
1083
1103
  <hr>
1084
- <div class="refsect2">
1104
+ <div class="refsect2" title="gtk_label_set_text_with_mnemonic ()">
1085
1105
  <a name="gtk-label-set-text-with-mnemonic"></a><h3>gtk_label_set_text_with_mnemonic ()</h3>
1086
1106
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_text_with_mnemonic (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1087
1107
  <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> *str</code></em>);</pre>
@@ -1102,13 +1122,14 @@ automatically, or explicitly using <a class="link" href="GtkLabel.html#gtk-label
1102
1122
  </tr>
1103
1123
  <tr>
1104
1124
  <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
1105
- <td>a string</td>
1125
+ <td>a string
1126
+ </td>
1106
1127
  </tr>
1107
1128
  </tbody>
1108
1129
  </table></div>
1109
1130
  </div>
1110
1131
  <hr>
1111
- <div class="refsect2">
1132
+ <div class="refsect2" title="gtk_label_get_attributes ()">
1112
1133
  <a name="gtk-label-get-attributes"></a><h3>gtk_label_get_attributes ()</h3>
1113
1134
  <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> * gtk_label_get_attributes (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1114
1135
  <p>
@@ -1129,15 +1150,14 @@ pango_layout_get_attribute (gtk_label_get_layout (label)).
1129
1150
  </tr>
1130
1151
  <tr>
1131
1152
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1132
- <td>the attribute list, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
1133
- if none was set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1153
+ <td> the attribute list, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none was set.
1134
1154
  </td>
1135
1155
  </tr>
1136
1156
  </tbody>
1137
1157
  </table></div>
1138
1158
  </div>
1139
1159
  <hr>
1140
- <div class="refsect2">
1160
+ <div class="refsect2" title="gtk_label_get_justify ()">
1141
1161
  <a name="gtk-label-get-justify"></a><h3>gtk_label_get_justify ()</h3>
1142
1162
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a> gtk_label_get_justify (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1143
1163
  <p>
@@ -1153,13 +1173,14 @@ Returns the justification of the label. See <a class="link" href="GtkLabel.html#
1153
1173
  </tr>
1154
1174
  <tr>
1155
1175
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1156
- <td><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a></td>
1176
+ <td> <a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a>
1177
+ </td>
1157
1178
  </tr>
1158
1179
  </tbody>
1159
1180
  </table></div>
1160
1181
  </div>
1161
1182
  <hr>
1162
- <div class="refsect2">
1183
+ <div class="refsect2" title="gtk_label_get_ellipsize ()">
1163
1184
  <a name="gtk-label-get-ellipsize"></a><h3>gtk_label_get_ellipsize ()</h3>
1164
1185
  <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="returnvalue">PangoEllipsizeMode</span></a> gtk_label_get_ellipsize (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1165
1186
  <p>
@@ -1175,14 +1196,16 @@ Returns the ellipsizing position of the label. See <a class="link" href="GtkLabe
1175
1196
  </tr>
1176
1197
  <tr>
1177
1198
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1178
- <td><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a></td>
1199
+ <td> <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a>
1200
+
1201
+ </td>
1179
1202
  </tr>
1180
1203
  </tbody>
1181
1204
  </table></div>
1182
1205
  <p class="since">Since 2.6</p>
1183
1206
  </div>
1184
1207
  <hr>
1185
- <div class="refsect2">
1208
+ <div class="refsect2" title="gtk_label_get_width_chars ()">
1186
1209
  <a name="gtk-label-get-width-chars"></a><h3>gtk_label_get_width_chars ()</h3>
1187
1210
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_label_get_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1188
1211
  <p>
@@ -1199,14 +1222,16 @@ Retrieves the desired width of <em class="parameter"><code>label</code></em>, in
1199
1222
  </tr>
1200
1223
  <tr>
1201
1224
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1202
- <td>the width of the label in characters.</td>
1225
+ <td> the width of the label in characters.
1226
+
1227
+ </td>
1203
1228
  </tr>
1204
1229
  </tbody>
1205
1230
  </table></div>
1206
1231
  <p class="since">Since 2.6</p>
1207
1232
  </div>
1208
1233
  <hr>
1209
- <div class="refsect2">
1234
+ <div class="refsect2" title="gtk_label_get_max_width_chars ()">
1210
1235
  <a name="gtk-label-get-max-width-chars"></a><h3>gtk_label_get_max_width_chars ()</h3>
1211
1236
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_label_get_max_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1212
1237
  <p>
@@ -1223,14 +1248,16 @@ Retrieves the desired maximum width of <em class="parameter"><code>label</code><
1223
1248
  </tr>
1224
1249
  <tr>
1225
1250
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1226
- <td>the maximum width of the label in characters.</td>
1251
+ <td> the maximum width of the label in characters.
1252
+
1253
+ </td>
1227
1254
  </tr>
1228
1255
  </tbody>
1229
1256
  </table></div>
1230
1257
  <p class="since">Since 2.6</p>
1231
1258
  </div>
1232
1259
  <hr>
1233
- <div class="refsect2">
1260
+ <div class="refsect2" title="gtk_label_get_label ()">
1234
1261
  <a name="gtk-label-get-label"></a><h3>gtk_label_get_label ()</h3>
1235
1262
  <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_label_get_label (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1236
1263
  <p>
@@ -1248,14 +1275,15 @@ underlines indicating mnemonics and Pango markup. (See
1248
1275
  </tr>
1249
1276
  <tr>
1250
1277
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1251
- <td>the text of the label widget. This string is
1252
- owned by the widget and must not be modified or freed.</td>
1278
+ <td> the text of the label widget. This string is
1279
+ owned by the widget and must not be modified or freed.
1280
+ </td>
1253
1281
  </tr>
1254
1282
  </tbody>
1255
1283
  </table></div>
1256
1284
  </div>
1257
1285
  <hr>
1258
- <div class="refsect2">
1286
+ <div class="refsect2" title="gtk_label_get_layout ()">
1259
1287
  <a name="gtk-label-get-layout"></a><h3>gtk_label_get_layout ()</h3>
1260
1288
  <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="returnvalue">PangoLayout</span></a> * gtk_label_get_layout (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1261
1289
  <p>
@@ -1275,14 +1303,14 @@ freed by the caller.
1275
1303
  </tr>
1276
1304
  <tr>
1277
1305
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1278
- <td>the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> for this label. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1306
+ <td> the <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> for this label. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1279
1307
  </td>
1280
1308
  </tr>
1281
1309
  </tbody>
1282
1310
  </table></div>
1283
1311
  </div>
1284
1312
  <hr>
1285
- <div class="refsect2">
1313
+ <div class="refsect2" title="gtk_label_get_line_wrap ()">
1286
1314
  <a name="gtk-label-get-line-wrap"></a><h3>gtk_label_get_line_wrap ()</h3>
1287
1315
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_label_get_line_wrap (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1288
1316
  <p>
@@ -1299,14 +1327,14 @@ See <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap" title="gtk_labe
1299
1327
  </tr>
1300
1328
  <tr>
1301
1329
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1302
- <td>
1303
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the lines of the label are automatically wrapped.</td>
1330
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the lines of the label are automatically wrapped.
1331
+ </td>
1304
1332
  </tr>
1305
1333
  </tbody>
1306
1334
  </table></div>
1307
1335
  </div>
1308
1336
  <hr>
1309
- <div class="refsect2">
1337
+ <div class="refsect2" title="gtk_label_get_line_wrap_mode ()">
1310
1338
  <a name="gtk-label-get-line-wrap-mode"></a><h3>gtk_label_get_line_wrap_mode ()</h3>
1311
1339
  <pre class="programlisting"><a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="returnvalue">PangoWrapMode</span></a> gtk_label_get_line_wrap_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1312
1340
  <p>
@@ -1322,15 +1350,16 @@ Returns line wrap mode used by the label. See <a class="link" href="GtkLabel.htm
1322
1350
  </tr>
1323
1351
  <tr>
1324
1352
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1325
- <td>
1326
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the lines of the label are automatically wrapped.</td>
1353
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the lines of the label are automatically wrapped.
1354
+
1355
+ </td>
1327
1356
  </tr>
1328
1357
  </tbody>
1329
1358
  </table></div>
1330
1359
  <p class="since">Since 2.10</p>
1331
1360
  </div>
1332
1361
  <hr>
1333
- <div class="refsect2">
1362
+ <div class="refsect2" title="gtk_label_get_mnemonic_widget ()">
1334
1363
  <a name="gtk-label-get-mnemonic-widget"></a><h3>gtk_label_get_mnemonic_widget ()</h3>
1335
1364
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_label_get_mnemonic_widget (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1336
1365
  <p>
@@ -1347,15 +1376,15 @@ label. See <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" ti
1347
1376
  </tr>
1348
1377
  <tr>
1349
1378
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1350
- <td>the target of the label's mnemonic,
1351
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none has been set and the default algorithm will be used. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1379
+ <td> the target of the label's mnemonic, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none
1380
+ has been set and the default algorithm will be used.
1352
1381
  </td>
1353
1382
  </tr>
1354
1383
  </tbody>
1355
1384
  </table></div>
1356
1385
  </div>
1357
1386
  <hr>
1358
- <div class="refsect2">
1387
+ <div class="refsect2" title="gtk_label_get_selection_bounds ()">
1359
1388
  <a name="gtk-label-get-selection-bounds"></a><h3>gtk_label_get_selection_bounds ()</h3>
1360
1389
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_label_get_selection_bounds (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1361
1390
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *start</code></em>,
@@ -1374,22 +1403,24 @@ if there's a selection.
1374
1403
  </tr>
1375
1404
  <tr>
1376
1405
  <td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
1377
- <td>return location for start of selection, as a character offset</td>
1406
+ <td>return location for start of selection, as a character offset
1407
+ </td>
1378
1408
  </tr>
1379
1409
  <tr>
1380
1410
  <td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
1381
- <td>return location for end of selection, as a character offset</td>
1411
+ <td>return location for end of selection, as a character offset
1412
+ </td>
1382
1413
  </tr>
1383
1414
  <tr>
1384
1415
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1385
- <td>
1386
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if selection is non-empty</td>
1416
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if selection is non-empty
1417
+ </td>
1387
1418
  </tr>
1388
1419
  </tbody>
1389
1420
  </table></div>
1390
1421
  </div>
1391
1422
  <hr>
1392
- <div class="refsect2">
1423
+ <div class="refsect2" title="gtk_label_get_use_markup ()">
1393
1424
  <a name="gtk-label-get-use-markup"></a><h3>gtk_label_get_use_markup ()</h3>
1394
1425
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_label_get_use_markup (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1395
1426
  <p>
@@ -1407,14 +1438,14 @@ language</GTKDOCLINK>. See <a class="link" href="GtkLabel.html#gtk-label-set-use
1407
1438
  </tr>
1408
1439
  <tr>
1409
1440
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1410
- <td>
1411
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label's text will be parsed for markup.</td>
1441
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label's text will be parsed for markup.
1442
+ </td>
1412
1443
  </tr>
1413
1444
  </tbody>
1414
1445
  </table></div>
1415
1446
  </div>
1416
1447
  <hr>
1417
- <div class="refsect2">
1448
+ <div class="refsect2" title="gtk_label_get_use_underline ()">
1418
1449
  <a name="gtk-label-get-use-underline"></a><h3>gtk_label_get_use_underline ()</h3>
1419
1450
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_label_get_use_underline (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1420
1451
  <p>
@@ -1431,15 +1462,15 @@ mnemonic. See <a class="link" href="GtkLabel.html#gtk-label-set-use-underline" t
1431
1462
  </tr>
1432
1463
  <tr>
1433
1464
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1434
- <td>
1435
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> whether an embedded underline in the label indicates
1436
- the mnemonic accelerator keys.</td>
1465
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> whether an embedded underline in the label indicates
1466
+ the mnemonic accelerator keys.
1467
+ </td>
1437
1468
  </tr>
1438
1469
  </tbody>
1439
1470
  </table></div>
1440
1471
  </div>
1441
1472
  <hr>
1442
- <div class="refsect2">
1473
+ <div class="refsect2" title="gtk_label_get_single_line_mode ()">
1443
1474
  <a name="gtk-label-get-single-line-mode"></a><h3>gtk_label_get_single_line_mode ()</h3>
1444
1475
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_label_get_single_line_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1445
1476
  <p>
@@ -1455,15 +1486,16 @@ Returns whether the label is in single line mode.
1455
1486
  </tr>
1456
1487
  <tr>
1457
1488
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1458
- <td>
1459
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the label is in single line mode.</td>
1489
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the label is in single line mode.
1490
+
1491
+ </td>
1460
1492
  </tr>
1461
1493
  </tbody>
1462
1494
  </table></div>
1463
1495
  <p class="since">Since 2.6</p>
1464
1496
  </div>
1465
1497
  <hr>
1466
- <div class="refsect2">
1498
+ <div class="refsect2" title="gtk_label_get_angle ()">
1467
1499
  <a name="gtk-label-get-angle"></a><h3>gtk_label_get_angle ()</h3>
1468
1500
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a> gtk_label_get_angle (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1469
1501
  <p>
@@ -1480,14 +1512,16 @@ Gets the angle of rotation for the label. See
1480
1512
  </tr>
1481
1513
  <tr>
1482
1514
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1483
- <td>the angle of rotation for the label</td>
1515
+ <td> the angle of rotation for the label
1516
+
1517
+ </td>
1484
1518
  </tr>
1485
1519
  </tbody>
1486
1520
  </table></div>
1487
1521
  <p class="since">Since 2.6</p>
1488
1522
  </div>
1489
1523
  <hr>
1490
- <div class="refsect2">
1524
+ <div class="refsect2" title="gtk_label_set_label ()">
1491
1525
  <a name="gtk-label-set-label"></a><h3>gtk_label_set_label ()</h3>
1492
1526
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_label (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1493
1527
  <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> *str</code></em>);</pre>
@@ -1507,13 +1541,14 @@ on the values of the <a class="link" href="GtkLabel.html#GtkLabel--use-underline
1507
1541
  </tr>
1508
1542
  <tr>
1509
1543
  <td><p><span class="term"><em class="parameter"><code>str</code></em> :</span></p></td>
1510
- <td>the new text to set for the label</td>
1544
+ <td>the new text to set for the label
1545
+ </td>
1511
1546
  </tr>
1512
1547
  </tbody>
1513
1548
  </table></div>
1514
1549
  </div>
1515
1550
  <hr>
1516
- <div class="refsect2">
1551
+ <div class="refsect2" title="gtk_label_set_use_markup ()">
1517
1552
  <a name="gtk-label-set-use-markup"></a><h3>gtk_label_set_use_markup ()</h3>
1518
1553
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_use_markup (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1519
1554
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
@@ -1532,13 +1567,14 @@ language</GTKDOCLINK>. See <a class="link" href="GtkLabel.html#gtk-label-set-mar
1532
1567
  <tr>
1533
1568
  <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
1534
1569
  <td>
1535
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label's text should be parsed for markup.</td>
1570
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label's text should be parsed for markup.
1571
+ </td>
1536
1572
  </tr>
1537
1573
  </tbody>
1538
1574
  </table></div>
1539
1575
  </div>
1540
1576
  <hr>
1541
- <div class="refsect2">
1577
+ <div class="refsect2" title="gtk_label_set_use_underline ()">
1542
1578
  <a name="gtk-label-set-use-underline"></a><h3>gtk_label_set_use_underline ()</h3>
1543
1579
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_use_underline (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1544
1580
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
@@ -1557,13 +1593,14 @@ used for the mnemonic accelerator key.
1557
1593
  <tr>
1558
1594
  <td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
1559
1595
  <td>
1560
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if underlines in the text indicate mnemonics</td>
1596
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if underlines in the text indicate mnemonics
1597
+ </td>
1561
1598
  </tr>
1562
1599
  </tbody>
1563
1600
  </table></div>
1564
1601
  </div>
1565
1602
  <hr>
1566
- <div class="refsect2">
1603
+ <div class="refsect2" title="gtk_label_set_single_line_mode ()">
1567
1604
  <a name="gtk-label-set-single-line-mode"></a><h3>gtk_label_set_single_line_mode ()</h3>
1568
1605
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_single_line_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1569
1606
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> single_line_mode</code></em>);</pre>
@@ -1581,14 +1618,15 @@ Sets whether the label is in single line mode.
1581
1618
  <tr>
1582
1619
  <td><p><span class="term"><em class="parameter"><code>single_line_mode</code></em> :</span></p></td>
1583
1620
  <td>
1584
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label should be in single line mode</td>
1621
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label should be in single line mode
1622
+ </td>
1585
1623
  </tr>
1586
1624
  </tbody>
1587
1625
  </table></div>
1588
1626
  <p class="since">Since 2.6</p>
1589
1627
  </div>
1590
1628
  <hr>
1591
- <div class="refsect2">
1629
+ <div class="refsect2" title="gtk_label_set_angle ()">
1592
1630
  <a name="gtk-label-set-angle"></a><h3>gtk_label_set_angle ()</h3>
1593
1631
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_angle (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1594
1632
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> angle</code></em>);</pre>
@@ -1609,14 +1647,15 @@ wrapped, or ellipsized.
1609
1647
  <tr>
1610
1648
  <td><p><span class="term"><em class="parameter"><code>angle</code></em> :</span></p></td>
1611
1649
  <td>the angle that the baseline of the label makes with
1612
- the horizontal, in degrees, measured counterclockwise</td>
1650
+ the horizontal, in degrees, measured counterclockwise
1651
+ </td>
1613
1652
  </tr>
1614
1653
  </tbody>
1615
1654
  </table></div>
1616
1655
  <p class="since">Since 2.6</p>
1617
1656
  </div>
1618
1657
  <hr>
1619
- <div class="refsect2">
1658
+ <div class="refsect2" title="gtk_label_get_current_uri ()">
1620
1659
  <a name="gtk-label-get-current-uri"></a><h3>gtk_label_get_current_uri ()</h3>
1621
1660
  <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_label_get_current_uri (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1622
1661
  <p>
@@ -1639,15 +1678,17 @@ or for use in a <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" ti
1639
1678
  </tr>
1640
1679
  <tr>
1641
1680
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1642
- <td>the currently active URI. The string is owned by GTK+ and must
1643
- not be freed or modified.</td>
1681
+ <td> the currently active URI. The string is owned by GTK+ and must
1682
+ not be freed or modified.
1683
+
1684
+ </td>
1644
1685
  </tr>
1645
1686
  </tbody>
1646
1687
  </table></div>
1647
1688
  <p class="since">Since 2.18</p>
1648
1689
  </div>
1649
1690
  <hr>
1650
- <div class="refsect2">
1691
+ <div class="refsect2" title="gtk_label_set_track_visited_links ()">
1651
1692
  <a name="gtk-label-set-track-visited-links"></a><h3>gtk_label_set_track_visited_links ()</h3>
1652
1693
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_label_set_track_visited_links (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
1653
1694
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> track_links</code></em>);</pre>
@@ -1666,14 +1707,15 @@ links (and use a different color for them).
1666
1707
  <tr>
1667
1708
  <td><p><span class="term"><em class="parameter"><code>track_links</code></em> :</span></p></td>
1668
1709
  <td>
1669
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to track visited links</td>
1710
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to track visited links
1711
+ </td>
1670
1712
  </tr>
1671
1713
  </tbody>
1672
1714
  </table></div>
1673
1715
  <p class="since">Since 2.18</p>
1674
1716
  </div>
1675
1717
  <hr>
1676
- <div class="refsect2">
1718
+ <div class="refsect2" title="gtk_label_get_track_visited_links ()">
1677
1719
  <a name="gtk-label-get-track-visited-links"></a><h3>gtk_label_get_track_visited_links ()</h3>
1678
1720
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_label_get_track_visited_links (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
1679
1721
  <p>
@@ -1690,17 +1732,18 @@ of clicked links.
1690
1732
  </tr>
1691
1733
  <tr>
1692
1734
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1693
- <td>
1694
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if clicked links are remembered</td>
1735
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if clicked links are remembered
1736
+
1737
+ </td>
1695
1738
  </tr>
1696
1739
  </tbody>
1697
1740
  </table></div>
1698
1741
  <p class="since">Since 2.18</p>
1699
1742
  </div>
1700
1743
  </div>
1701
- <div class="refsect1">
1744
+ <div class="refsect1" title="Property Details">
1702
1745
  <a name="GtkLabel.property-details"></a><h2>Property Details</h2>
1703
- <div class="refsect2">
1746
+ <div class="refsect2" title='The "angle" property'>
1704
1747
  <a name="GtkLabel--angle"></a><h3>The <code class="literal">"angle"</code> property</h3>
1705
1748
  <pre class="programlisting"> "angle" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
1706
1749
  <p>
@@ -1714,13 +1757,13 @@ if the label is selectable, wrapped, or ellipsized.
1714
1757
  <p class="since">Since 2.6</p>
1715
1758
  </div>
1716
1759
  <hr>
1717
- <div class="refsect2">
1760
+ <div class="refsect2" title='The "attributes" property'>
1718
1761
  <a name="GtkLabel--attributes"></a><h3>The <code class="literal">"attributes"</code> property</h3>
1719
1762
  <pre class="programlisting"> "attributes" <a href="/usr/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a>* : Read / Write</pre>
1720
1763
  <p>A list of style attributes to apply to the text of the label.</p>
1721
1764
  </div>
1722
1765
  <hr>
1723
- <div class="refsect2">
1766
+ <div class="refsect2" title='The "cursor-position" property'>
1724
1767
  <a name="GtkLabel--cursor-position"></a><h3>The <code class="literal">"cursor-position"</code> property</h3>
1725
1768
  <pre class="programlisting"> "cursor-position" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1726
1769
  <p>The current position of the insertion cursor in chars.</p>
@@ -1728,7 +1771,7 @@ if the label is selectable, wrapped, or ellipsized.
1728
1771
  <p>Default value: 0</p>
1729
1772
  </div>
1730
1773
  <hr>
1731
- <div class="refsect2">
1774
+ <div class="refsect2" title='The "ellipsize" property'>
1732
1775
  <a name="GtkLabel--ellipsize"></a><h3>The <code class="literal">"ellipsize"</code> property</h3>
1733
1776
  <pre class="programlisting"> "ellipsize" <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a> : Read / Write</pre>
1734
1777
  <p>
@@ -1749,21 +1792,21 @@ to set a label's width are <a class="link" href="GtkWidget.html#gtk-widget-set-s
1749
1792
  <p class="since">Since 2.6</p>
1750
1793
  </div>
1751
1794
  <hr>
1752
- <div class="refsect2">
1795
+ <div class="refsect2" title='The "justify" property'>
1753
1796
  <a name="GtkLabel--justify"></a><h3>The <code class="literal">"justify"</code> property</h3>
1754
1797
  <pre class="programlisting"> "justify" <a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> : Read / Write</pre>
1755
1798
  <p>The alignment of the lines in the text of the label relative to each other. This does NOT affect the alignment of the label within its allocation. See GtkMisc::xalign for that.</p>
1756
1799
  <p>Default value: GTK_JUSTIFY_LEFT</p>
1757
1800
  </div>
1758
1801
  <hr>
1759
- <div class="refsect2">
1802
+ <div class="refsect2" title='The "label" property'>
1760
1803
  <a name="GtkLabel--label"></a><h3>The <code class="literal">"label"</code> property</h3>
1761
1804
  <pre class="programlisting"> "label" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
1762
1805
  <p>The text of the label.</p>
1763
1806
  <p>Default value: ""</p>
1764
1807
  </div>
1765
1808
  <hr>
1766
- <div class="refsect2">
1809
+ <div class="refsect2" title='The "max-width-chars" property'>
1767
1810
  <a name="GtkLabel--max-width-chars"></a><h3>The <code class="literal">"max-width-chars"</code> property</h3>
1768
1811
  <pre class="programlisting"> "max-width-chars" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1769
1812
  <p>
@@ -1778,34 +1821,34 @@ value, then the "max-width-chars" property is ignored.
1778
1821
  <p class="since">Since 2.6</p>
1779
1822
  </div>
1780
1823
  <hr>
1781
- <div class="refsect2">
1824
+ <div class="refsect2" title='The "mnemonic-keyval" property'>
1782
1825
  <a name="GtkLabel--mnemonic-keyval"></a><h3>The <code class="literal">"mnemonic-keyval"</code> property</h3>
1783
1826
  <pre class="programlisting"> "mnemonic-keyval" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read</pre>
1784
1827
  <p>The mnemonic accelerator key for this label.</p>
1785
1828
  <p>Default value: 16777215</p>
1786
1829
  </div>
1787
1830
  <hr>
1788
- <div class="refsect2">
1831
+ <div class="refsect2" title='The "mnemonic-widget" property'>
1789
1832
  <a name="GtkLabel--mnemonic-widget"></a><h3>The <code class="literal">"mnemonic-widget"</code> property</h3>
1790
1833
  <pre class="programlisting"> "mnemonic-widget" <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>* : Read / Write</pre>
1791
1834
  <p>The widget to be activated when the label's mnemonic key is pressed.</p>
1792
1835
  </div>
1793
1836
  <hr>
1794
- <div class="refsect2">
1837
+ <div class="refsect2" title='The "pattern" property'>
1795
1838
  <a name="GtkLabel--pattern"></a><h3>The <code class="literal">"pattern"</code> property</h3>
1796
1839
  <pre class="programlisting"> "pattern" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Write</pre>
1797
1840
  <p>A string with _ characters in positions correspond to characters in the text to underline.</p>
1798
1841
  <p>Default value: NULL</p>
1799
1842
  </div>
1800
1843
  <hr>
1801
- <div class="refsect2">
1844
+ <div class="refsect2" title='The "selectable" property'>
1802
1845
  <a name="GtkLabel--selectable"></a><h3>The <code class="literal">"selectable"</code> property</h3>
1803
1846
  <pre class="programlisting"> "selectable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1804
1847
  <p>Whether the label text can be selected with the mouse.</p>
1805
1848
  <p>Default value: FALSE</p>
1806
1849
  </div>
1807
1850
  <hr>
1808
- <div class="refsect2">
1851
+ <div class="refsect2" title='The "selection-bound" property'>
1809
1852
  <a name="GtkLabel--selection-bound"></a><h3>The <code class="literal">"selection-bound"</code> property</h3>
1810
1853
  <pre class="programlisting"> "selection-bound" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
1811
1854
  <p>The position of the opposite end of the selection from the cursor in chars.</p>
@@ -1813,7 +1856,7 @@ value, then the "max-width-chars" property is ignored.
1813
1856
  <p>Default value: 0</p>
1814
1857
  </div>
1815
1858
  <hr>
1816
- <div class="refsect2">
1859
+ <div class="refsect2" title='The "single-line-mode" property'>
1817
1860
  <a name="GtkLabel--single-line-mode"></a><h3>The <code class="literal">"single-line-mode"</code> property</h3>
1818
1861
  <pre class="programlisting"> "single-line-mode" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1819
1862
  <p>
@@ -1827,7 +1870,7 @@ changes would be distracting, e.g. in a statusbar.
1827
1870
  <p class="since">Since 2.6</p>
1828
1871
  </div>
1829
1872
  <hr>
1830
- <div class="refsect2">
1873
+ <div class="refsect2" title='The "track-visited-links" property'>
1831
1874
  <a name="GtkLabel--track-visited-links"></a><h3>The <code class="literal">"track-visited-links"</code> property</h3>
1832
1875
  <pre class="programlisting"> "track-visited-links" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1833
1876
  <p>
@@ -1839,21 +1882,21 @@ color, instead of ::link-color.
1839
1882
  <p class="since">Since 2.18</p>
1840
1883
  </div>
1841
1884
  <hr>
1842
- <div class="refsect2">
1885
+ <div class="refsect2" title='The "use-markup" property'>
1843
1886
  <a name="GtkLabel--use-markup"></a><h3>The <code class="literal">"use-markup"</code> property</h3>
1844
1887
  <pre class="programlisting"> "use-markup" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1845
1888
  <p>The text of the label includes XML markup. See pango_parse_markup().</p>
1846
1889
  <p>Default value: FALSE</p>
1847
1890
  </div>
1848
1891
  <hr>
1849
- <div class="refsect2">
1892
+ <div class="refsect2" title='The "use-underline" property'>
1850
1893
  <a name="GtkLabel--use-underline"></a><h3>The <code class="literal">"use-underline"</code> property</h3>
1851
1894
  <pre class="programlisting"> "use-underline" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1852
1895
  <p>If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key.</p>
1853
1896
  <p>Default value: FALSE</p>
1854
1897
  </div>
1855
1898
  <hr>
1856
- <div class="refsect2">
1899
+ <div class="refsect2" title='The "width-chars" property'>
1857
1900
  <a name="GtkLabel--width-chars"></a><h3>The <code class="literal">"width-chars"</code> property</h3>
1858
1901
  <pre class="programlisting"> "width-chars" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
1859
1902
  <p>
@@ -1868,14 +1911,14 @@ If the "width-chars" property is set to a positive value, then the
1868
1911
  <p class="since">Since 2.6</p>
1869
1912
  </div>
1870
1913
  <hr>
1871
- <div class="refsect2">
1914
+ <div class="refsect2" title='The "wrap" property'>
1872
1915
  <a name="GtkLabel--wrap"></a><h3>The <code class="literal">"wrap"</code> property</h3>
1873
1916
  <pre class="programlisting"> "wrap" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
1874
1917
  <p>If set, wrap lines if the text becomes too wide.</p>
1875
1918
  <p>Default value: FALSE</p>
1876
1919
  </div>
1877
1920
  <hr>
1878
- <div class="refsect2">
1921
+ <div class="refsect2" title='The "wrap-mode" property'>
1879
1922
  <a name="GtkLabel--wrap-mode"></a><h3>The <code class="literal">"wrap-mode"</code> property</h3>
1880
1923
  <pre class="programlisting"> "wrap-mode" <a href="/usr/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="type">PangoWrapMode</span></a> : Read / Write</pre>
1881
1924
  <p>
@@ -1887,12 +1930,12 @@ means wrap on word boundaries.
1887
1930
  <p class="since">Since 2.10</p>
1888
1931
  </div>
1889
1932
  </div>
1890
- <div class="refsect1">
1933
+ <div class="refsect1" title="Signal Details">
1891
1934
  <a name="GtkLabel.signal-details"></a><h2>Signal Details</h2>
1892
- <div class="refsect2">
1935
+ <div class="refsect2" title='The "activate-current-link" signal'>
1893
1936
  <a name="GtkLabel-activate-current-link"></a><h3>The <code class="literal">"activate-current-link"</code> signal</h3>
1894
1937
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
1895
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
1938
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
1896
1939
  <p>
1897
1940
  A <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
1898
1941
  which gets emitted when the user activates a link in the label.
@@ -1909,7 +1952,8 @@ The default bindings for this signal are all forms of the Enter key.
1909
1952
  <tbody>
1910
1953
  <tr>
1911
1954
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1912
- <td>The label on which the signal was emitted</td>
1955
+ <td>The label on which the signal was emitted
1956
+ </td>
1913
1957
  </tr>
1914
1958
  <tr>
1915
1959
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1920,11 +1964,11 @@ The default bindings for this signal are all forms of the Enter key.
1920
1964
  <p class="since">Since 2.18</p>
1921
1965
  </div>
1922
1966
  <hr>
1923
- <div class="refsect2">
1967
+ <div class="refsect2" title='The "activate-link" signal'>
1924
1968
  <a name="GtkLabel-activate-link"></a><h3>The <code class="literal">"activate-link"</code> signal</h3>
1925
1969
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
1926
1970
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uri,
1927
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
1971
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
1928
1972
  <p>
1929
1973
  The signal which gets emitted to activate a URI.
1930
1974
  Applications may connect to it to override the default behaviour,
@@ -1935,11 +1979,13 @@ which is to call <a class="link" href="gtk-Filesystem-utilities.html#gtk-show-ur
1935
1979
  <tbody>
1936
1980
  <tr>
1937
1981
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1938
- <td>The label on which the signal was emitted</td>
1982
+ <td>The label on which the signal was emitted
1983
+ </td>
1939
1984
  </tr>
1940
1985
  <tr>
1941
1986
  <td><p><span class="term"><em class="parameter"><code>uri</code></em> :</span></p></td>
1942
- <td>the URI that is activated</td>
1987
+ <td>the URI that is activated
1988
+ </td>
1943
1989
  </tr>
1944
1990
  <tr>
1945
1991
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1947,18 +1993,18 @@ which is to call <a class="link" href="gtk-Filesystem-utilities.html#gtk-show-ur
1947
1993
  </tr>
1948
1994
  <tr>
1949
1995
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1950
- <td>
1951
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the link has been activated</td>
1996
+ <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the link has been activated
1997
+ </td>
1952
1998
  </tr>
1953
1999
  </tbody>
1954
2000
  </table></div>
1955
2001
  <p class="since">Since 2.18</p>
1956
2002
  </div>
1957
2003
  <hr>
1958
- <div class="refsect2">
2004
+ <div class="refsect2" title='The "copy-clipboard" signal'>
1959
2005
  <a name="GtkLabel-copy-clipboard"></a><h3>The <code class="literal">"copy-clipboard"</code> signal</h3>
1960
2006
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
1961
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2007
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
1962
2008
  <p>
1963
2009
  The ::copy-clipboard signal is a
1964
2010
  <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
@@ -1972,7 +2018,8 @@ The default binding for this signal is Ctrl-c.
1972
2018
  <tbody>
1973
2019
  <tr>
1974
2020
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
1975
- <td>the object which received the signal</td>
2021
+ <td>the object which received the signal
2022
+ </td>
1976
2023
  </tr>
1977
2024
  <tr>
1978
2025
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -1982,13 +2029,13 @@ The default binding for this signal is Ctrl-c.
1982
2029
  </table></div>
1983
2030
  </div>
1984
2031
  <hr>
1985
- <div class="refsect2">
2032
+ <div class="refsect2" title='The "move-cursor" signal'>
1986
2033
  <a name="GtkLabel-move-cursor"></a><h3>The <code class="literal">"move-cursor"</code> signal</h3>
1987
2034
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *entry,
1988
2035
  <a class="link" href="gtk-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
1989
2036
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
1990
2037
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> extend_selection,
1991
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
2038
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last / Action</pre>
1992
2039
  <p>
1993
2040
  The ::move-cursor signal is a
1994
2041
  <a class="link" href="gtk-Bindings.html#keybinding-signals">keybinding signal</a>
@@ -2019,7 +2066,8 @@ There are too many key combinations to list them all here.
2019
2066
  <tbody>
2020
2067
  <tr>
2021
2068
  <td><p><span class="term"><em class="parameter"><code>entry</code></em> :</span></p></td>
2022
- <td>the object which received the signal</td>
2069
+ <td>the object which received the signal
2070
+ </td>
2023
2071
  </tr>
2024
2072
  <tr>
2025
2073
  <td><p><span class="term"><em class="parameter"><code>step</code></em> :</span></p></td>
@@ -2028,12 +2076,14 @@ There are too many key combinations to list them all here.
2028
2076
  </tr>
2029
2077
  <tr>
2030
2078
  <td><p><span class="term"><em class="parameter"><code>count</code></em> :</span></p></td>
2031
- <td>the number of <em class="parameter"><code>step</code></em> units to move</td>
2079
+ <td>the number of <em class="parameter"><code>step</code></em> units to move
2080
+ </td>
2032
2081
  </tr>
2033
2082
  <tr>
2034
2083
  <td><p><span class="term"><em class="parameter"><code>extend_selection</code></em> :</span></p></td>
2035
2084
  <td>
2036
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection</td>
2085
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection
2086
+ </td>
2037
2087
  </tr>
2038
2088
  <tr>
2039
2089
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2043,11 +2093,11 @@ There are too many key combinations to list them all here.
2043
2093
  </table></div>
2044
2094
  </div>
2045
2095
  <hr>
2046
- <div class="refsect2">
2096
+ <div class="refsect2" title='The "populate-popup" signal'>
2047
2097
  <a name="GtkLabel-populate-popup"></a><h3>The <code class="literal">"populate-popup"</code> signal</h3>
2048
2098
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
2049
2099
  <a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu,
2050
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
2100
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
2051
2101
  <p>
2052
2102
  The ::populate-popup signal gets emitted before showing the
2053
2103
  context menu of the label. Note that only selectable labels
@@ -2062,11 +2112,13 @@ to this signal and append your menuitems to the <em class="parameter"><code>menu
2062
2112
  <tbody>
2063
2113
  <tr>
2064
2114
  <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
2065
- <td>The label on which the signal is emitted</td>
2115
+ <td>The label on which the signal is emitted
2116
+ </td>
2066
2117
  </tr>
2067
2118
  <tr>
2068
2119
  <td><p><span class="term"><em class="parameter"><code>menu</code></em> :</span></p></td>
2069
- <td>the menu that is being populated</td>
2120
+ <td>the menu that is being populated
2121
+ </td>
2070
2122
  </tr>
2071
2123
  <tr>
2072
2124
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2079,6 +2131,6 @@ to this signal and append your menuitems to the <em class="parameter"><code>menu
2079
2131
  </div>
2080
2132
  <div class="footer">
2081
2133
  <hr>
2082
- Generated by GTK-Doc V1.16.1</div>
2134
+ Generated by GTK-Doc V1.15</div>
2083
2135
  </body>
2084
2136
  </html>