gtk2 1.0.3-x86-mingw32 → 1.1.0-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 (756) hide show
  1. data/Rakefile +66 -1
  2. data/ext/gtk2/extconf.rb +0 -96
  3. data/ext/gtk2/global.h +274 -13
  4. data/ext/gtk2/gtk2.def +5 -3
  5. data/ext/gtk2/init.c +263 -19
  6. data/ext/gtk2/rbgdk.c +245 -89
  7. data/ext/gtk2/rbgdk.h +32 -6
  8. data/ext/gtk2/rbgdkatom.c +38 -28
  9. data/ext/gtk2/rbgdkcairo.c +32 -42
  10. data/ext/gtk2/rbgdkcolor.c +52 -42
  11. data/ext/gtk2/rbgdkcolormap.c +42 -37
  12. data/ext/gtk2/rbgdkconst.c +23 -13
  13. data/ext/gtk2/rbgdkconversions.h +19 -6
  14. data/ext/gtk2/rbgdkcursor.c +37 -25
  15. data/ext/gtk2/rbgdkdevice.c +77 -67
  16. data/ext/gtk2/rbgdkdisplay.c +158 -150
  17. data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
  18. data/ext/gtk2/rbgdkdragcontext.c +121 -70
  19. data/ext/gtk2/rbgdkdraw.c +252 -160
  20. data/ext/gtk2/rbgdkevent.c +30 -20
  21. data/ext/gtk2/rbgdkgc.c +123 -116
  22. data/ext/gtk2/rbgdkgeometry.c +77 -68
  23. data/ext/gtk2/rbgdkimage.c +58 -47
  24. data/ext/gtk2/rbgdkinput.c +33 -26
  25. data/ext/gtk2/rbgdkkeymap.c +38 -27
  26. data/ext/gtk2/rbgdkkeyval.c +44 -32
  27. data/ext/gtk2/rbgdkpango.c +66 -39
  28. data/ext/gtk2/rbgdkpangorenderer.c +63 -35
  29. data/ext/gtk2/rbgdkpixbuf.c +36 -25
  30. data/ext/gtk2/rbgdkpixmap.c +65 -49
  31. data/ext/gtk2/rbgdkproperty.c +66 -60
  32. data/ext/gtk2/rbgdkrectangle.c +54 -46
  33. data/ext/gtk2/rbgdkregion.c +144 -79
  34. data/ext/gtk2/rbgdkrgb.c +74 -58
  35. data/ext/gtk2/rbgdkscreen.c +103 -97
  36. data/ext/gtk2/rbgdkselection.c +49 -39
  37. data/ext/gtk2/rbgdkthreads.c +32 -19
  38. data/ext/gtk2/rbgdktimecoord.c +60 -38
  39. data/ext/gtk2/rbgdkvisual.c +79 -71
  40. data/ext/gtk2/rbgdkwindow.c +284 -305
  41. data/ext/gtk2/rbgdkwindowattr.c +69 -58
  42. data/ext/gtk2/rbgdkx11.c +41 -28
  43. data/ext/gtk2/rbgtk.c +498 -19
  44. data/ext/gtk2/rbgtk.h +35 -20
  45. data/ext/gtk2/rbgtkaboutdialog.c +33 -80
  46. data/ext/gtk2/rbgtkaccelerator.c +36 -23
  47. data/ext/gtk2/rbgtkaccelgroup.c +50 -40
  48. data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
  49. data/ext/gtk2/rbgtkaccelkey.c +40 -28
  50. data/ext/gtk2/rbgtkaccellabel.c +30 -18
  51. data/ext/gtk2/rbgtkaccelmap.c +55 -42
  52. data/ext/gtk2/rbgtkaccessible.c +25 -14
  53. data/ext/gtk2/rbgtkaction.c +68 -68
  54. data/ext/gtk2/rbgtkactiongroup.c +317 -195
  55. data/ext/gtk2/rbgtkadjustment.c +33 -46
  56. data/ext/gtk2/rbgtkalignment.c +36 -24
  57. data/ext/gtk2/rbgtkallocation.c +53 -42
  58. data/ext/gtk2/rbgtkarrow.c +34 -22
  59. data/ext/gtk2/rbgtkaspectframe.c +32 -20
  60. data/ext/gtk2/rbgtkassistant.c +81 -61
  61. data/ext/gtk2/rbgtkbbox.c +32 -20
  62. data/ext/gtk2/rbgtkbin.c +28 -16
  63. data/ext/gtk2/rbgtkbindingset.c +42 -35
  64. data/ext/gtk2/rbgtkborder.c +34 -23
  65. data/ext/gtk2/rbgtkbox.c +40 -29
  66. data/ext/gtk2/rbgtkbuildable.c +57 -45
  67. data/ext/gtk2/rbgtkbuilder.c +53 -38
  68. data/ext/gtk2/rbgtkbutton.c +41 -55
  69. data/ext/gtk2/rbgtkcalendar.c +51 -40
  70. data/ext/gtk2/rbgtkcelleditable.c +28 -17
  71. data/ext/gtk2/rbgtkcelllayout.c +41 -30
  72. data/ext/gtk2/rbgtkcellrenderer.c +43 -32
  73. data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
  74. data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
  75. data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
  76. data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
  77. data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
  78. data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
  79. data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
  80. data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
  81. data/ext/gtk2/rbgtkcellview.c +34 -33
  82. data/ext/gtk2/rbgtkcheckbutton.c +28 -16
  83. data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
  84. data/ext/gtk2/rbgtkclipboard.c +123 -77
  85. data/ext/gtk2/rbgtkcolorbutton.c +26 -31
  86. data/ext/gtk2/rbgtkcolorsel.c +109 -55
  87. data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
  88. data/ext/gtk2/rbgtkcombo.c +43 -32
  89. data/ext/gtk2/rbgtkcombobox.c +44 -83
  90. data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
  91. data/ext/gtk2/rbgtkconst.c +23 -13
  92. data/ext/gtk2/rbgtkcontainer.c +153 -100
  93. data/ext/gtk2/rbgtkconversions.h +19 -6
  94. data/ext/gtk2/rbgtkcurve.c +46 -36
  95. data/ext/gtk2/rbgtkdialog.c +104 -70
  96. data/ext/gtk2/rbgtkdrag.c +173 -121
  97. data/ext/gtk2/rbgtkdrawingarea.c +28 -16
  98. data/ext/gtk2/rbgtkeditable.c +63 -51
  99. data/ext/gtk2/rbgtkentry.c +48 -85
  100. data/ext/gtk2/rbgtkentrycompletion.c +42 -55
  101. data/ext/gtk2/rbgtkeventbox.c +28 -16
  102. data/ext/gtk2/rbgtkexpander.c +26 -35
  103. data/ext/gtk2/rbgtkfilechooser.c +87 -143
  104. data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
  105. data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
  106. data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
  107. data/ext/gtk2/rbgtkfilefilter.c +45 -35
  108. data/ext/gtk2/rbgtkfilesel.c +54 -43
  109. data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
  110. data/ext/gtk2/rbgtkfixed.c +36 -25
  111. data/ext/gtk2/rbgtkfontbutton.c +26 -37
  112. data/ext/gtk2/rbgtkfontselection.c +27 -15
  113. data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
  114. data/ext/gtk2/rbgtkframe.c +39 -28
  115. data/ext/gtk2/rbgtkgamma.c +32 -20
  116. data/ext/gtk2/rbgtkhandlebox.c +31 -19
  117. data/ext/gtk2/rbgtkhbbox.c +28 -16
  118. data/ext/gtk2/rbgtkhbox.c +29 -17
  119. data/ext/gtk2/rbgtkhpaned.c +28 -16
  120. data/ext/gtk2/rbgtkhruler.c +28 -16
  121. data/ext/gtk2/rbgtkhscale.c +28 -16
  122. data/ext/gtk2/rbgtkhscrollbar.c +28 -16
  123. data/ext/gtk2/rbgtkhseparator.c +28 -16
  124. data/ext/gtk2/rbgtkiconfactory.c +35 -23
  125. data/ext/gtk2/rbgtkiconinfo.c +42 -30
  126. data/ext/gtk2/rbgtkiconset.c +31 -19
  127. data/ext/gtk2/rbgtkiconsize.c +38 -25
  128. data/ext/gtk2/rbgtkiconsource.c +62 -50
  129. data/ext/gtk2/rbgtkicontheme.c +95 -95
  130. data/ext/gtk2/rbgtkiconview.c +87 -121
  131. data/ext/gtk2/rbgtkimage.c +31 -40
  132. data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
  133. data/ext/gtk2/rbgtkimcontext.c +46 -34
  134. data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
  135. data/ext/gtk2/rbgtkimmulticontext.c +26 -14
  136. data/ext/gtk2/rbgtkinputdialog.c +28 -16
  137. data/ext/gtk2/rbgtkinvisible.c +24 -18
  138. data/ext/gtk2/rbgtkitem.c +32 -20
  139. data/ext/gtk2/rbgtkitemfactory.c +65 -57
  140. data/ext/gtk2/rbgtklabel.c +46 -57
  141. data/ext/gtk2/rbgtklayout.c +40 -29
  142. data/ext/gtk2/rbgtklinkbutton.c +26 -15
  143. data/ext/gtk2/rbgtkliststore.c +145 -102
  144. data/ext/gtk2/rbgtkmacros.h +19 -6
  145. data/ext/gtk2/rbgtkmenu.c +47 -59
  146. data/ext/gtk2/rbgtkmenubar.c +30 -30
  147. data/ext/gtk2/rbgtkmenuitem.c +34 -41
  148. data/ext/gtk2/rbgtkmenushell.c +43 -42
  149. data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
  150. data/ext/gtk2/rbgtkmessagedialog.c +31 -25
  151. data/ext/gtk2/rbgtkmisc.c +33 -22
  152. data/ext/gtk2/rbgtknotebook.c +98 -134
  153. data/ext/gtk2/rbgtkobject.c +46 -81
  154. data/ext/gtk2/rbgtkoptionmenu.c +35 -23
  155. data/ext/gtk2/rbgtkpagesetup.c +64 -54
  156. data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
  157. data/ext/gtk2/rbgtkpaned.c +46 -36
  158. data/ext/gtk2/rbgtkpapersize.c +60 -54
  159. data/ext/gtk2/rbgtkplug.c +32 -20
  160. data/ext/gtk2/rbgtkprintcontext.c +43 -35
  161. data/ext/gtk2/rbgtkprinter.c +36 -37
  162. data/ext/gtk2/rbgtkprintjob.c +36 -37
  163. data/ext/gtk2/rbgtkprintoperation.c +44 -33
  164. data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
  165. data/ext/gtk2/rbgtkprintsettings.c +248 -192
  166. data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
  167. data/ext/gtk2/rbgtkprogress.c +23 -13
  168. data/ext/gtk2/rbgtkprogressbar.c +47 -46
  169. data/ext/gtk2/rbgtkradioaction.c +84 -39
  170. data/ext/gtk2/rbgtkradiobutton.c +33 -21
  171. data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
  172. data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
  173. data/ext/gtk2/rbgtkrange.c +36 -56
  174. data/ext/gtk2/rbgtkrc.c +61 -49
  175. data/ext/gtk2/rbgtkrcstyle.c +59 -48
  176. data/ext/gtk2/rbgtkrecentaction.c +28 -16
  177. data/ext/gtk2/rbgtkrecentchooser.c +58 -92
  178. data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
  179. data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
  180. data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
  181. data/ext/gtk2/rbgtkrecentdata.c +47 -36
  182. data/ext/gtk2/rbgtkrecentfilter.c +55 -46
  183. data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
  184. data/ext/gtk2/rbgtkrecentinfo.c +66 -56
  185. data/ext/gtk2/rbgtkrecentmanager.c +47 -43
  186. data/ext/gtk2/rbgtkruler.c +35 -30
  187. data/ext/gtk2/rbgtkscale.c +29 -18
  188. data/ext/gtk2/rbgtkscalebutton.c +27 -27
  189. data/ext/gtk2/rbgtkscrollbar.c +23 -13
  190. data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
  191. data/ext/gtk2/rbgtkselection.c +87 -67
  192. data/ext/gtk2/rbgtkselectiondata.c +74 -65
  193. data/ext/gtk2/rbgtkseparator.c +23 -13
  194. data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
  195. data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
  196. data/ext/gtk2/rbgtksettings.c +123 -103
  197. data/ext/gtk2/rbgtksizegroup.c +33 -30
  198. data/ext/gtk2/rbgtksocket.c +32 -20
  199. data/ext/gtk2/rbgtkspinbutton.c +48 -38
  200. data/ext/gtk2/rbgtkspinner.c +27 -14
  201. data/ext/gtk2/rbgtkstatusbar.c +36 -31
  202. data/ext/gtk2/rbgtkstatusicon.c +31 -44
  203. data/ext/gtk2/rbgtkstock.c +137 -125
  204. data/ext/gtk2/rbgtkstyle.c +177 -161
  205. data/ext/gtk2/rbgtktable.c +58 -47
  206. data/ext/gtk2/rbgtktargetlist.c +56 -36
  207. data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
  208. data/ext/gtk2/rbgtktextappearance.c +44 -34
  209. data/ext/gtk2/rbgtktextattributes.c +54 -42
  210. data/ext/gtk2/rbgtktextbuffer.c +188 -191
  211. data/ext/gtk2/rbgtktextchild.c +29 -18
  212. data/ext/gtk2/rbgtktextiter.c +153 -145
  213. data/ext/gtk2/rbgtktextmark.c +33 -30
  214. data/ext/gtk2/rbgtktexttag.c +34 -22
  215. data/ext/gtk2/rbgtktexttagtable.c +36 -25
  216. data/ext/gtk2/rbgtktextview.c +85 -73
  217. data/ext/gtk2/rbgtktoggleaction.c +27 -22
  218. data/ext/gtk2/rbgtktogglebutton.c +37 -26
  219. data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
  220. data/ext/gtk2/rbgtktoolbar.c +66 -69
  221. data/ext/gtk2/rbgtktoolbutton.c +27 -40
  222. data/ext/gtk2/rbgtktoolitem.c +60 -62
  223. data/ext/gtk2/rbgtktooltip.c +36 -25
  224. data/ext/gtk2/rbgtktooltips.c +42 -34
  225. data/ext/gtk2/rbgtktreedragdest.c +20 -11
  226. data/ext/gtk2/rbgtktreedragsource.c +20 -11
  227. data/ext/gtk2/rbgtktreeiter.c +58 -47
  228. data/ext/gtk2/rbgtktreemodel.c +83 -65
  229. data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
  230. data/ext/gtk2/rbgtktreemodelsort.c +38 -27
  231. data/ext/gtk2/rbgtktreepath.c +55 -44
  232. data/ext/gtk2/rbgtktreerowreference.c +60 -42
  233. data/ext/gtk2/rbgtktreeselection.c +61 -52
  234. data/ext/gtk2/rbgtktreesortable.c +52 -42
  235. data/ext/gtk2/rbgtktreestore.c +88 -67
  236. data/ext/gtk2/rbgtktreeview.c +157 -185
  237. data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
  238. data/ext/gtk2/rbgtkuimanager.c +61 -61
  239. data/ext/gtk2/rbgtkvbbox.c +28 -16
  240. data/ext/gtk2/rbgtkvbox.c +29 -17
  241. data/ext/gtk2/rbgtkviewport.c +28 -16
  242. data/ext/gtk2/rbgtkvolumebutton.c +28 -16
  243. data/ext/gtk2/rbgtkvpaned.c +28 -16
  244. data/ext/gtk2/rbgtkvruler.c +28 -16
  245. data/ext/gtk2/rbgtkvscale.c +28 -16
  246. data/ext/gtk2/rbgtkvscrollbar.c +28 -16
  247. data/ext/gtk2/rbgtkvseparator.c +28 -16
  248. data/ext/gtk2/rbgtkwidget.c +284 -296
  249. data/ext/gtk2/rbgtkwindow.c +156 -214
  250. data/ext/gtk2/rbgtkwindowgroup.c +35 -24
  251. data/lib/1.8/gtk2.so +0 -0
  252. data/lib/1.9/gtk2.so +0 -0
  253. data/sample/testgtk/labels.rb +1 -0
  254. data/sample/testgtk/testgtk.rb +2 -0
  255. data/vendor/local/bin/gtk-builder-convert +29 -2
  256. data/vendor/local/bin/gtk-demo.exe +0 -0
  257. data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
  258. data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
  259. data/vendor/local/bin/libgailutil-18.dll +0 -0
  260. data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
  261. data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
  262. data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
  263. data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
  264. data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
  265. data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
  266. data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
  267. data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
  268. data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
  269. data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
  270. data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
  271. data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
  272. data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
  273. data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
  274. data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
  275. data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
  276. data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
  277. data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
  278. data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
  279. data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
  280. data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
  281. data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
  282. data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
  283. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
  284. data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
  285. data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
  286. data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
  287. data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
  288. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
  289. data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
  290. data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
  291. data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
  292. data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
  293. data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
  294. data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
  295. data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
  296. data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
  297. data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
  298. data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
  299. data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
  300. data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
  301. data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
  302. data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
  303. data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
  304. data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
  305. data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
  306. data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
  307. data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
  308. data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
  309. data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
  310. data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
  311. data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
  312. data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
  313. data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
  314. data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
  315. data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
  316. data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
  317. data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
  318. data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
  319. data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
  320. data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
  321. data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
  322. data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
  323. data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
  324. data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
  325. data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
  326. data/vendor/local/lib/gailutil.lib +0 -0
  327. data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
  328. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
  329. data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
  330. data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
  331. data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
  332. data/vendor/local/lib/libgailutil.dll.a +0 -0
  333. data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
  334. data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
  335. data/vendor/local/lib/pkgconfig/gail.pc +1 -1
  336. data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
  337. data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
  338. data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
  339. data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
  340. data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
  341. data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
  342. data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
  343. data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
  344. data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
  345. data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
  346. data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
  347. data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
  348. data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
  349. data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
  350. data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
  351. data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
  352. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
  353. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
  354. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
  355. data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
  356. data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
  357. data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
  358. data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
  359. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
  360. data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
  361. data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
  362. data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
  363. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
  364. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
  365. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
  366. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
  367. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
  368. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
  369. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
  370. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
  371. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
  372. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
  373. data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
  374. data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
  375. data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
  376. data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
  377. data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
  378. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
  379. data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
  380. data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
  381. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
  382. data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
  383. data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
  384. data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
  385. data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
  386. data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
  387. data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
  388. data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
  389. data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
  390. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
  391. data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
  392. data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
  393. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
  394. data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
  395. data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
  396. data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
  397. data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
  398. data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
  399. data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
  400. data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
  401. data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
  402. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
  403. data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
  404. data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
  405. data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
  406. data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
  407. data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
  408. data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
  409. data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
  410. data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
  411. data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
  412. data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
  413. data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
  414. data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
  415. data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
  416. data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
  417. data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
  418. data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
  419. data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
  420. data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
  421. data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
  422. data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
  423. data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
  424. data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
  425. data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
  426. data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
  427. data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
  428. data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
  429. data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
  430. data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
  431. data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
  432. data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
  433. data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
  434. data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
  435. data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
  436. data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
  437. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
  438. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
  439. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
  440. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
  441. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
  442. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
  443. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
  444. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
  445. data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
  446. data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
  447. data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
  448. data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
  449. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
  450. data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
  451. data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
  452. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
  453. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
  454. data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
  455. data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
  456. data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
  457. data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
  458. data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
  459. data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
  460. data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
  461. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
  462. data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
  463. data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
  464. data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
  465. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
  466. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
  467. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
  468. data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
  469. data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
  470. data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
  471. data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
  472. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
  473. data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
  474. data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
  475. data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
  476. data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
  477. data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
  478. data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
  479. data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
  480. data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
  481. data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
  482. data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
  483. data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
  484. data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
  485. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
  486. data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
  487. data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
  488. data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
  489. data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
  490. data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
  491. data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
  492. data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
  493. data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
  494. data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
  495. data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
  496. data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
  497. data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
  498. data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
  499. data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
  500. data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
  501. data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
  502. data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
  503. data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
  504. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
  505. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
  506. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
  507. data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
  508. data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
  509. data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
  510. data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
  511. data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
  512. data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
  513. data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
  514. data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
  515. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
  516. data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
  517. data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
  518. data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
  519. data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
  520. data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
  521. data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
  522. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
  523. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
  524. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
  525. data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
  526. data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
  527. data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
  528. data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
  529. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
  530. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
  531. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
  532. data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
  533. data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
  534. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
  535. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
  536. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
  537. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
  538. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
  539. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
  540. data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
  541. data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
  542. data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
  543. data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
  544. data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
  545. data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
  546. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
  547. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
  548. data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
  549. data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
  550. data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
  551. data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
  552. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
  553. data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
  554. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
  555. data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
  556. data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
  557. data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
  558. data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
  559. data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
  560. data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
  561. data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
  562. data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
  563. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
  564. data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
  565. data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
  566. data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
  567. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
  568. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
  569. data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
  570. data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
  571. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
  572. data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
  573. data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
  574. data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
  575. data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
  576. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
  577. data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
  578. data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
  579. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
  580. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
  581. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
  582. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
  583. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
  584. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
  585. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
  586. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
  587. data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
  588. data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
  589. data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
  590. data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
  591. data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
  592. data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
  593. data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
  594. data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
  595. data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
  596. data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
  597. data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
  598. data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
  599. data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
  600. data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
  601. data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
  602. data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
  603. data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
  604. data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
  605. data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
  606. data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
  607. data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
  608. data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
  609. data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
  610. data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
  611. data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
  612. data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
  613. data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
  614. data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
  615. data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
  616. data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
  617. data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
  618. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
  619. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
  620. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
  621. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
  622. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
  623. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
  624. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
  625. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
  626. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
  627. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +31 -31
  628. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
  629. data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
  630. data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
  631. data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
  632. data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
  633. data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
  634. data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
  635. data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
  636. data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
  637. data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
  638. data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
  639. data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
  640. data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
  641. data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
  642. data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
  643. data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
  644. data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
  645. data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
  646. data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
  647. data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
  648. data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
  649. data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
  650. data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
  651. data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
  652. data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
  653. data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
  654. data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
  655. data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
  656. data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
  657. data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
  658. data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
  659. data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
  660. data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
  661. data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
  662. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
  663. data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
  664. data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
  665. data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
  666. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
  667. data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
  668. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
  669. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
  670. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
  671. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
  672. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
  673. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
  674. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
  675. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
  676. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
  677. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
  678. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
  679. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
  680. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
  681. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
  682. data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
  683. data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
  684. data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
  685. data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
  686. data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
  687. data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
  688. data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
  689. data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
  690. data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
  691. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
  692. data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
  693. data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
  694. data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
  695. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
  696. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
  697. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
  698. data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
  699. data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
  700. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
  701. data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
  702. data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
  703. data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
  704. data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
  705. data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
  706. data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
  707. data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
  708. data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
  709. data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
  710. data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
  711. data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
  712. data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
  713. data/vendor/local/share/icons/hicolor/index.theme +1662 -0
  714. data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
  715. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
  716. data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
  717. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
  718. data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
  719. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
  720. data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
  721. data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
  722. data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
  723. data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
  724. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
  725. data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
  726. data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
  727. data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
  728. data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
  729. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
  730. data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
  731. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
  732. data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
  733. data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
  734. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
  735. data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
  736. data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
  737. data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
  738. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
  739. data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
  740. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
  741. data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
  742. data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
  743. data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
  744. data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
  745. data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
  746. data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
  747. data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
  748. metadata +29 -31
  749. data/ChangeLog +0 -6902
  750. data/ext/gtk2/rbgtkmain.c +0 -493
  751. data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
  752. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
  753. data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
  754. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
  755. data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
  756. data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +0 -5048
