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.
- data/Rakefile +66 -1
- data/ext/gtk2/extconf.rb +0 -96
- data/ext/gtk2/global.h +274 -13
- data/ext/gtk2/gtk2.def +5 -3
- data/ext/gtk2/init.c +263 -19
- data/ext/gtk2/rbgdk.c +245 -89
- data/ext/gtk2/rbgdk.h +32 -6
- data/ext/gtk2/rbgdkatom.c +38 -28
- data/ext/gtk2/rbgdkcairo.c +32 -42
- data/ext/gtk2/rbgdkcolor.c +52 -42
- data/ext/gtk2/rbgdkcolormap.c +42 -37
- data/ext/gtk2/rbgdkconst.c +23 -13
- data/ext/gtk2/rbgdkconversions.h +19 -6
- data/ext/gtk2/rbgdkcursor.c +37 -25
- data/ext/gtk2/rbgdkdevice.c +77 -67
- data/ext/gtk2/rbgdkdisplay.c +158 -150
- data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
- data/ext/gtk2/rbgdkdragcontext.c +121 -70
- data/ext/gtk2/rbgdkdraw.c +252 -160
- data/ext/gtk2/rbgdkevent.c +30 -20
- data/ext/gtk2/rbgdkgc.c +123 -116
- data/ext/gtk2/rbgdkgeometry.c +77 -68
- data/ext/gtk2/rbgdkimage.c +58 -47
- data/ext/gtk2/rbgdkinput.c +33 -26
- data/ext/gtk2/rbgdkkeymap.c +38 -27
- data/ext/gtk2/rbgdkkeyval.c +44 -32
- data/ext/gtk2/rbgdkpango.c +66 -39
- data/ext/gtk2/rbgdkpangorenderer.c +63 -35
- data/ext/gtk2/rbgdkpixbuf.c +36 -25
- data/ext/gtk2/rbgdkpixmap.c +65 -49
- data/ext/gtk2/rbgdkproperty.c +66 -60
- data/ext/gtk2/rbgdkrectangle.c +54 -46
- data/ext/gtk2/rbgdkregion.c +144 -79
- data/ext/gtk2/rbgdkrgb.c +74 -58
- data/ext/gtk2/rbgdkscreen.c +103 -97
- data/ext/gtk2/rbgdkselection.c +49 -39
- data/ext/gtk2/rbgdkthreads.c +32 -19
- data/ext/gtk2/rbgdktimecoord.c +60 -38
- data/ext/gtk2/rbgdkvisual.c +79 -71
- data/ext/gtk2/rbgdkwindow.c +284 -305
- data/ext/gtk2/rbgdkwindowattr.c +69 -58
- data/ext/gtk2/rbgdkx11.c +41 -28
- data/ext/gtk2/rbgtk.c +498 -19
- data/ext/gtk2/rbgtk.h +35 -20
- data/ext/gtk2/rbgtkaboutdialog.c +33 -80
- data/ext/gtk2/rbgtkaccelerator.c +36 -23
- data/ext/gtk2/rbgtkaccelgroup.c +50 -40
- data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
- data/ext/gtk2/rbgtkaccelkey.c +40 -28
- data/ext/gtk2/rbgtkaccellabel.c +30 -18
- data/ext/gtk2/rbgtkaccelmap.c +55 -42
- data/ext/gtk2/rbgtkaccessible.c +25 -14
- data/ext/gtk2/rbgtkaction.c +68 -68
- data/ext/gtk2/rbgtkactiongroup.c +317 -195
- data/ext/gtk2/rbgtkadjustment.c +33 -46
- data/ext/gtk2/rbgtkalignment.c +36 -24
- data/ext/gtk2/rbgtkallocation.c +53 -42
- data/ext/gtk2/rbgtkarrow.c +34 -22
- data/ext/gtk2/rbgtkaspectframe.c +32 -20
- data/ext/gtk2/rbgtkassistant.c +81 -61
- data/ext/gtk2/rbgtkbbox.c +32 -20
- data/ext/gtk2/rbgtkbin.c +28 -16
- data/ext/gtk2/rbgtkbindingset.c +42 -35
- data/ext/gtk2/rbgtkborder.c +34 -23
- data/ext/gtk2/rbgtkbox.c +40 -29
- data/ext/gtk2/rbgtkbuildable.c +57 -45
- data/ext/gtk2/rbgtkbuilder.c +53 -38
- data/ext/gtk2/rbgtkbutton.c +41 -55
- data/ext/gtk2/rbgtkcalendar.c +51 -40
- data/ext/gtk2/rbgtkcelleditable.c +28 -17
- data/ext/gtk2/rbgtkcelllayout.c +41 -30
- data/ext/gtk2/rbgtkcellrenderer.c +43 -32
- data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
- data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
- data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
- data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
- data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
- data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
- data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
- data/ext/gtk2/rbgtkcellview.c +34 -33
- data/ext/gtk2/rbgtkcheckbutton.c +28 -16
- data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
- data/ext/gtk2/rbgtkclipboard.c +123 -77
- data/ext/gtk2/rbgtkcolorbutton.c +26 -31
- data/ext/gtk2/rbgtkcolorsel.c +109 -55
- data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
- data/ext/gtk2/rbgtkcombo.c +43 -32
- data/ext/gtk2/rbgtkcombobox.c +44 -83
- data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
- data/ext/gtk2/rbgtkconst.c +23 -13
- data/ext/gtk2/rbgtkcontainer.c +153 -100
- data/ext/gtk2/rbgtkconversions.h +19 -6
- data/ext/gtk2/rbgtkcurve.c +46 -36
- data/ext/gtk2/rbgtkdialog.c +104 -70
- data/ext/gtk2/rbgtkdrag.c +173 -121
- data/ext/gtk2/rbgtkdrawingarea.c +28 -16
- data/ext/gtk2/rbgtkeditable.c +63 -51
- data/ext/gtk2/rbgtkentry.c +48 -85
- data/ext/gtk2/rbgtkentrycompletion.c +42 -55
- data/ext/gtk2/rbgtkeventbox.c +28 -16
- data/ext/gtk2/rbgtkexpander.c +26 -35
- data/ext/gtk2/rbgtkfilechooser.c +87 -143
- data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
- data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
- data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
- data/ext/gtk2/rbgtkfilefilter.c +45 -35
- data/ext/gtk2/rbgtkfilesel.c +54 -43
- data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
- data/ext/gtk2/rbgtkfixed.c +36 -25
- data/ext/gtk2/rbgtkfontbutton.c +26 -37
- data/ext/gtk2/rbgtkfontselection.c +27 -15
- data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
- data/ext/gtk2/rbgtkframe.c +39 -28
- data/ext/gtk2/rbgtkgamma.c +32 -20
- data/ext/gtk2/rbgtkhandlebox.c +31 -19
- data/ext/gtk2/rbgtkhbbox.c +28 -16
- data/ext/gtk2/rbgtkhbox.c +29 -17
- data/ext/gtk2/rbgtkhpaned.c +28 -16
- data/ext/gtk2/rbgtkhruler.c +28 -16
- data/ext/gtk2/rbgtkhscale.c +28 -16
- data/ext/gtk2/rbgtkhscrollbar.c +28 -16
- data/ext/gtk2/rbgtkhseparator.c +28 -16
- data/ext/gtk2/rbgtkiconfactory.c +35 -23
- data/ext/gtk2/rbgtkiconinfo.c +42 -30
- data/ext/gtk2/rbgtkiconset.c +31 -19
- data/ext/gtk2/rbgtkiconsize.c +38 -25
- data/ext/gtk2/rbgtkiconsource.c +62 -50
- data/ext/gtk2/rbgtkicontheme.c +95 -95
- data/ext/gtk2/rbgtkiconview.c +87 -121
- data/ext/gtk2/rbgtkimage.c +31 -40
- data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
- data/ext/gtk2/rbgtkimcontext.c +46 -34
- data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
- data/ext/gtk2/rbgtkimmulticontext.c +26 -14
- data/ext/gtk2/rbgtkinputdialog.c +28 -16
- data/ext/gtk2/rbgtkinvisible.c +24 -18
- data/ext/gtk2/rbgtkitem.c +32 -20
- data/ext/gtk2/rbgtkitemfactory.c +65 -57
- data/ext/gtk2/rbgtklabel.c +46 -57
- data/ext/gtk2/rbgtklayout.c +40 -29
- data/ext/gtk2/rbgtklinkbutton.c +26 -15
- data/ext/gtk2/rbgtkliststore.c +145 -102
- data/ext/gtk2/rbgtkmacros.h +19 -6
- data/ext/gtk2/rbgtkmenu.c +47 -59
- data/ext/gtk2/rbgtkmenubar.c +30 -30
- data/ext/gtk2/rbgtkmenuitem.c +34 -41
- data/ext/gtk2/rbgtkmenushell.c +43 -42
- data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
- data/ext/gtk2/rbgtkmessagedialog.c +31 -25
- data/ext/gtk2/rbgtkmisc.c +33 -22
- data/ext/gtk2/rbgtknotebook.c +98 -134
- data/ext/gtk2/rbgtkobject.c +46 -81
- data/ext/gtk2/rbgtkoptionmenu.c +35 -23
- data/ext/gtk2/rbgtkpagesetup.c +64 -54
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
- data/ext/gtk2/rbgtkpaned.c +46 -36
- data/ext/gtk2/rbgtkpapersize.c +60 -54
- data/ext/gtk2/rbgtkplug.c +32 -20
- data/ext/gtk2/rbgtkprintcontext.c +43 -35
- data/ext/gtk2/rbgtkprinter.c +36 -37
- data/ext/gtk2/rbgtkprintjob.c +36 -37
- data/ext/gtk2/rbgtkprintoperation.c +44 -33
- data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
- data/ext/gtk2/rbgtkprintsettings.c +248 -192
- data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
- data/ext/gtk2/rbgtkprogress.c +23 -13
- data/ext/gtk2/rbgtkprogressbar.c +47 -46
- data/ext/gtk2/rbgtkradioaction.c +84 -39
- data/ext/gtk2/rbgtkradiobutton.c +33 -21
- data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
- data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
- data/ext/gtk2/rbgtkrange.c +36 -56
- data/ext/gtk2/rbgtkrc.c +61 -49
- data/ext/gtk2/rbgtkrcstyle.c +59 -48
- data/ext/gtk2/rbgtkrecentaction.c +28 -16
- data/ext/gtk2/rbgtkrecentchooser.c +58 -92
- data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
- data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
- data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
- data/ext/gtk2/rbgtkrecentdata.c +47 -36
- data/ext/gtk2/rbgtkrecentfilter.c +55 -46
- data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
- data/ext/gtk2/rbgtkrecentinfo.c +66 -56
- data/ext/gtk2/rbgtkrecentmanager.c +47 -43
- data/ext/gtk2/rbgtkruler.c +35 -30
- data/ext/gtk2/rbgtkscale.c +29 -18
- data/ext/gtk2/rbgtkscalebutton.c +27 -27
- data/ext/gtk2/rbgtkscrollbar.c +23 -13
- data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
- data/ext/gtk2/rbgtkselection.c +87 -67
- data/ext/gtk2/rbgtkselectiondata.c +74 -65
- data/ext/gtk2/rbgtkseparator.c +23 -13
- data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
- data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
- data/ext/gtk2/rbgtksettings.c +123 -103
- data/ext/gtk2/rbgtksizegroup.c +33 -30
- data/ext/gtk2/rbgtksocket.c +32 -20
- data/ext/gtk2/rbgtkspinbutton.c +48 -38
- data/ext/gtk2/rbgtkspinner.c +27 -14
- data/ext/gtk2/rbgtkstatusbar.c +36 -31
- data/ext/gtk2/rbgtkstatusicon.c +31 -44
- data/ext/gtk2/rbgtkstock.c +137 -125
- data/ext/gtk2/rbgtkstyle.c +177 -161
- data/ext/gtk2/rbgtktable.c +58 -47
- data/ext/gtk2/rbgtktargetlist.c +56 -36
- data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
- data/ext/gtk2/rbgtktextappearance.c +44 -34
- data/ext/gtk2/rbgtktextattributes.c +54 -42
- data/ext/gtk2/rbgtktextbuffer.c +188 -191
- data/ext/gtk2/rbgtktextchild.c +29 -18
- data/ext/gtk2/rbgtktextiter.c +153 -145
- data/ext/gtk2/rbgtktextmark.c +33 -30
- data/ext/gtk2/rbgtktexttag.c +34 -22
- data/ext/gtk2/rbgtktexttagtable.c +36 -25
- data/ext/gtk2/rbgtktextview.c +85 -73
- data/ext/gtk2/rbgtktoggleaction.c +27 -22
- data/ext/gtk2/rbgtktogglebutton.c +37 -26
- data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
- data/ext/gtk2/rbgtktoolbar.c +66 -69
- data/ext/gtk2/rbgtktoolbutton.c +27 -40
- data/ext/gtk2/rbgtktoolitem.c +60 -62
- data/ext/gtk2/rbgtktooltip.c +36 -25
- data/ext/gtk2/rbgtktooltips.c +42 -34
- data/ext/gtk2/rbgtktreedragdest.c +20 -11
- data/ext/gtk2/rbgtktreedragsource.c +20 -11
- data/ext/gtk2/rbgtktreeiter.c +58 -47
- data/ext/gtk2/rbgtktreemodel.c +83 -65
- data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
- data/ext/gtk2/rbgtktreemodelsort.c +38 -27
- data/ext/gtk2/rbgtktreepath.c +55 -44
- data/ext/gtk2/rbgtktreerowreference.c +60 -42
- data/ext/gtk2/rbgtktreeselection.c +61 -52
- data/ext/gtk2/rbgtktreesortable.c +52 -42
- data/ext/gtk2/rbgtktreestore.c +88 -67
- data/ext/gtk2/rbgtktreeview.c +157 -185
- data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
- data/ext/gtk2/rbgtkuimanager.c +61 -61
- data/ext/gtk2/rbgtkvbbox.c +28 -16
- data/ext/gtk2/rbgtkvbox.c +29 -17
- data/ext/gtk2/rbgtkviewport.c +28 -16
- data/ext/gtk2/rbgtkvolumebutton.c +28 -16
- data/ext/gtk2/rbgtkvpaned.c +28 -16
- data/ext/gtk2/rbgtkvruler.c +28 -16
- data/ext/gtk2/rbgtkvscale.c +28 -16
- data/ext/gtk2/rbgtkvscrollbar.c +28 -16
- data/ext/gtk2/rbgtkvseparator.c +28 -16
- data/ext/gtk2/rbgtkwidget.c +284 -296
- data/ext/gtk2/rbgtkwindow.c +156 -214
- data/ext/gtk2/rbgtkwindowgroup.c +35 -24
- data/lib/1.8/gtk2.so +0 -0
- data/lib/1.9/gtk2.so +0 -0
- data/sample/testgtk/labels.rb +1 -0
- data/sample/testgtk/testgtk.rb +2 -0
- data/vendor/local/bin/gtk-builder-convert +29 -2
- data/vendor/local/bin/gtk-demo.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
- data/vendor/local/lib/gailutil.lib +0 -0
- data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gail.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
- data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
- data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
- data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
- data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
- data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
- data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
- data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
- data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
- data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
- data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
- data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
- data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
- data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
- data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
- data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
- data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
- data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
- data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
- data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
- data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
- data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
- data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
- data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
- data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
- data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
- data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
- data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
- data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
- data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
- data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
- data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
- data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
- data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
- data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
- data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
- data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
- data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
- data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
- data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
- data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
- data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
- data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
- data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
- data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
- data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
- data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
- data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
- data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
- data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
- data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
- data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
- data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
- data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +31 -31
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
- data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
- data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
- data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
- data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
- data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
- data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
- data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
- data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
- data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
- data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
- data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
- data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
- data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
- data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
- data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
- data/vendor/local/share/icons/hicolor/index.theme +1662 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
- data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
- metadata +29 -31
- data/ChangeLog +0 -6902
- data/ext/gtk2/rbgtkmain.c +0 -493
- data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
- 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>GtkPrintOperation</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="Printing.html" title="Printing">
         | 
| 9 9 | 
             
            <link rel="prev" href="Printing.html" title="Printing">
         | 
| 10 10 | 
             
            <link rel="next" href="GtkPrintContext.html" title="GtkPrintContext">
         | 
| 11 | 
            -
            <meta name="generator" content="GTK-Doc V1. | 
| 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="Printing.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="u" href="Printing.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="GtkPrintContext.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="#gtk-High-level-Printing-API.signals" class="shortcut">Signals</a>
         | 
| 39 39 | 
             
            </td></tr>
         | 
| 40 40 | 
             
            </table>
         | 
| 41 | 
            -
            <div class="refentry" | 
| 41 | 
            +
            <div class="refentry">
         | 
| 42 42 | 
             
            <a name="gtk-High-level-Printing-API"></a><div class="titlepage"></div>
         | 
| 43 43 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 44 44 | 
             
            <td valign="top">
         | 
| @@ -47,18 +47,18 @@ | |
| 47 47 | 
             
            </td>
         | 
| 48 48 | 
             
            <td valign="top" align="right"></td>
         | 
| 49 49 | 
             
            </tr></table></div>
         | 
| 50 | 
            -
            <div class="refsynopsisdiv" | 
| 50 | 
            +
            <div class="refsynopsisdiv">
         | 
| 51 51 | 
             
            <a name="gtk-High-level-Printing-API.synopsis"></a><h2>Synopsis</h2>
         | 
| 52 52 | 
             
            <a name="GtkPrintOperation"></a><a name="GtkPrintOperationPreview"></a><pre class="synopsis">
         | 
| 53 53 | 
             
            #include <gtk/gtk.h>
         | 
| 54 54 |  | 
| 55 | 
            -
             | 
| 55 | 
            +
            struct              <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-struct" title="struct GtkPrintOperation">GtkPrintOperation</a>;
         | 
| 56 56 | 
             
            enum                <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintStatus" title="enum GtkPrintStatus">GtkPrintStatus</a>;
         | 
| 57 57 | 
             
            enum                <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationAction" title="enum GtkPrintOperationAction">GtkPrintOperationAction</a>;
         | 
| 58 58 | 
             
            enum                <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationResult" title="enum GtkPrintOperationResult">GtkPrintOperationResult</a>;
         | 
| 59 59 | 
             
            enum                <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintError" title="enum GtkPrintError">GtkPrintError</a>;
         | 
| 60 60 | 
             
            #define             <a class="link" href="gtk-High-level-Printing-API.html#GTK-PRINT-ERROR:CAPS" title="GTK_PRINT_ERROR">GTK_PRINT_ERROR</a>
         | 
| 61 | 
            -
            <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="returnvalue">GtkPrintOperation</span></a> * | 
| 61 | 
            +
            <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="returnvalue">GtkPrintOperation</span></a> *      <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-new" title="gtk_print_operation_new ()">gtk_print_operation_new</a>        (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 62 62 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-allow-async" title="gtk_print_operation_set_allow_async ()">gtk_print_operation_set_allow_async</a> (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 63 63 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> allow_async</code></em>);
         | 
| 64 64 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-get-error" title="gtk_print_operation_get_error ()">gtk_print_operation_get_error</a>       (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -66,12 +66,12 @@ enum                <a class="link" href="gtk-High-level-Printing-API.html#GtkPr | |
| 66 66 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-default-page-setup" title="gtk_print_operation_set_default_page_setup ()">gtk_print_operation_set_default_page_setup</a>
         | 
| 67 67 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 68 68 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a> *default_page_setup</code></em>);
         | 
| 69 | 
            -
            <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="returnvalue">GtkPageSetup</span></a> * | 
| 69 | 
            +
            <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="returnvalue">GtkPageSetup</span></a> *           <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-get-default-page-setup" title="gtk_print_operation_get_default_page_setup ()">gtk_print_operation_get_default_page_setup</a>
         | 
| 70 70 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);
         | 
| 71 71 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-print-settings" title="gtk_print_operation_set_print_settings ()">gtk_print_operation_set_print_settings</a>
         | 
| 72 72 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 73 73 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkPrintSettings.html" title="GtkPrintSettings"><span class="type">GtkPrintSettings</span></a> *print_settings</code></em>);
         | 
| 74 | 
            -
            <a class="link" href="GtkPrintSettings.html" title="GtkPrintSettings"><span class="returnvalue">GtkPrintSettings</span></a> * | 
| 74 | 
            +
            <a class="link" href="GtkPrintSettings.html" title="GtkPrintSettings"><span class="returnvalue">GtkPrintSettings</span></a> *       <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-get-print-settings" title="gtk_print_operation_get_print_settings ()">gtk_print_operation_get_print_settings</a>
         | 
| 75 75 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);
         | 
| 76 76 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-job-name" title="gtk_print_operation_set_job_name ()">gtk_print_operation_set_job_name</a>    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 77 77 | 
             
                                                                     <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> *job_name</code></em>);
         | 
| @@ -86,7 +86,7 @@ enum                <a class="link" href="gtk-High-level-Printing-API.html#GtkPr | |
| 86 86 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 87 87 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> full_page</code></em>);
         | 
| 88 88 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-unit" title="gtk_print_operation_set_unit ()">gtk_print_operation_set_unit</a>        (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 89 | 
            -
                                                                     <em class="parameter"><code><a class="link" href=" | 
| 89 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkPaperSize.html#GtkUnit" title="enum GtkUnit"><span class="type">GtkUnit</span></a> unit</code></em>);
         | 
| 90 90 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-export-filename" title="gtk_print_operation_set_export_filename ()">gtk_print_operation_set_export_filename</a>
         | 
| 91 91 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 92 92 | 
             
                                                                     <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> *filename</code></em>);
         | 
| @@ -109,7 +109,7 @@ enum                <a class="link" href="gtk-High-level-Printing-API.html#GtkPr | |
| 109 109 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-defer-drawing" title="gtk_print_operation_set_defer_drawing ()">gtk_print_operation_set_defer_drawing</a>
         | 
| 110 110 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);
         | 
| 111 111 | 
             
            <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintStatus" title="enum GtkPrintStatus"><span class="returnvalue">GtkPrintStatus</span></a>      <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-get-status" title="gtk_print_operation_get_status ()">gtk_print_operation_get_status</a>      (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);
         | 
| 112 | 
            -
            const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * | 
| 112 | 
            +
            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="gtk-High-level-Printing-API.html#gtk-print-operation-get-status-string" title="gtk_print_operation_get_status_string ()">gtk_print_operation_get_status_string</a>
         | 
| 113 113 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);
         | 
| 114 114 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-is-finished" title="gtk_print_operation_is_finished ()">gtk_print_operation_is_finished</a>     (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);
         | 
| 115 115 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-support-selection" title="gtk_print_operation_set_support_selection ()">gtk_print_operation_set_support_selection</a>
         | 
| @@ -150,7 +150,7 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm | |
| 150 150 | 
             
                                                                     <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_nr</code></em>);
         | 
| 151 151 | 
             
            </pre>
         | 
| 152 152 | 
             
            </div>
         | 
| 153 | 
            -
            <div class="refsect1" | 
| 153 | 
            +
            <div class="refsect1">
         | 
| 154 154 | 
             
            <a name="gtk-High-level-Printing-API.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 155 155 | 
             
            <pre class="synopsis">
         | 
| 156 156 | 
             
              <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
         | 
| @@ -161,25 +161,25 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm | |
| 161 161 | 
             
               +----GtkPrintOperationPreview
         | 
| 162 162 | 
             
            </pre>
         | 
| 163 163 | 
             
            </div>
         | 
| 164 | 
            -
            <div class="refsect1" | 
| 164 | 
            +
            <div class="refsect1">
         | 
| 165 165 | 
             
            <a name="gtk-High-level-Printing-API.prerequisites"></a><h2>Prerequisites</h2>
         | 
| 166 166 | 
             
            <p>
         | 
| 167 167 | 
             
            GtkPrintOperationPreview requires
         | 
| 168 168 | 
             
             <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>.</p>
         | 
| 169 169 | 
             
            </div>
         | 
| 170 | 
            -
            <div class="refsect1" | 
| 170 | 
            +
            <div class="refsect1">
         | 
| 171 171 | 
             
            <a name="gtk-High-level-Printing-API.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
         | 
| 172 172 | 
             
            <p>
         | 
| 173 173 | 
             
            GtkPrintOperation implements
         | 
| 174 174 | 
             
             <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview">GtkPrintOperationPreview</a>.</p>
         | 
| 175 175 | 
             
            </div>
         | 
| 176 | 
            -
            <div class="refsect1" | 
| 176 | 
            +
            <div class="refsect1">
         | 
| 177 177 | 
             
            <a name="gtk-High-level-Printing-API.implementations"></a><h2>Known Implementations</h2>
         | 
| 178 178 | 
             
            <p>
         | 
| 179 179 | 
             
            GtkPrintOperationPreview is implemented by
         | 
| 180 180 | 
             
             <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation">GtkPrintOperation</a>.</p>
         | 
| 181 181 | 
             
            </div>
         | 
| 182 | 
            -
            <div class="refsect1" | 
| 182 | 
            +
            <div class="refsect1">
         | 
| 183 183 | 
             
            <a name="gtk-High-level-Printing-API.properties"></a><h2>Properties</h2>
         | 
| 184 184 | 
             
            <pre class="synopsis">
         | 
| 185 185 | 
             
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation--allow-async" title='The "allow-async" property'>allow-async</a>"              <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
         | 
| @@ -198,29 +198,29 @@ GtkPrintOperationPreview is implemented by | |
| 198 198 | 
             
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation--status-string" title='The "status-string" property'>status-string</a>"            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read
         | 
| 199 199 | 
             
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation--support-selection" title='The "support-selection" property'>support-selection</a>"        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
         | 
| 200 200 | 
             
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation--track-print-status" title='The "track-print-status" property'>track-print-status</a>"       <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
         | 
| 201 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation--unit" title='The "unit" property'>unit</a>"                     <a class="link" href=" | 
| 201 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation--unit" title='The "unit" property'>unit</a>"                     <a class="link" href="GtkPaperSize.html#GtkUnit" title="enum GtkUnit"><span class="type">GtkUnit</span></a>               : Read / Write
         | 
| 202 202 | 
             
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation--use-full-page" title='The "use-full-page" property'>use-full-page</a>"            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write
         | 
| 203 203 | 
             
            </pre>
         | 
| 204 204 | 
             
            </div>
         | 
| 205 | 
            -
            <div class="refsect1" | 
| 205 | 
            +
            <div class="refsect1">
         | 
| 206 206 | 
             
            <a name="gtk-High-level-Printing-API.signals"></a><h2>Signals</h2>
         | 
| 207 207 | 
             
            <pre class="synopsis">
         | 
| 208 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-begin-print" title='The "begin-print" signal'>begin-print</a>"                                    : Run Last
         | 
| 209 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-create-custom-widget" title='The "create-custom-widget" signal'>create-custom-widget</a>"                           : Run Last
         | 
| 210 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-custom-widget-apply" title='The "custom-widget-apply" signal'>custom-widget-apply</a>"                            : Run Last
         | 
| 211 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-done" title='The "done" signal'>done</a>"                                           : Run Last
         | 
| 212 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-draw-page" title='The "draw-page" signal'>draw-page</a>"                                      : Run Last
         | 
| 213 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-end-print" title='The "end-print" signal'>end-print</a>"                                      : Run Last
         | 
| 214 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-paginate" title='The "paginate" signal'>paginate</a>"                                       : Run Last
         | 
| 215 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-preview" title='The "preview" signal'>preview</a>"                                        : Run Last
         | 
| 216 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-request-page-setup" title='The "request-page-setup" signal'>request-page-setup</a>"                             : Run Last
         | 
| 217 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-status-changed" title='The "status-changed" signal'>status-changed</a>"                                 : Run Last
         | 
| 218 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-update-custom-widget" title='The "update-custom-widget" signal'>update-custom-widget</a>"                           : Run Last
         | 
| 219 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview-got-page-size" title='The "got-page-size" signal'>got-page-size</a>"                                  : Run Last
         | 
| 220 | 
            -
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview-ready" title='The "ready" signal'>ready</a>"                                          : Run Last
         | 
| 208 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-begin-print" title='The "begin-print" signal'>begin-print</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>
         | 
| 209 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-create-custom-widget" title='The "create-custom-widget" signal'>create-custom-widget</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>
         | 
| 210 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-custom-widget-apply" title='The "custom-widget-apply" signal'>custom-widget-apply</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>
         | 
| 211 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-done" title='The "done" signal'>done</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>
         | 
| 212 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-draw-page" title='The "draw-page" signal'>draw-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>
         | 
| 213 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-end-print" title='The "end-print" signal'>end-print</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>
         | 
| 214 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-paginate" title='The "paginate" signal'>paginate</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>
         | 
| 215 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-preview" title='The "preview" signal'>preview</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>
         | 
| 216 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-request-page-setup" title='The "request-page-setup" signal'>request-page-setup</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>
         | 
| 217 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-status-changed" title='The "status-changed" signal'>status-changed</a>"                                 : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
         | 
| 218 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-update-custom-widget" title='The "update-custom-widget" signal'>update-custom-widget</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>
         | 
| 219 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview-got-page-size" title='The "got-page-size" signal'>got-page-size</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>
         | 
| 220 | 
            +
              "<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview-ready" title='The "ready" signal'>ready</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>
         | 
| 221 221 | 
             
            </pre>
         | 
| 222 222 | 
             
            </div>
         | 
| 223 | 
            -
            <div class="refsect1" | 
| 223 | 
            +
            <div class="refsect1">
         | 
| 224 224 | 
             
            <a name="gtk-High-level-Printing-API.description"></a><h2>Description</h2>
         | 
| 225 225 | 
             
            <p>
         | 
| 226 226 | 
             
            GtkPrintOperation is the high-level, portable printing API. It looks
         | 
| @@ -245,7 +245,7 @@ When the user finished the dialog various signals will be emitted on the | |
| 245 245 | 
             
            to catch and render the page on the provided <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> using Cairo.
         | 
| 246 246 | 
             
            </p>
         | 
| 247 247 | 
             
            <div class="example">
         | 
| 248 | 
            -
            <a name=" | 
| 248 | 
            +
            <a name="id1294612"></a><p class="title"><b>Example 49. The high-level printing API</b></p>
         | 
| 249 249 | 
             
            <div class="example-contents">
         | 
| 250 250 | 
             
              <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
         | 
| 251 251 | 
             
                <tbody>
         | 
| @@ -311,16 +311,16 @@ when implementing a print preview. | |
| 311 311 | 
             
            Printing support was added in GTK+ 2.10.
         | 
| 312 312 | 
             
            </p>
         | 
| 313 313 | 
             
            </div>
         | 
| 314 | 
            -
            <div class="refsect1" | 
| 314 | 
            +
            <div class="refsect1">
         | 
| 315 315 | 
             
            <a name="gtk-High-level-Printing-API.details"></a><h2>Details</h2>
         | 
| 316 | 
            -
            <div class="refsect2" | 
| 317 | 
            -
            <a name="GtkPrintOperation-struct"></a><h3>GtkPrintOperation</h3>
         | 
| 318 | 
            -
            <pre class="programlisting"> | 
| 316 | 
            +
            <div class="refsect2">
         | 
| 317 | 
            +
            <a name="GtkPrintOperation-struct"></a><h3>struct GtkPrintOperation</h3>
         | 
| 318 | 
            +
            <pre class="programlisting">struct GtkPrintOperation;</pre>
         | 
| 319 319 | 
             
            <p>
         | 
| 320 320 | 
             
            </p>
         | 
| 321 321 | 
             
            </div>
         | 
| 322 322 | 
             
            <hr>
         | 