@@ -4,11 +4,11 @@
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
5
  <title>GtkMisc</title>
6
6
  <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
7
- <link rel="home" href="index.html" title="GTK+ Reference Manual">
7
+ <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
8
8
  <link rel="up" href="AbstractObjects.html" title="Abstract Base Classes">
9
9
  <link rel="prev" href="GtkMenuShell.html" title="GtkMenuShell">
10
10
  <link rel="next" href="GtkObject.html" title="GtkObject">
11
- <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.17 (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">
@@ -17,7 +17,7 @@
17
17
  <td><a accesskey="p" href="GtkMenuShell.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
18
  <td><a accesskey="u" href="AbstractObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
19
  <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
- <th width="100%" align="center">GTK+ Reference Manual</th>
20
+ <th width="100%" align="center">GTK+ 2 Reference Manual</th>
21
21
  <td><a accesskey="n" href="GtkObject.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
22
  </tr>
23
23
  <tr><td colspan="5" class="shortcuts">
@@ -32,7 +32,7 @@
32
32
  <a href="#GtkMisc.properties" class="shortcut">Properties</a>
33
33
  </td></tr>
34
34
  </table>
35
- <div class="refentry" title="GtkMisc">
35
+ <div class="refentry">
36
36
  <a name="GtkMisc"></a><div class="titlepage"></div>
37
37
  <div class="refnamediv"><table width="100%"><tr>
38
38
  <td valign="top">
@@ -41,12 +41,12 @@
41
41
  </td>
42
42
  <td valign="top" align="right"></td>
43
43
  </tr></table></div>
44
- <div class="refsynopsisdiv" title="Synopsis">
44
+ <div class="refsynopsisdiv">
45
45
  <a name="GtkMisc.synopsis"></a><h2>Synopsis</h2>
46
46
  <pre class="synopsis">
47
47
  #include &lt;gtk/gtk.h&gt;
48
48
 
49
- <a class="link" href="GtkMisc.html#GtkMisc-struct" title="GtkMisc">GtkMisc</a>;
49
+ struct <a class="link" href="GtkMisc.html#GtkMisc-struct" title="struct GtkMisc">GtkMisc</a>;
50
50
  <span class="returnvalue">void</span> <a class="link" href="GtkMisc.html#gtk-misc-set-alignment" title="gtk_misc_set_alignment ()">gtk_misc_set_alignment</a> (<em class="parameter"><code><a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a> *misc</code></em>,
51
51
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> xalign</code></em>,
52
52
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> yalign</code></em>);
@@ -61,7 +61,7 @@
61
61
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *ypad</code></em>);
62
62
  </pre>
63
63
  </div>
64
- <div class="refsect1" title="Object Hierarchy">
64
+ <div class="refsect1">
65
65
  <a name="GtkMisc.object-hierarchy"></a><h2>Object Hierarchy</h2>
66
66
  <pre class="synopsis">
67
67
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -75,13 +75,13 @@
75
75
  +----<a class="link" href="GtkPixmap.html" title="GtkPixmap">GtkPixmap</a>
76
76
  </pre>
77
77
  </div>
78
- <div class="refsect1" title="Implemented Interfaces">
78
+ <div class="refsect1">
79
79
  <a name="GtkMisc.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
80
80
  <p>
81
81
  GtkMisc implements
82
82
  AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
83
83
  </div>
84
- <div class="refsect1" title="Properties">
84
+ <div class="refsect1">
85
85
  <a name="GtkMisc.properties"></a><h2>Properties</h2>
86
86
  <pre class="synopsis">
87
87
  "<a class="link" href="GtkMisc.html#GtkMisc--xalign" title='The "xalign" property'>xalign</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write
@@ -90,7 +90,7 @@ GtkMisc implements
90
90
  "<a class="link" href="GtkMisc.html#GtkMisc--ypad" title='The "ypad" property'>ypad</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
91
91
  </pre>
92
92
  </div>
93
- <div class="refsect1" title="Description">
93
+ <div class="refsect1">
94
94
  <a name="GtkMisc.description"></a><h2>Description</h2>
95
95
  <p>
96
96
  The <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a> widget is an abstract widget which is not useful itself, but
@@ -107,13 +107,13 @@ a container in such a way that it expands automatically to fill its
107
107
  allocated area, the alignment settings will not alter the widgets position.
108
108
  </p>
109
109
  </div>
110
- <div class="refsect1" title="Details">
110
+ <div class="refsect1">
111
111
  <a name="GtkMisc.details"></a><h2>Details</h2>
112
- <div class="refsect2" title="GtkMisc">
113
- <a name="GtkMisc-struct"></a><h3>GtkMisc</h3>
114
- <pre class="programlisting">typedef struct _GtkMisc GtkMisc;</pre>
112
+ <div class="refsect2">
113
+ <a name="GtkMisc-struct"></a><h3>struct GtkMisc</h3>
114
+ <pre class="programlisting">struct GtkMisc;</pre>
115
115
  <p>
116
- The <a class="link" href="GtkMisc.html#GtkMisc-struct" title="GtkMisc"><span class="type">GtkMisc</span></a> struct contains the following fields.
116
+ The <a class="link" href="GtkMisc.html#GtkMisc-struct" title="struct GtkMisc"><span class="type">GtkMisc</span></a> struct contains the following fields.
117
117
  (These fields should be considered read-only. They should never be set by
118
118
  an application.)
119
119
  </p>
@@ -151,7 +151,7 @@ in pixels.</td>
151
151
  </p>
152
152
  </div>
153
153
  <hr>
154
- <div class="refsect2" title="gtk_misc_set_alignment ()">
154
+ <div class="refsect2">
155
155
  <a name="gtk-misc-set-alignment"></a><h3>gtk_misc_set_alignment ()</h3>
156
156
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_misc_set_alignment (<em class="parameter"><code><a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a> *misc</code></em>,
157
157
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> xalign</code></em>,
@@ -164,24 +164,21 @@ Sets the alignment of the widget.
164
164
  <tbody>
165
165
  <tr>
166
166
  <td><p><span class="term"><em class="parameter"><code>misc</code></em> :</span></p></td>
167
- <td>a <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a>.
168
- </td>
167
+ <td>a <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a>.</td>
169
168
  </tr>
170
169
  <tr>
171
170
  <td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
172
- <td>the horizontal alignment, from 0 (left) to 1 (right).
173
- </td>
171
+ <td>the horizontal alignment, from 0 (left) to 1 (right).</td>
174
172
  </tr>
175
173
  <tr>
176
174
  <td><p><span class="term"><em class="parameter"><code>yalign</code></em> :</span></p></td>
177
- <td>the vertical alignment, from 0 (top) to 1 (bottom).
178
- </td>
175
+ <td>the vertical alignment, from 0 (top) to 1 (bottom).</td>
179
176
  </tr>
180
177
  </tbody>
181
178
  </table></div>
182
179
  </div>
183
180
  <hr>
184
- <div class="refsect2" title="gtk_misc_set_padding ()">
181
+ <div class="refsect2">
185
182
  <a name="gtk-misc-set-padding"></a><h3>gtk_misc_set_padding ()</h3>
186
183
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_misc_set_padding (<em class="parameter"><code><a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a> *misc</code></em>,
187
184
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> xpad</code></em>,
@@ -194,26 +191,23 @@ Sets the amount of space to add around the widget.
194
191
  <tbody>
195
192
  <tr>
196
193
  <td><p><span class="term"><em class="parameter"><code>misc</code></em> :</span></p></td>
197
- <td>a <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a>.
198
- </td>
194
+ <td>a <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a>.</td>
199
195
  </tr>
200
196
  <tr>
201
197
  <td><p><span class="term"><em class="parameter"><code>xpad</code></em> :</span></p></td>
202
198
  <td>the amount of space to add on the left and right of the widget,
203
- in pixels.
204
- </td>
199
+ in pixels.</td>
205
200
  </tr>
206
201
  <tr>
207
202
  <td><p><span class="term"><em class="parameter"><code>ypad</code></em> :</span></p></td>
208
203
  <td>the amount of space to add on the top and bottom of the widget,
209
- in pixels.
210
- </td>
204
+ in pixels.</td>
211
205
  </tr>
212
206
  </tbody>
213
207
  </table></div>
214
208
  </div>
215
209
  <hr>
216
- <div class="refsect2" title="gtk_misc_get_alignment ()">
210
+ <div class="refsect2">
217
211
  <a name="gtk-misc-get-alignment"></a><h3>gtk_misc_get_alignment ()</h3>
218
212
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_misc_get_alignment (<em class="parameter"><code><a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a> *misc</code></em>,
219
213
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> *xalign</code></em>,
@@ -232,19 +226,19 @@ See <a class="link" href="GtkMisc.html#gtk-misc-set-alignment" title="gtk_misc_s
232
226
  </tr>
233
227
  <tr>
234
228
  <td><p><span class="term"><em class="parameter"><code>xalign</code></em> :</span></p></td>
235
- <td> location to store X alignment of <em class="parameter"><code>misc</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
229
+ <td>location to store X alignment of <em class="parameter"><code>misc</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
236
230
  </td>
237
231
  </tr>
238
232
  <tr>
239
233
  <td><p><span class="term"><em class="parameter"><code>yalign</code></em> :</span></p></td>
240
- <td> location to store Y alignment of <em class="parameter"><code>misc</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
234
+ <td>location to store Y alignment of <em class="parameter"><code>misc</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
241
235
  </td>
242
236
  </tr>
243
237
  </tbody>
244
238
  </table></div>
245
239
  </div>
246
240
  <hr>
247
- <div class="refsect2" title="gtk_misc_get_padding ()">
241
+ <div class="refsect2">
248
242
  <a name="gtk-misc-get-padding"></a><h3>gtk_misc_get_padding ()</h3>
249
243
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_misc_get_padding (<em class="parameter"><code><a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a> *misc</code></em>,
250
244
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *xpad</code></em>,
@@ -263,21 +257,23 @@ See <a class="link" href="GtkMisc.html#gtk-misc-set-padding" title="gtk_misc_set
263
257
  </tr>
264
258
  <tr>
265
259
  <td><p><span class="term"><em class="parameter"><code>xpad</code></em> :</span></p></td>
266
- <td> location to store padding in the X direction, 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>
260
+ <td>location to store padding in the X
261
+ direction, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
267
262
  </td>
268
263
  </tr>
269
264
  <tr>
270
265
  <td><p><span class="term"><em class="parameter"><code>ypad</code></em> :</span></p></td>
271
- <td> location to store padding in the Y direction, 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>
266
+ <td>location to store padding in the Y
267
+ direction, 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="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
272
268
  </td>
273
269
  </tr>
274
270
  </tbody>
275
271
  </table></div>
276
272
  </div>
277
273
  </div>
278
- <div class="refsect1" title="Property Details">
274
+ <div class="refsect1">
279
275
  <a name="GtkMisc.property-details"></a><h2>Property Details</h2>
280
- <div class="refsect2" title='The "xalign" property'>
276
+ <div class="refsect2">
281
277
  <a name="GtkMisc--xalign"></a><h3>The <code class="literal">"xalign"</code> property</h3>
282
278
  <pre class="programlisting"> "xalign" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write</pre>
283
279
  <p>The horizontal alignment, from 0 (left) to 1 (right). Reversed for RTL layouts.</p>
@@ -285,7 +281,7 @@ See <a class="link" href="GtkMisc.html#gtk-misc-set-padding" title="gtk_misc_set
285
281
  <p>Default value: 0.5</p>
286
282
  </div>
287
283
  <hr>
288
- <div class="refsect2" title='The "xpad" property'>
284
+ <div class="refsect2">
289
285
  <a name="GtkMisc--xpad"></a><h3>The <code class="literal">"xpad"</code> property</h3>
290
286
  <pre class="programlisting"> "xpad" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
291
287
  <p>The amount of space to add on the left and right of the widget, in pixels.</p>
@@ -293,7 +289,7 @@ See <a class="link" href="GtkMisc.html#gtk-misc-set-padding" title="gtk_misc_set
293
289
  <p>Default value: 0</p>
294
290
  </div>
295
291
  <hr>
296
- <div class="refsect2" title='The "yalign" property'>
292
+ <div class="refsect2">
297
293
  <a name="GtkMisc--yalign"></a><h3>The <code class="literal">"yalign"</code> property</h3>
298
294
  <pre class="programlisting"> "yalign" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> : Read / Write</pre>
299
295
  <p>The vertical alignment, from 0 (top) to 1 (bottom).</p>
@@ -301,7 +297,7 @@ See <a class="link" href="GtkMisc.html#gtk-misc-set-padding" title="gtk_misc_set
301
297
  <p>Default value: 0.5</p>
302
298
  </div>
303
299
  <hr>
304
- <div class="refsect2" title='The "ypad" property'>
300
+ <div class="refsect2">
305
301
  <a name="GtkMisc--ypad"></a><h3>The <code class="literal">"ypad"</code> property</h3>
306
302
  <pre class="programlisting"> "ypad" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
307
303
  <p>The amount of space to add on the top and bottom of the widget, in pixels.</p>
@@ -312,6 +308,6 @@ See <a class="link" href="GtkMisc.html#gtk-misc-set-padding" title="gtk_misc_set
312
308
  </div>
313
309
  <div class="footer">
314
310
  <hr>
315
- Generated by GTK-Doc V1.15</div>
311
+ Generated by GTK-Doc V1.17</div>
316
312
  </body>
317
313
  </html>
@@ -4,11 +4,11 @@
4
4
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
5
5
  <title>GtkNotebook</title>
6
6
  <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
7
- <link rel="home" href="index.html" title="GTK+ Reference Manual">
7
+ <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
8
8
  <link rel="up" href="LayoutContainers.html" title="Layout Containers">
9
9
  <link rel="prev" href="GtkLayout.html" title="GtkLayout">
10
10
  <link rel="next" href="GtkTable.html" title="GtkTable">
11
- <meta name="generator" content="GTK-Doc V1.15 (XML mode)">
11
+ <meta name="generator" content="GTK-Doc V1.17 (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">
@@ -17,7 +17,7 @@
17
17
  <td><a accesskey="p" href="GtkLayout.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
18
18
  <td><a accesskey="u" href="LayoutContainers.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
19
19
  <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
20
- <th width="100%" align="center">GTK+ Reference Manual</th>
20
+ <th width="100%" align="center">GTK+ 2 Reference Manual</th>
21
21
  <td><a accesskey="n" href="GtkTable.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
22
22
  </tr>
23
23
  <tr><td colspan="5" class="shortcuts">
@@ -38,7 +38,7 @@
38
38
  <a href="#GtkNotebook.signals" class="shortcut">Signals</a>
39
39
  </td></tr>
40
40
  </table>
41
- <div class="refentry" title="GtkNotebook">
41
+ <div class="refentry">
42
42
  <a name="GtkNotebook"></a><div class="titlepage"></div>
43
43
  <div class="refnamediv"><table width="100%"><tr>
44
44
  <td valign="top">
@@ -47,12 +47,12 @@
47
47
  </td>
48
48
  <td valign="top" align="right"><img src="notebook.png"></td>
49
49
  </tr></table></div>
50
- <div class="refsynopsisdiv" title="Synopsis">
50
+ <div class="refsynopsisdiv">
51
51
  <a name="GtkNotebook.synopsis"></a><h2>Synopsis</h2>
52
52
  <pre class="synopsis">
53
53
  #include &lt;gtk/gtk.h&gt;
54
54
 
55
- <a class="link" href="GtkNotebook.html#GtkNotebook-struct" title="GtkNotebook">GtkNotebook</a>;
55
+ struct <a class="link" href="GtkNotebook.html#GtkNotebook-struct" title="struct GtkNotebook">GtkNotebook</a>;
56
56
  <a class="link" href="GtkNotebook.html#GtkNotebookPage" title="GtkNotebookPage">GtkNotebookPage</a>;
57
57
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkNotebook.html#gtk-notebook-new" title="gtk_notebook_new ()">gtk_notebook_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
58
58
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkNotebook.html#gtk-notebook-append-page" title="gtk_notebook_append_page ()">gtk_notebook_append_page</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
@@ -104,7 +104,7 @@
104
104
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkNotebook.html#gtk-notebook-get-current-page" title="gtk_notebook_get_current_page ()">gtk_notebook_get_current_page</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);
105
105
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkNotebook.html#gtk-notebook-get-menu-label" title="gtk_notebook_get_menu_label ()">gtk_notebook_get_menu_label</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
106
106
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);
107
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkNotebook.html#gtk-notebook-get-nth-page" title="gtk_notebook_get_nth_page ()">gtk_notebook_get_nth_page</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
107
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkNotebook.html#gtk-notebook-get-nth-page" title="gtk_notebook_get_nth_page ()">gtk_notebook_get_nth_page</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
108
108
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> page_num</code></em>);
109
109
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkNotebook.html#gtk-notebook-get-n-pages" title="gtk_notebook_get_n_pages ()">gtk_notebook_get_n_pages</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);
110
110
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkNotebook.html#gtk-notebook-get-tab-label" title="gtk_notebook_get_tab_label ()">gtk_notebook_get_tab_label</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
@@ -166,10 +166,13 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
166
166
  <span class="returnvalue">void</span> <a class="link" href="GtkNotebook.html#gtk-notebook-set-group" title="gtk_notebook_set_group ()">gtk_notebook_set_group</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
167
167
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> group</code></em>);
168
168
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> <a class="link" href="GtkNotebook.html#gtk-notebook-get-group" title="gtk_notebook_get_group ()">gtk_notebook_get_group</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);
169
+ <span class="returnvalue">void</span> <a class="link" href="GtkNotebook.html#gtk-notebook-set-group-name" title="gtk_notebook_set_group_name ()">gtk_notebook_set_group_name</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
170
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *group_name</code></em>);
171
+ 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="GtkNotebook.html#gtk-notebook-get-group-name" title="gtk_notebook_get_group_name ()">gtk_notebook_get_group_name</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);
169
172
  <span class="returnvalue">void</span> <a class="link" href="GtkNotebook.html#gtk-notebook-set-action-widget" title="gtk_notebook_set_action_widget ()">gtk_notebook_set_action_widget</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