| 323 | 
            -
            <div class="refsect2" | 
| 323 | 
            +
            <div class="refsect2">
         | 
| 324 324 | 
             
            <a name="GtkPrintStatus"></a><h3>enum GtkPrintStatus</h3>
         | 
| 325 325 | 
             
            <pre class="programlisting">typedef enum {
         | 
| 326 326 | 
             
              GTK_PRINT_STATUS_INITIAL,
         | 
| @@ -396,7 +396,7 @@ of a running print operation. | |
| 396 396 | 
             
            </table></div>
         | 
| 397 397 | 
             
            </div>
         | 
| 398 398 | 
             
            <hr>
         | 
| 399 | 
            -
            <div class="refsect2" | 
| 399 | 
            +
            <div class="refsect2">
         | 
| 400 400 | 
             
            <a name="GtkPrintOperationAction"></a><h3>enum GtkPrintOperationAction</h3>
         | 
| 401 401 | 
             
            <pre class="programlisting">typedef enum {
         | 
| 402 402 | 
             
              GTK_PRINT_OPERATION_ACTION_PRINT_DIALOG,
         | 
| @@ -438,7 +438,7 @@ determines what action the print operation should perform. | |
| 438 438 | 
             
            </table></div>
         | 
| 439 439 | 
             
            </div>
         | 
| 440 440 | 
             
            <hr>
         | 
| 441 | 
            -
            <div class="refsect2" | 
| 441 | 
            +
            <div class="refsect2">
         | 
| 442 442 | 
             
            <a name="GtkPrintOperationResult"></a><h3>enum GtkPrintOperationResult</h3>
         | 
| 443 443 | 
             
            <pre class="programlisting">typedef enum {
         | 
| 444 444 | 
             
              GTK_PRINT_OPERATION_RESULT_ERROR,
         | 
| @@ -479,7 +479,7 @@ A value of this type is returned by <a class="link" href="gtk-High-level-Printin | |
| 479 479 | 
             
            </table></div>
         | 
| 480 480 | 
             
            </div>
         | 
| 481 481 | 
             
            <hr>
         | 
| 482 | 
            -
            <div class="refsect2" | 
| 482 | 
            +
            <div class="refsect2">
         | 
| 483 483 | 
             
            <a name="GtkPrintError"></a><h3>enum GtkPrintError</h3>
         | 
| 484 484 | 
             
            <pre class="programlisting">typedef enum
         | 
| 485 485 | 
             
            {
         | 
| @@ -521,7 +521,7 @@ using the GTK+ printing support. | |
| 521 521 | 
             
            </table></div>
         | 
| 522 522 | 
             
            </div>
         | 
| 523 523 | 
             
            <hr>
         | 
| 524 | 
            -
            <div class="refsect2" | 
| 524 | 
            +
            <div class="refsect2">
         | 
| 525 525 | 
             
            <a name="GTK-PRINT-ERROR:CAPS"></a><h3>GTK_PRINT_ERROR</h3>
         | 
| 526 526 | 
             
            <pre class="programlisting">#define GTK_PRINT_ERROR gtk_print_error_quark ()
         | 
| 527 527 | 
             
            </pre>
         | 
| @@ -530,9 +530,9 @@ The <a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuar | |
| 530 530 | 
             
            </p>
         | 
| 531 531 | 
             
            </div>
         | 
| 532 532 | 
             
            <hr>
         | 
| 533 | 
            -
            <div class="refsect2" | 
| 533 | 
            +
            <div class="refsect2">
         | 
| 534 534 | 
             
            <a name="gtk-print-operation-new"></a><h3>gtk_print_operation_new ()</h3>
         | 
| 535 | 
            -
            <pre class="programlisting"><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="returnvalue">GtkPrintOperation</span></a> * | 
| 535 | 
            +
            <pre class="programlisting"><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="returnvalue">GtkPrintOperation</span></a> *      gtk_print_operation_new        (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 536 536 | 
             
            <p>
         | 
| 537 537 | 
             
            Creates a new <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a>.
         | 
| 538 538 | 
             
            </p>
         | 
| @@ -540,15 +540,14 @@ Creates a new <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOpe | |
| 540 540 | 
             
            <col align="left" valign="top">
         | 
| 541 541 | 
             
            <tbody><tr>
         | 
| 542 542 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 543 | 
            -
            <td> | 
| 544 | 
            -
             | 
| 543 | 
            +
            <td>a new <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a>
         | 
| 545 544 | 
             
            </td>
         | 
| 546 545 | 
             
            </tr></tbody>
         | 
| 547 546 | 
             
            </table></div>
         | 
| 548 547 | 
             
            <p class="since">Since 2.10</p>
         | 
| 549 548 | 
             
            </div>
         | 
| 550 549 | 
             
            <hr>
         | 
| 551 | 
            -
            <div class="refsect2" | 
| 550 | 
            +
            <div class="refsect2">
         | 
| 552 551 | 
             
            <a name="gtk-print-operation-set-allow-async"></a><h3>gtk_print_operation_set_allow_async ()</h3>
         | 
| 553 552 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_allow_async (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 554 553 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> allow_async</code></em>);</pre>
         | 
| @@ -568,15 +567,14 @@ some platforms may not allow asynchronous operation. | |
| 568 567 | 
             
            <tr>
         | 
| 569 568 | 
             
            <td><p><span class="term"><em class="parameter"><code>allow_async</code></em> :</span></p></td>
         | 
| 570 569 | 
             
            <td>
         | 
| 571 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to allow asynchronous operation
         | 
| 572 | 
            -
            </td>
         | 
| 570 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to allow asynchronous operation</td>
         | 
| 573 571 | 
             
            </tr>
         | 
| 574 572 | 
             
            </tbody>
         | 
| 575 573 | 
             
            </table></div>
         | 
| 576 574 | 
             
            <p class="since">Since 2.10</p>
         | 
| 577 575 | 
             
            </div>
         | 
| 578 576 | 
             
            <hr>
         | 
| 579 | 
            -
            <div class="refsect2" | 
| 577 | 
            +
            <div class="refsect2">
         | 
| 580 578 | 
             
            <a name="gtk-print-operation-get-error"></a><h3>gtk_print_operation_get_error ()</h3>
         | 
| 581 579 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_get_error       (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 582 580 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
         | 
| @@ -596,15 +594,14 @@ handler. The returned <a href="http://library.gnome.org/devel/glib/unstable/glib | |
| 596 594 | 
             
            </tr>
         | 
| 597 595 | 
             
            <tr>
         | 
| 598 596 | 
             
            <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
         | 
| 599 | 
            -
            <td>return location for the error
         | 
| 600 | 
            -
            </td>
         | 
| 597 | 
            +
            <td>return location for the error</td>
         | 
| 601 598 | 
             
            </tr>
         | 
| 602 599 | 
             
            </tbody>
         | 
| 603 600 | 
             
            </table></div>
         | 
| 604 601 | 
             
            <p class="since">Since 2.10</p>
         | 
| 605 602 | 
             
            </div>
         | 
| 606 603 | 
             
            <hr>
         | 
| 607 | 
            -
            <div class="refsect2" | 
| 604 | 
            +
            <div class="refsect2">
         | 
| 608 605 | 
             
            <a name="gtk-print-operation-set-default-page-setup"></a><h3>gtk_print_operation_set_default_page_setup ()</h3>
         | 
| 609 606 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_default_page_setup
         | 
| 610 607 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -627,7 +624,7 @@ to the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation- | |
| 627 624 | 
             
            </tr>
         | 
| 628 625 | 
             
            <tr>
         | 
| 629 626 | 
             
            <td><p><span class="term"><em class="parameter"><code>default_page_setup</code></em> :</span></p></td>
         | 
| 630 | 
            -
            <td> | 
| 627 | 
            +
            <td>a <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</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>
         | 
| 631 628 | 
             
            </td>
         | 
| 632 629 | 
             
            </tr>
         | 
| 633 630 | 
             
            </tbody>
         | 
| @@ -635,12 +632,12 @@ to the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation- | |
| 635 632 | 
             
            <p class="since">Since 2.10</p>
         | 
| 636 633 | 
             
            </div>
         | 
| 637 634 | 
             
            <hr>
         | 
| 638 | 
            -
            <div class="refsect2" | 
| 635 | 
            +
            <div class="refsect2">
         | 
| 639 636 | 
             
            <a name="gtk-print-operation-get-default-page-setup"></a><h3>gtk_print_operation_get_default_page_setup ()</h3>
         | 
| 640 | 
            -
            <pre class="programlisting"><a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="returnvalue">GtkPageSetup</span></a> * | 
| 637 | 
            +
            <pre class="programlisting"><a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="returnvalue">GtkPageSetup</span></a> *           gtk_print_operation_get_default_page_setup
         | 
| 641 638 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| 642 639 | 
             
            <p>
         | 
| 643 | 
            -
            Returns the default page setup, see | 
| 640 | 
            +
            Returns the default page setup, see
         | 
| 644 641 | 
             
            <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-default-page-setup" title="gtk_print_operation_set_default_page_setup ()"><code class="function">gtk_print_operation_set_default_page_setup()</code></a>.
         | 
| 645 642 | 
             
            </p>
         | 
| 646 643 | 
             
            <div class="variablelist"><table border="0">
         | 
| @@ -653,8 +650,7 @@ Returns the default page setup, see | |
| 653 650 | 
             
            </tr>
         | 
| 654 651 | 
             
            <tr>
         | 
| 655 652 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 656 | 
            -
            <td> | 
| 657 | 
            -
             | 
| 653 | 
            +
            <td>the default page setup. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 658 654 | 
             
            </td>
         | 
| 659 655 | 
             
            </tr>
         | 
| 660 656 | 
             
            </tbody>
         | 
| @@ -662,7 +658,7 @@ Returns the default page setup, see | |
| 662 658 | 
             
            <p class="since">Since 2.10</p>
         | 
| 663 659 | 
             
            </div>
         | 
| 664 660 | 
             
            <hr>
         | 
| 665 | 
            -
            <div class="refsect2" | 
| 661 | 
            +
            <div class="refsect2">
         | 
| 666 662 | 
             
            <a name="gtk-print-operation-set-print-settings"></a><h3>gtk_print_operation_set_print_settings ()</h3>
         | 
| 667 663 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_print_settings
         | 
| 668 664 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -682,7 +678,8 @@ see <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-r | |
| 682 678 | 
             
            </tr>
         | 
| 683 679 | 
             
            <tr>
         | 
| 684 680 | 
             
            <td><p><span class="term"><em class="parameter"><code>print_settings</code></em> :</span></p></td>
         | 
| 685 | 
            -
            <td> | 
| 681 | 
            +
            <td>
         | 
| 682 | 
            +
            <a class="link" href="GtkPrintSettings.html" title="GtkPrintSettings"><span class="type">GtkPrintSettings</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 686 683 | 
             
            </td>
         | 
| 687 684 | 
             
            </tr>
         | 
| 688 685 | 
             
            </tbody>
         | 
| @@ -690,16 +687,16 @@ see <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-r | |
| 690 687 | 
             
            <p class="since">Since 2.10</p>
         | 
| 691 688 | 
             
            </div>
         | 
| 692 689 | 
             
            <hr>
         | 
| 693 | 
            -
            <div class="refsect2" | 
| 690 | 
            +
            <div class="refsect2">
         | 
| 694 691 | 
             
            <a name="gtk-print-operation-get-print-settings"></a><h3>gtk_print_operation_get_print_settings ()</h3>
         | 
| 695 | 
            -
            <pre class="programlisting"><a class="link" href="GtkPrintSettings.html" title="GtkPrintSettings"><span class="returnvalue">GtkPrintSettings</span></a> * | 
| 692 | 
            +
            <pre class="programlisting"><a class="link" href="GtkPrintSettings.html" title="GtkPrintSettings"><span class="returnvalue">GtkPrintSettings</span></a> *       gtk_print_operation_get_print_settings
         | 
| 696 693 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| 697 694 | 
             
            <p>
         | 
| 698 | 
            -
            Returns the current print settings. | 
| 695 | 
            +
            Returns the current print settings.
         | 
| 699 696 | 
             
            </p>
         | 
| 700 697 | 
             
            <p>
         | 
| 701 | 
            -
            Note that the return value is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> until either | 
| 702 | 
            -
            <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-print-settings" title="gtk_print_operation_set_print_settings ()"><code class="function">gtk_print_operation_set_print_settings()</code></a> or | 
| 698 | 
            +
            Note that the return value is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> until either
         | 
| 699 | 
            +
            <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-set-print-settings" title="gtk_print_operation_set_print_settings ()"><code class="function">gtk_print_operation_set_print_settings()</code></a> or
         | 
| 703 700 | 
             
            <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-run" title="gtk_print_operation_run ()"><code class="function">gtk_print_operation_run()</code></a> have been called.
         | 
| 704 701 | 
             
            </p>
         | 
| 705 702 | 
             
            <div class="variablelist"><table border="0">
         | 
| @@ -712,8 +709,7 @@ Note that the return value is <a href="http://library.gnome.org/devel/glib/unsta | |
| 712 709 | 
             
            </tr>
         | 
| 713 710 | 
             
            <tr>
         | 
| 714 711 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 715 | 
            -
            <td> | 
| 716 | 
            -
             | 
| 712 | 
            +
            <td>the current print settings of <em class="parameter"><code>op</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 717 713 | 
             
            </td>
         | 
| 718 714 | 
             
            </tr>
         | 
| 719 715 | 
             
            </tbody>
         | 
| @@ -721,7 +717,7 @@ Note that the return value is <a href="http://library.gnome.org/devel/glib/unsta | |
| 721 717 | 
             
            <p class="since">Since 2.10</p>
         | 
| 722 718 | 
             
            </div>
         | 
| 723 719 | 
             
            <hr>
         | 
| 724 | 
            -
            <div class="refsect2" | 
| 720 | 
            +
            <div class="refsect2">
         | 
| 725 721 | 
             
            <a name="gtk-print-operation-set-job-name"></a><h3>gtk_print_operation_set_job_name ()</h3>
         | 
| 726 722 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_job_name    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 727 723 | 
             
                                                                     <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> *job_name</code></em>);</pre>
         | 
| @@ -743,15 +739,14 @@ numbering successive print jobs. | |
| 743 739 | 
             
            </tr>
         | 
| 744 740 | 
             
            <tr>
         | 
| 745 741 | 
             
            <td><p><span class="term"><em class="parameter"><code>job_name</code></em> :</span></p></td>
         | 
| 746 | 
            -
            <td>a string that identifies the print job
         | 
| 747 | 
            -
            </td>
         | 
| 742 | 
            +
            <td>a string that identifies the print job</td>
         | 
| 748 743 | 
             
            </tr>
         | 
| 749 744 | 
             
            </tbody>
         | 
| 750 745 | 
             
            </table></div>
         | 
| 751 746 | 
             
            <p class="since">Since 2.10</p>
         | 
| 752 747 | 
             
            </div>
         | 
| 753 748 | 
             
            <hr>
         | 
| 754 | 
            -
            <div class="refsect2" | 
| 749 | 
            +
            <div class="refsect2">
         | 
| 755 750 | 
             
            <a name="gtk-print-operation-set-n-pages"></a><h3>gtk_print_operation_set_n_pages ()</h3>
         | 
| 756 751 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_n_pages     (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 757 752 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_pages</code></em>);</pre>
         | 
| @@ -780,15 +775,14 @@ will be for page <em class="parameter"><code>n_pages</code></em> - 1. | |
| 780 775 | 
             
            </tr>
         | 
| 781 776 | 
             
            <tr>
         | 
| 782 777 | 
             
            <td><p><span class="term"><em class="parameter"><code>n_pages</code></em> :</span></p></td>
         | 
| 783 | 
            -
            <td>the number of pages
         | 
| 784 | 
            -
            </td>
         | 
| 778 | 
            +
            <td>the number of pages</td>
         | 
| 785 779 | 
             
            </tr>
         | 
| 786 780 | 
             
            </tbody>
         | 
| 787 781 | 
             
            </table></div>
         | 
| 788 782 | 
             
            <p class="since">Since 2.10</p>
         | 
| 789 783 | 
             
            </div>
         | 
| 790 784 | 
             
            <hr>
         | 
| 791 | 
            -
            <div class="refsect2" | 
| 785 | 
            +
            <div class="refsect2">
         | 
| 792 786 | 
             
            <a name="gtk-print-operation-get-n-pages-to-print"></a><h3>gtk_print_operation_get_n_pages_to_print ()</h3>
         | 
| 793 787 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                gtk_print_operation_get_n_pages_to_print
         | 
| 794 788 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| @@ -814,16 +808,14 @@ This is typically used to track the progress of print operation. | |
| 814 808 | 
             
            </tr>
         | 
| 815 809 | 
             
            <tr>
         | 
| 816 810 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 817 | 
            -
            <td> | 
| 818 | 
            -
             | 
| 819 | 
            -
            </td>
         | 
| 811 | 
            +
            <td>the number of pages that will be printed</td>
         | 
| 820 812 | 
             
            </tr>
         | 
| 821 813 | 
             
            </tbody>
         | 
| 822 814 | 
             
            </table></div>
         | 
| 823 815 | 
             
            <p class="since">Since 2.18</p>
         | 
| 824 816 | 
             
            </div>
         | 
| 825 817 | 
             
            <hr>
         | 
| 826 | 
            -
            <div class="refsect2" | 
| 818 | 
            +
            <div class="refsect2">
         | 
| 827 819 | 
             
            <a name="gtk-print-operation-set-current-page"></a><h3>gtk_print_operation_set_current_page ()</h3>
         | 
| 828 820 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_current_page
         | 
| 829 821 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -848,15 +840,14 @@ Note that this only makes sense for pre-paginated documents. | |
| 848 840 | 
             
            </tr>
         | 
| 849 841 | 
             
            <tr>
         | 
| 850 842 | 
             
            <td><p><span class="term"><em class="parameter"><code>current_page</code></em> :</span></p></td>
         | 
| 851 | 
            -
            <td>the current page, 0-based
         | 
| 852 | 
            -
            </td>
         | 
| 843 | 
            +
            <td>the current page, 0-based</td>
         | 
| 853 844 | 
             
            </tr>
         | 
| 854 845 | 
             
            </tbody>
         | 
| 855 846 | 
             
            </table></div>
         | 
| 856 847 | 
             
            <p class="since">Since 2.10</p>
         | 
| 857 848 | 
             
            </div>
         | 
| 858 849 | 
             
            <hr>
         | 
| 859 | 
            -
            <div class="refsect2" | 
| 850 | 
            +
            <div class="refsect2">
         | 
| 860 851 | 
             
            <a name="gtk-print-operation-set-use-full-page"></a><h3>gtk_print_operation_set_use_full_page ()</h3>
         | 
| 861 852 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_use_full_page
         | 
| 862 853 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -880,18 +871,17 @@ imageable area (i.e. inside the margins). | |
| 880 871 | 
             
            <tr>
         | 
| 881 872 | 
             
            <td><p><span class="term"><em class="parameter"><code>full_page</code></em> :</span></p></td>
         | 
| 882 873 | 
             
            <td>
         | 
| 883 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to set up the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the full page
         | 
| 884 | 
            -
            </td>
         | 
| 874 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to set up the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the full page</td>
         | 
| 885 875 | 
             
            </tr>
         | 
| 886 876 | 
             
            </tbody>
         | 
| 887 877 | 
             
            </table></div>
         | 
| 888 878 | 
             
            <p class="since">Since 2.10</p>
         | 
| 889 879 | 
             
            </div>
         | 
| 890 880 | 
             
            <hr>
         | 
| 891 | 
            -
            <div class="refsect2" | 
| 881 | 
            +
            <div class="refsect2">
         | 
| 892 882 | 
             
            <a name="gtk-print-operation-set-unit"></a><h3>gtk_print_operation_set_unit ()</h3>
         | 
| 893 883 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_unit        (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 894 | 
            -
                                                                     <em class="parameter"><code><a class="link" href=" | 
| 884 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="GtkPaperSize.html#GtkUnit" title="enum GtkUnit"><span class="type">GtkUnit</span></a> unit</code></em>);</pre>
         | 
| 895 885 | 
             
            <p>
         | 
| 896 886 | 
             
            Sets up the transformation for the cairo context obtained from
         | 
| 897 887 | 
             
            <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> in such a way that distances are measured in 
         | 
| @@ -907,15 +897,14 @@ units of <em class="parameter"><code>unit</code></em>. | |
| 907 897 | 
             
            </tr>
         | 
| 908 898 | 
             
            <tr>
         | 
| 909 899 | 
             
            <td><p><span class="term"><em class="parameter"><code>unit</code></em> :</span></p></td>
         | 
| 910 | 
            -
            <td>the unit to use
         | 
| 911 | 
            -
            </td>
         | 
| 900 | 
            +
            <td>the unit to use</td>
         | 
| 912 901 | 
             
            </tr>
         | 
| 913 902 | 
             
            </tbody>
         | 
| 914 903 | 
             
            </table></div>
         | 
| 915 904 | 
             
            <p class="since">Since 2.10</p>
         | 
| 916 905 | 
             
            </div>
         | 
| 917 906 | 
             
            <hr>
         | 
| 918 | 
            -
            <div class="refsect2" | 
| 907 | 
            +
            <div class="refsect2">
         | 
| 919 908 | 
             
            <a name="gtk-print-operation-set-export-filename"></a><h3>gtk_print_operation_set_export_filename ()</h3>
         | 
| 920 909 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_export_filename
         | 
| 921 910 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -941,15 +930,14 @@ of printers in the print dialog. | |
| 941 930 | 
             
            </tr>
         | 
| 942 931 | 
             
            <tr>
         | 
| 943 932 | 
             
            <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
         | 
| 944 | 
            -
            <td>the filename for the exported file
         | 
| 945 | 
            -
            </td>
         | 
| 933 | 
            +
            <td>the filename for the exported file</td>
         | 
| 946 934 | 
             
            </tr>
         | 
| 947 935 | 
             
            </tbody>
         | 
| 948 936 | 
             
            </table></div>
         | 
| 949 937 | 
             
            <p class="since">Since 2.10</p>
         | 
| 950 938 | 
             
            </div>
         | 
| 951 939 | 
             
            <hr>
         | 
| 952 | 
            -
            <div class="refsect2" | 
| 940 | 
            +
            <div class="refsect2">
         | 
| 953 941 | 
             
            <a name="gtk-print-operation-set-show-progress"></a><h3>gtk_print_operation_set_show_progress ()</h3>
         | 
| 954 942 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_show_progress
         | 
| 955 943 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -969,15 +957,14 @@ progress dialog during the print operation. | |
| 969 957 | 
             
            <tr>
         | 
| 970 958 | 
             
            <td><p><span class="term"><em class="parameter"><code>show_progress</code></em> :</span></p></td>
         | 
| 971 959 | 
             
            <td>
         | 
| 972 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to show a progress dialog
         | 
| 973 | 
            -
            </td>
         | 
| 960 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to show a progress dialog</td>
         | 
| 974 961 | 
             
            </tr>
         | 
| 975 962 | 
             
            </tbody>
         | 
| 976 963 | 
             
            </table></div>
         | 
| 977 964 | 
             
            <p class="since">Since 2.10</p>
         | 
| 978 965 | 
             
            </div>
         | 
| 979 966 | 
             
            <hr>
         | 
| 980 | 
            -
            <div class="refsect2" | 
| 967 | 
            +
            <div class="refsect2">
         | 
| 981 968 | 
             
            <a name="gtk-print-operation-set-track-print-status"></a><h3>gtk_print_operation_set_track_print_status ()</h3>
         | 
| 982 969 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_track_print_status
         | 
| 983 970 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -1003,15 +990,14 @@ not be enabled unless needed. | |
| 1003 990 | 
             
            <tr>
         | 
| 1004 991 | 
             
            <td><p><span class="term"><em class="parameter"><code>track_status</code></em> :</span></p></td>
         | 
| 1005 992 | 
             
            <td>
         | 
| 1006 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to track status after printing
         | 
| 1007 | 
            -
            </td>
         | 
| 993 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to track status after printing</td>
         | 
| 1008 994 | 
             
            </tr>
         | 
| 1009 995 | 
             
            </tbody>
         | 
| 1010 996 | 
             
            </table></div>
         | 
| 1011 997 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1012 998 | 
             
            </div>
         | 
| 1013 999 | 
             
            <hr>
         | 
| 1014 | 
            -
            <div class="refsect2" | 
| 1000 | 
            +
            <div class="refsect2">
         | 
| 1015 1001 | 
             
            <a name="gtk-print-operation-set-custom-tab-label"></a><h3>gtk_print_operation_set_custom_tab_label ()</h3>
         | 
| 1016 1002 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_custom_tab_label
         | 
| 1017 1003 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -1029,7 +1015,7 @@ Sets the label for the tab holding custom widgets. | |
| 1029 1015 | 
             
            </tr>
         | 
| 1030 1016 | 
             
            <tr>
         | 
| 1031 1017 | 
             
            <td><p><span class="term"><em class="parameter"><code>label</code></em> :</span></p></td>
         | 
| 1032 | 
            -
            <td> | 
| 1018 | 
            +
            <td>the label to use, 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. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1033 1019 | 
             
            </td>
         | 
| 1034 1020 | 
             
            </tr>
         | 
| 1035 1021 | 
             
            </tbody>
         | 
| @@ -1037,7 +1023,7 @@ Sets the label for the tab holding custom widgets. | |
| 1037 1023 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1038 1024 | 
             
            </div>
         | 
| 1039 1025 | 
             
            <hr>
         | 
| 1040 | 
            -
            <div class="refsect2" | 
| 1026 | 
            +
            <div class="refsect2">
         | 
| 1041 1027 | 
             
            <a name="gtk-print-operation-run"></a><h3>gtk_print_operation_run ()</h3>
         | 
| 1042 1028 | 
             
            <pre class="programlisting"><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationResult" title="enum GtkPrintOperationResult"><span class="returnvalue">GtkPrintOperationResult</span></a>  gtk_print_operation_run        (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| 1043 1029 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationAction" title="enum GtkPrintOperationAction"><span class="type">GtkPrintOperationAction</span></a> action</code></em>,
         | 
| @@ -1157,38 +1143,35 @@ given <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"> | |
| 1157 1143 | 
             
            </tr>
         | 
| 1158 1144 | 
             
            <tr>
         | 
| 1159 1145 | 
             
            <td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
         | 
| 1160 | 
            -
            <td>the action to start
         | 
| 1161 | 
            -
            </td>
         | 
| 1146 | 
            +
            <td>the action to start</td>
         | 
| 1162 1147 | 
             
            </tr>
         | 
| 1163 1148 | 
             
            <tr>
         | 
| 1164 1149 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 1165 | 
            -
            <td> | 
| 1150 | 
            +
            <td>Transient parent of the dialog. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1166 1151 | 
             
            </td>
         | 
| 1167 1152 | 
             
            </tr>
         | 
| 1168 1153 | 
             
            <tr>
         | 
| 1169 1154 | 
             
            <td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
         | 
| 1170 | 
            -
            <td> | 
| 1155 | 
            +
            <td>Return location for errors, 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>
         | 
| 1171 1156 | 
             
            </td>
         | 
| 1172 1157 | 
             
            </tr>
         | 
| 1173 1158 | 
             
            <tr>
         | 
| 1174 1159 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1175 | 
            -
            <td> | 
| 1176 | 
            -
             | 
| 1177 | 
            -
             | 
| 1178 | 
            -
             | 
| 1179 | 
            -
             | 
| 1180 | 
            -
             | 
| 1181 | 
            -
             | 
| 1182 | 
            -
             | 
| 1183 | 
            -
             | 
| 1184 | 
            -
            </td>
         | 
| 1160 | 
            +
            <td>the result of the print operation. A return value of
         | 
| 1161 | 
            +
            <a class="link" href="gtk-High-level-Printing-API.html#GTK-PRINT-OPERATION-RESULT-APPLY:CAPS"><code class="literal">GTK_PRINT_OPERATION_RESULT_APPLY</code></a> indicates that the printing was
         | 
| 1162 | 
            +
            completed successfully. In this case, it is a good idea to obtain
         | 
| 1163 | 
            +
            the used print settings with <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operation-get-print-settings" title="gtk_print_operation_get_print_settings ()"><code class="function">gtk_print_operation_get_print_settings()</code></a>
         | 
| 1164 | 
            +
            and store them for reuse with the next print operation. A value of
         | 
| 1165 | 
            +
            <a class="link" href="gtk-High-level-Printing-API.html#GTK-PRINT-OPERATION-RESULT-IN-PROGRESS:CAPS"><code class="literal">GTK_PRINT_OPERATION_RESULT_IN_PROGRESS</code></a> means the operation is running
         | 
| 1166 | 
            +
            asynchronously, and will emit the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-done" title='The "done" signal'><span class="type">"done"</span></a> signal when
         | 
| 1167 | 
            +
            done.</td>
         | 
| 1185 1168 | 
             
            </tr>
         | 
| 1186 1169 | 
             
            </tbody>
         | 
| 1187 1170 | 
             
            </table></div>
         | 
| 1188 1171 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1189 1172 | 
             
            </div>
         | 
| 1190 1173 | 
             
            <hr>
         | 
| 1191 | 
            -
            <div class="refsect2" | 
| 1174 | 
            +
            <div class="refsect2">
         | 
| 1192 1175 | 
             
            <a name="gtk-print-operation-cancel"></a><h3>gtk_print_operation_cancel ()</h3>
         | 
| 1193 1176 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_cancel          (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| 1194 1177 | 
             
            <p>
         | 
| @@ -1209,7 +1192,7 @@ operation. | |
| 1209 1192 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1210 1193 | 
             
            </div>
         | 
| 1211 1194 | 
             
            <hr>
         | 
| 1212 | 
            -
            <div class="refsect2" | 
| 1195 | 
            +
            <div class="refsect2">
         | 
| 1213 1196 | 
             
            <a name="gtk-print-operation-draw-page-finish"></a><h3>gtk_print_operation_draw_page_finish ()</h3>
         | 
| 1214 1197 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_draw_page_finish
         | 
| 1215 1198 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| @@ -1234,7 +1217,7 @@ itself. | |
| 1234 1217 | 
             
            <p class="since">Since 2.16</p>
         | 
| 1235 1218 | 
             
            </div>
         | 
| 1236 1219 | 
             
            <hr>
         | 
| 1237 | 
            -
            <div class="refsect2" | 
| 1220 | 
            +
            <div class="refsect2">
         | 
| 1238 1221 | 
             
            <a name="gtk-print-operation-set-defer-drawing"></a><h3>gtk_print_operation_set_defer_drawing ()</h3>
         | 
| 1239 1222 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_defer_drawing
         | 
| 1240 1223 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| @@ -1257,7 +1240,7 @@ This function must be called in the callback of "draw-page" signal. | |
| 1257 1240 | 
             
            <p class="since">Since 2.16</p>
         | 
| 1258 1241 | 
             
            </div>
         | 
| 1259 1242 | 
             
            <hr>
         | 
| 1260 | 
            -
            <div class="refsect2" | 
| 1243 | 
            +
            <div class="refsect2">
         | 
| 1261 1244 | 
             
            <a name="gtk-print-operation-get-status"></a><h3>gtk_print_operation_get_status ()</h3>
         | 
| 1262 1245 | 
             
            <pre class="programlisting"><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintStatus" title="enum GtkPrintStatus"><span class="returnvalue">GtkPrintStatus</span></a>      gtk_print_operation_get_status      (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| 1263 1246 | 
             
            <p>
         | 
| @@ -1274,18 +1257,16 @@ Also see <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-operat | |
| 1274 1257 | 
             
            </tr>
         | 
| 1275 1258 | 
             
            <tr>
         | 
| 1276 1259 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1277 | 
            -
            <td> | 
| 1278 | 
            -
             | 
| 1279 | 
            -
            </td>
         | 
| 1260 | 
            +
            <td>the status of the print operation</td>
         | 
| 1280 1261 | 
             
            </tr>
         | 
| 1281 1262 | 
             
            </tbody>
         | 
| 1282 1263 | 
             
            </table></div>
         | 
| 1283 1264 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1284 1265 | 
             
            </div>
         | 
| 1285 1266 | 
             
            <hr>
         | 
| 1286 | 
            -
            <div class="refsect2" | 
| 1267 | 
            +
            <div class="refsect2">
         | 
| 1287 1268 | 
             
            <a name="gtk-print-operation-get-status-string"></a><h3>gtk_print_operation_get_status_string ()</h3>
         | 
| 1288 | 
            -
            <pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * | 
| 1269 | 
            +
            <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_print_operation_get_status_string
         | 
| 1289 1270 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| 1290 1271 | 
             
            <p>
         | 
| 1291 1272 | 
             
            Returns a string representation of the status of the 
         | 
| @@ -1306,17 +1287,15 @@ value that is suitable for programmatic use. | |
| 1306 1287 | 
             
            </tr>
         | 
| 1307 1288 | 
             
            <tr>
         | 
| 1308 1289 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1309 | 
            -
            <td> | 
| 1310 | 
            -
             | 
| 1311 | 
            -
             | 
| 1312 | 
            -
            </td>
         | 
| 1290 | 
            +
            <td>a string representation of the status
         | 
| 1291 | 
            +
            of the print operation</td>
         | 
| 1313 1292 | 
             
            </tr>
         | 
| 1314 1293 | 
             
            </tbody>
         | 
| 1315 1294 | 
             
            </table></div>
         | 
| 1316 1295 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1317 1296 | 
             
            </div>
         | 
| 1318 1297 | 
             
            <hr>
         | 
| 1319 | 
            -
            <div class="refsect2" | 
| 1298 | 
            +
            <div class="refsect2">
         | 
| 1320 1299 | 
             
            <a name="gtk-print-operation-is-finished"></a><h3>gtk_print_operation_is_finished ()</h3>
         | 
| 1321 1300 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_print_operation_is_finished     (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| 1322 1301 | 
             
            <p>
         | 
| @@ -1339,16 +1318,15 @@ the operation status then tracks the print job status on the printer. | |
| 1339 1318 | 
             
            </tr>
         | 
| 1340 1319 | 
             
            <tr>
         | 
| 1341 1320 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1342 | 
            -
            <td> | 
| 1343 | 
            -
             | 
| 1344 | 
            -
            </td>
         | 
| 1321 | 
            +
            <td>
         | 
| 1322 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, if the print operation is finished.</td>
         | 
| 1345 1323 | 
             
            </tr>
         | 
| 1346 1324 | 
             
            </tbody>
         | 
| 1347 1325 | 
             
            </table></div>
         | 
| 1348 1326 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1349 1327 | 
             
            </div>
         | 
| 1350 1328 | 
             
            <hr>
         | 
| 1351 | 
            -
            <div class="refsect2" | 
| 1329 | 
            +
            <div class="refsect2">
         | 
| 1352 1330 | 
             
            <a name="gtk-print-operation-set-support-selection"></a><h3>gtk_print_operation_set_support_selection ()</h3>
         | 
| 1353 1331 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_support_selection
         | 
| 1354 1332 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -1367,15 +1345,14 @@ Sets whether selection is supported by <a class="link" href="gtk-High-level-Prin | |
| 1367 1345 | 
             
            <tr>
         | 
| 1368 1346 | 
             
            <td><p><span class="term"><em class="parameter"><code>support_selection</code></em> :</span></p></td>
         | 
| 1369 1347 | 
             
            <td>
         | 
| 1370 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to support selection
         | 
| 1371 | 
            -
            </td>
         | 
| 1348 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to support selection</td>
         | 
| 1372 1349 | 
             
            </tr>
         | 
| 1373 1350 | 
             
            </tbody>
         | 
| 1374 1351 | 
             
            </table></div>
         | 
| 1375 1352 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1376 1353 | 
             
            </div>
         | 
| 1377 1354 | 
             
            <hr>
         | 
| 1378 | 
            -
            <div class="refsect2" | 
| 1355 | 
            +
            <div class="refsect2">
         | 
| 1379 1356 | 
             
            <a name="gtk-print-operation-get-support-selection"></a><h3>gtk_print_operation_get_support_selection ()</h3>
         | 
| 1380 1357 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_print_operation_get_support_selection
         | 
| 1381 1358 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| @@ -1392,16 +1369,14 @@ Gets the value of <span class="type">"support-selection"</span> property. | |
| 1392 1369 | 
             
            </tr>
         | 
| 1393 1370 | 
             
            <tr>
         | 
| 1394 1371 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1395 | 
            -
            <td> | 
| 1396 | 
            -
             | 
| 1397 | 
            -
            </td>
         | 
| 1372 | 
            +
            <td>whether the application supports print of selection</td>
         | 
| 1398 1373 | 
             
            </tr>
         | 
| 1399 1374 | 
             
            </tbody>
         | 
| 1400 1375 | 
             
            </table></div>
         | 
| 1401 1376 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1402 1377 | 
             
            </div>
         | 
| 1403 1378 | 
             
            <hr>
         | 
| 1404 | 
            -
            <div class="refsect2" | 
| 1379 | 
            +
            <div class="refsect2">
         | 
| 1405 1380 | 
             
            <a name="gtk-print-operation-set-has-selection"></a><h3>gtk_print_operation_set_has_selection ()</h3>
         | 
| 1406 1381 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_has_selection
         | 
| 1407 1382 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -1425,15 +1400,14 @@ will draw by <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-op | |
| 1425 1400 | 
             
            <tr>
         | 
| 1426 1401 | 
             
            <td><p><span class="term"><em class="parameter"><code>has_selection</code></em> :</span></p></td>
         | 
| 1427 1402 | 
             
            <td>
         | 
| 1428 | 
            -
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> indicates that a selection exists
         | 
| 1429 | 
            -
            </td>
         | 
| 1403 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> indicates that a selection exists</td>
         | 
| 1430 1404 | 
             
            </tr>
         | 
| 1431 1405 | 
             
            </tbody>
         | 
| 1432 1406 | 
             
            </table></div>
         | 
| 1433 1407 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1434 1408 | 
             
            </div>
         | 
| 1435 1409 | 
             
            <hr>
         | 
| 1436 | 
            -
            <div class="refsect2" | 
| 1410 | 
            +
            <div class="refsect2">
         | 
| 1437 1411 | 
             
            <a name="gtk-print-operation-get-has-selection"></a><h3>gtk_print_operation_get_has_selection ()</h3>
         | 
| 1438 1412 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_print_operation_get_has_selection
         | 
| 1439 1413 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| @@ -1450,16 +1424,14 @@ Gets the value of <span class="type">"has-selection"</span> property. | |
| 1450 1424 | 
             
            </tr>
         | 
| 1451 1425 | 
             
            <tr>
         | 
| 1452 1426 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1453 | 
            -
            <td> | 
| 1454 | 
            -
             | 
| 1455 | 
            -
            </td>
         | 
| 1427 | 
            +
            <td>whether there is a selection</td>
         | 
| 1456 1428 | 
             
            </tr>
         | 
| 1457 1429 | 
             
            </tbody>
         | 
| 1458 1430 | 
             
            </table></div>
         | 
| 1459 1431 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1460 1432 | 
             
            </div>
         | 
| 1461 1433 | 
             
            <hr>
         | 
| 1462 | 
            -
            <div class="refsect2" | 
| 1434 | 
            +
            <div class="refsect2">
         | 
| 1463 1435 | 
             
            <a name="gtk-print-operation-set-embed-page-setup"></a><h3>gtk_print_operation_set_embed_page_setup ()</h3>
         | 
| 1464 1436 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_set_embed_page_setup
         | 
| 1465 1437 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>,
         | 
| @@ -1487,7 +1459,7 @@ Selected page setup is stored as default page setup in <a class="link" href="gtk | |
| 1487 1459 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1488 1460 | 
             
            </div>
         | 
| 1489 1461 | 
             
            <hr>
         | 
| 1490 | 
            -
            <div class="refsect2" | 
| 1462 | 
            +
            <div class="refsect2">
         | 
| 1491 1463 | 
             
            <a name="gtk-print-operation-get-embed-page-setup"></a><h3>gtk_print_operation_get_embed_page_setup ()</h3>
         | 
| 1492 1464 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_print_operation_get_embed_page_setup
         | 
| 1493 1465 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *op</code></em>);</pre>
         | 
| @@ -1504,16 +1476,14 @@ Gets the value of <span class="type">"embed-page-setup"</span> property. | |
| 1504 1476 | 
             
            </tr>
         | 
| 1505 1477 | 
             
            <tr>
         | 
| 1506 1478 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1507 | 
            -
            <td> | 
| 1508 | 
            -
             | 
| 1509 | 
            -
            </td>
         | 
| 1479 | 
            +
            <td>whether page setup selection combos are embedded</td>
         | 
| 1510 1480 | 
             
            </tr>
         | 
| 1511 1481 | 
             
            </tbody>
         | 
| 1512 1482 | 
             
            </table></div>
         | 
| 1513 1483 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1514 1484 | 
             
            </div>
         | 
| 1515 1485 | 
             
            <hr>
         | 
| 1516 | 
            -
            <div class="refsect2" | 
| 1486 | 
            +
            <div class="refsect2">
         | 
| 1517 1487 | 
             
            <a name="gtk-print-run-page-setup-dialog"></a><h3>gtk_print_run_page_setup_dialog ()</h3>
         | 
| 1518 1488 | 
             
            <pre class="programlisting"><a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="returnvalue">GtkPageSetup</span></a> *      gtk_print_run_page_setup_dialog     (<em class="parameter"><code><a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a> *parent</code></em>,
         | 
| 1519 1489 | 
             
                                                                     <em class="parameter"><code><a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a> *page_setup</code></em>,
         | 
| @@ -1534,12 +1504,12 @@ a problem. | |
| 1534 1504 | 
             
            <tbody>
         | 
| 1535 1505 | 
             
            <tr>
         | 
| 1536 1506 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 1537 | 
            -
            <td> | 
| 1507 | 
            +
            <td>transient parent. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1538 1508 | 
             
            </td>
         | 
| 1539 1509 | 
             
            </tr>
         | 
| 1540 1510 | 
             
            <tr>
         | 
| 1541 1511 | 
             
            <td><p><span class="term"><em class="parameter"><code>page_setup</code></em> :</span></p></td>
         | 
| 1542 | 
            -
            <td> | 
| 1512 | 
            +
            <td>an existing <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1543 1513 | 
             
            </td>
         | 
| 1544 1514 | 
             
            </tr>
         | 
| 1545 1515 | 
             
            <tr>
         | 
| @@ -1549,8 +1519,7 @@ a problem. | |
| 1549 1519 | 
             
            </tr>
         | 
| 1550 1520 | 
             
            <tr>
         | 
| 1551 1521 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1552 | 
            -
            <td> | 
| 1553 | 
            -
             | 
| 1522 | 
            +
            <td>a new <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a>. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
         | 
| 1554 1523 | 
             
            </td>
         | 
| 1555 1524 | 
             
            </tr>
         | 
| 1556 1525 | 
             
            </tbody>
         | 
| @@ -1558,7 +1527,7 @@ a problem. | |
| 1558 1527 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1559 1528 | 
             
            </div>
         | 
| 1560 1529 | 
             
            <hr>
         | 
| 1561 | 
            -
            <div class="refsect2" | 
| 1530 | 
            +
            <div class="refsect2">
         | 
| 1562 1531 | 
             
            <a name="GtkPageSetupDoneFunc"></a><h3>GtkPageSetupDoneFunc ()</h3>
         | 
| 1563 1532 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                (*GtkPageSetupDoneFunc)             (<em class="parameter"><code><a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a> *page_setup</code></em>,
         | 
| 1564 1533 | 
             
                                                                     <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>);</pre>
         | 
| @@ -1572,20 +1541,18 @@ also serves as destroy notify for <em class="parameter"><code>data</code></em>. | |
| 1572 1541 | 
             
            <tbody>
         | 
| 1573 1542 | 
             
            <tr>
         | 
| 1574 1543 | 
             
            <td><p><span class="term"><em class="parameter"><code>page_setup</code></em> :</span></p></td>
         | 
| 1575 | 
            -
            <td>the <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a> that has been
         | 
| 1576 | 
            -
            </td>
         | 
| 1544 | 
            +
            <td>the <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a> that has been</td>
         | 
| 1577 1545 | 
             
            </tr>
         | 
| 1578 1546 | 
             
            <tr>
         | 
| 1579 1547 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| 1580 | 
            -
            <td>user data that has been passed to | 
| 1581 | 
            -
             | 
| 1582 | 
            -
            </td>
         | 
| 1548 | 
            +
            <td>user data that has been passed to
         | 
| 1549 | 
            +
            <a class="link" href="gtk-High-level-Printing-API.html#gtk-print-run-page-setup-dialog-async" title="gtk_print_run_page_setup_dialog_async ()"><code class="function">gtk_print_run_page_setup_dialog_async()</code></a>.</td>
         | 
| 1583 1550 | 
             
            </tr>
         | 
| 1584 1551 | 
             
            </tbody>
         | 
| 1585 1552 | 
             
            </table></div>
         | 
| 1586 1553 | 
             
            </div>
         | 
| 1587 1554 | 
             
            <hr>
         | 
| 1588 | 
            -
            <div class="refsect2" | 
| 1555 | 
            +
            <div class="refsect2">
         | 
| 1589 1556 | 
             
            <a name="gtk-print-run-page-setup-dialog-async"></a><h3>gtk_print_run_page_setup_dialog_async ()</h3>
         | 
| 1590 1557 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_run_page_setup_dialog_async
         | 
| 1591 1558 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a> *parent</code></em>,
         | 
| @@ -1606,12 +1573,12 @@ from a signal handler for the ::response signal of the dialog. | |
| 1606 1573 | 
             
            <tbody>
         | 
| 1607 1574 | 
             
            <tr>
         | 
| 1608 1575 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 1609 | 
            -
            <td> | 
| 1576 | 
            +
            <td>transient parent, 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>
         | 
| 1610 1577 | 
             
            </td>
         | 
| 1611 1578 | 
             
            </tr>
         | 
| 1612 1579 | 
             
            <tr>
         | 
| 1613 1580 | 
             
            <td><p><span class="term"><em class="parameter"><code>page_setup</code></em> :</span></p></td>
         | 
| 1614 | 
            -
            <td> | 
| 1581 | 
            +
            <td>an existing <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</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>
         | 
| 1615 1582 | 
             
            </td>
         | 
| 1616 1583 | 
             
            </tr>
         | 
| 1617 1584 | 
             
            <tr>
         | 
| @@ -1621,8 +1588,7 @@ from a signal handler for the ::response signal of the dialog. | |
| 1621 1588 | 
             
            </tr>
         | 
| 1622 1589 | 
             
            <tr>
         | 
| 1623 1590 | 
             
            <td><p><span class="term"><em class="parameter"><code>done_cb</code></em> :</span></p></td>
         | 
| 1624 | 
            -
            <td>a function to call when the user saves the modified page setup
         | 
| 1625 | 
            -
            </td>
         | 
| 1591 | 
            +
            <td>a function to call when the user saves the modified page setup</td>
         | 
| 1626 1592 | 
             
            </tr>
         | 
| 1627 1593 | 
             
            <tr>
         | 
| 1628 1594 | 
             
            <td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
         | 
| @@ -1634,14 +1600,14 @@ from a signal handler for the ::response signal of the dialog. | |
| 1634 1600 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1635 1601 | 
             
            </div>
         | 
| 1636 1602 | 
             
            <hr>
         | 
| 1637 | 
            -
            <div class="refsect2" | 
| 1603 | 
            +
            <div class="refsect2">
         | 
| 1638 1604 | 
             
            <a name="GtkPrintOperationPreview-struct"></a><h3>GtkPrintOperationPreview</h3>
         | 
| 1639 1605 | 
             
            <pre class="programlisting">typedef struct _GtkPrintOperationPreview GtkPrintOperationPreview;</pre>
         | 
| 1640 1606 | 
             
            <p>
         | 
| 1641 1607 | 
             
            </p>
         | 
| 1642 1608 | 
             
            </div>
         | 
| 1643 1609 | 
             
            <hr>
         | 
| 1644 | 
            -
            <div class="refsect2" | 
| 1610 | 
            +
            <div class="refsect2">
         | 
| 1645 1611 | 
             
            <a name="gtk-print-operation-preview-end-preview"></a><h3>gtk_print_operation_preview_end_preview ()</h3>
         | 
| 1646 1612 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_preview_end_preview
         | 
| 1647 1613 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview"><span class="type">GtkPrintOperationPreview</span></a> *preview</code></em>);</pre>
         | 
| @@ -1662,7 +1628,7 @@ This function must be called to finish a custom print preview. | |
| 1662 1628 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1663 1629 | 
             
            </div>
         | 
| 1664 1630 | 
             
            <hr>
         | 
| 1665 | 
            -
            <div class="refsect2" | 
| 1631 | 
            +
            <div class="refsect2">
         | 
| 1666 1632 | 
             
            <a name="gtk-print-operation-preview-is-selected"></a><h3>gtk_print_operation_preview_is_selected ()</h3>
         | 
| 1667 1633 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>            gtk_print_operation_preview_is_selected
         | 
| 1668 1634 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview"><span class="type">GtkPrintOperationPreview</span></a> *preview</code></em>,
         | 
| @@ -1681,21 +1647,19 @@ have been selected for printing. | |
| 1681 1647 | 
             
            </tr>
         | 
| 1682 1648 | 
             
            <tr>
         | 
| 1683 1649 | 
             
            <td><p><span class="term"><em class="parameter"><code>page_nr</code></em> :</span></p></td>
         | 
| 1684 | 
            -
            <td>a page number
         | 
| 1685 | 
            -
            </td>
         | 
| 1650 | 
            +
            <td>a page number</td>
         | 
| 1686 1651 | 
             
            </tr>
         | 
| 1687 1652 | 
             
            <tr>
         | 
| 1688 1653 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1689 | 
            -
            <td> | 
| 1690 | 
            -
             | 
| 1691 | 
            -
            </td>
         | 
| 1654 | 
            +
            <td>
         | 
| 1655 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the page has been selected for printing</td>
         | 
| 1692 1656 | 
             
            </tr>
         | 
| 1693 1657 | 
             
            </tbody>
         | 
| 1694 1658 | 
             
            </table></div>
         | 
| 1695 1659 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1696 1660 | 
             
            </div>
         | 
| 1697 1661 | 
             
            <hr>
         | 
| 1698 | 
            -
            <div class="refsect2" | 
| 1662 | 
            +
            <div class="refsect2">
         | 
| 1699 1663 | 
             
            <a name="gtk-print-operation-preview-render-page"></a><h3>gtk_print_operation_preview_render_page ()</h3>
         | 
| 1700 1664 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_print_operation_preview_render_page
         | 
| 1701 1665 | 
             
                                                                    (<em class="parameter"><code><a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview"><span class="type">GtkPrintOperationPreview</span></a> *preview</code></em>,
         | 
| @@ -1723,17 +1687,16 @@ be associated with the print context. | |
| 1723 1687 | 
             
            </tr>
         | 
| 1724 1688 | 
             
            <tr>
         | 
| 1725 1689 | 
             
            <td><p><span class="term"><em class="parameter"><code>page_nr</code></em> :</span></p></td>
         | 
| 1726 | 
            -
            <td>the page to render
         | 
| 1727 | 
            -
            </td>
         | 
| 1690 | 
            +
            <td>the page to render</td>
         | 
| 1728 1691 | 
             
            </tr>
         | 
| 1729 1692 | 
             
            </tbody>
         | 
| 1730 1693 | 
             
            </table></div>
         | 
| 1731 1694 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1732 1695 | 
             
            </div>
         | 
| 1733 1696 | 
             
            </div>
         | 
| 1734 | 
            -
            <div class="refsect1" | 
| 1697 | 
            +
            <div class="refsect1">
         | 
| 1735 1698 | 
             
            <a name="gtk-High-level-Printing-API.property-details"></a><h2>Property Details</h2>
         | 
| 1736 | 
            -
            <div class="refsect2" | 
| 1699 | 
            +
            <div class="refsect2">
         | 
| 1737 1700 | 
             
            <a name="GtkPrintOperation--allow-async"></a><h3>The <code class="literal">"allow-async"</code> property</h3>
         | 
| 1738 1701 | 
             
            <pre class="programlisting">  "allow-async"              <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1739 1702 | 
             
            <p>
         | 
| @@ -1754,7 +1717,7 @@ is unlikely to change). On other platforms, all actions except for | |
| 1754 1717 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1755 1718 | 
             
            </div>
         | 
| 1756 1719 | 
             
            <hr>
         | 
| 1757 | 
            -
            <div class="refsect2" | 
| 1720 | 
            +
            <div class="refsect2">
         | 
| 1758 1721 | 
             
            <a name="GtkPrintOperation--current-page"></a><h3>The <code class="literal">"current-page"</code> property</h3>
         | 
| 1759 1722 | 
             
            <pre class="programlisting">  "current-page"             <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write</pre>
         | 
| 1760 1723 | 
             
            <p>
         | 
| @@ -1772,7 +1735,7 @@ Note that this only makes sense for pre-paginated documents. | |
| 1772 1735 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1773 1736 | 
             
            </div>
         | 
| 1774 1737 | 
             
            <hr>
         | 
| 1775 | 
            -
            <div class="refsect2" | 
| 1738 | 
            +
            <div class="refsect2">
         | 
| 1776 1739 | 
             
            <a name="GtkPrintOperation--custom-tab-label"></a><h3>The <code class="literal">"custom-tab-label"</code> property</h3>
         | 
| 1777 1740 | 
             
            <pre class="programlisting">  "custom-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>
         | 
| 1778 1741 | 
             
            <p>
         | 
| @@ -1786,7 +1749,7 @@ If this is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-M | |
| 1786 1749 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1787 1750 | 
             
            </div>
         | 
| 1788 1751 | 
             
            <hr>
         | 
| 1789 | 
            -
            <div class="refsect2" | 
| 1752 | 
            +
            <div class="refsect2">
         | 
| 1790 1753 | 
             
            <a name="GtkPrintOperation--default-page-setup"></a><h3>The <code class="literal">"default-page-setup"</code> property</h3>
         | 
| 1791 1754 | 
             
            <pre class="programlisting">  "default-page-setup"       <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a>*         : Read / Write</pre>
         | 
| 1792 1755 | 
             
            <p>
         | 
| @@ -1800,7 +1763,7 @@ to the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation- | |
| 1800 1763 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1801 1764 | 
             
            </div>
         | 
| 1802 1765 | 
             
            <hr>
         | 
| 1803 | 
            -
            <div class="refsect2" | 
| 1766 | 
            +
            <div class="refsect2">
         | 
| 1804 1767 | 
             
            <a name="GtkPrintOperation--embed-page-setup"></a><h3>The <code class="literal">"embed-page-setup"</code> property</h3>
         | 
| 1805 1768 | 
             
            <pre class="programlisting">  "embed-page-setup"         <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1806 1769 | 
             
            <p>
         | 
| @@ -1810,7 +1773,7 @@ If <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht | |
| 1810 1773 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1811 1774 | 
             
            </div>
         | 
| 1812 1775 | 
             
            <hr>
         | 
| 1813 | 
            -
            <div class="refsect2" | 
| 1776 | 
            +
            <div class="refsect2">
         | 
| 1814 1777 | 
             
            <a name="GtkPrintOperation--export-filename"></a><h3>The <code class="literal">"export-filename"</code> property</h3>
         | 
| 1815 1778 | 
             
            <pre class="programlisting">  "export-filename"          <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1816 1779 | 
             
            <p>
         | 
| @@ -1830,7 +1793,7 @@ list of printers in the print dialog. | |
| 1830 1793 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1831 1794 | 
             
            </div>
         | 
| 1832 1795 | 
             
            <hr>
         | 
| 1833 | 
            -
            <div class="refsect2" | 
| 1796 | 
            +
            <div class="refsect2">
         | 
| 1834 1797 | 
             
            <a name="GtkPrintOperation--has-selection"></a><h3>The <code class="literal">"has-selection"</code> property</h3>
         | 
| 1835 1798 | 
             
            <pre class="programlisting">  "has-selection"            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1836 1799 | 
             
            <p>
         | 
| @@ -1842,7 +1805,7 @@ This is typically used to make a "Selection" button sensitive. | |
| 1842 1805 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1843 1806 | 
             
            </div>
         | 
| 1844 1807 | 
             
            <hr>
         | 
| 1845 | 
            -
            <div class="refsect2" | 
| 1808 | 
            +
            <div class="refsect2">
         | 
| 1846 1809 | 
             
            <a name="GtkPrintOperation--job-name"></a><h3>The <code class="literal">"job-name"</code> property</h3>
         | 
| 1847 1810 | 
             
            <pre class="programlisting">  "job-name"                 <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1848 1811 | 
             
            <p>
         | 
| @@ -1857,7 +1820,7 @@ by numbering successive print jobs. | |
| 1857 1820 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1858 1821 | 
             
            </div>
         | 
| 1859 1822 | 
             
            <hr>
         | 
| 1860 | 
            -
            <div class="refsect2" | 
| 1823 | 
            +
            <div class="refsect2">
         | 
| 1861 1824 | 
             
            <a name="GtkPrintOperation--n-pages"></a><h3>The <code class="literal">"n-pages"</code> property</h3>
         | 
| 1862 1825 | 
             
            <pre class="programlisting">  "n-pages"                  <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write</pre>
         | 
| 1863 1826 | 
             
            <p>
         | 
| @@ -1880,7 +1843,7 @@ will be for page <em class="parameter"><code>n_pages</code></em> - 1. | |
| 1880 1843 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1881 1844 | 
             
            </div>
         | 
| 1882 1845 | 
             
            <hr>
         | 
| 1883 | 
            -
            <div class="refsect2" | 
| 1846 | 
            +
            <div class="refsect2">
         | 
| 1884 1847 | 
             
            <a name="GtkPrintOperation--n-pages-to-print"></a><h3>The <code class="literal">"n-pages-to-print"</code> property</h3>
         | 
| 1885 1848 | 
             
            <pre class="programlisting">  "n-pages-to-print"         <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read</pre>
         | 
| 1886 1849 | 
             
            <p>
         | 
| @@ -1900,7 +1863,7 @@ This is typically used to track the progress of print operation. | |
| 1900 1863 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1901 1864 | 
             
            </div>
         | 
| 1902 1865 | 
             
            <hr>
         | 
| 1903 | 
            -
            <div class="refsect2" | 
| 1866 | 
            +
            <div class="refsect2">
         | 
| 1904 1867 | 
             
            <a name="GtkPrintOperation--print-settings"></a><h3>The <code class="literal">"print-settings"</code> property</h3>
         | 
| 1905 1868 | 
             
            <pre class="programlisting">  "print-settings"           <a class="link" href="GtkPrintSettings.html" title="GtkPrintSettings"><span class="type">GtkPrintSettings</span></a>*     : Read / Write</pre>
         | 
| 1906 1869 | 
             
            <p>
         | 
| @@ -1914,7 +1877,7 @@ print settings from a previous print operation, see | |
| 1914 1877 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1915 1878 | 
             
            </div>
         | 
| 1916 1879 | 
             
            <hr>
         | 
| 1917 | 
            -
            <div class="refsect2" | 
| 1880 | 
            +
            <div class="refsect2">
         | 
| 1918 1881 | 
             
            <a name="GtkPrintOperation--show-progress"></a><h3>The <code class="literal">"show-progress"</code> property</h3>
         | 
| 1919 1882 | 
             
            <pre class="programlisting">  "show-progress"            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1920 1883 | 
             
            <p>
         | 
| @@ -1925,7 +1888,7 @@ print operation. | |
| 1925 1888 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1926 1889 | 
             
            </div>
         | 
| 1927 1890 | 
             
            <hr>
         | 
| 1928 | 
            -
            <div class="refsect2" | 
| 1891 | 
            +
            <div class="refsect2">
         | 
| 1929 1892 | 
             
            <a name="GtkPrintOperation--status"></a><h3>The <code class="literal">"status"</code> property</h3>
         | 
| 1930 1893 | 
             
            <pre class="programlisting">  "status"                   <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintStatus" title="enum GtkPrintStatus"><span class="type">GtkPrintStatus</span></a>        : Read</pre>
         | 
| 1931 1894 | 
             
            <p>
         | 
| @@ -1935,7 +1898,7 @@ The status of the print operation. | |
| 1935 1898 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1936 1899 | 
             
            </div>
         | 
| 1937 1900 | 
             
            <hr>
         | 
| 1938 | 
            -
            <div class="refsect2" | 
| 1901 | 
            +
            <div class="refsect2">
         | 
| 1939 1902 | 
             
            <a name="GtkPrintOperation--status-string"></a><h3>The <code class="literal">"status-string"</code> property</h3>
         | 
| 1940 1903 | 
             
            <pre class="programlisting">  "status-string"            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read</pre>
         | 
| 1941 1904 | 
             
            <p>
         | 
| @@ -1951,7 +1914,7 @@ is suitable for programmatic use. | |
| 1951 1914 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1952 1915 | 
             
            </div>
         | 
| 1953 1916 | 
             
            <hr>
         | 
| 1954 | 
            -
            <div class="refsect2" | 
| 1917 | 
            +
            <div class="refsect2">
         | 
| 1955 1918 | 
             
            <a name="GtkPrintOperation--support-selection"></a><h3>The <code class="literal">"support-selection"</code> property</h3>
         | 
| 1956 1919 | 
             
            <pre class="programlisting">  "support-selection"        <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1957 1920 | 
             
            <p>
         | 
| @@ -1962,7 +1925,7 @@ This allows the print dialog to show a "Selection" button. | |
| 1962 1925 | 
             
            <p class="since">Since 2.18</p>
         | 
| 1963 1926 | 
             
            </div>
         | 
| 1964 1927 | 
             
            <hr>
         | 
| 1965 | 
            -
            <div class="refsect2" | 
| 1928 | 
            +
            <div class="refsect2">
         | 
| 1966 1929 | 
             
            <a name="GtkPrintOperation--track-print-status"></a><h3>The <code class="literal">"track-print-status"</code> property</h3>
         | 
| 1967 1930 | 
             
            <pre class="programlisting">  "track-print-status"       <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1968 1931 | 
             
            <p>
         | 
| @@ -1977,9 +1940,9 @@ not be enabled unless needed. | |
| 1977 1940 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1978 1941 | 
             
            </div>
         | 
| 1979 1942 | 
             
            <hr>
         | 
| 1980 | 
            -
            <div class="refsect2" | 
| 1943 | 
            +
            <div class="refsect2">
         | 
| 1981 1944 | 
             
            <a name="GtkPrintOperation--unit"></a><h3>The <code class="literal">"unit"</code> property</h3>
         | 
| 1982 | 
            -
            <pre class="programlisting">  "unit"                     <a class="link" href=" | 
| 1945 | 
            +
            <pre class="programlisting">  "unit"                     <a class="link" href="GtkPaperSize.html#GtkUnit" title="enum GtkUnit"><span class="type">GtkUnit</span></a>               : Read / Write</pre>
         | 
| 1983 1946 | 
             
            <p>
         | 
| 1984 1947 | 
             
            The transformation for the cairo context obtained from
         | 
| 1985 1948 | 
             
            <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> is set up in such a way that distances 
         | 
| @@ -1989,7 +1952,7 @@ are measured in units of <em class="parameter"><code>unit</code></em>. | |
| 1989 1952 | 
             
            <p class="since">Since 2.10</p>
         | 
| 1990 1953 | 
             
            </div>
         | 
| 1991 1954 | 
             
            <hr>
         | 
| 1992 | 
            -
            <div class="refsect2" | 
| 1955 | 
            +
            <div class="refsect2">
         | 
| 1993 1956 | 
             
            <a name="GtkPrintOperation--use-full-page"></a><h3>The <code class="literal">"use-full-page"</code> property</h3>
         | 
| 1994 1957 | 
             
            <pre class="programlisting">  "use-full-page"            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a>              : Read / Write</pre>
         | 
| 1995 1958 | 
             
            <p>
         | 
| @@ -2004,13 +1967,13 @@ area (i.e. inside the margins). | |
| 2004 1967 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2005 1968 | 
             
            </div>
         | 
| 2006 1969 | 
             
            </div>
         | 
| 2007 | 
            -
            <div class="refsect1" | 
| 1970 | 
            +
            <div class="refsect1">
         | 
| 2008 1971 | 
             
            <a name="gtk-High-level-Printing-API.signal-details"></a><h2>Signal Details</h2>
         | 
| 2009 | 
            -
            <div class="refsect2" | 
| 1972 | 
            +
            <div class="refsect2">
         | 
| 2010 1973 | 
             
            <a name="GtkPrintOperation-begin-print"></a><h3>The <code class="literal">"begin-print"</code> signal</h3>
         | 
| 2011 1974 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *operation,
         | 
| 2012 1975 | 
             
                                                                    <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a>   *context,
         | 
| 2013 | 
            -
                                                                    <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>
         | 
| 1976 | 
            +
                                                                    <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>
         | 
| 2014 1977 | 
             
            <p>
         | 
| 2015 1978 | 
             
            Emitted after the user has finished changing print settings
         | 
| 2016 1979 | 
             
            in the dialog, before the actual rendering starts.
         | 
| @@ -2025,13 +1988,11 @@ set the number of pages with <a class="link" href="gtk-High-level-Printing-API.h | |
| 2025 1988 | 
             
            <tbody>
         | 
| 2026 1989 | 
             
            <tr>
         | 
| 2027 1990 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2028 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2029 | 
            -
            </td>
         | 
| 1991 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2030 1992 | 
             
            </tr>
         | 
| 2031 1993 | 
             
            <tr>
         | 
| 2032 1994 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 2033 | 
            -
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the current operation
         | 
| 2034 | 
            -
            </td>
         | 
| 1995 | 
            +
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the current operation</td>
         | 
| 2035 1996 | 
             
            </tr>
         | 
| 2036 1997 | 
             
            <tr>
         | 
| 2037 1998 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2042,10 +2003,10 @@ set the number of pages with <a class="link" href="gtk-High-level-Printing-API.h | |
| 2042 2003 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2043 2004 | 
             
            </div>
         | 
| 2044 2005 | 
             
            <hr>
         | 
| 2045 | 
            -
            <div class="refsect2" | 
| 2006 | 
            +
            <div class="refsect2">
         | 
| 2046 2007 | 
             
            <a name="GtkPrintOperation-create-custom-widget"></a><h3>The <code class="literal">"create-custom-widget"</code> signal</h3>
         | 
| 2047 2008 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="returnvalue">GObject</span></a>*            user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *operation,
         | 
| 2048 | 
            -
                                                                    <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>
         | 
| 2009 | 
            +
                                                                    <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>
         | 
| 2049 2010 | 
             
            <p>
         | 
| 2050 2011 | 
             
            Emitted when displaying the print dialog. If you return a
         | 
| 2051 2012 | 
             
            widget in a handler for this signal it will be added to a custom
         | 
| @@ -2064,8 +2025,7 @@ information you need from the widgets. | |
| 2064 2025 | 
             
            <tbody>
         | 
| 2065 2026 | 
             
            <tr>
         | 
| 2066 2027 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2067 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2068 | 
            -
            </td>
         | 
| 2028 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2069 2029 | 
             
            </tr>
         | 
| 2070 2030 | 
             
            <tr>
         | 
| 2071 2031 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2073,9 +2033,8 @@ information you need from the widgets. | |
| 2073 2033 | 
             
            </tr>
         | 
| 2074 2034 | 
             
            <tr>
         | 
| 2075 2035 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2076 | 
            -
            <td> | 
| 2077 | 
            -
             | 
| 2078 | 
            -
             | 
| 2036 | 
            +
            <td>A custom widget that gets embedded in
         | 
| 2037 | 
            +
            the print dialog, 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>
         | 
| 2079 2038 | 
             
            </td>
         | 
| 2080 2039 | 
             
            </tr>
         | 
| 2081 2040 | 
             
            </tbody>
         | 
| @@ -2083,11 +2042,11 @@ information you need from the widgets. | |
| 2083 2042 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2084 2043 | 
             
            </div>
         | 
| 2085 2044 | 
             
            <hr>
         | 
| 2086 | 
            -
            <div class="refsect2" | 
| 2045 | 
            +
            <div class="refsect2">
         | 
| 2087 2046 | 
             
            <a name="GtkPrintOperation-custom-widget-apply"></a><h3>The <code class="literal">"custom-widget-apply"</code> signal</h3>
         | 
| 2088 2047 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *operation,
         | 
| 2089 2048 | 
             
                                                                    <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>         *widget,
         | 
| 2090 | 
            -
                                                                    <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>
         | 
| 2049 | 
            +
                                                                    <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>
         | 
| 2091 2050 | 
             
            <p>
         | 
| 2092 2051 | 
             
            Emitted right before <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-begin-print" title='The "begin-print" signal'><span class="type">"begin-print"</span></a> if you added
         | 
| 2093 2052 | 
             
            a custom widget in the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-create-custom-widget" title='The "create-custom-widget" signal'><span class="type">"create-custom-widget"</span></a> handler. 
         | 
| @@ -2100,13 +2059,11 @@ later time. | |
| 2100 2059 | 
             
            <tbody>
         | 
| 2101 2060 | 
             
            <tr>
         | 
| 2102 2061 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2103 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2104 | 
            -
            </td>
         | 
| 2062 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2105 2063 | 
             
            </tr>
         | 
| 2106 2064 | 
             
            <tr>
         | 
| 2107 2065 | 
             
            <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
         | 
| 2108 | 
            -
            <td>the custom widget added in create-custom-widget
         | 
| 2109 | 
            -
            </td>
         | 
| 2066 | 
            +
            <td>the custom widget added in create-custom-widget</td>
         | 
| 2110 2067 | 
             
            </tr>
         | 
| 2111 2068 | 
             
            <tr>
         | 
| 2112 2069 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2117,11 +2074,11 @@ later time. | |
| 2117 2074 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2118 2075 | 
             
            </div>
         | 
| 2119 2076 | 
             
            <hr>
         | 
| 2120 | 
            -
            <div class="refsect2" | 
| 2077 | 
            +
            <div class="refsect2">
         | 
| 2121 2078 | 
             
            <a name="GtkPrintOperation-done"></a><h3>The <code class="literal">"done"</code> signal</h3>
         | 
| 2122 2079 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a>      *operation,
         | 
| 2123 2080 | 
             
                                                                    <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationResult" title="enum GtkPrintOperationResult"><span class="type">GtkPrintOperationResult</span></a> result,
         | 
| 2124 | 
            -
                                                                    <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>
         | 
| 2081 | 
            +
                                                                    <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>
         | 
| 2125 2082 | 
             
            <p>
         | 
| 2126 2083 | 
             
            Emitted when the print operation run has finished doing
         | 
| 2127 2084 | 
             
            everything required for printing. 
         | 
| @@ -2141,13 +2098,11 @@ after <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-d | |
| 2141 2098 | 
             
            <tbody>
         | 
| 2142 2099 | 
             
            <tr>
         | 
| 2143 2100 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2144 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2145 | 
            -
            </td>
         | 
| 2101 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2146 2102 | 
             
            </tr>
         | 
| 2147 2103 | 
             
            <tr>
         | 
| 2148 2104 | 
             
            <td><p><span class="term"><em class="parameter"><code>result</code></em> :</span></p></td>
         | 
| 2149 | 
            -
            <td>the result of the print operation
         | 
| 2150 | 
            -
            </td>
         | 
| 2105 | 
            +
            <td>the result of the print operation</td>
         | 
| 2151 2106 | 
             
            </tr>
         | 
| 2152 2107 | 
             
            <tr>
         | 
| 2153 2108 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2158,12 +2113,12 @@ after <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-d | |
| 2158 2113 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2159 2114 | 
             
            </div>
         | 
| 2160 2115 | 
             
            <hr>
         | 
| 2161 | 
            -
            <div class="refsect2" | 
| 2116 | 
            +
            <div class="refsect2">
         | 
| 2162 2117 | 
             
            <a name="GtkPrintOperation-draw-page"></a><h3>The <code class="literal">"draw-page"</code> signal</h3>
         | 
| 2163 2118 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *operation,
         | 
| 2164 2119 | 
             
                                                                    <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a>   *context,
         | 
| 2165 2120 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>               page_nr,
         | 
| 2166 | 
            -
                                                                    <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>
         | 
| 2121 | 
            +
                                                                    <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>
         | 
| 2167 2122 | 
             
            <p>
         | 
| 2168 2123 | 
             
            Emitted for every page that is printed. The signal handler
         | 
| 2169 2124 | 
             
            must render the <em class="parameter"><code>page_nr</code></em>'s page onto the cairo context obtained
         | 
| @@ -2267,18 +2222,15 @@ needs. | |
| 2267 2222 | 
             
            <tbody>
         | 
| 2268 2223 | 
             
            <tr>
         | 
| 2269 2224 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2270 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2271 | 
            -
            </td>
         | 
| 2225 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2272 2226 | 
             
            </tr>
         | 
| 2273 2227 | 
             
            <tr>
         | 
| 2274 2228 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 2275 | 
            -
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the current operation
         | 
| 2276 | 
            -
            </td>
         | 
| 2229 | 
            +
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the current operation</td>
         | 
| 2277 2230 | 
             
            </tr>
         | 
| 2278 2231 | 
             
            <tr>
         | 
| 2279 2232 | 
             
            <td><p><span class="term"><em class="parameter"><code>page_nr</code></em> :</span></p></td>
         | 
| 2280 | 
            -
            <td>the number of the currently printed page (0-based)
         | 
| 2281 | 
            -
            </td>
         | 
| 2233 | 
            +
            <td>the number of the currently printed page (0-based)</td>
         | 
| 2282 2234 | 
             
            </tr>
         | 
| 2283 2235 | 
             
            <tr>
         | 
| 2284 2236 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2289,11 +2241,11 @@ needs. | |
| 2289 2241 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2290 2242 | 
             
            </div>
         | 
| 2291 2243 | 
             
            <hr>
         | 
| 2292 | 
            -
            <div class="refsect2" | 
| 2244 | 
            +
            <div class="refsect2">
         | 
| 2293 2245 | 
             
            <a name="GtkPrintOperation-end-print"></a><h3>The <code class="literal">"end-print"</code> signal</h3>
         | 
| 2294 2246 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *operation,
         | 
| 2295 2247 | 
             
                                                                    <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a>   *context,
         | 
| 2296 | 
            -
                                                                    <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>
         | 
| 2248 | 
            +
                                                                    <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>
         | 
| 2297 2249 | 
             
            <p>
         | 
| 2298 2250 | 
             
            Emitted after all pages have been rendered. 
         | 
| 2299 2251 | 
             
            A handler for this signal can clean up any resources that have
         | 
| @@ -2304,13 +2256,11 @@ been allocated in the <a class="link" href="gtk-High-level-Printing-API.html#Gtk | |
| 2304 2256 | 
             
            <tbody>
         | 
| 2305 2257 | 
             
            <tr>
         | 
| 2306 2258 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2307 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2308 | 
            -
            </td>
         | 
| 2259 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2309 2260 | 
             
            </tr>
         | 
| 2310 2261 | 
             
            <tr>
         | 
| 2311 2262 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 2312 | 
            -
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the current operation
         | 
| 2313 | 
            -
            </td>
         | 
| 2263 | 
            +
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the current operation</td>
         | 
| 2314 2264 | 
             
            </tr>
         | 
| 2315 2265 | 
             
            <tr>
         | 
| 2316 2266 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2321,11 +2271,11 @@ been allocated in the <a class="link" href="gtk-High-level-Printing-API.html#Gtk | |
| 2321 2271 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2322 2272 | 
             
            </div>
         | 
| 2323 2273 | 
             
            <hr>
         | 
| 2324 | 
            -
            <div class="refsect2" | 
| 2274 | 
            +
            <div class="refsect2">
         | 
| 2325 2275 | 
             
            <a name="GtkPrintOperation-paginate"></a><h3>The <code class="literal">"paginate"</code> signal</h3>
         | 
| 2326 2276 | 
             
            <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="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *operation,
         | 
| 2327 2277 | 
             
                                                                    <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a>   *context,
         | 
| 2328 | 
            -
                                                                    <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>
         | 
| 2278 | 
            +
                                                                    <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>
         | 
| 2329 2279 | 
             
            <p>
         | 
| 2330 2280 | 
             
            Emitted after the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation-begin-print" title='The "begin-print" signal'><span class="type">"begin-print"</span></a> signal, but before 
         | 
| 2331 2281 | 
             
            the actual rendering starts. It keeps getting emitted until a connected 
         | 
| @@ -2348,13 +2298,11 @@ from there. | |
| 2348 2298 | 
             
            <tbody>
         | 
| 2349 2299 | 
             
            <tr>
         | 
| 2350 2300 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2351 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2352 | 
            -
            </td>
         | 
| 2301 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2353 2302 | 
             
            </tr>
         | 
| 2354 2303 | 
             
            <tr>
         | 
| 2355 2304 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 2356 | 
            -
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the current operation
         | 
| 2357 | 
            -
            </td>
         | 
| 2305 | 
            +
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the current operation</td>
         | 
| 2358 2306 | 
             
            </tr>
         | 
| 2359 2307 | 
             
            <tr>
         | 
| 2360 2308 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2362,22 +2310,21 @@ from there. | |
| 2362 2310 | 
             
            </tr>
         | 
| 2363 2311 | 
             
            <tr>
         | 
| 2364 2312 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2365 | 
            -
            <td> | 
| 2366 | 
            -
             | 
| 2367 | 
            -
            </td>
         | 
| 2313 | 
            +
            <td>
         | 
| 2314 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if pagination is complete</td>
         | 
| 2368 2315 | 
             
            </tr>
         | 
| 2369 2316 | 
             
            </tbody>
         | 
| 2370 2317 | 
             
            </table></div>
         | 
| 2371 2318 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2372 2319 | 
             
            </div>
         | 
| 2373 2320 | 
             
            <hr>
         | 
| 2374 | 
            -
            <div class="refsect2" | 
| 2321 | 
            +
            <div class="refsect2">
         | 
| 2375 2322 | 
             
            <a name="GtkPrintOperation-preview"></a><h3>The <code class="literal">"preview"</code> signal</h3>
         | 
| 2376 2323 | 
             
            <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="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a>        *operation,
         | 
| 2377 2324 | 
             
                                                                    <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview"><span class="type">GtkPrintOperationPreview</span></a> *preview,
         | 
| 2378 2325 | 
             
                                                                    <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a>          *context,
         | 
| 2379 2326 | 
             
                                                                    <a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a>                *parent,
         | 
| 2380 | 
            -
                                                                    <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>
         | 
| 2327 | 
            +
                                                                    <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>
         | 
| 2381 2328 | 
             
            <p>
         | 
| 2382 2329 | 
             
            Gets emitted when a preview is requested from the native dialog.
         | 
| 2383 2330 | 
             
            </p>
         | 
| @@ -2404,22 +2351,19 @@ finished by calling <a class="link" href="gtk-High-level-Printing-API.html#gtk-p | |
| 2404 2351 | 
             
            <tbody>
         | 
| 2405 2352 | 
             
            <tr>
         | 
| 2406 2353 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2407 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2408 | 
            -
            </td>
         | 
| 2354 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2409 2355 | 
             
            </tr>
         | 
| 2410 2356 | 
             
            <tr>
         | 
| 2411 2357 | 
             
            <td><p><span class="term"><em class="parameter"><code>preview</code></em> :</span></p></td>
         | 
| 2412 | 
            -
            <td>the <span class="type">GtkPrintPreviewOperation</span> for the current operation
         | 
| 2413 | 
            -
            </td>
         | 
| 2358 | 
            +
            <td>the <span class="type">GtkPrintPreviewOperation</span> for the current operation</td>
         | 
| 2414 2359 | 
             
            </tr>
         | 
| 2415 2360 | 
             
            <tr>
         | 
| 2416 2361 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 2417 | 
            -
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> that will be used
         | 
| 2418 | 
            -
            </td>
         | 
| 2362 | 
            +
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> that will be used</td>
         | 
| 2419 2363 | 
             
            </tr>
         | 
| 2420 2364 | 
             
            <tr>
         | 
| 2421 2365 | 
             
            <td><p><span class="term"><em class="parameter"><code>parent</code></em> :</span></p></td>
         | 
| 2422 | 
            -
            <td> | 
| 2366 | 
            +
            <td>the <a class="link" href="GtkWindow.html" title="GtkWindow"><span class="type">GtkWindow</span></a> to use as window parent, 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>
         | 
| 2423 2367 | 
             
            </td>
         | 
| 2424 2368 | 
             
            </tr>
         | 
| 2425 2369 | 
             
            <tr>
         | 
| @@ -2428,22 +2372,21 @@ finished by calling <a class="link" href="gtk-High-level-Printing-API.html#gtk-p | |
| 2428 2372 | 
             
            </tr>
         | 
| 2429 2373 | 
             
            <tr>
         | 
| 2430 2374 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 2431 | 
            -
            <td> | 
| 2432 | 
            -
             | 
| 2433 | 
            -
            </td>
         | 
| 2375 | 
            +
            <td>
         | 
| 2376 | 
            +
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the listener wants to take over control of the preview</td>
         | 
| 2434 2377 | 
             
            </tr>
         | 
| 2435 2378 | 
             
            </tbody>
         | 
| 2436 2379 | 
             
            </table></div>
         | 
| 2437 2380 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2438 2381 | 
             
            </div>
         | 
| 2439 2382 | 
             
            <hr>
         | 
| 2440 | 
            -
            <div class="refsect2" | 
| 2383 | 
            +
            <div class="refsect2">
         | 
| 2441 2384 | 
             
            <a name="GtkPrintOperation-request-page-setup"></a><h3>The <code class="literal">"request-page-setup"</code> signal</h3>
         | 
| 2442 2385 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *operation,
         | 
| 2443 2386 | 
             
                                                                    <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a>   *context,
         | 
| 2444 2387 | 
             
                                                                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>               page_nr,
         | 
| 2445 2388 | 
             
                                                                    <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a>      *setup,
         | 
| 2446 | 
            -
                                                                    <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>
         | 
| 2389 | 
            +
                                                                    <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>
         | 
| 2447 2390 | 
             
            <p>
         | 
| 2448 2391 | 
             
            Emitted once for every page that is printed, to give
         | 
| 2449 2392 | 
             
            the application a chance to modify the page setup. Any changes 
         | 
| @@ -2454,22 +2397,19 @@ done to <em class="parameter"><code>setup</code></em> will be in force only for | |
| 2454 2397 | 
             
            <tbody>
         | 
| 2455 2398 | 
             
            <tr>
         | 
| 2456 2399 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2457 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2458 | 
            -
            </td>
         | 
| 2400 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2459 2401 | 
             
            </tr>
         | 
| 2460 2402 | 
             
            <tr>
         | 
| 2461 2403 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| 2462 | 
            -
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the current operation
         | 
| 2463 | 
            -
            </td>
         | 
| 2404 | 
            +
            <td>the <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a> for the current operation</td>
         | 
| 2464 2405 | 
             
            </tr>
         | 
| 2465 2406 | 
             
            <tr>
         | 
| 2466 2407 | 
             
            <td><p><span class="term"><em class="parameter"><code>page_nr</code></em> :</span></p></td>
         | 
| 2467 | 
            -
            <td>the number of the currently printed page (0-based)
         | 
| 2468 | 
            -
            </td>
         | 
| 2408 | 
            +
            <td>the number of the currently printed page (0-based)</td>
         | 
| 2469 2409 | 
             
            </tr>
         | 
| 2470 2410 | 
             
            <tr>
         | 
| 2471 2411 | 
             
            <td><p><span class="term"><em class="parameter"><code>setup</code></em> :</span></p></td>
         | 
| 2472 | 
            -
            <td>the <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a> | 
| 2412 | 
            +
            <td>the <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a>
         | 
| 2473 2413 | 
             
            </td>
         | 
| 2474 2414 | 
             
            </tr>
         | 
| 2475 2415 | 
             
            <tr>
         | 
| @@ -2481,10 +2421,10 @@ done to <em class="parameter"><code>setup</code></em> will be in force only for | |
| 2481 2421 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2482 2422 | 
             
            </div>
         | 
| 2483 2423 | 
             
            <hr>
         | 
| 2484 | 
            -
            <div class="refsect2" | 
| 2424 | 
            +
            <div class="refsect2">
         | 
| 2485 2425 | 
             
            <a name="GtkPrintOperation-status-changed"></a><h3>The <code class="literal">"status-changed"</code> signal</h3>
         | 
| 2486 2426 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *operation,
         | 
| 2487 | 
            -
                                                                    <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>
         | 
| 2427 | 
            +
                                                                    <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>
         | 
| 2488 2428 | 
             
            <p>
         | 
| 2489 2429 | 
             
            Emitted at between the various phases of the print operation.
         | 
| 2490 2430 | 
             
            See <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintStatus" title="enum GtkPrintStatus"><span class="type">GtkPrintStatus</span></a> for the phases that are being discriminated.
         | 
| @@ -2496,8 +2436,7 @@ status. | |
| 2496 2436 | 
             
            <tbody>
         | 
| 2497 2437 | 
             
            <tr>
         | 
| 2498 2438 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2499 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2500 | 
            -
            </td>
         | 
| 2439 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2501 2440 | 
             
            </tr>
         | 
| 2502 2441 | 
             
            <tr>
         | 
| 2503 2442 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2508,13 +2447,13 @@ status. | |
| 2508 2447 | 
             
            <p class="since">Since 2.10</p>
         | 
| 2509 2448 | 
             
            </div>
         | 
| 2510 2449 | 
             
            <hr>
         | 
| 2511 | 
            -
            <div class="refsect2" | 
| 2450 | 
            +
            <div class="refsect2">
         | 
| 2512 2451 | 
             
            <a name="GtkPrintOperation-update-custom-widget"></a><h3>The <code class="literal">"update-custom-widget"</code> signal</h3>
         | 
| 2513 2452 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> *operation,
         | 
| 2514 2453 | 
             
                                                                    <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>         *widget,
         | 
| 2515 2454 | 
             
                                                                    <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a>      *setup,
         | 
| 2516 2455 | 
             
                                                                    <a class="link" href="GtkPrintSettings.html" title="GtkPrintSettings"><span class="type">GtkPrintSettings</span></a>  *settings,
         | 
| 2517 | 
            -
                                                                    <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>
         | 
| 2456 | 
            +
                                                                    <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>
         | 
| 2518 2457 | 
             
            <p>
         | 
| 2519 2458 | 
             
            Emitted after change of selected printer. The actual page setup and
         | 
| 2520 2459 | 
             
            print settings are passed to the custom widget, which can actualize
         | 
| @@ -2525,23 +2464,19 @@ itself according to this change. | |
| 2525 2464 | 
             
            <tbody>
         | 
| 2526 2465 | 
             
            <tr>
         | 
| 2527 2466 | 
             
            <td><p><span class="term"><em class="parameter"><code>operation</code></em> :</span></p></td>
         | 
| 2528 | 
            -
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted
         | 
| 2529 | 
            -
            </td>
         | 
| 2467 | 
            +
            <td>the <a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperation"><span class="type">GtkPrintOperation</span></a> on which the signal was emitted</td>
         | 
| 2530 2468 | 
             
            </tr>
         | 
| 2531 2469 | 
             
            <tr>
         | 
| 2532 2470 | 
             
            <td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
         | 
| 2533 | 
            -
            <td>the custom widget added in create-custom-widget
         | 
| 2534 | 
            -
            </td>
         | 
| 2471 | 
            +
            <td>the custom widget added in create-custom-widget</td>
         | 
| 2535 2472 | 
             
            </tr>
         | 
| 2536 2473 | 
             
            <tr>
         | 
| 2537 2474 | 
             
            <td><p><span class="term"><em class="parameter"><code>setup</code></em> :</span></p></td>
         | 
| 2538 | 
            -
            <td>actual page setup
         | 
| 2539 | 
            -
            </td>
         | 
| 2475 | 
            +
            <td>actual page setup</td>
         | 
| 2540 2476 | 
             
            </tr>
         | 
| 2541 2477 | 
             
            <tr>
         | 
| 2542 2478 | 
             
            <td><p><span class="term"><em class="parameter"><code>settings</code></em> :</span></p></td>
         | 
| 2543 | 
            -
            <td>actual print settings
         | 
| 2544 | 
            -
            </td>
         | 
| 2479 | 
            +
            <td>actual print settings</td>
         | 
| 2545 2480 | 
             
            </tr>
         | 
| 2546 2481 | 
             
            <tr>
         | 
| 2547 2482 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2552,12 +2487,12 @@ itself according to this change. | |
| 2552 2487 | 
             
            <p class="since">Since 2.18</p>
         | 
| 2553 2488 | 
             
            </div>
         | 
| 2554 2489 | 
             
            <hr>
         | 
| 2555 | 
            -
            <div class="refsect2" | 
| 2490 | 
            +
            <div class="refsect2">
         | 
| 2556 2491 | 
             
            <a name="GtkPrintOperationPreview-got-page-size"></a><h3>The <code class="literal">"got-page-size"</code> signal</h3>
         | 
| 2557 2492 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview"><span class="type">GtkPrintOperationPreview</span></a> *preview,
         | 
| 2558 2493 | 
             
                                                                    <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a>          *context,
         | 
| 2559 2494 | 
             
                                                                    <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a>             *page_setup,
         | 
| 2560 | 
            -
                                                                    <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>
         | 
| 2495 | 
            +
                                                                    <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>
         | 
| 2561 2496 | 
             
            <p>
         | 
| 2562 2497 | 
             
            The ::got-page-size signal is emitted once for each page
         | 
| 2563 2498 | 
             
            that gets rendered to the preview. 
         | 
| @@ -2572,8 +2507,7 @@ context, using <a class="link" href="GtkPrintContext.html#gtk-print-context-set- | |
| 2572 2507 | 
             
            <tbody>
         | 
| 2573 2508 | 
             
            <tr>
         | 
| 2574 2509 | 
             
            <td><p><span class="term"><em class="parameter"><code>preview</code></em> :</span></p></td>
         | 
| 2575 | 
            -
            <td>the object on which the signal is emitted
         | 
| 2576 | 
            -
            </td>
         | 
| 2510 | 
            +
            <td>the object on which the signal is emitted</td>
         | 
| 2577 2511 | 
             
            </tr>
         | 
| 2578 2512 | 
             
            <tr>
         | 
| 2579 2513 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| @@ -2582,8 +2516,7 @@ context, using <a class="link" href="GtkPrintContext.html#gtk-print-context-set- | |
| 2582 2516 | 
             
            </tr>
         | 
| 2583 2517 | 
             
            <tr>
         | 
| 2584 2518 | 
             
            <td><p><span class="term"><em class="parameter"><code>page_setup</code></em> :</span></p></td>
         | 
| 2585 | 
            -
            <td>the <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a> for the current page
         | 
| 2586 | 
            -
            </td>
         | 
| 2519 | 
            +
            <td>the <a class="link" href="GtkPageSetup.html" title="GtkPageSetup"><span class="type">GtkPageSetup</span></a> for the current page</td>
         | 
| 2587 2520 | 
             
            </tr>
         | 
| 2588 2521 | 
             
            <tr>
         | 
| 2589 2522 | 
             
            <td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
         | 
| @@ -2593,11 +2526,11 @@ context, using <a class="link" href="GtkPrintContext.html#gtk-print-context-set- | |
| 2593 2526 | 
             
            </table></div>
         | 
| 2594 2527 | 
             
            </div>
         | 
| 2595 2528 | 
             
            <hr>
         | 
| 2596 | 
            -
            <div class="refsect2" | 
| 2529 | 
            +
            <div class="refsect2">
         | 
| 2597 2530 | 
             
            <a name="GtkPrintOperationPreview-ready"></a><h3>The <code class="literal">"ready"</code> signal</h3>
         | 
| 2598 2531 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                user_function                      (<a class="link" href="gtk-High-level-Printing-API.html#GtkPrintOperationPreview"><span class="type">GtkPrintOperationPreview</span></a> *preview,
         | 
| 2599 2532 | 
             
                                                                    <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a>          *context,
         | 
| 2600 | 
            -
                                                                    <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>
         | 
| 2533 | 
            +
                                                                    <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>
         | 
| 2601 2534 | 
             
            <p>
         | 
| 2602 2535 | 
             
            The ::ready signal gets emitted once per preview operation,
         | 
| 2603 2536 | 
             
            before the first page is rendered.
         | 
| @@ -2610,8 +2543,7 @@ A handler for this signal can be used for setup tasks. | |
| 2610 2543 | 
             
            <tbody>
         | 
| 2611 2544 | 
             
            <tr>
         | 
| 2612 2545 | 
             
            <td><p><span class="term"><em class="parameter"><code>preview</code></em> :</span></p></td>
         | 
| 2613 | 
            -
            <td>the object on which the signal is emitted
         | 
| 2614 | 
            -
            </td>
         | 
| 2546 | 
            +
            <td>the object on which the signal is emitted</td>
         | 
| 2615 2547 | 
             
            </tr>
         | 
| 2616 2548 | 
             
            <tr>
         | 
| 2617 2549 | 
             
            <td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
         | 
| @@ -2626,7 +2558,7 @@ A handler for this signal can be used for setup tasks. | |
| 2626 2558 | 
             
            </table></div>
         | 
| 2627 2559 | 
             
            </div>
         | 
| 2628 2560 | 
             
            </div>
         | 
| 2629 | 
            -
            <div class="refsect1" | 
| 2561 | 
            +
            <div class="refsect1">
         | 
| 2630 2562 | 
             
            <a name="gtk-High-level-Printing-API.see-also"></a><h2>See Also</h2>
         | 
| 2631 2563 | 
             
            <p>
         | 
| 2632 2564 | 
             
            <a class="link" href="GtkPrintContext.html" title="GtkPrintContext"><span class="type">GtkPrintContext</span></a>, <a class="link" href="GtkPrintUnixDialog.html" title="GtkPrintUnixDialog"><span class="type">GtkPrintUnixDialog</span></a>
         | 
| @@ -2635,6 +2567,6 @@ A handler for this signal can be used for setup tasks. | |
| 2635 2567 | 
             
            </div>
         | 
| 2636 2568 | 
             
            <div class="footer">
         | 
| 2637 2569 | 
             
            <hr>
         | 
| 2638 | 
            -
                      Generated by GTK-Doc V1. | 
| 2570 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 2639 2571 | 
             
            </body>
         | 
| 2640 2572 | 
             
            </html>
         |