170
173
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
171
174
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPackType" title="enum GtkPackType"><span class="type">GtkPackType</span></a> pack_type</code></em>);
172
- <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* <a class="link" href="GtkNotebook.html#gtk-notebook-get-action-widget" title="gtk_notebook_get_action_widget ()">gtk_notebook_get_action_widget</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
175
+ <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkNotebook.html#gtk-notebook-get-action-widget" title="gtk_notebook_get_action_widget ()">gtk_notebook_get_action_widget</a> (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
173
176
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPackType" title="enum GtkPackType"><span class="type">GtkPackType</span></a> pack_type</code></em>);
174
177
  <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="returnvalue">GtkNotebook</span></a> * (<a class="link" href="GtkNotebook.html#GtkNotebookWindowCreationFunc" title="GtkNotebookWindowCreationFunc ()">*GtkNotebookWindowCreationFunc</a>) (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *source</code></em>,
175
178
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *page</code></em>,
@@ -182,7 +185,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
182
185
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);
183
186
  </pre>
184
187
  </div>
185
- <div class="refsect1" title="Object Hierarchy">
188
+ <div class="refsect1">
186
189
  <a name="GtkNotebook.object-hierarchy"></a><h2>Object Hierarchy</h2>
187
190
  <pre class="synopsis">
188
191
  <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
@@ -193,18 +196,19 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
193
196
  +----GtkNotebook
194
197
  </pre>
195
198
  </div>
196
- <div class="refsect1" title="Implemented Interfaces">
199
+ <div class="refsect1">
197
200
  <a name="GtkNotebook.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
198
201
  <p>
199
202
  GtkNotebook implements
200
203
  AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
201
204
  </div>
202
- <div class="refsect1" title="Properties">
205
+ <div class="refsect1">
203
206
  <a name="GtkNotebook.properties"></a><h2>Properties</h2>
204
207
  <pre class="synopsis">
205
208
  "<a class="link" href="GtkNotebook.html#GtkNotebook--enable-popup" title='The "enable-popup" property'>enable-popup</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
206
209
  "<a class="link" href="GtkNotebook.html#GtkNotebook--group" title='The "group" property'>group</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Read / Write
207
210
  "<a class="link" href="GtkNotebook.html#GtkNotebook--group-id" title='The "group-id" property'>group-id</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
211
+ "<a class="link" href="GtkNotebook.html#GtkNotebook--group-name" title='The "group-name" property'>group-name</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
208
212
  "<a class="link" href="GtkNotebook.html#GtkNotebook--homogeneous" title='The "homogeneous" property'>homogeneous</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
209
213
  "<a class="link" href="GtkNotebook.html#GtkNotebook--page" title='The "page" property'>page</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
210
214
  "<a class="link" href="GtkNotebook.html#GtkNotebook--scrollable" title='The "scrollable" property'>scrollable</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
@@ -216,7 +220,7 @@ GtkNotebook implements
216
220
  "<a class="link" href="GtkNotebook.html#GtkNotebook--tab-vborder" title='The "tab-vborder" property'>tab-vborder</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write
217
221
  </pre>
218
222
  </div>
219
- <div class="refsect1" title="Child Properties">
223
+ <div class="refsect1">
220
224
  <a name="GtkNotebook.child-properties"></a><h2>Child Properties</h2>
221
225
  <pre class="synopsis">
222
226
  "<a class="link" href="GtkNotebook.html#GtkNotebook--c-detachable" title='The "detachable" child property'>detachable</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
@@ -229,7 +233,7 @@ GtkNotebook implements
229
233
  "<a class="link" href="GtkNotebook.html#GtkNotebook--c-tab-pack" title='The "tab-pack" child property'>tab-pack</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkPackType" title="enum GtkPackType"><span class="type">GtkPackType</span></a> : Read / Write
230
234
  </pre>
231
235
  </div>
232
- <div class="refsect1" title="Style Properties">
236
+ <div class="refsect1">
233
237
  <a name="GtkNotebook.style-properties"></a><h2>Style Properties</h2>
234
238
  <pre class="synopsis">
235
239
  "<a class="link" href="GtkNotebook.html#GtkNotebook--s-arrow-spacing" title='The "arrow-spacing" style property'>arrow-spacing</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
@@ -241,22 +245,22 @@ GtkNotebook implements
241
245
  "<a class="link" href="GtkNotebook.html#GtkNotebook--s-tab-overlap" title='The "tab-overlap" style property'>tab-overlap</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
242
246
  </pre>
243
247
  </div>
244
- <div class="refsect1" title="Signals">
248
+ <div class="refsect1">
245
249
  <a name="GtkNotebook.signals"></a><h2>Signals</h2>
246
250
  <pre class="synopsis">
247
- "<a class="link" href="GtkNotebook.html#GtkNotebook-change-current-page" title='The "change-current-page" signal'>change-current-page</a>" : Run Last / Action
248
- "<a class="link" href="GtkNotebook.html#GtkNotebook-create-window" title='The "create-window" signal'>create-window</a>" : Run Last
249
- "<a class="link" href="GtkNotebook.html#GtkNotebook-focus-tab" title='The "focus-tab" signal'>focus-tab</a>" : Run Last / Action
250
- "<a class="link" href="GtkNotebook.html#GtkNotebook-move-focus-out" title='The "move-focus-out" signal'>move-focus-out</a>" : Run Last / Action
251
- "<a class="link" href="GtkNotebook.html#GtkNotebook-page-added" title='The "page-added" signal'>page-added</a>" : Run Last
252
- "<a class="link" href="GtkNotebook.html#GtkNotebook-page-removed" title='The "page-removed" signal'>page-removed</a>" : Run Last
253
- "<a class="link" href="GtkNotebook.html#GtkNotebook-page-reordered" title='The "page-reordered" signal'>page-reordered</a>" : Run Last
254
- "<a class="link" href="GtkNotebook.html#GtkNotebook-reorder-tab" title='The "reorder-tab" signal'>reorder-tab</a>" : Run Last / Action
255
- "<a class="link" href="GtkNotebook.html#GtkNotebook-select-page" title='The "select-page" signal'>select-page</a>" : Run Last / Action
256
- "<a class="link" href="GtkNotebook.html#GtkNotebook-switch-page" title='The "switch-page" signal'>switch-page</a>" : Run Last
251
+ "<a class="link" href="GtkNotebook.html#GtkNotebook-change-current-page" title='The "change-current-page" signal'>change-current-page</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
252
+ "<a class="link" href="GtkNotebook.html#GtkNotebook-create-window" title='The "create-window" signal'>create-window</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>
253
+ "<a class="link" href="GtkNotebook.html#GtkNotebook-focus-tab" title='The "focus-tab" signal'>focus-tab</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
254
+ "<a class="link" href="GtkNotebook.html#GtkNotebook-move-focus-out" title='The "move-focus-out" signal'>move-focus-out</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
255
+ "<a class="link" href="GtkNotebook.html#GtkNotebook-page-added" title='The "page-added" signal'>page-added</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>
256
+ "<a class="link" href="GtkNotebook.html#GtkNotebook-page-removed" title='The "page-removed" signal'>page-removed</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>
257
+ "<a class="link" href="GtkNotebook.html#GtkNotebook-page-reordered" title='The "page-reordered" signal'>page-reordered</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>
258
+ "<a class="link" href="GtkNotebook.html#GtkNotebook-reorder-tab" title='The "reorder-tab" signal'>reorder-tab</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
259
+ "<a class="link" href="GtkNotebook.html#GtkNotebook-select-page" title='The "select-page" signal'>select-page</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
260
+ "<a class="link" href="GtkNotebook.html#GtkNotebook-switch-page" title='The "switch-page" signal'>switch-page</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>
257
261
  </pre>
258
262
  </div>
259
- <div class="refsect1" title="Description">
263
+ <div class="refsect1">
260
264
  <a name="GtkNotebook.description"></a><h2>Description</h2>
261
265
  <p>
262
266
  The <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> widget is a <a class="link" href="GtkContainer.html" title="GtkContainer"><span class="type">GtkContainer</span></a> whose children are pages that
@@ -271,7 +275,7 @@ arrows added (see gtk_notebook_set_scrollable), and whether there
271
275
  will be a popup menu allowing the users to switch pages.
272
276
  (see <a class="link" href="GtkNotebook.html#gtk-notebook-popup-enable" title="gtk_notebook_popup_enable ()"><code class="function">gtk_notebook_popup_enable()</code></a>, <a class="link" href="GtkNotebook.html#gtk-notebook-popup-disable" title="gtk_notebook_popup_disable ()"><code class="function">gtk_notebook_popup_disable()</code></a>)
273
277
  </p>
274
- <div class="refsect2" title="GtkNotebook as GtkBuildable">
278
+ <div class="refsect2">
275
279
  <a name="GtkNotebook-BUILDER-UI"></a><h3>GtkNotebook as GtkBuildable</h3>
276
280
  <p>
277
281
  The GtkNoteboopk implementation of the GtkBuildable interface
@@ -287,7 +291,7 @@ To add a child widget in the notebooks action area, specify
287
291
  element.
288
292
  </p>
289
293
  <div class="example">
290
- <a name="id1112354"></a><p class="title"><b>Example 43. A UI definition fragment with GtkNotebook</b></p>
294
+ <a name="id1281744"></a><p class="title"><b>Example 46. A UI definition fragment with GtkNotebook</b></p>
291
295
  <div class="example-contents">
292
296
  <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
293
297
  <tbody>
@@ -325,19 +329,19 @@ element.
325
329
  <br class="example-break">
326
330
  </div>
327
331
  </div>
328
- <div class="refsect1" title="Details">
332
+ <div class="refsect1">
329
333
  <a name="GtkNotebook.details"></a><h2>Details</h2>
330
- <div class="refsect2" title="GtkNotebook">
331
- <a name="GtkNotebook-struct"></a><h3>GtkNotebook</h3>
332
- <pre class="programlisting">typedef struct _GtkNotebook GtkNotebook;</pre>
334
+ <div class="refsect2">
335
+ <a name="GtkNotebook-struct"></a><h3>struct GtkNotebook</h3>
336
+ <pre class="programlisting">struct GtkNotebook;</pre>
333
337
  <p>
334
338
  </p>
335
339
  </div>
336
340
  <hr>
337
- <div class="refsect2" title="GtkNotebookPage">
341
+ <div class="refsect2">
338
342
  <a name="GtkNotebookPage"></a><h3>GtkNotebookPage</h3>
339
343
  <pre class="programlisting">typedef struct _GtkNotebookPage GtkNotebookPage;</pre>
340
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
344
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
341
345
  <h3 class="title">Warning</h3>
342
346
  <p><code class="literal">GtkNotebookPage</code> is deprecated and should not be used in newly-written code.</p>
343
347
  </div>
@@ -346,7 +350,7 @@ The <a class="link" href="GtkNotebook.html#GtkNotebookPage" title="GtkNotebookPa
346
350
  </p>
347
351
  </div>
348
352
  <hr>
349
- <div class="refsect2" title="gtk_notebook_new ()">
353
+ <div class="refsect2">
350
354
  <a name="gtk-notebook-new"></a><h3>gtk_notebook_new ()</h3>
351
355
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_notebook_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
352
356
  <p>
@@ -356,13 +360,13 @@ Creates a new <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span
356
360
  <col align="left" valign="top">
357
361
  <tbody><tr>
358
362
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
359
- <td> the newly created <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a>
363
+ <td>the newly created <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a>
360
364
  </td>
361
365
  </tr></tbody>
362
366
  </table></div>
363
367
  </div>
364
368
  <hr>
365
- <div class="refsect2" title="gtk_notebook_append_page ()">
369
+ <div class="refsect2">
366
370
  <a name="gtk-notebook-append-page"></a><h3>gtk_notebook_append_page ()</h3>
367
371
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_notebook_append_page (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
368
372
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -380,26 +384,24 @@ Appends a page to <em class="parameter"><code>notebook</code></em>.
380
384
  </tr>
381
385
  <tr>
382
386
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
383
- <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.
384
- </td>
387
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.</td>
385
388
  </tr>
386
389
  <tr>
387
390
  <td><p><span class="term"><em class="parameter"><code>tab_label</code></em> :</span></p></td>
388
- <td> the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
389
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
391
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
392
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
390
393
  </td>
391
394
  </tr>
392
395
  <tr>
393
396
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
394
- <td> the index (starting from 0) of the appended
395
- page in the notebook, or -1 if function fails
396
- </td>
397
+ <td>the index (starting from 0) of the appended
398
+ page in the notebook, or -1 if function fails</td>
397
399
  </tr>
398
400
  </tbody>
399
401
  </table></div>
400
402
  </div>
401
403
  <hr>
402
- <div class="refsect2" title="gtk_notebook_append_page_menu ()">
404
+ <div class="refsect2">
403
405
  <a name="gtk-notebook-append-page-menu"></a><h3>gtk_notebook_append_page_menu ()</h3>
404
406
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_notebook_append_page_menu (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
405
407
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -419,36 +421,34 @@ label in the popup menu.
419
421
  </tr>
420
422
  <tr>
421
423
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
422
- <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.
423
- </td>
424
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.</td>
424
425
  </tr>
425
426
  <tr>
426
427
  <td><p><span class="term"><em class="parameter"><code>tab_label</code></em> :</span></p></td>
427
- <td> the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
428
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
428
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
429
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
429
430
  </td>
430
431
  </tr>
431
432
  <tr>
432
433
  <td><p><span class="term"><em class="parameter"><code>menu_label</code></em> :</span></p></td>
433
- <td> the widget to use as a label for the page-switch
434
- menu, if that is enabled. If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, and <em class="parameter"><code>tab_label</code></em>
435
- is a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the menu label will be
436
- a newly created label with the same text as <em class="parameter"><code>tab_label</code></em>;
437
- If <em class="parameter"><code>tab_label</code></em> is not a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>, <em class="parameter"><code>menu_label</code></em> must be
438
- specified if the page-switch menu is to be used. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
434
+ <td>the widget to use as a label for the page-switch
435
+ menu, if that is enabled. If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, and <em class="parameter"><code>tab_label</code></em>
436
+ is a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the menu label will be
437
+ a newly created label with the same text as <em class="parameter"><code>tab_label</code></em>;
438
+ If <em class="parameter"><code>tab_label</code></em> is not a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>, <em class="parameter"><code>menu_label</code></em> must be
439
+ specified if the page-switch menu is to be used. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
439
440
  </td>
440
441
  </tr>
441
442
  <tr>
442
443
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
443
- <td> the index (starting from 0) of the appended
444
- page in the notebook, or -1 if function fails
445
- </td>
444
+ <td>the index (starting from 0) of the appended
445
+ page in the notebook, or -1 if function fails</td>
446
446
  </tr>
447
447
  </tbody>
448
448
  </table></div>
449
449
  </div>
450
450
  <hr>
451
- <div class="refsect2" title="gtk_notebook_prepend_page ()">
451
+ <div class="refsect2">
452
452
  <a name="gtk-notebook-prepend-page"></a><h3>gtk_notebook_prepend_page ()</h3>
453
453
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_notebook_prepend_page (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
454
454
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -466,26 +466,24 @@ Prepends a page to <em class="parameter"><code>notebook</code></em>.
466
466
  </tr>
467
467
  <tr>
468
468
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
469
- <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.
470
- </td>
469
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.</td>
471
470
  </tr>
472
471
  <tr>
473
472
  <td><p><span class="term"><em class="parameter"><code>tab_label</code></em> :</span></p></td>
474
- <td> the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
475
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
473
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
474
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
476
475
  </td>
477
476
  </tr>
478
477
  <tr>
479
478
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
480
- <td> the index (starting from 0) of the prepended
481
- page in the notebook, or -1 if function fails
482
- </td>
479
+ <td>the index (starting from 0) of the prepended
480
+ page in the notebook, or -1 if function fails</td>
483
481
  </tr>
484
482
  </tbody>
485
483
  </table></div>
486
484
  </div>
487
485
  <hr>
488
- <div class="refsect2" title="gtk_notebook_prepend_page_menu ()">
486
+ <div class="refsect2">
489
487
  <a name="gtk-notebook-prepend-page-menu"></a><h3>gtk_notebook_prepend_page_menu ()</h3>
490
488
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_notebook_prepend_page_menu (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
491
489
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -505,36 +503,34 @@ label in the popup menu.
505
503
  </tr>
506
504
  <tr>
507
505
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
508
- <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.
509
- </td>
506
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.</td>
510
507
  </tr>
511
508
  <tr>
512
509
  <td><p><span class="term"><em class="parameter"><code>tab_label</code></em> :</span></p></td>
513
- <td> the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
514
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
510
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
511
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
515
512
  </td>
516
513
  </tr>
517
514
  <tr>
518
515
  <td><p><span class="term"><em class="parameter"><code>menu_label</code></em> :</span></p></td>
519
- <td> the widget to use as a label for the page-switch
520
- menu, if that is enabled. If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, and <em class="parameter"><code>tab_label</code></em>
521
- is a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the menu label will be
522
- a newly created label with the same text as <em class="parameter"><code>tab_label</code></em>;
523
- If <em class="parameter"><code>tab_label</code></em> is not a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>, <em class="parameter"><code>menu_label</code></em> must be
524
- specified if the page-switch menu is to be used. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
516
+ <td>the widget to use as a label for the page-switch
517
+ menu, if that is enabled. If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, and <em class="parameter"><code>tab_label</code></em>
518
+ is a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the menu label will be
519
+ a newly created label with the same text as <em class="parameter"><code>tab_label</code></em>;
520
+ If <em class="parameter"><code>tab_label</code></em> is not a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>, <em class="parameter"><code>menu_label</code></em> must be
521
+ specified if the page-switch menu is to be used. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
525
522
  </td>
526
523
  </tr>
527
524
  <tr>
528
525
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
529
- <td> the index (starting from 0) of the prepended
530
- page in the notebook, or -1 if function fails
531
- </td>
526
+ <td>the index (starting from 0) of the prepended
527
+ page in the notebook, or -1 if function fails</td>
532
528
  </tr>
533
529
  </tbody>
534
530
  </table></div>
535
531
  </div>
536
532
  <hr>
537
- <div class="refsect2" title="gtk_notebook_insert_page ()">
533
+ <div class="refsect2">
538
534
  <a name="gtk-notebook-insert-page"></a><h3>gtk_notebook_insert_page ()</h3>
539
535
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_notebook_insert_page (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
540
536
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -553,32 +549,29 @@ Insert a page into <em class="parameter"><code>notebook</code></em> at the given
553
549
  </tr>
554
550
  <tr>
555
551
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
556
- <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.
557
- </td>
552
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.</td>
558
553
  </tr>
559
554
  <tr>
560
555
  <td><p><span class="term"><em class="parameter"><code>tab_label</code></em> :</span></p></td>
561
- <td> the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
562
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
556
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
557
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
563
558
  </td>
564
559
  </tr>
565
560
  <tr>
566
561
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
567
562
  <td>the index (starting at 0) at which to insert the page,
568
- or -1 to append the page after all other pages.
569
- </td>
563
+ or -1 to append the page after all other pages.</td>
570
564
  </tr>
571
565
  <tr>
572
566
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
573
- <td> the index (starting from 0) of the inserted
574
- page in the notebook, or -1 if function fails
575
- </td>
567
+ <td>the index (starting from 0) of the inserted
568
+ page in the notebook, or -1 if function fails</td>
576
569
  </tr>
577
570
  </tbody>
578
571
  </table></div>
579
572
  </div>
580
573
  <hr>
581
- <div class="refsect2" title="gtk_notebook_insert_page_menu ()">
574
+ <div class="refsect2">
582
575
  <a name="gtk-notebook-insert-page-menu"></a><h3>gtk_notebook_insert_page_menu ()</h3>
583
576
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_notebook_insert_page_menu (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
584
577
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -599,42 +592,39 @@ the widget to use as the label in the popup menu.
599
592
  </tr>
600
593
  <tr>
601
594
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
602
- <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.
603
- </td>
595
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to use as the contents of the page.</td>
604
596
  </tr>
605
597
  <tr>
606
598
  <td><p><span class="term"><em class="parameter"><code>tab_label</code></em> :</span></p></td>
607
- <td> the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
608
- or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
599
+ <td>the <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> to be used as the label for the page,
600
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the default label, 'page N'. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
609
601
  </td>
610
602
  </tr>
611
603
  <tr>
612
604
  <td><p><span class="term"><em class="parameter"><code>menu_label</code></em> :</span></p></td>
613
- <td> the widget to use as a label for the page-switch
614
- menu, if that is enabled. If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, and <em class="parameter"><code>tab_label</code></em>
615
- is a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the menu label will be
616
- a newly created label with the same text as <em class="parameter"><code>tab_label</code></em>;
617
- If <em class="parameter"><code>tab_label</code></em> is not a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>, <em class="parameter"><code>menu_label</code></em> must be
618
- specified if the page-switch menu is to be used. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
605
+ <td>the widget to use as a label for the page-switch
606
+ menu, if that is enabled. If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, and <em class="parameter"><code>tab_label</code></em>
607
+ is a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, then the menu label will be
608
+ a newly created label with the same text as <em class="parameter"><code>tab_label</code></em>;
609
+ If <em class="parameter"><code>tab_label</code></em> is not a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>, <em class="parameter"><code>menu_label</code></em> must be
610
+ specified if the page-switch menu is to be used. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
619
611
  </td>
620
612
  </tr>
621
613
  <tr>
622
614
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
623
615
  <td>the index (starting at 0) at which to insert the page,
624
- or -1 to append the page after all other pages.
625
- </td>
616
+ or -1 to append the page after all other pages.</td>
626
617
  </tr>
627
618
  <tr>
628
619
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
629
- <td> the index (starting from 0) of the inserted
630
- page in the notebook
631
- </td>
620
+ <td>the index (starting from 0) of the inserted
621
+ page in the notebook</td>
632
622
  </tr>
633
623
  </tbody>
634
624
  </table></div>
635
625
  </div>
636
626
  <hr>
637
- <div class="refsect2" title="gtk_notebook_remove_page ()">
627
+ <div class="refsect2">
638
628
  <a name="gtk-notebook-remove-page"></a><h3>gtk_notebook_remove_page ()</h3>
639
629
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_remove_page (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
640
630
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> page_num</code></em>);</pre>
@@ -647,25 +637,23 @@ in the notebook.
647
637
  <tbody>
648
638
  <tr>
649
639
  <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
650
- <td>a <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a>.
651
- </td>
640
+ <td>a <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a>.</td>
652
641
  </tr>
653
642
  <tr>
654
643
  <td><p><span class="term"><em class="parameter"><code>page_num</code></em> :</span></p></td>
655
644
  <td>the index of a notebook page, starting
656
- from 0. If -1, the last page will
657
- be removed.
658
- </td>
645
+ from 0. If -1, the last page will
646
+ be removed.</td>
659
647
  </tr>
660
648
  </tbody>
661
649
  </table></div>
662
650
  </div>
663
651
  <hr>
664
- <div class="refsect2" title="gtk_notebook_current_page">
652
+ <div class="refsect2">
665
653
  <a name="gtk-notebook-current-page"></a><h3>gtk_notebook_current_page</h3>
666
654
  <pre class="programlisting">#define gtk_notebook_current_page gtk_notebook_get_current_page
667
655
  </pre>
668
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
656
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
669
657
  <h3 class="title">Warning</h3>
670
658
  <p><code class="literal">gtk_notebook_current_page</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkNotebook.html#gtk-notebook-get-current-page" title="gtk_notebook_get_current_page ()"><code class="function">gtk_notebook_get_current_page()</code></a> instead.</p>
671
659
  </div>
@@ -674,7 +662,7 @@ Deprecated compatibility macro.
674
662
  </p>
675
663
  </div>
676
664
  <hr>
677
- <div class="refsect2" title="gtk_notebook_page_num ()">
665
+ <div class="refsect2">
678
666
  <a name="gtk-notebook-page-num"></a><h3>gtk_notebook_page_num ()</h3>
679
667
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_notebook_page_num (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
680
668
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
@@ -697,19 +685,18 @@ widget.
697
685
  </tr>
698
686
  <tr>
699
687
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
700
- <td> the index of the page containing <em class="parameter"><code>child</code></em>, or
701
- -1 if <em class="parameter"><code>child</code></em> is not in the notebook.
702
- </td>
688
+ <td>the index of the page containing <em class="parameter"><code>child</code></em>, or
689
+ -1 if <em class="parameter"><code>child</code></em> is not in the notebook.</td>
703
690
  </tr>
704
691
  </tbody>
705
692
  </table></div>
706
693
  </div>
707
694
  <hr>
708
- <div class="refsect2" title="gtk_notebook_set_page">
695
+ <div class="refsect2">
709
696
  <a name="gtk-notebook-set-page"></a><h3>gtk_notebook_set_page</h3>
710
697
  <pre class="programlisting">#define gtk_notebook_set_page gtk_notebook_set_current_page
711
698
  </pre>
712
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
699
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
713
700
  <h3 class="title">Warning</h3>
714
701
  <p><code class="literal">gtk_notebook_set_page</code> is deprecated and should not be used in newly-written code. Use <a class="link" href="GtkNotebook.html#gtk-notebook-set-current-page" title="gtk_notebook_set_current_page ()"><code class="function">gtk_notebook_set_current_page()</code></a> instead.</p>
715
702
  </div>
@@ -718,7 +705,7 @@ Deprecated compatibility macro.
718
705
  </p>
719
706
  </div>
720
707
  <hr>
721
- <div class="refsect2" title="gtk_notebook_next_page ()">
708
+ <div class="refsect2">
722
709
  <a name="gtk-notebook-next-page"></a><h3>gtk_notebook_next_page ()</h3>
723
710
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_next_page (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
724
711
  <p>
@@ -735,7 +722,7 @@ the last page.
735
722
  </table></div>
736
723
  </div>
737
724
  <hr>
738
- <div class="refsect2" title="gtk_notebook_prev_page ()">
725
+ <div class="refsect2">
739
726
  <a name="gtk-notebook-prev-page"></a><h3>gtk_notebook_prev_page ()</h3>
740
727
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_prev_page (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
741
728
  <p>
@@ -752,7 +739,7 @@ is the first page.
752
739
  </table></div>
753
740
  </div>
754
741
  <hr>
755
- <div class="refsect2" title="gtk_notebook_reorder_child ()">
742
+ <div class="refsect2">
756
743
  <a name="gtk-notebook-reorder-child"></a><h3>gtk_notebook_reorder_child ()</h3>
757
744
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_reorder_child (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
758
745
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -773,19 +760,17 @@ of the list.
773
760
  </tr>
774
761
  <tr>
775
762
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
776
- <td>the child to move
777
- </td>
763
+ <td>the child to move</td>
778
764
  </tr>
779
765
  <tr>
780
766
  <td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
781
- <td>the new position, or -1 to move to the end
782
- </td>
767
+ <td>the new position, or -1 to move to the end</td>
783
768
  </tr>
784
769
  </tbody>
785
770
  </table></div>
786
771
  </div>
787
772
  <hr>
788
- <div class="refsect2" title="gtk_notebook_set_tab_pos ()">
773
+ <div class="refsect2">
789
774
  <a name="gtk-notebook-set-tab-pos"></a><h3>gtk_notebook_set_tab_pos ()</h3>
790
775
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_tab_pos (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
791
776
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> pos</code></em>);</pre>
@@ -798,19 +783,17 @@ notebook are drawn.
798
783
  <tbody>
799
784
  <tr>
800
785
  <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
801
- <td>a <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a>.
802
- </td>
786
+ <td>a <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a>.</td>
803
787
  </tr>
804
788
  <tr>
805
789
  <td><p><span class="term"><em class="parameter"><code>pos</code></em> :</span></p></td>
806
- <td>the edge to draw the tabs at.
807
- </td>
790
+ <td>the edge to draw the tabs at.</td>
808
791
  </tr>
809
792
  </tbody>
810
793
  </table></div>
811
794
  </div>
812
795
  <hr>
813
- <div class="refsect2" title="gtk_notebook_set_show_tabs ()">
796
+ <div class="refsect2">
814
797
  <a name="gtk-notebook-set-show-tabs"></a><h3>gtk_notebook_set_show_tabs ()</h3>
815
798
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_show_tabs (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
816
799
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show_tabs</code></em>);</pre>
@@ -828,14 +811,13 @@ Sets whether to show the tabs for the notebook or not.
828
811
  <tr>
829
812
  <td><p><span class="term"><em class="parameter"><code>show_tabs</code></em> :</span></p></td>
830
813
  <td>
831
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tabs should be shown.
832
- </td>
814
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tabs should be shown.</td>
833
815
  </tr>
834
816
  </tbody>
835
817
  </table></div>
836
818
  </div>
837
819
  <hr>
838
- <div class="refsect2" title="gtk_notebook_set_show_border ()">
820
+ <div class="refsect2">
839
821
  <a name="gtk-notebook-set-show-border"></a><h3>gtk_notebook_set_show_border ()</h3>
840
822
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_show_border (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
841
823
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> show_border</code></em>);</pre>
@@ -855,14 +837,13 @@ See <a class="link" href="GtkNotebook.html#gtk-notebook-set-show-tabs" title="gt
855
837
  <tr>
856
838
  <td><p><span class="term"><em class="parameter"><code>show_border</code></em> :</span></p></td>
857
839
  <td>
858
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a bevel should be drawn around the notebook.
859
- </td>
840
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if a bevel should be drawn around the notebook.</td>
860
841
  </tr>
861
842
  </tbody>
862
843
  </table></div>
863
844
  </div>
864
845
  <hr>
865
- <div class="refsect2" title="gtk_notebook_set_scrollable ()">
846
+ <div class="refsect2">
866
847
  <a name="gtk-notebook-set-scrollable"></a><h3>gtk_notebook_set_scrollable ()</h3>
867
848
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_scrollable (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
868
849
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> scrollable</code></em>);</pre>
@@ -881,18 +862,17 @@ there are too many tabs to fit in the area.
881
862
  <tr>
882
863
  <td><p><span class="term"><em class="parameter"><code>scrollable</code></em> :</span></p></td>
883
864
  <td>
884
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if scroll arrows should be added
885
- </td>
865
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if scroll arrows should be added</td>
886
866
  </tr>
887
867
  </tbody>
888
868
  </table></div>
889
869
  </div>
890
870
  <hr>
891
- <div class="refsect2" title="gtk_notebook_set_tab_border ()">
871
+ <div class="refsect2">
892
872
  <a name="gtk-notebook-set-tab-border"></a><h3>gtk_notebook_set_tab_border ()</h3>
893
873
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_tab_border (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
894
874
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> border_width</code></em>);</pre>
895
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
875
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
896
876
  <h3 class="title">Warning</h3>
897
877
  <p><code class="literal">gtk_notebook_set_tab_border</code> is deprecated and should not be used in newly-written code.</p>
898
878
  </div>
@@ -912,14 +892,13 @@ by gtk_notebook_set_tab_vborder (<em class="parameter"><code>notebook</code></em
912
892
  </tr>
913
893
  <tr>
914
894
  <td><p><span class="term"><em class="parameter"><code>border_width</code></em> :</span></p></td>
915
- <td>width of the border around the tab labels.
916
- </td>
895
+ <td>width of the border around the tab labels.</td>
917
896
  </tr>
918
897
  </tbody>
919
898
  </table></div>
920
899
  </div>
921
900
  <hr>
922
- <div class="refsect2" title="gtk_notebook_popup_enable ()">
901
+ <div class="refsect2">
923
902
  <a name="gtk-notebook-popup-enable"></a><h3>gtk_notebook_popup_enable ()</h3>
924
903
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_popup_enable (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
925
904
  <p>
@@ -936,7 +915,7 @@ the tab labels, a menu with all the pages will be popped up.
936
915
  </table></div>
937
916
  </div>
938
917
  <hr>
939
- <div class="refsect2" title="gtk_notebook_popup_disable ()">
918
+ <div class="refsect2">
940
919
  <a name="gtk-notebook-popup-disable"></a><h3>gtk_notebook_popup_disable ()</h3>
941
920
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_popup_disable (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
942
921
  <p>
@@ -952,7 +931,7 @@ Disables the popup menu.
952
931
  </table></div>
953
932
  </div>
954
933
  <hr>
955
- <div class="refsect2" title="gtk_notebook_get_current_page ()">
934
+ <div class="refsect2">
956
935
  <a name="gtk-notebook-get-current-page"></a><h3>gtk_notebook_get_current_page ()</h3>
957
936
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_notebook_get_current_page (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
958
937
  <p>
@@ -968,16 +947,15 @@ Returns the page number of the current page.
968
947
  </tr>
969
948
  <tr>
970
949
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
971
- <td> the index (starting from 0) of the current
950
+ <td>the index (starting from 0) of the current
972
951
  page in the notebook. If the notebook has no pages, then
973
- -1 will be returned.
974
- </td>
952
+ -1 will be returned.</td>
975
953
  </tr>
976
954
  </tbody>
977
955
  </table></div>
978
956
  </div>
979
957
  <hr>
980
- <div class="refsect2" title="gtk_notebook_get_menu_label ()">
958
+ <div class="refsect2">
981
959
  <a name="gtk-notebook-get-menu-label"></a><h3>gtk_notebook_get_menu_label ()</h3>
982
960
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_notebook_get_menu_label (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
983
961
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
@@ -999,18 +977,18 @@ Retrieves the menu label widget of the page containing <em class="parameter"><co
999
977
  </tr>
1000
978
  <tr>
1001
979
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1002
- <td> the menu label, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
1003
- notebook page does not have a menu label other
1004
- than the default (the tab label).
980
+ <td>the menu label, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
981
+ notebook page does not have a menu label other than the
982
+ default (the tab label). <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1005
983
  </td>
1006
984
  </tr>
1007
985
  </tbody>
1008
986
  </table></div>
1009
987
  </div>
1010
988
  <hr>
1011
- <div class="refsect2" title="gtk_notebook_get_nth_page ()">
989
+ <div class="refsect2">
1012
990
  <a name="gtk-notebook-get-nth-page"></a><h3>gtk_notebook_get_nth_page ()</h3>
1013
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_notebook_get_nth_page (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
991
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_notebook_get_nth_page (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1014
992
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> page_num</code></em>);</pre>
1015
993
  <p>
1016
994
  Returns the child widget contained in page number <em class="parameter"><code>page_num</code></em>.
@@ -1026,12 +1004,11 @@ Returns the child widget contained in page number <em class="parameter"><code>pa
1026
1004
  <tr>
1027
1005
  <td><p><span class="term"><em class="parameter"><code>page_num</code></em> :</span></p></td>
1028
1006
  <td>the index of a page in the notebook, or -1
1029
- to get the last page.
1030
- </td>
1007
+ to get the last page.</td>
1031
1008
  </tr>
1032
1009
  <tr>
1033
1010
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1034
- <td> the child widget, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>page_num</code></em> is
1011
+ <td>the child widget, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>page_num</code></em> is
1035
1012
  out of bounds. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1036
1013
  </td>
1037
1014
  </tr>
@@ -1039,7 +1016,7 @@ out of bounds. <span class="annotation">[<acronym title="Don't free data after t
1039
1016
  </table></div>
1040
1017
  </div>
1041
1018
  <hr>
1042
- <div class="refsect2" title="gtk_notebook_get_n_pages ()">
1019
+ <div class="refsect2">
1043
1020
  <a name="gtk-notebook-get-n-pages"></a><h3>gtk_notebook_get_n_pages ()</h3>
1044
1021
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_notebook_get_n_pages (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
1045
1022
  <p>
@@ -1055,16 +1032,14 @@ Gets the number of pages in a notebook.
1055
1032
  </tr>
1056
1033
  <tr>
1057
1034
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1058
- <td> the number of pages in the notebook.
1059
-
1060
- </td>
1035
+ <td>the number of pages in the notebook.</td>
1061
1036
  </tr>
1062
1037
  </tbody>
1063
1038
  </table></div>
1064
1039
  <p class="since">Since 2.2</p>
1065
1040
  </div>
1066
1041
  <hr>
1067
- <div class="refsect2" title="gtk_notebook_get_tab_label ()">
1042
+ <div class="refsect2">
1068
1043
  <a name="gtk-notebook-get-tab-label"></a><h3>gtk_notebook_get_tab_label ()</h3>
1069
1044
  <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_notebook_get_tab_label (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1070
1045
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
@@ -1083,19 +1058,18 @@ been set for <em class="parameter"><code>child</code></em>.
1083
1058
  </tr>
1084
1059
  <tr>
1085
1060
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1086
- <td>the page
1087
- </td>
1061
+ <td>the page</td>
1088
1062
  </tr>
1089
1063
  <tr>
1090
1064
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1091
- <td> the tab label. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1065
+ <td>the tab label. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1092
1066
  </td>
1093
1067
  </tr>
1094
1068
  </tbody>
1095
1069
  </table></div>
1096
1070
  </div>
1097
1071
  <hr>
1098
- <div class="refsect2" title="gtk_notebook_query_tab_label_packing ()">
1072
+ <div class="refsect2">
1099
1073
  <a name="gtk-notebook-query-tab-label-packing"></a><h3>gtk_notebook_query_tab_label_packing ()</h3>
1100
1074
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_query_tab_label_packing
1101
1075
  (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
@@ -1103,7 +1077,7 @@ been set for <em class="parameter"><code>child</code></em>.
1103
1077
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *expand</code></em>,
1104
1078
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> *fill</code></em>,
1105
1079
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPackType" title="enum GtkPackType"><span class="type">GtkPackType</span></a> *pack_type</code></em>);</pre>
1106
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1080
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1107
1081
  <h3 class="title">Warning</h3>
1108
1082
  <p><code class="literal">gtk_notebook_query_tab_label_packing</code> has been deprecated since version 2.20 and should not be used in newly-written code. Modify the <span class="type">"tab-expand"</span> and
1109
1083
  <span class="type">"tab-fill"</span> child properties instead.</p>
@@ -1122,33 +1096,29 @@ containing <em class="parameter"><code>child</code></em>.
1122
1096
  </tr>
1123
1097
  <tr>
1124
1098
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1125
- <td>the page
1126
- </td>
1099
+ <td>the page</td>
1127
1100
  </tr>
1128
1101
  <tr>
1129
1102
  <td><p><span class="term"><em class="parameter"><code>expand</code></em> :</span></p></td>
1130
- <td>location to store the expand value (or NULL)
1131
- </td>
1103
+ <td>location to store the expand value (or NULL)</td>
1132
1104
  </tr>
1133
1105
  <tr>
1134
1106
  <td><p><span class="term"><em class="parameter"><code>fill</code></em> :</span></p></td>
1135
- <td>location to store the fill value (or NULL)
1136
- </td>
1107
+ <td>location to store the fill value (or NULL)</td>
1137
1108
  </tr>
1138
1109
  <tr>
1139
1110
  <td><p><span class="term"><em class="parameter"><code>pack_type</code></em> :</span></p></td>
1140
- <td>location to store the pack_type (or NULL)
1141
- </td>
1111
+ <td>location to store the pack_type (or NULL)</td>
1142
1112
  </tr>
1143
1113
  </tbody>
1144
1114
  </table></div>
1145
1115
  </div>
1146
1116
  <hr>
1147
- <div class="refsect2" title="gtk_notebook_set_homogeneous_tabs ()">
1117
+ <div class="refsect2">
1148
1118
  <a name="gtk-notebook-set-homogeneous-tabs"></a><h3>gtk_notebook_set_homogeneous_tabs ()</h3>
1149
1119
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_homogeneous_tabs (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1150
1120
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> homogeneous</code></em>);</pre>
1151
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1121
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1152
1122
  <h3 class="title">Warning</h3>
1153
1123
  <p><code class="literal">gtk_notebook_set_homogeneous_tabs</code> is deprecated and should not be used in newly-written code.</p>
1154
1124
  </div>
@@ -1166,14 +1136,13 @@ Sets whether the tabs must have all the same size or not.
1166
1136
  <tr>
1167
1137
  <td><p><span class="term"><em class="parameter"><code>homogeneous</code></em> :</span></p></td>
1168
1138
  <td>
1169
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if all tabs should be the same size.
1170
- </td>
1139
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if all tabs should be the same size.</td>
1171
1140
  </tr>
1172
1141
  </tbody>
1173
1142
  </table></div>
1174
1143
  </div>
1175
1144
  <hr>
1176
- <div class="refsect2" title="gtk_notebook_set_menu_label ()">
1145
+ <div class="refsect2">
1177
1146
  <a name="gtk-notebook-set-menu-label"></a><h3>gtk_notebook_set_menu_label ()</h3>
1178
1147
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_menu_label (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1179
1148
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -1191,19 +1160,18 @@ Changes the menu label for the page containing <em class="parameter"><code>child
1191
1160
  </tr>
1192
1161
  <tr>
1193
1162
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1194
- <td>the child widget
1195
- </td>
1163
+ <td>the child widget</td>
1196
1164
  </tr>
1197
1165
  <tr>
1198
1166
  <td><p><span class="term"><em class="parameter"><code>menu_label</code></em> :</span></p></td>
1199
- <td> the menu label, or NULL for default. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1167
+ <td>the menu label, or NULL for default. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1200
1168
  </td>
1201
1169
  </tr>
1202
1170
  </tbody>
1203
1171
  </table></div>
1204
1172
  </div>
1205
1173
  <hr>
1206
- <div class="refsect2" title="gtk_notebook_set_menu_label_text ()">
1174
+ <div class="refsect2">
1207
1175
  <a name="gtk-notebook-set-menu-label-text"></a><h3>gtk_notebook_set_menu_label_text ()</h3>
1208
1176
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_menu_label_text (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1209
1177
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -1221,23 +1189,21 @@ Creates a new label and sets it as the menu label of <em class="parameter"><code
1221
1189
  </tr>
1222
1190
  <tr>
1223
1191
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1224
- <td>the child widget
1225
- </td>
1192
+ <td>the child widget</td>
1226
1193
  </tr>
1227
1194
  <tr>
1228
1195
  <td><p><span class="term"><em class="parameter"><code>menu_text</code></em> :</span></p></td>
1229
- <td>the label text
1230
- </td>
1196
+ <td>the label text</td>
1231
1197
  </tr>
1232
1198
  </tbody>
1233
1199
  </table></div>
1234
1200
  </div>
1235
1201
  <hr>
1236
- <div class="refsect2" title="gtk_notebook_set_tab_hborder ()">
1202
+ <div class="refsect2">
1237
1203
  <a name="gtk-notebook-set-tab-hborder"></a><h3>gtk_notebook_set_tab_hborder ()</h3>
1238
1204
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_tab_hborder (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1239
1205
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> tab_hborder</code></em>);</pre>
1240
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1206
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1241
1207
  <h3 class="title">Warning</h3>
1242
1208
  <p><code class="literal">gtk_notebook_set_tab_hborder</code> is deprecated and should not be used in newly-written code.</p>
1243
1209
  </div>
@@ -1254,14 +1220,13 @@ Sets the width of the horizontal border of tab labels.
1254
1220
  </tr>
1255
1221
  <tr>
1256
1222
  <td><p><span class="term"><em class="parameter"><code>tab_hborder</code></em> :</span></p></td>
1257
- <td>width of the horizontal border of tab labels.
1258
- </td>
1223
+ <td>width of the horizontal border of tab labels.</td>
1259
1224
  </tr>
1260
1225
  </tbody>
1261
1226
  </table></div>
1262
1227
  </div>
1263
1228
  <hr>
1264
- <div class="refsect2" title="gtk_notebook_set_tab_label ()">
1229
+ <div class="refsect2">
1265
1230
  <a name="gtk-notebook-set-tab-label"></a><h3>gtk_notebook_set_tab_label ()</h3>
1266
1231
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_tab_label (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1267
1232
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -1280,27 +1245,26 @@ for <em class="parameter"><code>tab_label</code></em>, then the page will have t
1280
1245
  </tr>
1281
1246
  <tr>
1282
1247
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1283
- <td>the page
1284
- </td>
1248
+ <td>the page</td>
1285
1249
  </tr>
1286
1250
  <tr>
1287
1251
  <td><p><span class="term"><em class="parameter"><code>tab_label</code></em> :</span></p></td>
1288
- <td> the tab label widget to use, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for default tab
1289
- label. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1252
+ <td>the tab label widget to use, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for default tab
1253
+ label. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1290
1254
  </td>
1291
1255
  </tr>
1292
1256
  </tbody>
1293
1257
  </table></div>
1294
1258
  </div>
1295
1259
  <hr>
1296
- <div class="refsect2" title="gtk_notebook_set_tab_label_packing ()">
1260
+ <div class="refsect2">
1297
1261
  <a name="gtk-notebook-set-tab-label-packing"></a><h3>gtk_notebook_set_tab_label_packing ()</h3>
1298
1262
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_tab_label_packing (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1299
1263
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
1300
1264
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> expand</code></em>,
1301
1265
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> fill</code></em>,
1302
1266
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPackType" title="enum GtkPackType"><span class="type">GtkPackType</span></a> pack_type</code></em>);</pre>
1303
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1267
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1304
1268
  <h3 class="title">Warning</h3>
1305
1269
  <p><code class="literal">gtk_notebook_set_tab_label_packing</code> has been deprecated since version 2.20 and should not be used in newly-written code. Modify the <span class="type">"tab-expand"</span> and
1306
1270
  <span class="type">"tab-fill"</span> child properties instead.
@@ -1322,29 +1286,25 @@ of the parameters.
1322
1286
  </tr>
1323
1287
  <tr>
1324
1288
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1325
- <td>the child widget
1326
- </td>
1289
+ <td>the child widget</td>
1327
1290
  </tr>
1328
1291
  <tr>
1329
1292
  <td><p><span class="term"><em class="parameter"><code>expand</code></em> :</span></p></td>
1330
- <td>whether to expand the tab label or not
1331
- </td>
1293
+ <td>whether to expand the tab label or not</td>
1332
1294
  </tr>
1333
1295
  <tr>
1334
1296
  <td><p><span class="term"><em class="parameter"><code>fill</code></em> :</span></p></td>
1335
- <td>whether the tab label should fill the allocated area or not
1336
- </td>
1297
+ <td>whether the tab label should fill the allocated area or not</td>
1337
1298
  </tr>
1338
1299
  <tr>
1339
1300
  <td><p><span class="term"><em class="parameter"><code>pack_type</code></em> :</span></p></td>
1340
- <td>the position of the tab label
1341
- </td>
1301
+ <td>the position of the tab label</td>
1342
1302
  </tr>
1343
1303
  </tbody>
1344
1304
  </table></div>
1345
1305
  </div>
1346
1306
  <hr>
1347
- <div class="refsect2" title="gtk_notebook_set_tab_label_text ()">
1307
+ <div class="refsect2">
1348
1308
  <a name="gtk-notebook-set-tab-label-text"></a><h3>gtk_notebook_set_tab_label_text ()</h3>
1349
1309
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_tab_label_text (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1350
1310
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -1363,23 +1323,21 @@ containing <em class="parameter"><code>child</code></em>.
1363
1323
  </tr>
1364
1324
  <tr>
1365
1325
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1366
- <td>the page
1367
- </td>
1326
+ <td>the page</td>
1368
1327
  </tr>
1369
1328
  <tr>
1370
1329
  <td><p><span class="term"><em class="parameter"><code>tab_text</code></em> :</span></p></td>
1371
- <td>the label text
1372
- </td>
1330
+ <td>the label text</td>
1373
1331
  </tr>
1374
1332
  </tbody>
1375
1333
  </table></div>
1376
1334
  </div>
1377
1335
  <hr>
1378
- <div class="refsect2" title="gtk_notebook_set_tab_vborder ()">
1336
+ <div class="refsect2">
1379
1337
  <a name="gtk-notebook-set-tab-vborder"></a><h3>gtk_notebook_set_tab_vborder ()</h3>
1380
1338
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_tab_vborder (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1381
1339
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> tab_vborder</code></em>);</pre>
1382
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1340
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1383
1341
  <h3 class="title">Warning</h3>
1384
1342
  <p><code class="literal">gtk_notebook_set_tab_vborder</code> is deprecated and should not be used in newly-written code.</p>
1385
1343
  </div>
@@ -1396,14 +1354,13 @@ Sets the width of the vertical border of tab labels.
1396
1354
  </tr>
1397
1355
  <tr>
1398
1356
  <td><p><span class="term"><em class="parameter"><code>tab_vborder</code></em> :</span></p></td>
1399
- <td>width of the vertical border of tab labels.
1400
- </td>
1357
+ <td>width of the vertical border of tab labels.</td>
1401
1358
  </tr>
1402
1359
  </tbody>
1403
1360
  </table></div>
1404
1361
  </div>
1405
1362
  <hr>
1406
- <div class="refsect2" title="gtk_notebook_set_tab_reorderable ()">
1363
+ <div class="refsect2">
1407
1364
  <a name="gtk-notebook-set-tab-reorderable"></a><h3>gtk_notebook_set_tab_reorderable ()</h3>
1408
1365
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_tab_reorderable (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1409
1366
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -1427,15 +1384,14 @@ via drag and drop or not.
1427
1384
  </tr>
1428
1385
  <tr>
1429
1386
  <td><p><span class="term"><em class="parameter"><code>reorderable</code></em> :</span></p></td>
1430
- <td>whether the tab is reorderable or not.
1431
- </td>
1387
+ <td>whether the tab is reorderable or not.</td>
1432
1388
  </tr>
1433
1389
  </tbody>
1434
1390
  </table></div>
1435
1391
  <p class="since">Since 2.10</p>
1436
1392
  </div>
1437
1393
  <hr>
1438
- <div class="refsect2" title="gtk_notebook_set_tab_detachable ()">
1394
+ <div class="refsect2">
1439
1395
  <a name="gtk-notebook-set-tab-detachable"></a><h3>gtk_notebook_set_tab_detachable ()</h3>
1440
1396
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_tab_detachable (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1441
1397
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>,
@@ -1524,15 +1480,14 @@ you will have to set your own DnD code to do it.
1524
1480
  </tr>
1525
1481
  <tr>
1526
1482
  <td><p><span class="term"><em class="parameter"><code>detachable</code></em> :</span></p></td>
1527
- <td>whether the tab is detachable or not
1528
- </td>
1483
+ <td>whether the tab is detachable or not</td>
1529
1484
  </tr>
1530
1485
  </tbody>
1531
1486
  </table></div>
1532
1487
  <p class="since">Since 2.10</p>
1533
1488
  </div>
1534
1489
  <hr>
1535
- <div class="refsect2" title="gtk_notebook_get_menu_label_text ()">
1490
+ <div class="refsect2">
1536
1491
  <a name="gtk-notebook-get-menu-label-text"></a><h3>gtk_notebook_get_menu_label_text ()</h3>
1537
1492
  <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_notebook_get_menu_label_text (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1538
1493
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
@@ -1550,23 +1505,21 @@ Retrieves the text of the menu label for the page containing
1550
1505
  </tr>
1551
1506
  <tr>
1552
1507
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
1553
- <td>the child widget of a page of the notebook.
1554
- </td>
1508
+ <td>the child widget of a page of the notebook.</td>
1555
1509
  </tr>
1556
1510
  <tr>
1557
1511
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1558
- <td> the text of the tab label, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
1559
- widget does not have a menu label other than
1560
- the default menu label, or the menu label widget
1561
- is not a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>. The string is owned by
1562
- the widget and must not be freed.
1563
- </td>
1512
+ <td>the text of the tab label, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
1513
+ widget does not have a menu label other than
1514
+ the default menu label, or the menu label widget
1515
+ is not a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>. The string is owned by
1516
+ the widget and must not be freed.</td>
1564
1517
  </tr>
1565
1518
  </tbody>
1566
1519
  </table></div>
1567
1520
  </div>
1568
1521
  <hr>
1569
- <div class="refsect2" title="gtk_notebook_get_scrollable ()">
1522
+ <div class="refsect2">
1570
1523
  <a name="gtk-notebook-get-scrollable"></a><h3>gtk_notebook_get_scrollable ()</h3>
1571
1524
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_notebook_get_scrollable (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
1572
1525
  <p>
@@ -1583,14 +1536,14 @@ Returns whether the tab label area has arrows for scrolling. See
1583
1536
  </tr>
1584
1537
  <tr>
1585
1538
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1586
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if arrows for scrolling are present
1587
- </td>
1539
+ <td>
1540
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if arrows for scrolling are present</td>
1588
1541
  </tr>
1589
1542
  </tbody>
1590
1543
  </table></div>
1591
1544
  </div>
1592
1545
  <hr>
1593
- <div class="refsect2" title="gtk_notebook_get_show_border ()">
1546
+ <div class="refsect2">
1594
1547
  <a name="gtk-notebook-get-show-border"></a><h3>gtk_notebook_get_show_border ()</h3>
1595
1548
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_notebook_get_show_border (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
1596
1549
  <p>
@@ -1607,14 +1560,14 @@ Returns whether a bevel will be drawn around the notebook pages. See
1607
1560
  </tr>
1608
1561
  <tr>
1609
1562
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1610
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the bevel is drawn
1611
- </td>
1563
+ <td>
1564
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the bevel is drawn</td>
1612
1565
  </tr>
1613
1566
  </tbody>
1614
1567
  </table></div>
1615
1568
  </div>
1616
1569
  <hr>
1617
- <div class="refsect2" title="gtk_notebook_get_show_tabs ()">
1570
+ <div class="refsect2">
1618
1571
  <a name="gtk-notebook-get-show-tabs"></a><h3>gtk_notebook_get_show_tabs ()</h3>
1619
1572
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_notebook_get_show_tabs (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
1620
1573
  <p>
@@ -1631,14 +1584,14 @@ Returns whether the tabs of the notebook are shown. See
1631
1584
  </tr>
1632
1585
  <tr>
1633
1586
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1634
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tabs are shown
1635
- </td>
1587
+ <td>
1588
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tabs are shown</td>
1636
1589
  </tr>
1637
1590
  </tbody>
1638
1591
  </table></div>
1639
1592
  </div>
1640
1593
  <hr>
1641
- <div class="refsect2" title="gtk_notebook_get_tab_label_text ()">
1594
+ <div class="refsect2">
1642
1595
  <a name="gtk-notebook-get-tab-label-text"></a><h3>gtk_notebook_get_tab_label_text ()</h3>
1643
1596
  <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_notebook_get_tab_label_text (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1644
1597
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
@@ -1661,17 +1614,16 @@ Retrieves the text of the tab label for the page containing
1661
1614
  </tr>
1662
1615
  <tr>
1663
1616
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1664
- <td> the text of the tab label, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
1665
- tab label widget is not a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>. The
1666
- string is owned by the widget and must not
1667
- be freed.
1668
- </td>
1617
+ <td>the text of the tab label, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the
1618
+ tab label widget is not a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>. The
1619
+ string is owned by the widget and must not
1620
+ be freed.</td>
1669
1621
  </tr>
1670
1622
  </tbody>
1671
1623
  </table></div>
1672
1624
  </div>
1673
1625
  <hr>
1674
- <div class="refsect2" title="gtk_notebook_get_tab_pos ()">
1626
+ <div class="refsect2">
1675
1627
  <a name="gtk-notebook-get-tab-pos"></a><h3>gtk_notebook_get_tab_pos ()</h3>
1676
1628
  <pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="returnvalue">GtkPositionType</span></a> gtk_notebook_get_tab_pos (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
1677
1629
  <p>
@@ -1688,14 +1640,13 @@ notebook are drawn.
1688
1640
  </tr>
1689
1641
  <tr>
1690
1642
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1691
- <td> the edge at which the tabs are drawn
1692
- </td>
1643
+ <td>the edge at which the tabs are drawn</td>
1693
1644
  </tr>
1694
1645
  </tbody>
1695
1646
  </table></div>
1696
1647
  </div>
1697
1648
  <hr>
1698
- <div class="refsect2" title="gtk_notebook_get_tab_reorderable ()">
1649
+ <div class="refsect2">
1699
1650
  <a name="gtk-notebook-get-tab-reorderable"></a><h3>gtk_notebook_get_tab_reorderable ()</h3>
1700
1651
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_notebook_get_tab_reorderable (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1701
1652
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
@@ -1717,16 +1668,15 @@ Gets whether the tab can be reordered via drag and drop or not.
1717
1668
  </tr>
1718
1669
  <tr>
1719
1670
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1720
- <td> <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tab is reorderable.
1721
-
1722
- </td>
1671
+ <td>
1672
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the tab is reorderable.</td>
1723
1673
  </tr>
1724
1674
  </tbody>
1725
1675
  </table></div>
1726
1676
  <p class="since">Since 2.10</p>
1727
1677
  </div>
1728
1678
  <hr>
1729
- <div class="refsect2" title="gtk_notebook_get_tab_detachable ()">
1679
+ <div class="refsect2">
1730
1680
  <a name="gtk-notebook-get-tab-detachable"></a><h3>gtk_notebook_get_tab_detachable ()</h3>
1731
1681
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_notebook_get_tab_detachable (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1732
1682
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child</code></em>);</pre>
@@ -1748,16 +1698,14 @@ Returns whether the tab contents can be detached from <em class="parameter"><cod
1748
1698
  </tr>
1749
1699
  <tr>
1750
1700
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1751
- <td> TRUE if the tab is detachable.
1752
-
1753
- </td>
1701
+ <td>TRUE if the tab is detachable.</td>
1754
1702
  </tr>
1755
1703
  </tbody>
1756
1704
  </table></div>
1757
1705
  <p class="since">Since 2.10</p>
1758
1706
  </div>
1759
1707
  <hr>
1760
- <div class="refsect2" title="gtk_notebook_get_tab_hborder ()">
1708
+ <div class="refsect2">
1761
1709
  <a name="gtk-notebook-get-tab-hborder"></a><h3>gtk_notebook_get_tab_hborder ()</h3>
1762
1710
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> gtk_notebook_get_tab_hborder (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
1763
1711
  <p>
@@ -1773,16 +1721,14 @@ Returns the horizontal width of a tab border.
1773
1721
  </tr>
1774
1722
  <tr>
1775
1723
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1776
- <td> horizontal width of a tab border
1777
-
1778
- </td>
1724
+ <td>horizontal width of a tab border</td>
1779
1725
  </tr>
1780
1726
  </tbody>
1781
1727
  </table></div>
1782
1728
  <p class="since">Since 2.22</p>
1783
1729
  </div>
1784
1730
  <hr>
1785
- <div class="refsect2" title="gtk_notebook_get_tab_vborder ()">
1731
+ <div class="refsect2">
1786
1732
  <a name="gtk-notebook-get-tab-vborder"></a><h3>gtk_notebook_get_tab_vborder ()</h3>
1787
1733
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint16"><span class="returnvalue">guint16</span></a> gtk_notebook_get_tab_vborder (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
1788
1734
  <p>
@@ -1798,16 +1744,14 @@ Returns the vertical width of a tab border.
1798
1744
  </tr>
1799
1745
  <tr>
1800
1746
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1801
- <td> vertical width of a tab border
1802
-
1803
- </td>
1747
+ <td>vertical width of a tab border</td>
1804
1748
  </tr>
1805
1749
  </tbody>
1806
1750
  </table></div>
1807
1751
  <p class="since">Since 2.22</p>
1808
1752
  </div>
1809
1753
  <hr>
1810
- <div class="refsect2" title="gtk_notebook_set_current_page ()">
1754
+ <div class="refsect2">
1811
1755
  <a name="gtk-notebook-set-current-page"></a><h3>gtk_notebook_set_current_page ()</h3>
1812
1756
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_current_page (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1813
1757
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> page_num</code></em>);</pre>
@@ -1831,22 +1775,21 @@ adding them to a notebook.
1831
1775
  <tr>
1832
1776
  <td><p><span class="term"><em class="parameter"><code>page_num</code></em> :</span></p></td>
1833
1777
  <td>index of the page to switch to, starting from 0.
1834
- If negative, the last page will be used. If greater
1835
- than the number of pages in the notebook, nothing
1836
- will be done.
1837
- </td>
1778
+ If negative, the last page will be used. If greater
1779
+ than the number of pages in the notebook, nothing
1780
+ will be done.</td>
1838
1781
  </tr>
1839
1782
  </tbody>
1840
1783
  </table></div>
1841
1784
  </div>
1842
1785
  <hr>
1843
- <div class="refsect2" title="gtk_notebook_set_group_id ()">
1786
+ <div class="refsect2">
1844
1787
  <a name="gtk-notebook-set-group-id"></a><h3>gtk_notebook_set_group_id ()</h3>
1845
1788
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_group_id (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1846
1789
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> group_id</code></em>);</pre>
1847
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1790
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1848
1791
  <h3 class="title">Warning</h3>
1849
- <p><code class="literal">gtk_notebook_set_group_id</code> has been deprecated since version 2.12 and should not be used in newly-written code. use <a class="link" href="GtkNotebook.html#gtk-notebook-set-group" title="gtk_notebook_set_group ()"><code class="function">gtk_notebook_set_group()</code></a> instead.</p>
1792
+ <p><code class="literal">gtk_notebook_set_group_id</code> has been deprecated since version 2.12 and should not be used in newly-written code. use <a class="link" href="GtkNotebook.html#gtk-notebook-set-group-name" title="gtk_notebook_set_group_name ()"><code class="function">gtk_notebook_set_group_name()</code></a> instead.</p>
1850
1793
  </div>
1851
1794
  <p>
1852
1795
  Sets an group identificator for <em class="parameter"><code>notebook</code></em>, notebooks sharing
@@ -1864,20 +1807,19 @@ not be able to exchange tabs with any other notebook.
1864
1807
  </tr>
1865
1808
  <tr>
1866
1809
  <td><p><span class="term"><em class="parameter"><code>group_id</code></em> :</span></p></td>
1867
- <td>a group identificator, or -1 to unset it
1868
- </td>
1810
+ <td>a group identificator, or -1 to unset it</td>
1869
1811
  </tr>
1870
1812
  </tbody>
1871
1813
  </table></div>
1872
1814
  <p class="since">Since 2.10</p>
1873
1815
  </div>
1874
1816
  <hr>
1875
- <div class="refsect2" title="gtk_notebook_get_group_id ()">
1817
+ <div class="refsect2">
1876
1818
  <a name="gtk-notebook-get-group-id"></a><h3>gtk_notebook_get_group_id ()</h3>
1877
1819
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_notebook_get_group_id (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
1878
- <div class="warning" title="Warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1820
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1879
1821
  <h3 class="title">Warning</h3>
1880
- <p><code class="literal">gtk_notebook_get_group_id</code> has been deprecated since version 2.12 and should not be used in newly-written code. use <a class="link" href="GtkNotebook.html#gtk-notebook-get-group" title="gtk_notebook_get_group ()"><code class="function">gtk_notebook_get_group()</code></a> instead.</p>
1822
+ <p><code class="literal">gtk_notebook_get_group_id</code> has been deprecated since version 2.12 and should not be used in newly-written code. use <a class="link" href="GtkNotebook.html#gtk-notebook-get-group-name" title="gtk_notebook_get_group_name ()"><code class="function">gtk_notebook_get_group_name()</code></a> instead.</p>
1881
1823
  </div>
1882
1824
  <p>
1883
1825
  Gets the current group identificator for <em class="parameter"><code>notebook</code></em>.
@@ -1892,19 +1834,21 @@ Gets the current group identificator for <em class="parameter"><code>notebook</c
1892
1834
  </tr>
1893
1835
  <tr>
1894
1836
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1895
- <td> the group identificator, or -1 if none is set.
1896
-
1897
- </td>
1837
+ <td>the group identificator, or -1 if none is set.</td>
1898
1838
  </tr>
1899
1839
  </tbody>
1900
1840
  </table></div>
1901
1841
  <p class="since">Since 2.10</p>
1902
1842
  </div>
1903
1843
  <hr>
1904
- <div class="refsect2" title="gtk_notebook_set_group ()">
1844
+ <div class="refsect2">
1905
1845
  <a name="gtk-notebook-set-group"></a><h3>gtk_notebook_set_group ()</h3>
1906
1846
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_group (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1907
1847
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> group</code></em>);</pre>
1848
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1849
+ <h3 class="title">Warning</h3>
1850
+ <p><code class="literal">gtk_notebook_set_group</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use <a class="link" href="GtkNotebook.html#gtk-notebook-set-group-name" title="gtk_notebook_set_group_name ()"><code class="function">gtk_notebook_set_group_name()</code></a> instead</p>
1851
+ </div>
1908
1852
  <p>
1909
1853
  Sets a group identificator pointer for <em class="parameter"><code>notebook</code></em>, notebooks sharing
1910
1854
  the same group identificator pointer will be able to exchange tabs
@@ -1921,7 +1865,7 @@ not be able to exchange tabs with any other notebook.
1921
1865
  </tr>
1922
1866
  <tr>
1923
1867
  <td><p><span class="term"><em class="parameter"><code>group</code></em> :</span></p></td>
1924
- <td> a pointer to identify the notebook group, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to unset it. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1868
+ <td>a pointer to identify the notebook group, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to unset it. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
1925
1869
  </td>
1926
1870
  </tr>
1927
1871
  </tbody>
@@ -1929,9 +1873,13 @@ not be able to exchange tabs with any other notebook.
1929
1873
  <p class="since">Since 2.12</p>
1930
1874
  </div>
1931
1875
  <hr>
1932
- <div class="refsect2" title="gtk_notebook_get_group ()">
1876
+ <div class="refsect2">
1933
1877
  <a name="gtk-notebook-get-group"></a><h3>gtk_notebook_get_group ()</h3>
1934
1878
  <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> gtk_notebook_get_group (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
1879
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
1880
+ <h3 class="title">Warning</h3>
1881
+ <p><code class="literal">gtk_notebook_get_group</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use <a class="link" href="GtkNotebook.html#gtk-notebook-get-group-name" title="gtk_notebook_get_group_name ()"><code class="function">gtk_notebook_get_group_name()</code></a> instead</p>
1882
+ </div>
1935
1883
  <p>
1936
1884
  Gets the current group identificator pointer for <em class="parameter"><code>notebook</code></em>.
1937
1885
  </p>
@@ -1945,8 +1893,8 @@ Gets the current group identificator pointer for <em class="parameter"><code>not
1945
1893
  </tr>
1946
1894
  <tr>
1947
1895
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1948
- <td> the group identificator, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none is set.
1949
-
1896
+ <td>the group identificator,
1897
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none is set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1950
1898
  </td>
1951
1899
  </tr>
1952
1900
  </tbody>
@@ -1954,7 +1902,60 @@ Gets the current group identificator pointer for <em class="parameter"><code>not
1954
1902
  <p class="since">Since 2.12</p>
1955
1903
  </div>
1956
1904
  <hr>
1957
- <div class="refsect2" title="gtk_notebook_set_action_widget ()">
1905
+ <div class="refsect2">
1906
+ <a name="gtk-notebook-set-group-name"></a><h3>gtk_notebook_set_group_name ()</h3>
1907
+ <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_group_name (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1908
+ <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *group_name</code></em>);</pre>
1909
+ <p>
1910
+ Sets a group name for <em class="parameter"><code>notebook</code></em>.
1911
+ </p>
1912
+ <p>
1913
+ Notebooks with the same name will be able to exchange tabs
1914
+ via drag and drop. A notebook with a <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> group name will
1915
+ not be able to exchange tabs with any other notebook.
1916
+ </p>
1917
+ <div class="variablelist"><table border="0">
1918
+ <col align="left" valign="top">
1919
+ <tbody><tr>
1920
+ <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
1921
+ <td>a <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a>
1922
+ </td>
1923
+ </tr></tbody>
1924
+ </table></div>
1925
+ <p class="since">Since 2.24</p>
1926
+ </div>
1927
+ <hr>
1928
+ <div class="refsect2">
1929
+ <a name="gtk-notebook-get-group-name"></a><h3>gtk_notebook_get_group_name ()</h3>
1930
+ <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_notebook_get_group_name (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>);</pre>
1931
+ <p>
1932
+ Gets the current group name for <em class="parameter"><code>notebook</code></em>.
1933
+ </p>
1934
+ <p>
1935
+ Note that this funtion can emphasis not be used
1936
+ together with <a class="link" href="GtkNotebook.html#gtk-notebook-set-group" title="gtk_notebook_set_group ()"><code class="function">gtk_notebook_set_group()</code></a> or
1937
+ <a class="link" href="GtkNotebook.html#gtk-notebook-set-group-id" title="gtk_notebook_set_group_id ()"><code class="function">gtk_notebook_set_group_id()</code></a>.
1938
+ </p>
1939
+ <div class="variablelist"><table border="0">
1940
+ <col align="left" valign="top">
1941
+ <tbody>
1942
+ <tr>
1943
+ <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
1944
+ <td>a <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a>
1945
+ </td>
1946
+ </tr>
1947
+ <tr>
1948
+ <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
1949
+ <td>the group name,
1950
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none is set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
1951
+ </td>
1952
+ </tr>
1953
+ </tbody>
1954
+ </table></div>
1955
+ <p class="since">Since 2.24</p>
1956
+ </div>
1957
+ <hr>
1958
+ <div class="refsect2">
1958
1959
  <a name="gtk-notebook-set-action-widget"></a><h3>gtk_notebook_set_action_widget ()</h3>
1959
1960
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_action_widget (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1960
1961
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
@@ -1983,17 +1984,16 @@ not included in the list returned from <a class="link" href="GtkContainer.html#g
1983
1984
  </tr>
1984
1985
  <tr>
1985
1986
  <td><p><span class="term"><em class="parameter"><code>pack_type</code></em> :</span></p></td>
1986
- <td>pack type of the action widget
1987
- </td>
1987
+ <td>pack type of the action widget</td>
1988
1988
  </tr>
1989
1989
  </tbody>
1990
1990
  </table></div>
1991
1991
  <p class="since">Since 2.20</p>
1992
1992
  </div>
1993
1993
  <hr>
1994
- <div class="refsect2" title="gtk_notebook_get_action_widget ()">
1994
+ <div class="refsect2">
1995
1995
  <a name="gtk-notebook-get-action-widget"></a><h3>gtk_notebook_get_action_widget ()</h3>
1996
- <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a>* gtk_notebook_get_action_widget (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1996
+ <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_notebook_get_action_widget (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook</code></em>,
1997
1997
  <em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkPackType" title="enum GtkPackType"><span class="type">GtkPackType</span></a> pack_type</code></em>);</pre>
1998
1998
  <p>
1999
1999
  Gets one of the action widgets. See <a class="link" href="GtkNotebook.html#gtk-notebook-set-action-widget" title="gtk_notebook_set_action_widget ()"><code class="function">gtk_notebook_set_action_widget()</code></a>.
@@ -2008,14 +2008,12 @@ Gets one of the action widgets. See <a class="link" href="GtkNotebook.html#gtk-n
2008
2008
  </tr>
2009
2009
  <tr>
2010
2010
  <td><p><span class="term"><em class="parameter"><code>pack_type</code></em> :</span></p></td>
2011
- <td>pack type of the action widget to receive
2012
- </td>
2011
+ <td>pack type of the action widget to receive</td>
2013
2012
  </tr>
2014
2013
  <tr>
2015
2014
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2016
- <td> The action widget with the given <em class="parameter"><code>pack_type</code></em> or
2017
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> when this action widget has not been set
2018
-
2015
+ <td>The action widget with the given <em class="parameter"><code>pack_type</code></em>
2016
+ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> when this action widget has not been set. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2019
2017
  </td>
2020
2018
  </tr>
2021
2019
  </tbody>
@@ -2023,7 +2021,7 @@ Gets one of the action widgets. See <a class="link" href="GtkNotebook.html#gtk-n
2023
2021
  <p class="since">Since 2.20</p>
2024
2022
  </div>
2025
2023
  <hr>
2026
- <div class="refsect2" title="GtkNotebookWindowCreationFunc ()">
2024
+ <div class="refsect2">
2027
2025
  <a name="GtkNotebookWindowCreationFunc"></a><h3>GtkNotebookWindowCreationFunc ()</h3>
2028
2026
  <pre class="programlisting"><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="returnvalue">GtkNotebook</span></a> * (*GtkNotebookWindowCreationFunc) (<em class="parameter"><code><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *source</code></em>,
2029
2027
  <em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *page</code></em>,
@@ -2043,44 +2041,42 @@ If the function returns <a href="http://library.gnome.org/devel/glib/unstable/gl
2043
2041
  <tbody>
2044
2042
  <tr>
2045
2043
  <td><p><span class="term"><em class="parameter"><code>source</code></em> :</span></p></td>
2046
- <td>The source <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> of the drag operation
2047
- </td>
2044
+ <td>The source <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> of the drag operation</td>
2048
2045
  </tr>
2049
2046
  <tr>
2050
2047
  <td><p><span class="term"><em class="parameter"><code>page</code></em> :</span></p></td>
2051
- <td>the child <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> affected
2052
- </td>
2048
+ <td>the child <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> affected</td>
2053
2049
  </tr>
2054
2050
  <tr>
2055
2051
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
2056
- <td>the X coordinate where the drop happens
2057
- </td>
2052
+ <td>the X coordinate where the drop happens</td>
2058
2053
  </tr>
2059
2054
  <tr>
2060
2055
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
2061
- <td>the Y coordinate where the drop happens
2062
- </td>
2056
+ <td>the Y coordinate where the drop happens</td>
2063
2057
  </tr>
2064
2058
  <tr>
2065
2059
  <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
2066
- <td>user data
2067
- </td>
2060
+ <td>user data</td>
2068
2061
  </tr>
2069
2062
  <tr>
2070
2063
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2071
- <td>The created <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> where the tab will be attached, or NULL to cancel the drag
2072
- </td>
2064
+ <td>The created <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> where the tab will be attached, or NULL to cancel the drag</td>
2073
2065
  </tr>
2074
2066
  </tbody>
2075
2067
  </table></div>
2076
2068
  </div>
2077
2069
  <hr>
2078
- <div class="refsect2" title="gtk_notebook_set_window_creation_hook ()">
2070
+ <div class="refsect2">
2079
2071
  <a name="gtk-notebook-set-window-creation-hook"></a><h3>gtk_notebook_set_window_creation_hook ()</h3>
2080
2072
  <pre class="programlisting"><span class="returnvalue">void</span> gtk_notebook_set_window_creation_hook
2081
2073
  (<em class="parameter"><code><a class="link" href="GtkNotebook.html#GtkNotebookWindowCreationFunc" title="GtkNotebookWindowCreationFunc ()"><span class="type">GtkNotebookWindowCreationFunc</span></a> func</code></em>,
2082
2074
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
2083
2075
  <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
2076
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2077
+ <h3 class="title">Warning</h3>
2078
+ <p><code class="literal">gtk_notebook_set_window_creation_hook</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use the <a class="link" href="GtkNotebook.html#GtkNotebook-create-window" title='The "create-window" signal'><span class="type">"create-window"</span></a> signal instead</p>
2079
+ </div>
2084
2080
  <p>
2085
2081
  Installs a global function used to create a window
2086
2082
  when a detached tab is dropped in an empty area.
@@ -2090,7 +2086,7 @@ when a detached tab is dropped in an empty area.
2090
2086
  <tbody>
2091
2087
  <tr>
2092
2088
  <td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
2093
- <td> the <a class="link" href="GtkNotebook.html#GtkNotebookWindowCreationFunc" title="GtkNotebookWindowCreationFunc ()"><span class="type">GtkNotebookWindowCreationFunc</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2089
+ <td>the <a class="link" href="GtkNotebook.html#GtkNotebookWindowCreationFunc" title="GtkNotebookWindowCreationFunc ()"><span class="type">GtkNotebookWindowCreationFunc</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2094
2090
  </td>
2095
2091
  </tr>
2096
2092
  <tr>
@@ -2100,7 +2096,7 @@ when a detached tab is dropped in an empty area.
2100
2096
  </tr>
2101
2097
  <tr>
2102
2098
  <td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
2103
- <td> Destroy notifier for <em class="parameter"><code>data</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2099
+ <td>Destroy notifier for <em class="parameter"><code>data</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
2104
2100
  </td>
2105
2101
  </tr>
2106
2102
  </tbody>
@@ -2108,25 +2104,29 @@ when a detached tab is dropped in an empty area.
2108
2104
  <p class="since">Since 2.10</p>
2109
2105
  </div>
2110
2106
  </div>
2111
- <div class="refsect1" title="Property Details">
2107
+ <div class="refsect1">
2112
2108
  <a name="GtkNotebook.property-details"></a><h2>Property Details</h2>
2113
- <div class="refsect2" title='The "enable-popup" property'>
2109
+ <div class="refsect2">
2114
2110
  <a name="GtkNotebook--enable-popup"></a><h3>The <code class="literal">"enable-popup"</code> property</h3>
2115
2111
  <pre class="programlisting"> "enable-popup" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2116
2112
  <p>If TRUE, pressing the right mouse button on the notebook pops up a menu that you can use to go to a page.</p>
2117
2113
  <p>Default value: FALSE</p>
2118
2114
  </div>
2119
2115
  <hr>
2120
- <div class="refsect2" title='The "group" property'>
2116
+ <div class="refsect2">
2121
2117
  <a name="GtkNotebook--group"></a><h3>The <code class="literal">"group"</code> property</h3>
2122
2118
  <pre class="programlisting"> "group" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> : Read / Write</pre>
2119
+ <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
2120
+ <h3 class="title">Warning</h3>
2121
+ <p><code class="literal">GtkNotebook:group</code> has been deprecated since version 2.24 and should not be used in newly-written code. Use <a class="link" href="GtkNotebook.html#GtkNotebook--group-name" title='The "group-name" property'><span class="type">"group-name"</span></a> instead</p>
2122
+ </div>
2123
2123
  <p>
2124
2124
  Group for tabs drag and drop.
2125
2125
  </p>
2126
2126
  <p class="since">Since 2.12</p>
2127
2127
  </div>
2128
2128
  <hr>
2129
- <div class="refsect2" title='The "group-id" property'>
2129
+ <div class="refsect2">
2130
2130
  <a name="GtkNotebook--group-id"></a><h3>The <code class="literal">"group-id"</code> property</h3>
2131
2131
  <pre class="programlisting"> "group-id" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2132
2132
  <p>Group ID for tabs drag and drop.</p>
@@ -2134,14 +2134,24 @@ Group for tabs drag and drop.
2134
2134
  <p>Default value: -1</p>
2135
2135
  </div>
2136
2136
  <hr>
2137
- <div class="refsect2" title='The "homogeneous" property'>
2137
+ <div class="refsect2">
2138
+ <a name="GtkNotebook--group-name"></a><h3>The <code class="literal">"group-name"</code> property</h3>
2139
+ <pre class="programlisting"> "group-name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
2140
+ <p>
2141
+ Group name for tabs drag and drop.
2142
+ </p>
2143
+ <p>Default value: NULL</p>
2144
+ <p class="since">Since 2.24</p>
2145
+ </div>
2146
+ <hr>
2147
+ <div class="refsect2">
2138
2148
  <a name="GtkNotebook--homogeneous"></a><h3>The <code class="literal">"homogeneous"</code> property</h3>
2139
2149
  <pre class="programlisting"> "homogeneous" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2140
2150
  <p>Whether tabs should have homogeneous sizes.</p>
2141
2151
  <p>Default value: FALSE</p>
2142
2152
  </div>
2143
2153
  <hr>
2144
- <div class="refsect2" title='The "page" property'>
2154
+ <div class="refsect2">
2145
2155
  <a name="GtkNotebook--page"></a><h3>The <code class="literal">"page"</code> property</h3>
2146
2156
  <pre class="programlisting"> "page" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2147
2157
  <p>The index of the current page.</p>
@@ -2149,72 +2159,72 @@ Group for tabs drag and drop.
2149
2159
  <p>Default value: -1</p>
2150
2160
  </div>
2151
2161
  <hr>
2152
- <div class="refsect2" title='The "scrollable" property'>
2162
+ <div class="refsect2">
2153
2163
  <a name="GtkNotebook--scrollable"></a><h3>The <code class="literal">"scrollable"</code> property</h3>
2154
2164
  <pre class="programlisting"> "scrollable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2155
2165
  <p>If TRUE, scroll arrows are added if there are too many tabs to fit.</p>
2156
2166
  <p>Default value: FALSE</p>
2157
2167
  </div>
2158
2168
  <hr>
2159
- <div class="refsect2" title='The "show-border" property'>
2169
+ <div class="refsect2">
2160
2170
  <a name="GtkNotebook--show-border"></a><h3>The <code class="literal">"show-border"</code> property</h3>
2161
2171
  <pre class="programlisting"> "show-border" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2162
2172
  <p>Whether the border should be shown or not.</p>
2163
2173
  <p>Default value: TRUE</p>
2164
2174
  </div>
2165
2175
  <hr>
2166
- <div class="refsect2" title='The "show-tabs" property'>
2176
+ <div class="refsect2">
2167
2177
  <a name="GtkNotebook--show-tabs"></a><h3>The <code class="literal">"show-tabs"</code> property</h3>
2168
2178
  <pre class="programlisting"> "show-tabs" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2169
2179
  <p>Whether tabs should be shown or not.</p>
2170
2180
  <p>Default value: TRUE</p>
2171
2181
  </div>
2172
2182
  <hr>
2173
- <div class="refsect2" title='The "tab-border" property'>
2183
+ <div class="refsect2">
2174
2184
  <a name="GtkNotebook--tab-border"></a><h3>The <code class="literal">"tab-border"</code> property</h3>
2175
2185
  <pre class="programlisting"> "tab-border" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Write</pre>
2176
2186
  <p>Width of the border around the tab labels.</p>
2177
2187
  <p>Default value: 2</p>
2178
2188
  </div>
2179
2189
  <hr>
2180
- <div class="refsect2" title='The "tab-hborder" property'>
2190
+ <div class="refsect2">
2181
2191
  <a name="GtkNotebook--tab-hborder"></a><h3>The <code class="literal">"tab-hborder"</code> property</h3>
2182
2192
  <pre class="programlisting"> "tab-hborder" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write</pre>
2183
2193
  <p>Width of the horizontal border of tab labels.</p>
2184
2194
  <p>Default value: 2</p>
2185
2195
  </div>
2186
2196
  <hr>
2187
- <div class="refsect2" title='The "tab-pos" property'>
2197
+ <div class="refsect2">
2188
2198
  <a name="GtkNotebook--tab-pos"></a><h3>The <code class="literal">"tab-pos"</code> property</h3>
2189
2199
  <pre class="programlisting"> "tab-pos" <a class="link" href="gtk-Standard-Enumerations.html#GtkPositionType" title="enum GtkPositionType"><span class="type">GtkPositionType</span></a> : Read / Write</pre>
2190
2200
  <p>Which side of the notebook holds the tabs.</p>
2191
2201
  <p>Default value: GTK_POS_TOP</p>
2192
2202
  </div>
2193
2203
  <hr>
2194
- <div class="refsect2" title='The "tab-vborder" property'>
2204
+ <div class="refsect2">
2195
2205
  <a name="GtkNotebook--tab-vborder"></a><h3>The <code class="literal">"tab-vborder"</code> property</h3>
2196
2206
  <pre class="programlisting"> "tab-vborder" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write</pre>
2197
2207
  <p>Width of the vertical border of tab labels.</p>
2198
2208
  <p>Default value: 2</p>
2199
2209
  </div>
2200
2210
  </div>
2201
- <div class="refsect1" title="Child Property Details">
2211
+ <div class="refsect1">
2202
2212
  <a name="GtkNotebook.child-property-details"></a><h2>Child Property Details</h2>
2203
- <div class="refsect2" title='The "detachable" child property'>
2213
+ <div class="refsect2">
2204
2214
  <a name="GtkNotebook--c-detachable"></a><h3>The <code class="literal">"detachable"</code> child property</h3>
2205
2215
  <pre class="programlisting"> "detachable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2206
2216
  <p>Whether the tab is detachable.</p>
2207
2217
  <p>Default value: FALSE</p>
2208
2218
  </div>
2209
2219
  <hr>
2210
- <div class="refsect2" title='The "menu-label" child property'>
2220
+ <div class="refsect2">
2211
2221
  <a name="GtkNotebook--c-menu-label"></a><h3>The <code class="literal">"menu-label"</code> child property</h3>
2212
2222
  <pre class="programlisting"> "menu-label" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
2213
2223
  <p>The string displayed in the child's menu entry.</p>
2214
2224
  <p>Default value: NULL</p>
2215
2225
  </div>
2216
2226
  <hr>
2217
- <div class="refsect2" title='The "position" child property'>
2227
+ <div class="refsect2">
2218
2228
  <a name="GtkNotebook--c-position"></a><h3>The <code class="literal">"position"</code> child property</h3>
2219
2229
  <pre class="programlisting"> "position" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
2220
2230
  <p>The index of the child in the parent.</p>
@@ -2222,35 +2232,35 @@ Group for tabs drag and drop.
2222
2232
  <p>Default value: 0</p>
2223
2233
  </div>
2224
2234
  <hr>
2225
- <div class="refsect2" title='The "reorderable" child property'>
2235
+ <div class="refsect2">
2226
2236
  <a name="GtkNotebook--c-reorderable"></a><h3>The <code class="literal">"reorderable"</code> child property</h3>
2227
2237
  <pre class="programlisting"> "reorderable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2228
2238
  <p>Whether the tab is reorderable by user action or not.</p>
2229
2239
  <p>Default value: FALSE</p>
2230
2240
  </div>
2231
2241
  <hr>
2232
- <div class="refsect2" title='The "tab-expand" child property'>
2242
+ <div class="refsect2">
2233
2243
  <a name="GtkNotebook--c-tab-expand"></a><h3>The <code class="literal">"tab-expand"</code> child property</h3>
2234
2244
  <pre class="programlisting"> "tab-expand" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2235
2245
  <p>Whether to expand the child's tab or not.</p>
2236
2246
  <p>Default value: FALSE</p>
2237
2247
  </div>
2238
2248
  <hr>
2239
- <div class="refsect2" title='The "tab-fill" child property'>
2249
+ <div class="refsect2">
2240
2250
  <a name="GtkNotebook--c-tab-fill"></a><h3>The <code class="literal">"tab-fill"</code> child property</h3>
2241
2251
  <pre class="programlisting"> "tab-fill" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
2242
2252
  <p>Whether the child's tab should fill the allocated area or not.</p>
2243
2253
  <p>Default value: TRUE</p>
2244
2254
  </div>
2245
2255
  <hr>
2246
- <div class="refsect2" title='The "tab-label" child property'>
2256
+ <div class="refsect2">
2247
2257
  <a name="GtkNotebook--c-tab-label"></a><h3>The <code class="literal">"tab-label"</code> child property</h3>
2248
2258
  <pre class="programlisting"> "tab-label" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
2249
2259
  <p>The string displayed on the child's tab label.</p>
2250
2260
  <p>Default value: NULL</p>
2251
2261
  </div>
2252
2262
  <hr>
2253
- <div class="refsect2" title='The "tab-pack" child property'>
2263
+ <div class="refsect2">
2254
2264
  <a name="GtkNotebook--c-tab-pack"></a><h3>The <code class="literal">"tab-pack"</code> child property</h3>
2255
2265
  <pre class="programlisting"> "tab-pack" <a class="link" href="gtk-Standard-Enumerations.html#GtkPackType" title="enum GtkPackType"><span class="type">GtkPackType</span></a> : Read / Write</pre>
2256
2266
  <p>
@@ -2260,9 +2270,9 @@ Group for tabs drag and drop.
2260
2270
  <p>Default value: GTK_PACK_START</p>
2261
2271
  </div>
2262
2272
  </div>
2263
- <div class="refsect1" title="Style Property Details">
2273
+ <div class="refsect1">
2264
2274
  <a name="GtkNotebook.style-property-details"></a><h2>Style Property Details</h2>
2265
- <div class="refsect2" title='The "arrow-spacing" style property'>
2275
+ <div class="refsect2">
2266
2276
  <a name="GtkNotebook--s-arrow-spacing"></a><h3>The <code class="literal">"arrow-spacing"</code> style property</h3>
2267
2277
  <pre class="programlisting"> "arrow-spacing" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
2268
2278
  <p>
@@ -2274,7 +2284,7 @@ arrows and the tabs.
2274
2284
  <p class="since">Since 2.10</p>
2275
2285
  </div>
2276
2286
  <hr>
2277
- <div class="refsect2" title='The "has-backward-stepper" style property'>
2287
+ <div class="refsect2">
2278
2288
  <a name="GtkNotebook--s-has-backward-stepper"></a><h3>The <code class="literal">"has-backward-stepper"</code> style property</h3>
2279
2289
  <pre class="programlisting"> "has-backward-stepper" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
2280
2290
  <p>
@@ -2285,7 +2295,7 @@ the standard backward arrow button is displayed.
2285
2295
  <p class="since">Since 2.4</p>
2286
2296
  </div>
2287
2297
  <hr>
2288
- <div class="refsect2" title='The "has-forward-stepper" style property'>
2298
+ <div class="refsect2">
2289
2299
  <a name="GtkNotebook--s-has-forward-stepper"></a><h3>The <code class="literal">"has-forward-stepper"</code> style property</h3>
2290
2300
  <pre class="programlisting"> "has-forward-stepper" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
2291
2301
  <p>
@@ -2296,7 +2306,7 @@ the standard forward arrow button is displayed.
2296
2306
  <p class="since">Since 2.4</p>
2297
2307
  </div>
2298
2308
  <hr>
2299
- <div class="refsect2" title='The "has-secondary-backward-stepper" style property'>
2309
+ <div class="refsect2">
2300
2310
  <a name="GtkNotebook--s-has-secondary-backward-stepper"></a><h3>The <code class="literal">"has-secondary-backward-stepper"</code> style property</h3>
2301
2311
  <pre class="programlisting"> "has-secondary-backward-stepper" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
2302
2312
  <p>
@@ -2308,7 +2318,7 @@ of the tab area.
2308
2318
  <p class="since">Since 2.4</p>
2309
2319
  </div>
2310
2320
  <hr>
2311
- <div class="refsect2" title='The "has-secondary-forward-stepper" style property'>
2321
+ <div class="refsect2">
2312
2322
  <a name="GtkNotebook--s-has-secondary-forward-stepper"></a><h3>The <code class="literal">"has-secondary-forward-stepper"</code> style property</h3>
2313
2323
  <pre class="programlisting"> "has-secondary-forward-stepper" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
2314
2324
  <p>
@@ -2320,7 +2330,7 @@ of the tab area.
2320
2330
  <p class="since">Since 2.4</p>
2321
2331
  </div>
2322
2332
  <hr>
2323
- <div class="refsect2" title='The "tab-curvature" style property'>
2333
+ <div class="refsect2">
2324
2334
  <a name="GtkNotebook--s-tab-curvature"></a><h3>The <code class="literal">"tab-curvature"</code> style property</h3>
2325
2335
  <pre class="programlisting"> "tab-curvature" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
2326
2336
  <p>
@@ -2331,7 +2341,7 @@ The "tab-curvature" property defines size of tab curvature.
2331
2341
  <p class="since">Since 2.10</p>
2332
2342
  </div>
2333
2343
  <hr>
2334
- <div class="refsect2" title='The "tab-overlap" style property'>
2344
+ <div class="refsect2">
2335
2345
  <a name="GtkNotebook--s-tab-overlap"></a><h3>The <code class="literal">"tab-overlap"</code> style property</h3>
2336
2346
  <pre class="programlisting"> "tab-overlap" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
2337
2347
  <p>
@@ -2342,13 +2352,13 @@ area.
2342
2352
  <p class="since">Since 2.10</p>
2343
2353
  </div>
2344
2354
  </div>
2345
- <div class="refsect1" title="Signal Details">
2355
+ <div class="refsect1">
2346
2356
  <a name="GtkNotebook.signal-details"></a><h2>Signal Details</h2>
2347
- <div class="refsect2" title='The "change-current-page" signal'>
2357
+ <div class="refsect2">
2348
2358
  <a name="GtkNotebook-change-current-page"></a><h3>The <code class="literal">"change-current-page"</code> signal</h3>
2349
2359
  <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="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2350
2360
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg1,
2351
- <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>
2361
+ <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>
2352
2362
  <p>
2353
2363
  </p>
2354
2364
  <div class="variablelist"><table border="0">
@@ -2356,34 +2366,23 @@ area.
2356
2366
  <tbody>
2357
2367
  <tr>
2358
2368
  <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
2359
- <td>the object which received the signal.
2360
- </td>
2361
- </tr>
2362
- <tr>
2363
- <td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
2364
- <td>
2365
- </td>
2369
+ <td>the object which received the signal.</td>
2366
2370
  </tr>
2367
2371
  <tr>
2368
2372
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2369
2373
  <td>user data set when the signal handler was connected.</td>
2370
2374
  </tr>
2371
- <tr>
2372
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2373
- <td>
2374
- </td>
2375
- </tr>
2376
2375
  </tbody>
2377
2376
  </table></div>
2378
2377
  </div>
2379
2378
  <hr>
2380
- <div class="refsect2" title='The "create-window" signal'>
2379
+ <div class="refsect2">
2381
2380
  <a name="GtkNotebook-create-window"></a><h3>The <code class="literal">"create-window"</code> signal</h3>
2382
2381
  <pre class="programlisting"><a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="returnvalue">GtkNotebook</span></a>* user_function (<a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2383
2382
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *page,
2384
2383
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x,
2385
2384
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y,
2386
- <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>
2385
+ <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>
2387
2386
  <p>
2388
2387
  The ::create-window signal is emitted when a detachable
2389
2388
  tab is dropped on the root window.
@@ -2404,23 +2403,19 @@ if one has been set with <a class="link" href="GtkNotebook.html#gtk-notebook-set
2404
2403
  <tbody>
2405
2404
  <tr>
2406
2405
  <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
2407
- <td>the <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> emitting the signal
2408
- </td>
2406
+ <td>the <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> emitting the signal</td>
2409
2407
  </tr>
2410
2408
  <tr>
2411
2409
  <td><p><span class="term"><em class="parameter"><code>page</code></em> :</span></p></td>
2412
- <td>the tab of <em class="parameter"><code>notebook</code></em> that is being detached
2413
- </td>
2410
+ <td>the tab of <em class="parameter"><code>notebook</code></em> that is being detached</td>
2414
2411
  </tr>
2415
2412
  <tr>
2416
2413
  <td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
2417
- <td>the X coordinate where the drop happens
2418
- </td>
2414
+ <td>the X coordinate where the drop happens</td>
2419
2415
  </tr>
2420
2416
  <tr>
2421
2417
  <td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
2422
- <td>the Y coordinate where the drop happens
2423
- </td>
2418
+ <td>the Y coordinate where the drop happens</td>
2424
2419
  </tr>
2425
2420
  <tr>
2426
2421
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2428,8 +2423,8 @@ if one has been set with <a class="link" href="GtkNotebook.html#gtk-notebook-set
2428
2423
  </tr>
2429
2424
  <tr>
2430
2425
  <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2431
- <td> a <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> that <em class="parameter"><code>page</code></em> should be added to, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
2432
-
2426
+ <td>a <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> that <em class="parameter"><code>page</code></em> should be
2427
+ added to, 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="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
2433
2428
  </td>
2434
2429
  </tr>
2435
2430
  </tbody>
@@ -2437,11 +2432,11 @@ if one has been set with <a class="link" href="GtkNotebook.html#gtk-notebook-set
2437
2432
  <p class="since">Since 2.12</p>
2438
2433
  </div>
2439
2434
  <hr>
2440
- <div class="refsect2" title='The "focus-tab" signal'>
2435
+ <div class="refsect2">
2441
2436
  <a name="GtkNotebook-focus-tab"></a><h3>The <code class="literal">"focus-tab"</code> signal</h3>
2442
2437
  <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="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2443
2438
  <span class="type">GtkNotebookTab</span> arg1,
2444
- <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>
2439
+ <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>
2445
2440
  <p>
2446
2441
  </p>
2447
2442
  <div class="variablelist"><table border="0">
@@ -2449,32 +2444,21 @@ if one has been set with <a class="link" href="GtkNotebook.html#gtk-notebook-set
2449
2444
  <tbody>
2450
2445
  <tr>
2451
2446
  <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
2452
- <td>the object which received the signal.
2453
- </td>
2454
- </tr>
2455
- <tr>
2456
- <td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
2457
- <td>
2458
- </td>
2447
+ <td>the object which received the signal.</td>
2459
2448
  </tr>
2460
2449
  <tr>
2461
2450
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2462
2451
  <td>user data set when the signal handler was connected.</td>
2463
2452
  </tr>
2464
- <tr>
2465
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2466
- <td>
2467
- </td>
2468
- </tr>
2469
2453
  </tbody>
2470
2454
  </table></div>
2471
2455
  </div>
2472
2456
  <hr>
2473
- <div class="refsect2" title='The "move-focus-out" signal'>
2457
+ <div class="refsect2">
2474
2458
  <a name="GtkNotebook-move-focus-out"></a><h3>The <code class="literal">"move-focus-out"</code> signal</h3>
2475
2459
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2476
2460
  <a class="link" href="gtk-Standard-Enumerations.html#GtkDirectionType" title="enum GtkDirectionType"><span class="type">GtkDirectionType</span></a> arg1,
2477
- <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>
2461
+ <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>
2478
2462
  <p>
2479
2463
  </p>
2480
2464
  <div class="variablelist"><table border="0">
@@ -2482,13 +2466,7 @@ if one has been set with <a class="link" href="GtkNotebook.html#gtk-notebook-set
2482
2466
  <tbody>
2483
2467
  <tr>
2484
2468
  <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
2485
- <td>the object which received the signal.
2486
- </td>
2487
- </tr>
2488
- <tr>
2489
- <td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
2490
- <td>
2491
- </td>
2469
+ <td>the object which received the signal.</td>
2492
2470
  </tr>
2493
2471
  <tr>
2494
2472
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2498,12 +2476,12 @@ if one has been set with <a class="link" href="GtkNotebook.html#gtk-notebook-set
2498
2476
  </table></div>
2499
2477
  </div>
2500
2478
  <hr>
2501
- <div class="refsect2" title='The "page-added" signal'>
2479
+ <div class="refsect2">
2502
2480
  <a name="GtkNotebook-page-added"></a><h3>The <code class="literal">"page-added"</code> signal</h3>
2503
2481
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2504
2482
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child,
2505
2483
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> page_num,
2506
- <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>
2484
+ <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>
2507
2485
  <p>
2508
2486
  the ::page-added signal is emitted in the notebook
2509
2487
  right after a page is added to the notebook.
@@ -2518,8 +2496,7 @@ right after a page is added to the notebook.
2518
2496
  </tr>
2519
2497
  <tr>
2520
2498
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
2521
- <td>the child <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> affected
2522
- </td>
2499
+ <td>the child <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> affected</td>
2523
2500
  </tr>
2524
2501
  <tr>
2525
2502
  <td><p><span class="term"><em class="parameter"><code>page_num</code></em> :</span></p></td>
@@ -2535,12 +2512,12 @@ right after a page is added to the notebook.
2535
2512
  <p class="since">Since 2.10</p>
2536
2513
  </div>
2537
2514
  <hr>
2538
- <div class="refsect2" title='The "page-removed" signal'>
2515
+ <div class="refsect2">
2539
2516
  <a name="GtkNotebook-page-removed"></a><h3>The <code class="literal">"page-removed"</code> signal</h3>
2540
2517
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2541
2518
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child,
2542
2519
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> page_num,
2543
- <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>
2520
+ <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>
2544
2521
  <p>
2545
2522
  the ::page-removed signal is emitted in the notebook
2546
2523
  right after a page is removed from the notebook.
@@ -2555,13 +2532,11 @@ right after a page is removed from the notebook.
2555
2532
  </tr>
2556
2533
  <tr>
2557
2534
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
2558
- <td>the child <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> affected
2559
- </td>
2535
+ <td>the child <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> affected</td>
2560
2536
  </tr>
2561
2537
  <tr>
2562
2538
  <td><p><span class="term"><em class="parameter"><code>page_num</code></em> :</span></p></td>
2563
- <td>the <em class="parameter"><code>child</code></em> page number
2564
- </td>
2539
+ <td>the <em class="parameter"><code>child</code></em> page number</td>
2565
2540
  </tr>
2566
2541
  <tr>
2567
2542
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2572,12 +2547,12 @@ right after a page is removed from the notebook.
2572
2547
  <p class="since">Since 2.10</p>
2573
2548
  </div>
2574
2549
  <hr>
2575
- <div class="refsect2" title='The "page-reordered" signal'>
2550
+ <div class="refsect2">
2576
2551
  <a name="GtkNotebook-page-reordered"></a><h3>The <code class="literal">"page-reordered"</code> signal</h3>
2577
2552
  <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2578
2553
  <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *child,
2579
2554
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> page_num,
2580
- <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>
2555
+ <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>
2581
2556
  <p>
2582
2557
  the ::page-reordered signal is emitted in the notebook
2583
2558
  right after a page has been reordered.
@@ -2592,8 +2567,7 @@ right after a page has been reordered.
2592
2567
  </tr>
2593
2568
  <tr>
2594
2569
  <td><p><span class="term"><em class="parameter"><code>child</code></em> :</span></p></td>
2595
- <td>the child <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> affected
2596
- </td>
2570
+ <td>the child <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> affected</td>
2597
2571
  </tr>
2598
2572
  <tr>
2599
2573
  <td><p><span class="term"><em class="parameter"><code>page_num</code></em> :</span></p></td>
@@ -2609,12 +2583,12 @@ right after a page has been reordered.
2609
2583
  <p class="since">Since 2.10</p>
2610
2584
  </div>
2611
2585
  <hr>
2612
- <div class="refsect2" title='The "reorder-tab" signal'>
2586
+ <div class="refsect2">
2613
2587
  <a name="GtkNotebook-reorder-tab"></a><h3>The <code class="literal">"reorder-tab"</code> signal</h3>
2614
2588
  <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="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2615
2589
  <a class="link" href="gtk-Standard-Enumerations.html#GtkDirectionType" title="enum GtkDirectionType"><span class="type">GtkDirectionType</span></a> arg1,
2616
2590
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> arg2,
2617
- <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>
2591
+ <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>
2618
2592
  <p>
2619
2593
  </p>
2620
2594
  <div class="variablelist"><table border="0">
@@ -2622,37 +2596,21 @@ right after a page has been reordered.
2622
2596
  <tbody>
2623
2597
  <tr>
2624
2598
  <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
2625
- <td>the object which received the signal.
2626
- </td>
2627
- </tr>
2628
- <tr>
2629
- <td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
2630
- <td>
2631
- </td>
2632
- </tr>
2633
- <tr>
2634
- <td><p><span class="term"><em class="parameter"><code>Param3</code></em> :</span></p></td>
2635
- <td>
2636
- </td>
2599
+ <td>the object which received the signal.</td>
2637
2600
  </tr>
2638
2601
  <tr>
2639
2602
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2640
2603
  <td>user data set when the signal handler was connected.</td>
2641
2604
  </tr>
2642
- <tr>
2643
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2644
- <td>
2645
- </td>
2646
- </tr>
2647
2605
  </tbody>
2648
2606
  </table></div>
2649
2607
  </div>
2650
2608
  <hr>
2651
- <div class="refsect2" title='The "select-page" signal'>
2609
+ <div class="refsect2">
2652
2610
  <a name="GtkNotebook-select-page"></a><h3>The <code class="literal">"select-page"</code> signal</h3>
2653
2611
  <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="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2654
2612
  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> arg1,
2655
- <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>
2613
+ <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>
2656
2614
  <p>
2657
2615
  </p>
2658
2616
  <div class="variablelist"><table border="0">
@@ -2660,33 +2618,22 @@ right after a page has been reordered.
2660
2618
  <tbody>
2661
2619
  <tr>
2662
2620
  <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
2663
- <td>the object which received the signal.
2664
- </td>
2665
- </tr>
2666
- <tr>
2667
- <td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
2668
- <td>
2669
- </td>
2621
+ <td>the object which received the signal.</td>
2670
2622
  </tr>
2671
2623
  <tr>
2672
2624
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
2673
2625
  <td>user data set when the signal handler was connected.</td>
2674
2626
  </tr>
2675
- <tr>
2676
- <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
2677
- <td>
2678
- </td>
2679
- </tr>
2680
2627
  </tbody>
2681
2628
  </table></div>
2682
2629
  </div>
2683
2630
  <hr>
2684
- <div class="refsect2" title='The "switch-page" signal'>
2631
+ <div class="refsect2">
2685
2632
  <a name="GtkNotebook-switch-page"></a><h3>The <code class="literal">"switch-page"</code> signal</h3>
2686
- <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2687
- <a class="link" href="GtkNotebook.html#GtkNotebookPage" title="GtkNotebookPage"><span class="type">GtkNotebookPage</span></a> *page,
2688
- <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> page_num,
2689
- <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>
2633
+ <pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> *notebook,
2634
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> arg1,
2635
+ <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> arg2,
2636
+ <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>
2690
2637
  <p>
2691
2638
  Emitted when the user or a function changes the current page.
2692
2639
  </p>
@@ -2695,18 +2642,15 @@ Emitted when the user or a function changes the current page.
2695
2642
  <tbody>
2696
2643
  <tr>
2697
2644
  <td><p><span class="term"><em class="parameter"><code>notebook</code></em> :</span></p></td>
2698
- <td>the object which received the signal.
2699
- </td>
2645
+ <td>the object which received the signal.</td>
2700
2646
  </tr>
2701
2647
  <tr>
2702
2648
  <td><p><span class="term"><em class="parameter"><code>page</code></em> :</span></p></td>
2703
- <td>the new current page
2704
- </td>
2649
+ <td>the new current page</td>
2705
2650
  </tr>
2706
2651
  <tr>
2707
2652
  <td><p><span class="term"><em class="parameter"><code>page_num</code></em> :</span></p></td>
2708
- <td>the index of the page
2709
- </td>
2653
+ <td>the index of the page</td>
2710
2654
  </tr>
2711
2655
  <tr>
2712
2656
  <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
@@ -2716,7 +2660,7 @@ Emitted when the user or a function changes the current page.
2716
2660
  </table></div>
2717
2661
  </div>
2718
2662
  </div>
2719
- <div class="refsect1" title="See Also">
2663
+ <div class="refsect1">
2720
2664
  <a name="GtkNotebook.see-also"></a><h2>See Also</h2>
2721
2665
  <p>
2722
2666
  </p>
@@ -2733,6 +2677,6 @@ Emitted when the user or a function changes the current page.
2733
2677
  </div>
2734
2678
  <div class="footer">
2735
2679
  <hr>
2736
- Generated by GTK-Doc V1.15</div>
2680
+ Generated by GTK-Doc V1.17</div>
2737
2681
  </body>
2738
2682
  </html>