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>Graphics Contexts</title>
|
6
6
|
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
|
7
|
-
<link rel="home" href="index.html" title="GDK Reference Manual">
|
7
|
+
<link rel="home" href="index.html" title="GDK 2 Reference Manual">
|
8
8
|
<link rel="up" href="reference.html" title="API Reference">
|
9
9
|
<link rel="prev" href="gdk-Points-Rectangles-and-Regions.html" title="Points, Rectangles and Regions">
|
10
10
|
<link rel="next" href="gdk-Drawing-Primitives.html" title="Drawing Primitives">
|
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="gdk-Points-Rectangles-and-Regions.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="reference.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">GDK Reference Manual</th>
|
20
|
+
<th width="100%" align="center">GDK 2 Reference Manual</th>
|
21
21
|
<td><a accesskey="n" href="gdk-Drawing-Primitives.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">
|
@@ -28,7 +28,7 @@
|
|
28
28
|
<a href="#gdk-Graphics-Contexts.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
29
|
</td></tr>
|
30
30
|
</table>
|
31
|
-
<div class="refentry"
|
31
|
+
<div class="refentry">
|
32
32
|
<a name="gdk-Graphics-Contexts"></a><div class="titlepage"></div>
|
33
33
|
<div class="refnamediv"><table width="100%"><tr>
|
34
34
|
<td valign="top">
|
@@ -37,28 +37,28 @@
|
|
37
37
|
</td>
|
38
38
|
<td valign="top" align="right"></td>
|
39
39
|
</tr></table></div>
|
40
|
-
<div class="refsynopsisdiv"
|
40
|
+
<div class="refsynopsisdiv">
|
41
41
|
<a name="gdk-Graphics-Contexts.synopsis"></a><h2>Synopsis</h2>
|
42
42
|
<a name="GdkGC"></a><pre class="synopsis">
|
43
43
|
#include <gdk/gdk.h>
|
44
44
|
|
45
45
|
<a class="link" href="gdk-Graphics-Contexts.html#GdkGC-struct" title="GdkGC">GdkGC</a>;
|
46
|
-
|
46
|
+
struct <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues">GdkGCValues</a>;
|
47
47
|
enum <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask">GdkGCValuesMask</a>;
|
48
48
|
enum <a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction">GdkFunction</a>;
|
49
49
|
<a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-new" title="gdk_gc_new ()">gdk_gc_new</a> (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);
|
50
50
|
<a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-new-with-values" title="gdk_gc_new_with_values ()">gdk_gc_new_with_values</a> (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
|
51
|
-
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
51
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
52
52
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);
|
53
53
|
<a class="link" href="GdkScreen.html" title="GdkScreen"><span class="returnvalue">GdkScreen</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-screen" title="gdk_gc_get_screen ()">gdk_gc_get_screen</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
|
54
54
|
<a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-ref" title="gdk_gc_ref ()">gdk_gc_ref</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
|
55
55
|
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-unref" title="gdk_gc_unref ()">gdk_gc_unref</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
|
56
56
|
#define <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-destroy" title="gdk_gc_destroy">gdk_gc_destroy</a>
|
57
57
|
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-values" title="gdk_gc_set_values ()">gdk_gc_set_values</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
58
|
-
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
58
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
59
59
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);
|
60
60
|
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()">gdk_gc_get_values</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
61
|
-
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);
|
61
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);
|
62
62
|
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-foreground" title="gdk_gc_set_foreground ()">gdk_gc_set_foreground</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
63
63
|
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
|
64
64
|
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-background" title="gdk_gc_set_background ()">gdk_gc_set_background</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
@@ -87,7 +87,7 @@ enum <a class="link" href="gdk-Graphics-Contexts.html#GdkFill" ti
|
|
87
87
|
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-mask" title="gdk_gc_set_clip_mask ()">gdk_gc_set_clip_mask</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
88
88
|
<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkBitmap" title="GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);
|
89
89
|
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-rectangle" title="gdk_gc_set_clip_rectangle ()">gdk_gc_set_clip_rectangle</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
90
|
-
<em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);
|
90
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="struct GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);
|
91
91
|
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-region" title="gdk_gc_set_clip_region ()">gdk_gc_set_clip_region</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
92
92
|
<em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a> *region</code></em>);
|
93
93
|
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-subwindow" title="gdk_gc_set_subwindow ()">gdk_gc_set_subwindow</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
@@ -117,14 +117,14 @@ enum <a class="link" href="gdk-Graphics-Contexts.html#GdkJoinStyl
|
|
117
117
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y_offset</code></em>);
|
118
118
|
</pre>
|
119
119
|
</div>
|
120
|
-
<div class="refsect1"
|
120
|
+
<div class="refsect1">
|
121
121
|
<a name="gdk-Graphics-Contexts.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
122
122
|
<pre class="synopsis">
|
123
123
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
124
124
|
+----GdkGC
|
125
125
|
</pre>
|
126
126
|
</div>
|
127
|
-
<div class="refsect1"
|
127
|
+
<div class="refsect1">
|
128
128
|
<a name="gdk-Graphics-Contexts.description"></a><h2>Description</h2>
|
129
129
|
<p>
|
130
130
|
All drawing operations in GDK take a
|
@@ -146,9 +146,9 @@ in the GC, such as the dash pattern, can only
|
|
146
146
|
be set by the latter method.
|
147
147
|
</p>
|
148
148
|
</div>
|
149
|
-
<div class="refsect1"
|
149
|
+
<div class="refsect1">
|
150
150
|
<a name="gdk-Graphics-Contexts.details"></a><h2>Details</h2>
|
151
|
-
<div class="refsect2"
|
151
|
+
<div class="refsect2">
|
152
152
|
<a name="GdkGC-struct"></a><h3>GdkGC</h3>
|
153
153
|
<pre class="programlisting">typedef struct _GdkGC GdkGC;</pre>
|
154
154
|
<p>
|
@@ -158,9 +158,9 @@ elements.
|
|
158
158
|
</p>
|
159
159
|
</div>
|
160
160
|
<hr>
|
161
|
-
<div class="refsect2"
|
162
|
-
<a name="GdkGCValues"></a><h3>GdkGCValues</h3>
|
163
|
-
<pre class="programlisting">
|
161
|
+
<div class="refsect2">
|
162
|
+
<a name="GdkGCValues"></a><h3>struct GdkGCValues</h3>
|
163
|
+
<pre class="programlisting">struct GdkGCValues {
|
164
164
|
GdkColor foreground;
|
165
165
|
GdkColor background;
|
166
166
|
GdkFont *font;
|
@@ -179,10 +179,10 @@ elements.
|
|
179
179
|
GdkLineStyle line_style;
|
180
180
|
GdkCapStyle cap_style;
|
181
181
|
GdkJoinStyle join_style;
|
182
|
-
}
|
182
|
+
};
|
183
183
|
</pre>
|
184
184
|
<p>
|
185
|
-
The <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> structure holds a set of values used
|
185
|
+
The <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure holds a set of values used
|
186
186
|
to create or modify a graphics context.
|
187
187
|
</p>
|
188
188
|
<div class="variablelist"><table border="0">
|
@@ -191,100 +191,82 @@ to create or modify a graphics context.
|
|
191
191
|
<tr>
|
192
192
|
<td><p><span class="term"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> <em class="structfield"><code><a name="GdkGCValues.foreground"></a>foreground</code></em>;</span></p></td>
|
193
193
|
<td>the foreground color. Note that <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()"><code class="function">gdk_gc_get_values()</code></a>
|
194
|
-
|
195
|
-
</td>
|
194
|
+
only sets the pixel value.</td>
|
196
195
|
</tr>
|
197
196
|
<tr>
|
198
197
|
<td><p><span class="term"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> <em class="structfield"><code><a name="GdkGCValues.background"></a>background</code></em>;</span></p></td>
|
199
198
|
<td>the background color. Note that <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()"><code class="function">gdk_gc_get_values()</code></a>
|
200
|
-
|
201
|
-
</td>
|
199
|
+
only sets the pixel value.</td>
|
202
200
|
</tr>
|
203
201
|
<tr>
|
204
202
|
<td><p><span class="term"><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *<em class="structfield"><code><a name="GdkGCValues.font"></a>font</code></em>;</span></p></td>
|
205
|
-
<td>the default font
|
206
|
-
</td>
|
203
|
+
<td>the default font.</td>
|
207
204
|
</tr>
|
208
205
|
<tr>
|
209
206
|
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> <em class="structfield"><code><a name="GdkGCValues.function"></a>function</code></em>;</span></p></td>
|
210
|
-
<td>the bitwise operation used when drawing
|
211
|
-
</td>
|
207
|
+
<td>the bitwise operation used when drawing.</td>
|
212
208
|
</tr>
|
213
209
|
<tr>
|
214
210
|
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkFill" title="enum GdkFill"><span class="type">GdkFill</span></a> <em class="structfield"><code><a name="GdkGCValues.fill"></a>fill</code></em>;</span></p></td>
|
215
|
-
<td>the fill style
|
216
|
-
</td>
|
211
|
+
<td>the fill style.</td>
|
217
212
|
</tr>
|
218
213
|
<tr>
|
219
214
|
<td><p><span class="term"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.tile"></a>tile</code></em>;</span></p></td>
|
220
|
-
<td>the tile pixmap
|
221
|
-
</td>
|
215
|
+
<td>the tile pixmap.</td>
|
222
216
|
</tr>
|
223
217
|
<tr>
|
224
218
|
<td><p><span class="term"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.stipple"></a>stipple</code></em>;</span></p></td>
|
225
|
-
<td>the stipple bitmap
|
226
|
-
</td>
|
219
|
+
<td>the stipple bitmap.</td>
|
227
220
|
</tr>
|
228
221
|
<tr>
|
229
222
|
<td><p><span class="term"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.clip-mask"></a>clip_mask</code></em>;</span></p></td>
|
230
|
-
<td>the clip mask bitmap
|
231
|
-
</td>
|
223
|
+
<td>the clip mask bitmap.</td>
|
232
224
|
</tr>
|
233
225
|
<tr>
|
234
226
|
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode"><span class="type">GdkSubwindowMode</span></a> <em class="structfield"><code><a name="GdkGCValues.subwindow-mode"></a>subwindow_mode</code></em>;</span></p></td>
|
235
|
-
<td>the subwindow mode
|
236
|
-
</td>
|
227
|
+
<td>the subwindow mode.</td>
|
237
228
|
</tr>
|
238
229
|
<tr>
|
239
230
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.ts-x-origin"></a>ts_x_origin</code></em>;</span></p></td>
|
240
|
-
<td>the x origin of the tile or stipple
|
241
|
-
</td>
|
231
|
+
<td>the x origin of the tile or stipple.</td>
|
242
232
|
</tr>
|
243
233
|
<tr>
|
244
234
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.ts-y-origin"></a>ts_y_origin</code></em>;</span></p></td>
|
245
|
-
<td>the y origin of the tile or stipple
|
246
|
-
</td>
|
235
|
+
<td>the y origin of the tile or stipple.</td>
|
247
236
|
</tr>
|
248
237
|
<tr>
|
249
238
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.clip-x-origin"></a>clip_x_origin</code></em>;</span></p></td>
|
250
|
-
<td>the x origin of the clip mask
|
251
|
-
</td>
|
239
|
+
<td>the x origin of the clip mask.</td>
|
252
240
|
</tr>
|
253
241
|
<tr>
|
254
242
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.clip-y-origin"></a>clip_y_origin</code></em>;</span></p></td>
|
255
|
-
<td>the y origin of the clip mask
|
256
|
-
</td>
|
243
|
+
<td>the y origin of the clip mask.</td>
|
257
244
|
</tr>
|
258
245
|
<tr>
|
259
246
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.graphics-exposures"></a>graphics_exposures</code></em>;</span></p></td>
|
260
|
-
<td>whether graphics exposures are enabled
|
261
|
-
</td>
|
247
|
+
<td>whether graphics exposures are enabled.</td>
|
262
248
|
</tr>
|
263
249
|
<tr>
|
264
250
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.line-width"></a>line_width</code></em>;</span></p></td>
|
265
|
-
<td>the line width
|
266
|
-
</td>
|
251
|
+
<td>the line width.</td>
|
267
252
|
</tr>
|
268
253
|
<tr>
|
269
254
|
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle"><span class="type">GdkLineStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.line-style"></a>line_style</code></em>;</span></p></td>
|
270
|
-
<td>the way dashed lines are drawn
|
271
|
-
</td>
|
255
|
+
<td>the way dashed lines are drawn.</td>
|
272
256
|
</tr>
|
273
257
|
<tr>
|
274
258
|
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle"><span class="type">GdkCapStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.cap-style"></a>cap_style</code></em>;</span></p></td>
|
275
|
-
<td>the way the ends of lines are drawn
|
276
|
-
</td>
|
259
|
+
<td>the way the ends of lines are drawn.</td>
|
277
260
|
</tr>
|
278
261
|
<tr>
|
279
262
|
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle"><span class="type">GdkJoinStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.join-style"></a>join_style</code></em>;</span></p></td>
|
280
|
-
<td>the way joins between lines are drawn
|
281
|
-
</td>
|
263
|
+
<td>the way joins between lines are drawn.</td>
|
282
264
|
</tr>
|
283
265
|
</tbody>
|
284
266
|
</table></div>
|
285
267
|
</div>
|
286
268
|
<hr>
|
287
|
-
<div class="refsect2"
|
269
|
+
<div class="refsect2">
|
288
270
|
<a name="GdkGCValuesMask"></a><h3>enum GdkGCValuesMask</h3>
|
289
271
|
<pre class="programlisting">typedef enum
|
290
272
|
{
|
@@ -310,7 +292,7 @@ to create or modify a graphics context.
|
|
310
292
|
</pre>
|
311
293
|
<p>
|
312
294
|
A set of bit flags used to indicate which fields
|
313
|
-
<a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> structure are set.
|
295
|
+
<a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure are set.
|
314
296
|
</p>
|
315
297
|
<div class="variablelist"><table border="0">
|
316
298
|
<col align="left" valign="top">
|
@@ -409,7 +391,7 @@ A set of bit flags used to indicate which fields
|
|
409
391
|
</table></div>
|
410
392
|
</div>
|
411
393
|
<hr>
|
412
|
-
<div class="refsect2"
|
394
|
+
<div class="refsect2">
|
413
395
|
<a name="GdkFunction"></a><h3>enum GdkFunction</h3>
|
414
396
|
<pre class="programlisting">typedef enum
|
415
397
|
{
|
@@ -542,10 +524,10 @@ useful. For bitmaps, <a class="link" href="gdk-Graphics-Contexts.html#GDK-AND:CA
|
|
542
524
|
</table></div>
|
543
525
|
</div>
|
544
526
|
<hr>
|
545
|
-
<div class="refsect2"
|
527
|
+
<div class="refsect2">
|
546
528
|
<a name="gdk-gc-new"></a><h3>gdk_gc_new ()</h3>
|
547
529
|
<pre class="programlisting"><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * gdk_gc_new (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
|
548
|
-
<div class="warning"
|
530
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
549
531
|
<h3 class="title">Warning</h3>
|
550
532
|
<p><code class="literal">gdk_gc_new</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
|
551
533
|
</div>
|
@@ -558,25 +540,22 @@ Create a new graphics context with default values.
|
|
558
540
|
<tr>
|
559
541
|
<td><p><span class="term"><em class="parameter"><code>drawable</code></em> :</span></p></td>
|
560
542
|
<td>a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>. The created GC must always be used
|
561
|
-
|
562
|
-
</td>
|
543
|
+
with drawables of the same depth as this one.</td>
|
563
544
|
</tr>
|
564
545
|
<tr>
|
565
546
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
566
|
-
<td>
|
567
|
-
|
568
|
-
</td>
|
547
|
+
<td>the new graphics context.</td>
|
569
548
|
</tr>
|
570
549
|
</tbody>
|
571
550
|
</table></div>
|
572
551
|
</div>
|
573
552
|
<hr>
|
574
|
-
<div class="refsect2"
|
553
|
+
<div class="refsect2">
|
575
554
|
<a name="gdk-gc-new-with-values"></a><h3>gdk_gc_new_with_values ()</h3>
|
576
555
|
<pre class="programlisting"><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * gdk_gc_new_with_values (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
|
577
|
-
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
556
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
578
557
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);</pre>
|
579
|
-
<div class="warning"
|
558
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
580
559
|
<h3 class="title">Warning</h3>
|
581
560
|
<p><code class="literal">gdk_gc_new_with_values</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
|
582
561
|
</div>
|
@@ -589,34 +568,29 @@ Create a new GC with the given initial values.
|
|
589
568
|
<tr>
|
590
569
|
<td><p><span class="term"><em class="parameter"><code>drawable</code></em> :</span></p></td>
|
591
570
|
<td>a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>. The created GC must always be used
|
592
|
-
|
593
|
-
</td>
|
571
|
+
with drawables of the same depth as this one.</td>
|
594
572
|
</tr>
|
595
573
|
<tr>
|
596
574
|
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
597
|
-
<td>a structure containing initial values for the GC
|
598
|
-
</td>
|
575
|
+
<td>a structure containing initial values for the GC.</td>
|
599
576
|
</tr>
|
600
577
|
<tr>
|
601
578
|
<td><p><span class="term"><em class="parameter"><code>values_mask</code></em> :</span></p></td>
|
602
579
|
<td>a bit mask indicating which fields in <em class="parameter"><code>values</code></em>
|
603
|
-
|
604
|
-
</td>
|
580
|
+
are set.</td>
|
605
581
|
</tr>
|
606
582
|
<tr>
|
607
583
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
608
|
-
<td>
|
609
|
-
|
610
|
-
</td>
|
584
|
+
<td>the new graphics context.</td>
|
611
585
|
</tr>
|
612
586
|
</tbody>
|
613
587
|
</table></div>
|
614
588
|
</div>
|
615
589
|
<hr>
|
616
|
-
<div class="refsect2"
|
590
|
+
<div class="refsect2">
|
617
591
|
<a name="gdk-gc-get-screen"></a><h3>gdk_gc_get_screen ()</h3>
|
618
592
|
<pre class="programlisting"><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="returnvalue">GdkScreen</span></a> * gdk_gc_get_screen (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
|
619
|
-
<div class="warning"
|
593
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
620
594
|
<h3 class="title">Warning</h3>
|
621
595
|
<p><code class="literal">gdk_gc_get_screen</code> is deprecated and should not be used in newly-written code.</p>
|
622
596
|
</div>
|
@@ -628,24 +602,21 @@ Gets the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="ty
|
|
628
602
|
<tbody>
|
629
603
|
<tr>
|
630
604
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
631
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
632
|
-
</td>
|
605
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
633
606
|
</tr>
|
634
607
|
<tr>
|
635
608
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
636
|
-
<td>
|
637
|
-
|
638
|
-
</td>
|
609
|
+
<td>the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> for <em class="parameter"><code>gc</code></em>.</td>
|
639
610
|
</tr>
|
640
611
|
</tbody>
|
641
612
|
</table></div>
|
642
613
|
<p class="since">Since 2.2</p>
|
643
614
|
</div>
|
644
615
|
<hr>
|
645
|
-
<div class="refsect2"
|
616
|
+
<div class="refsect2">
|
646
617
|
<a name="gdk-gc-ref"></a><h3>gdk_gc_ref ()</h3>
|
647
618
|
<pre class="programlisting"><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * gdk_gc_ref (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
|
648
|
-
<div class="warning"
|
619
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
649
620
|
<h3 class="title">Warning</h3>
|
650
621
|
<p><code class="literal">gdk_gc_ref</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a> instead.</p>
|
651
622
|
</div>
|
@@ -662,18 +633,16 @@ Deprecated function; use <a href="http://library.gnome.org/devel/gobject/unstabl
|
|
662
633
|
</tr>
|
663
634
|
<tr>
|
664
635
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
665
|
-
<td>
|
666
|
-
|
667
|
-
</td>
|
636
|
+
<td>the gc.</td>
|
668
637
|
</tr>
|
669
638
|
</tbody>
|
670
639
|
</table></div>
|
671
640
|
</div>
|
672
641
|
<hr>
|
673
|
-
<div class="refsect2"
|
642
|
+
<div class="refsect2">
|
674
643
|
<a name="gdk-gc-unref"></a><h3>gdk_gc_unref ()</h3>
|
675
644
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_unref (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
|
676
|
-
<div class="warning"
|
645
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
677
646
|
<h3 class="title">Warning</h3>
|
678
647
|
<p><code class="literal">gdk_gc_unref</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> instead.</p>
|
679
648
|
</div>
|
@@ -690,11 +659,11 @@ Decrement the reference count of <em class="parameter"><code>gc</code></em>.
|
|
690
659
|
</table></div>
|
691
660
|
</div>
|
692
661
|
<hr>
|
693
|
-
<div class="refsect2"
|
662
|
+
<div class="refsect2">
|
694
663
|
<a name="gdk-gc-destroy"></a><h3>gdk_gc_destroy</h3>
|
695
664
|
<pre class="programlisting">#define gdk_gc_destroy g_object_unref
|
696
665
|
</pre>
|
697
|
-
<div class="warning"
|
666
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
698
667
|
<h3 class="title">Warning</h3>
|
699
668
|
<p><code class="literal">gdk_gc_destroy</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> instead</p>
|
700
669
|
</div>
|
@@ -703,12 +672,12 @@ This function is obsolete and should not be used.
|
|
703
672
|
</p>
|
704
673
|
</div>
|
705
674
|
<hr>
|
706
|
-
<div class="refsect2"
|
675
|
+
<div class="refsect2">
|
707
676
|
<a name="gdk-gc-set-values"></a><h3>gdk_gc_set_values ()</h3>
|
708
677
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_values (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
709
|
-
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
678
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
710
679
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);</pre>
|
711
|
-
<div class="warning"
|
680
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
712
681
|
<h3 class="title">Warning</h3>
|
713
682
|
<p><code class="literal">gdk_gc_set_values</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
|
714
683
|
</div>
|
@@ -729,23 +698,21 @@ convenient.
|
|
729
698
|
</tr>
|
730
699
|
<tr>
|
731
700
|
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
732
|
-
<td>struct containing the new values
|
733
|
-
</td>
|
701
|
+
<td>struct containing the new values</td>
|
734
702
|
</tr>
|
735
703
|
<tr>
|
736
704
|
<td><p><span class="term"><em class="parameter"><code>values_mask</code></em> :</span></p></td>
|
737
|
-
<td>mask indicating which struct fields are to be used
|
738
|
-
</td>
|
705
|
+
<td>mask indicating which struct fields are to be used</td>
|
739
706
|
</tr>
|
740
707
|
</tbody>
|
741
708
|
</table></div>
|
742
709
|
</div>
|
743
710
|
<hr>
|
744
|
-
<div class="refsect2"
|
711
|
+
<div class="refsect2">
|
745
712
|
<a name="gdk-gc-get-values"></a><h3>gdk_gc_get_values ()</h3>
|
746
713
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_get_values (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
747
|
-
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);</pre>
|
748
|
-
<div class="warning"
|
714
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);</pre>
|
715
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
749
716
|
<h3 class="title">Warning</h3>
|
750
717
|
<p><code class="literal">gdk_gc_get_values</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
|
751
718
|
</div>
|
@@ -760,23 +727,21 @@ if you need them.
|
|
760
727
|
<tbody>
|
761
728
|
<tr>
|
762
729
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
763
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
764
|
-
</td>
|
730
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
765
731
|
</tr>
|
766
732
|
<tr>
|
767
733
|
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
768
|
-
<td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> structure in which to store the results
|
769
|
-
</td>
|
734
|
+
<td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure in which to store the results.</td>
|
770
735
|
</tr>
|
771
736
|
</tbody>
|
772
737
|
</table></div>
|
773
738
|
</div>
|
774
739
|
<hr>
|
775
|
-
<div class="refsect2"
|
740
|
+
<div class="refsect2">
|
776
741
|
<a name="gdk-gc-set-foreground"></a><h3>gdk_gc_set_foreground ()</h3>
|
777
742
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_foreground (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
778
743
|
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
|
779
|
-
<div class="warning"
|
744
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
780
745
|
<h3 class="title">Warning</h3>
|
781
746
|
<p><code class="literal">gdk_gc_set_foreground</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> to use a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>
|
782
747
|
as the source in Cairo.</p>
|
@@ -792,23 +757,21 @@ color as red, green, blue components.
|
|
792
757
|
<tbody>
|
793
758
|
<tr>
|
794
759
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
795
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
796
|
-
</td>
|
760
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
797
761
|
</tr>
|
798
762
|
<tr>
|
799
763
|
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
800
|
-
<td>the new foreground color
|
801
|
-
</td>
|
764
|
+
<td>the new foreground color.</td>
|
802
765
|
</tr>
|
803
766
|
</tbody>
|
804
767
|
</table></div>
|
805
768
|
</div>
|
806
769
|
<hr>
|
807
|
-
<div class="refsect2"
|
770
|
+
<div class="refsect2">
|
808
771
|
<a name="gdk-gc-set-background"></a><h3>gdk_gc_set_background ()</h3>
|
809
772
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_background (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
810
773
|
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
|
811
|
-
<div class="warning"
|
774
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
812
775
|
<h3 class="title">Warning</h3>
|
813
776
|
<p><code class="literal">gdk_gc_set_background</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> to use a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>
|
814
777
|
as the source in Cairo. Note that if you want to draw a background and a
|
@@ -826,23 +789,21 @@ color as red, green, blue components.
|
|
826
789
|
<tbody>
|
827
790
|
<tr>
|
828
791
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
829
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
830
|
-
</td>
|
792
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
831
793
|
</tr>
|
832
794
|
<tr>
|
833
795
|
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
834
|
-
<td>the new background color
|
835
|
-
</td>
|
796
|
+
<td>the new background color.</td>
|
836
797
|
</tr>
|
837
798
|
</tbody>
|
838
799
|
</table></div>
|
839
800
|
</div>
|
840
801
|
<hr>
|
841
|
-
<div class="refsect2"
|
802
|
+
<div class="refsect2">
|
842
803
|
<a name="gdk-gc-set-rgb-fg-color"></a><h3>gdk_gc_set_rgb_fg_color ()</h3>
|
843
804
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_rgb_fg_color (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
844
805
|
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
|
845
|
-
<div class="warning"
|
806
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
846
807
|
<h3 class="title">Warning</h3>
|
847
808
|
<p><code class="literal">gdk_gc_set_rgb_fg_color</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> instead.</p>
|
848
809
|
</div>
|
@@ -866,18 +827,17 @@ Calling this function for a GC without a colormap is an error.
|
|
866
827
|
</tr>
|
867
828
|
<tr>
|
868
829
|
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
869
|
-
<td>an unallocated <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a
|
870
|
-
</td>
|
830
|
+
<td>an unallocated <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>.</td>
|
871
831
|
</tr>
|
872
832
|
</tbody>
|
873
833
|
</table></div>
|
874
834
|
</div>
|
875
835
|
<hr>
|
876
|
-
<div class="refsect2"
|
836
|
+
<div class="refsect2">
|
877
837
|
<a name="gdk-gc-set-rgb-bg-color"></a><h3>gdk_gc_set_rgb_bg_color ()</h3>
|
878
838
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_rgb_bg_color (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
879
839
|
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
|
880
|
-
<div class="warning"
|
840
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
881
841
|
<h3 class="title">Warning</h3>
|
882
842
|
<p><code class="literal">gdk_gc_set_rgb_bg_color</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> instead.</p>
|
883
843
|
</div>
|
@@ -901,18 +861,17 @@ Calling this function for a GC without a colormap is an error.
|
|
901
861
|
</tr>
|
902
862
|
<tr>
|
903
863
|
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
904
|
-
<td>an unallocated <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a
|
905
|
-
</td>
|
864
|
+
<td>an unallocated <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>.</td>
|
906
865
|
</tr>
|
907
866
|
</tbody>
|
908
867
|
</table></div>
|
909
868
|
</div>
|
910
869
|
<hr>
|
911
|
-
<div class="refsect2"
|
870
|
+
<div class="refsect2">
|
912
871
|
<a name="gdk-gc-set-font"></a><h3>gdk_gc_set_font ()</h3>
|
913
872
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_font (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
914
873
|
<em class="parameter"><code><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);</pre>
|
915
|
-
<div class="warning"
|
874
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
916
875
|
<h3 class="title">Warning</h3>
|
917
876
|
<p><code class="literal">gdk_gc_set_font</code> is deprecated and should not be used in newly-written code.</p>
|
918
877
|
</div>
|
@@ -927,23 +886,21 @@ argument is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-
|
|
927
886
|
<tbody>
|
928
887
|
<tr>
|
929
888
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
930
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
931
|
-
</td>
|
889
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
932
890
|
</tr>
|
933
891
|
<tr>
|
934
892
|
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
935
|
-
<td>the new font
|
936
|
-
</td>
|
893
|
+
<td>the new font.</td>
|
937
894
|
</tr>
|
938
895
|
</tbody>
|
939
896
|
</table></div>
|
940
897
|
</div>
|
941
898
|
<hr>
|
942
|
-
<div class="refsect2"
|
899
|
+
<div class="refsect2">
|
943
900
|
<a name="gdk-gc-set-function"></a><h3>gdk_gc_set_function ()</h3>
|
944
901
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_function (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
945
902
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> function</code></em>);</pre>
|
946
|
-
<div class="warning"
|
903
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
947
904
|
<h3 class="title">Warning</h3>
|
948
905
|
<p><code class="literal">gdk_gc_set_function</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-operator"><code class="function">cairo_set_operator()</code></a> with Cairo.</p>
|
949
906
|
</div>
|
@@ -957,23 +914,21 @@ the final pixel values.
|
|
957
914
|
<tbody>
|
958
915
|
<tr>
|
959
916
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
960
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
961
|
-
</td>
|
917
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
962
918
|
</tr>
|
963
919
|
<tr>
|
964
920
|
<td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
|
965
|
-
<td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> to use
|
966
|
-
</td>
|
921
|
+
<td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> to use</td>
|
967
922
|
</tr>
|
968
923
|
</tbody>
|
969
924
|
</table></div>
|
970
925
|
</div>
|
971
926
|
<hr>
|
972
|
-
<div class="refsect2"
|
927
|
+
<div class="refsect2">
|
973
928
|
<a name="gdk-gc-set-fill"></a><h3>gdk_gc_set_fill ()</h3>
|
974
929
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_fill (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
975
930
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkFill" title="enum GdkFill"><span class="type">GdkFill</span></a> fill</code></em>);</pre>
|
976
|
-
<div class="warning"
|
931
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
977
932
|
<h3 class="title">Warning</h3>
|
978
933
|
<p><code class="literal">gdk_gc_set_fill</code> has been deprecated since version 2.22 and should not be used in newly-written code. You can achieve tiling in Cairo by using
|
979
934
|
<a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-extend"><code class="function">cairo_pattern_set_extend()</code></a> on the source. For stippling, see the
|
@@ -987,19 +942,17 @@ Set the fill mode for a graphics context.
|
|
987
942
|
<tbody>
|
988
943
|
<tr>
|
989
944
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
990
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
991
|
-
</td>
|
945
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
992
946
|
</tr>
|
993
947
|
<tr>
|
994
948
|
<td><p><span class="term"><em class="parameter"><code>fill</code></em> :</span></p></td>
|
995
|
-
<td>the new fill mode
|
996
|
-
</td>
|
949
|
+
<td>the new fill mode.</td>
|
997
950
|
</tr>
|
998
951
|
</tbody>
|
999
952
|
</table></div>
|
1000
953
|
</div>
|
1001
954
|
<hr>
|
1002
|
-
<div class="refsect2"
|
955
|
+
<div class="refsect2">
|
1003
956
|
<a name="GdkFill"></a><h3>enum GdkFill</h3>
|
1004
957
|
<pre class="programlisting">typedef enum
|
1005
958
|
{
|
@@ -1045,11 +998,11 @@ Determines how primitives are drawn.
|
|
1045
998
|
</table></div>
|
1046
999
|
</div>
|
1047
1000
|
<hr>
|
1048
|
-
<div class="refsect2"
|
1001
|
+
<div class="refsect2">
|
1049
1002
|
<a name="gdk-gc-set-tile"></a><h3>gdk_gc_set_tile ()</h3>
|
1050
1003
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_tile (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1051
1004
|
<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *tile</code></em>);</pre>
|
1052
|
-
<div class="warning"
|
1005
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1053
1006
|
<h3 class="title">Warning</h3>
|
1054
1007
|
<p><code class="literal">gdk_gc_set_tile</code> has been deprecated since version 2.22 and should not be used in newly-written code. The following code snippet sets a tiling <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>
|
1055
1008
|
as the source in Cairo:
|
@@ -1078,23 +1031,21 @@ is <a class="link" href="gdk-Graphics-Contexts.html#GDK-TILED:CAPS"><code class=
|
|
1078
1031
|
<tbody>
|
1079
1032
|
<tr>
|
1080
1033
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1081
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1082
|
-
</td>
|
1034
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1083
1035
|
</tr>
|
1084
1036
|
<tr>
|
1085
1037
|
<td><p><span class="term"><em class="parameter"><code>tile</code></em> :</span></p></td>
|
1086
|
-
<td>the new tile pixmap
|
1087
|
-
</td>
|
1038
|
+
<td>the new tile pixmap.</td>
|
1088
1039
|
</tr>
|
1089
1040
|
</tbody>
|
1090
1041
|
</table></div>
|
1091
1042
|
</div>
|
1092
1043
|
<hr>
|
1093
|
-
<div class="refsect2"
|
1044
|
+
<div class="refsect2">
|
1094
1045
|
<a name="gdk-gc-set-stipple"></a><h3>gdk_gc_set_stipple ()</h3>
|
1095
1046
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_stipple (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1096
1047
|
<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *stipple</code></em>);</pre>
|
1097
|
-
<div class="warning"
|
1048
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1098
1049
|
<h3 class="title">Warning</h3>
|
1099
1050
|
<p><code class="literal">gdk_gc_set_stipple</code> has been deprecated since version 2.22 and should not be used in newly-written code. Stippling has no direct replacement in Cairo. If you
|
1100
1051
|
want to achieve an identical look, you can use the stipple bitmap as a
|
@@ -1112,24 +1063,22 @@ stipple will only be used if the fill mode is
|
|
1112
1063
|
<tbody>
|
1113
1064
|
<tr>
|
1114
1065
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1115
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1116
|
-
</td>
|
1066
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1117
1067
|
</tr>
|
1118
1068
|
<tr>
|
1119
1069
|
<td><p><span class="term"><em class="parameter"><code>stipple</code></em> :</span></p></td>
|
1120
|
-
<td>the new stipple bitmap
|
1121
|
-
</td>
|
1070
|
+
<td>the new stipple bitmap.</td>
|
1122
1071
|
</tr>
|
1123
1072
|
</tbody>
|
1124
1073
|
</table></div>
|
1125
1074
|
</div>
|
1126
1075
|
<hr>
|
1127
|
-
<div class="refsect2"
|
1076
|
+
<div class="refsect2">
|
1128
1077
|
<a name="gdk-gc-set-ts-origin"></a><h3>gdk_gc_set_ts_origin ()</h3>
|
1129
1078
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_ts_origin (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1130
1079
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
1131
1080
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
|
1132
|
-
<div class="warning"
|
1081
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1133
1082
|
<h3 class="title">Warning</h3>
|
1134
1083
|
<p><code class="literal">gdk_gc_set_ts_origin</code> has been deprecated since version 2.22 and should not be used in newly-written code. You can set the origin for tiles and stipples in Cairo
|
1135
1084
|
by changing the source's matrix using <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-matrix"><code class="function">cairo_pattern_set_matrix()</code></a>. Or you
|
@@ -1147,29 +1096,26 @@ will coincide with this point.
|
|
1147
1096
|
<tbody>
|
1148
1097
|
<tr>
|
1149
1098
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1150
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1151
|
-
</td>
|
1099
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1152
1100
|
</tr>
|
1153
1101
|
<tr>
|
1154
1102
|
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1155
|
-
<td>the x-coordinate of the origin
|
1156
|
-
</td>
|
1103
|
+
<td>the x-coordinate of the origin.</td>
|
1157
1104
|
</tr>
|
1158
1105
|
<tr>
|
1159
1106
|
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1160
|
-
<td>the y-coordinate of the origin
|
1161
|
-
</td>
|
1107
|
+
<td>the y-coordinate of the origin.</td>
|
1162
1108
|
</tr>
|
1163
1109
|
</tbody>
|
1164
1110
|
</table></div>
|
1165
1111
|
</div>
|
1166
1112
|
<hr>
|
1167
|
-
<div class="refsect2"
|
1113
|
+
<div class="refsect2">
|
1168
1114
|
<a name="gdk-gc-set-clip-origin"></a><h3>gdk_gc_set_clip_origin ()</h3>
|
1169
1115
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_origin (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1170
1116
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
1171
1117
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>);</pre>
|
1172
|
-
<div class="warning"
|
1118
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1173
1119
|
<h3 class="title">Warning</h3>
|
1174
1120
|
<p><code class="literal">gdk_gc_set_clip_origin</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-Transformations.html#cairo-translate"><code class="function">cairo_translate()</code></a> before applying the clip path in
|
1175
1121
|
Cairo.</p>
|
@@ -1184,28 +1130,25 @@ the destination drawable of the current operation.
|
|
1184
1130
|
<tbody>
|
1185
1131
|
<tr>
|
1186
1132
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1187
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1188
|
-
</td>
|
1133
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1189
1134
|
</tr>
|
1190
1135
|
<tr>
|
1191
1136
|
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1192
|
-
<td>the x-coordinate of the origin
|
1193
|
-
</td>
|
1137
|
+
<td>the x-coordinate of the origin.</td>
|
1194
1138
|
</tr>
|
1195
1139
|
<tr>
|
1196
1140
|
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1197
|
-
<td>the y-coordinate of the origin
|
1198
|
-
</td>
|
1141
|
+
<td>the y-coordinate of the origin.</td>
|
1199
1142
|
</tr>
|
1200
1143
|
</tbody>
|
1201
1144
|
</table></div>
|
1202
1145
|
</div>
|
1203
1146
|
<hr>
|
1204
|
-
<div class="refsect2"
|
1147
|
+
<div class="refsect2">
|
1205
1148
|
<a name="gdk-gc-set-clip-mask"></a><h3>gdk_gc_set_clip_mask ()</h3>
|
1206
1149
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_mask (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1207
1150
|
<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkBitmap" title="GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
|
1208
|
-
<div class="warning"
|
1151
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1209
1152
|
<h3 class="title">Warning</h3>
|
1210
1153
|
<p><code class="literal">gdk_gc_set_clip_mask</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-mask"><code class="function">cairo_mask()</code></a> instead.</p>
|
1211
1154
|
</div>
|
@@ -1219,23 +1162,21 @@ origin. (See <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-or
|
|
1219
1162
|
<tbody>
|
1220
1163
|
<tr>
|
1221
1164
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1222
|
-
<td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1223
|
-
</td>
|
1165
|
+
<td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1224
1166
|
</tr>
|
1225
1167
|
<tr>
|
1226
1168
|
<td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
|
1227
|
-
<td>a bitmap
|
1228
|
-
</td>
|
1169
|
+
<td>a bitmap.</td>
|
1229
1170
|
</tr>
|
1230
1171
|
</tbody>
|
1231
1172
|
</table></div>
|
1232
1173
|
</div>
|
1233
1174
|
<hr>
|
1234
|
-
<div class="refsect2"
|
1175
|
+
<div class="refsect2">
|
1235
1176
|
<a name="gdk-gc-set-clip-rectangle"></a><h3>gdk_gc_set_clip_rectangle ()</h3>
|
1236
1177
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_rectangle (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1237
|
-
<em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);</pre>
|
1238
|
-
<div class="warning"
|
1178
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="struct GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);</pre>
|
1179
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1239
1180
|
<h3 class="title">Warning</h3>
|
1240
1181
|
<p><code class="literal">gdk_gc_set_clip_rectangle</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-Paths.html#cairo-rectangle"><code class="function">cairo_rectangle()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-clip"><code class="function">cairo_clip()</code></a> in Cairo.</p>
|
1241
1182
|
</div>
|
@@ -1249,23 +1190,21 @@ origin. (See <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-or
|
|
1249
1190
|
<tbody>
|
1250
1191
|
<tr>
|
1251
1192
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1252
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1253
|
-
</td>
|
1193
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1254
1194
|
</tr>
|
1255
1195
|
<tr>
|
1256
1196
|
<td><p><span class="term"><em class="parameter"><code>rectangle</code></em> :</span></p></td>
|
1257
|
-
<td>the rectangle to clip to
|
1258
|
-
</td>
|
1197
|
+
<td>the rectangle to clip to.</td>
|
1259
1198
|
</tr>
|
1260
1199
|
</tbody>
|
1261
1200
|
</table></div>
|
1262
1201
|
</div>
|
1263
1202
|
<hr>
|
1264
|
-
<div class="refsect2"
|
1203
|
+
<div class="refsect2">
|
1265
1204
|
<a name="gdk-gc-set-clip-region"></a><h3>gdk_gc_set_clip_region ()</h3>
|
1266
1205
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_region (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1267
1206
|
<em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a> *region</code></em>);</pre>
|
1268
|
-
<div class="warning"
|
1207
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1269
1208
|
<h3 class="title">Warning</h3>
|
1270
1209
|
<p><code class="literal">gdk_gc_set_clip_region</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-region" title="gdk_cairo_region ()"><code class="function">gdk_cairo_region()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-clip"><code class="function">cairo_clip()</code></a> in Cairo.</p>
|
1271
1210
|
</div>
|
@@ -1279,23 +1218,21 @@ The clip mask is interpreted relative to the clip origin. (See
|
|
1279
1218
|
<tbody>
|
1280
1219
|
<tr>
|
1281
1220
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1282
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1283
|
-
</td>
|
1221
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1284
1222
|
</tr>
|
1285
1223
|
<tr>
|
1286
1224
|
<td><p><span class="term"><em class="parameter"><code>region</code></em> :</span></p></td>
|
1287
|
-
<td>the <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a
|
1288
|
-
</td>
|
1225
|
+
<td>the <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a>.</td>
|
1289
1226
|
</tr>
|
1290
1227
|
</tbody>
|
1291
1228
|
</table></div>
|
1292
1229
|
</div>
|
1293
1230
|
<hr>
|
1294
|
-
<div class="refsect2"
|
1231
|
+
<div class="refsect2">
|
1295
1232
|
<a name="gdk-gc-set-subwindow"></a><h3>gdk_gc_set_subwindow ()</h3>
|
1296
1233
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_subwindow (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1297
1234
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode"><span class="type">GdkSubwindowMode</span></a> mode</code></em>);</pre>
|
1298
|
-
<div class="warning"
|
1235
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1299
1236
|
<h3 class="title">Warning</h3>
|
1300
1237
|
<p><code class="literal">gdk_gc_set_subwindow</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. If you need to control
|
1301
1238
|
subwindows, you must use drawing operations of the underlying window
|
@@ -1311,19 +1248,17 @@ windows of that window.
|
|
1311
1248
|
<tbody>
|
1312
1249
|
<tr>
|
1313
1250
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1314
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1315
|
-
</td>
|
1251
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1316
1252
|
</tr>
|
1317
1253
|
<tr>
|
1318
1254
|
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
1319
|
-
<td>the subwindow mode
|
1320
|
-
</td>
|
1255
|
+
<td>the subwindow mode.</td>
|
1321
1256
|
</tr>
|
1322
1257
|
</tbody>
|
1323
1258
|
</table></div>
|
1324
1259
|
</div>
|
1325
1260
|
<hr>
|
1326
|
-
<div class="refsect2"
|
1261
|
+
<div class="refsect2">
|
1327
1262
|
<a name="GdkSubwindowMode"></a><h3>enum GdkSubwindowMode</h3>
|
1328
1263
|
<pre class="programlisting">typedef enum
|
1329
1264
|
{
|
@@ -1352,11 +1287,11 @@ windows of that window.
|
|
1352
1287
|
</table></div>
|
1353
1288
|
</div>
|
1354
1289
|
<hr>
|
1355
|
-
<div class="refsect2"
|
1290
|
+
<div class="refsect2">
|
1356
1291
|
<a name="gdk-gc-set-exposures"></a><h3>gdk_gc_set_exposures ()</h3>
|
1357
1292
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_exposures (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1358
1293
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> exposures</code></em>);</pre>
|
1359
|
-
<div class="warning"
|
1294
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1360
1295
|
<h3 class="title">Warning</h3>
|
1361
1296
|
<p><code class="literal">gdk_gc_set_exposures</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. If you need to control
|
1362
1297
|
exposures, you must use drawing operations of the underlying window
|
@@ -1374,26 +1309,24 @@ drawable. (See <a class="link" href="gdk-Drawing-Primitives.html#gdk-draw-drawab
|
|
1374
1309
|
<tbody>
|
1375
1310
|
<tr>
|
1376
1311
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1377
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1378
|
-
</td>
|
1312
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1379
1313
|
</tr>
|
1380
1314
|
<tr>
|
1381
1315
|
<td><p><span class="term"><em class="parameter"><code>exposures</code></em> :</span></p></td>
|
1382
|
-
<td>if <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, exposure events will be generated
|
1383
|
-
</td>
|
1316
|
+
<td>if <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, exposure events will be generated.</td>
|
1384
1317
|
</tr>
|
1385
1318
|
</tbody>
|
1386
1319
|
</table></div>
|
1387
1320
|
</div>
|
1388
1321
|
<hr>
|
1389
|
-
<div class="refsect2"
|
1322
|
+
<div class="refsect2">
|
1390
1323
|
<a name="gdk-gc-set-line-attributes"></a><h3>gdk_gc_set_line_attributes ()</h3>
|
1391
1324
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_line_attributes (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1392
1325
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line_width</code></em>,
|
1393
1326
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle"><span class="type">GdkLineStyle</span></a> line_style</code></em>,
|
1394
1327
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle"><span class="type">GdkCapStyle</span></a> cap_style</code></em>,
|
1395
1328
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle"><span class="type">GdkJoinStyle</span></a> join_style</code></em>);</pre>
|
1396
|
-
<div class="warning"
|
1329
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1397
1330
|
<h3 class="title">Warning</h3>
|
1398
1331
|
<p><code class="literal">gdk_gc_set_line_attributes</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use the Cairo functions <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-line-width"><code class="function">cairo_set_line_width()</code></a>,
|
1399
1332
|
<a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-line-join"><code class="function">cairo_set_line_join()</code></a>, <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-line-cap"><code class="function">cairo_set_line_cap()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-dash"><code class="function">cairo_set_dash()</code></a>
|
@@ -1403,7 +1336,7 @@ a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">Gdk
|
|
1403
1336
|
</div>
|
1404
1337
|
<p>
|
1405
1338
|
Sets various attributes of how lines are drawn. See
|
1406
|
-
the corresponding members of <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="GdkGCValues"><span class="type">GdkGCValues</span></a> for full
|
1339
|
+
the corresponding members of <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> for full
|
1407
1340
|
explanations of the arguments.
|
1408
1341
|
</p>
|
1409
1342
|
<div class="variablelist"><table border="0">
|
@@ -1411,34 +1344,29 @@ explanations of the arguments.
|
|
1411
1344
|
<tbody>
|
1412
1345
|
<tr>
|
1413
1346
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1414
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1415
|
-
</td>
|
1347
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1416
1348
|
</tr>
|
1417
1349
|
<tr>
|
1418
1350
|
<td><p><span class="term"><em class="parameter"><code>line_width</code></em> :</span></p></td>
|
1419
|
-
<td>the width of lines
|
1420
|
-
</td>
|
1351
|
+
<td>the width of lines.</td>
|
1421
1352
|
</tr>
|
1422
1353
|
<tr>
|
1423
1354
|
<td><p><span class="term"><em class="parameter"><code>line_style</code></em> :</span></p></td>
|
1424
|
-
<td>the dash-style for lines
|
1425
|
-
</td>
|
1355
|
+
<td>the dash-style for lines.</td>
|
1426
1356
|
</tr>
|
1427
1357
|
<tr>
|
1428
1358
|
<td><p><span class="term"><em class="parameter"><code>cap_style</code></em> :</span></p></td>
|
1429
|
-
<td>the manner in which the ends of lines are drawn
|
1430
|
-
</td>
|
1359
|
+
<td>the manner in which the ends of lines are drawn.</td>
|
1431
1360
|
</tr>
|
1432
1361
|
<tr>
|
1433
1362
|
<td><p><span class="term"><em class="parameter"><code>join_style</code></em> :</span></p></td>
|
1434
|
-
<td>the in which lines are joined together
|
1435
|
-
</td>
|
1363
|
+
<td>the in which lines are joined together.</td>
|
1436
1364
|
</tr>
|
1437
1365
|
</tbody>
|
1438
1366
|
</table></div>
|
1439
1367
|
</div>
|
1440
1368
|
<hr>
|
1441
|
-
<div class="refsect2"
|
1369
|
+
<div class="refsect2">
|
1442
1370
|
<a name="GdkLineStyle"></a><h3>enum GdkLineStyle</h3>
|
1443
1371
|
<pre class="programlisting">typedef enum
|
1444
1372
|
{
|
@@ -1474,7 +1402,7 @@ Determines how lines are drawn.
|
|
1474
1402
|
</table></div>
|
1475
1403
|
</div>
|
1476
1404
|
<hr>
|
1477
|
-
<div class="refsect2"
|
1405
|
+
<div class="refsect2">
|
1478
1406
|
<a name="GdkCapStyle"></a><h3>enum GdkCapStyle</h3>
|
1479
1407
|
<pre class="programlisting">typedef enum
|
1480
1408
|
{
|
@@ -1518,7 +1446,7 @@ Determines how the end of lines are drawn.
|
|
1518
1446
|
</table></div>
|
1519
1447
|
</div>
|
1520
1448
|
<hr>
|
1521
|
-
<div class="refsect2"
|
1449
|
+
<div class="refsect2">
|
1522
1450
|
<a name="GdkJoinStyle"></a><h3>enum GdkJoinStyle</h3>
|
1523
1451
|
<pre class="programlisting">typedef enum
|
1524
1452
|
{
|
@@ -1553,13 +1481,13 @@ Determines how the joins between segments of a polygon are drawn.
|
|
1553
1481
|
</table></div>
|
1554
1482
|
</div>
|
1555
1483
|
<hr>
|
1556
|
-
<div class="refsect2"
|
1484
|
+
<div class="refsect2">
|
1557
1485
|
<a name="gdk-gc-set-dashes"></a><h3>gdk_gc_set_dashes ()</h3>
|
1558
1486
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_dashes (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1559
1487
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dash_offset</code></em>,
|
1560
1488
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> dash_list[]</code></em>,
|
1561
1489
|
<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</code></em>);</pre>
|
1562
|
-
<div class="warning"
|
1490
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1563
1491
|
<h3 class="title">Warning</h3>
|
1564
1492
|
<p><code class="literal">gdk_gc_set_dashes</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-dash"><code class="function">cairo_set_dash()</code></a> to set the dash in Cairo.</p>
|
1565
1493
|
</div>
|
@@ -1581,33 +1509,29 @@ should actually begin.
|
|
1581
1509
|
<tbody>
|
1582
1510
|
<tr>
|
1583
1511
|
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1584
|
-
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a
|
1585
|
-
</td>
|
1512
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1586
1513
|
</tr>
|
1587
1514
|
<tr>
|
1588
1515
|
<td><p><span class="term"><em class="parameter"><code>dash_offset</code></em> :</span></p></td>
|
1589
|
-
<td>the phase of the dash pattern
|
1590
|
-
</td>
|
1516
|
+
<td>the phase of the dash pattern.</td>
|
1591
1517
|
</tr>
|
1592
1518
|
<tr>
|
1593
1519
|
<td><p><span class="term"><em class="parameter"><code>dash_list</code></em> :</span></p></td>
|
1594
|
-
<td>an array of dash lengths
|
1595
|
-
</td>
|
1520
|
+
<td>an array of dash lengths.</td>
|
1596
1521
|
</tr>
|
1597
1522
|
<tr>
|
1598
1523
|
<td><p><span class="term"><em class="parameter"><code>n</code></em> :</span></p></td>
|
1599
|
-
<td>the number of elements in <em class="parameter"><code>dash_list</code></em
|
1600
|
-
</td>
|
1524
|
+
<td>the number of elements in <em class="parameter"><code>dash_list</code></em>.</td>
|
1601
1525
|
</tr>
|
1602
1526
|
</tbody>
|
1603
1527
|
</table></div>
|
1604
1528
|
</div>
|
1605
1529
|
<hr>
|
1606
|
-
<div class="refsect2"
|
1530
|
+
<div class="refsect2">
|
1607
1531
|
<a name="gdk-gc-copy"></a><h3>gdk_gc_copy ()</h3>
|
1608
1532
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_copy (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *dst_gc</code></em>,
|
1609
1533
|
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *src_gc</code></em>);</pre>
|
1610
|
-
<div class="warning"
|
1534
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1611
1535
|
<h3 class="title">Warning</h3>
|
1612
1536
|
<p><code class="literal">gdk_gc_copy</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for drawing. <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-save"><code class="function">cairo_save()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-restore"><code class="function">cairo_restore()</code></a>
|
1613
1537
|
can be helpful in cases where you'd have copied a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p>
|
@@ -1621,23 +1545,21 @@ onto another graphics context.
|
|
1621
1545
|
<tbody>
|
1622
1546
|
<tr>
|
1623
1547
|
<td><p><span class="term"><em class="parameter"><code>dst_gc</code></em> :</span></p></td>
|
1624
|
-
<td>the destination graphics context
|
1625
|
-
</td>
|
1548
|
+
<td>the destination graphics context.</td>
|
1626
1549
|
</tr>
|
1627
1550
|
<tr>
|
1628
1551
|
<td><p><span class="term"><em class="parameter"><code>src_gc</code></em> :</span></p></td>
|
1629
|
-
<td>the source graphics context
|
1630
|
-
</td>
|
1552
|
+
<td>the source graphics context.</td>
|
1631
1553
|
</tr>
|
1632
1554
|
</tbody>
|
1633
1555
|
</table></div>
|
1634
1556
|
</div>
|
1635
1557
|
<hr>
|
1636
|
-
<div class="refsect2"
|
1558
|
+
<div class="refsect2">
|
1637
1559
|
<a name="gdk-gc-set-colormap"></a><h3>gdk_gc_set_colormap ()</h3>
|
1638
1560
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_colormap (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1639
1561
|
<em class="parameter"><code><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>);</pre>
|
1640
|
-
<div class="warning"
|
1562
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1641
1563
|
<h3 class="title">Warning</h3>
|
1642
1564
|
<p><code class="literal">gdk_gc_set_colormap</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. Cairo handles colormaps
|
1643
1565
|
automatically, so there is no need to care about them.</p>
|
@@ -1664,10 +1586,10 @@ for which the GC was created.
|
|
1664
1586
|
</table></div>
|
1665
1587
|
</div>
|
1666
1588
|
<hr>
|
1667
|
-
<div class="refsect2"
|
1589
|
+
<div class="refsect2">
|
1668
1590
|
<a name="gdk-gc-get-colormap"></a><h3>gdk_gc_get_colormap ()</h3>
|
1669
1591
|
<pre class="programlisting"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a> * gdk_gc_get_colormap (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
|
1670
|
-
<div class="warning"
|
1592
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1671
1593
|
<h3 class="title">Warning</h3>
|
1672
1594
|
<p><code class="literal">gdk_gc_get_colormap</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. Cairo handles colormaps
|
1673
1595
|
automatically, so there is no need to care about them.</p>
|
@@ -1688,20 +1610,18 @@ gdk_gc_set_colormap.
|
|
1688
1610
|
</tr>
|
1689
1611
|
<tr>
|
1690
1612
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1691
|
-
<td>
|
1692
|
-
|
1693
|
-
</td>
|
1613
|
+
<td>the colormap of <em class="parameter"><code>gc</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>gc</code></em> doesn't have one.</td>
|
1694
1614
|
</tr>
|
1695
1615
|
</tbody>
|
1696
1616
|
</table></div>
|
1697
1617
|
</div>
|
1698
1618
|
<hr>
|
1699
|
-
<div class="refsect2"
|
1619
|
+
<div class="refsect2">
|
1700
1620
|
<a name="gdk-gc-offset"></a><h3>gdk_gc_offset ()</h3>
|
1701
1621
|
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_offset (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1702
1622
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x_offset</code></em>,
|
1703
1623
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y_offset</code></em>);</pre>
|
1704
|
-
<div class="warning"
|
1624
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1705
1625
|
<h3 class="title">Warning</h3>
|
1706
1626
|
<p><code class="literal">gdk_gc_offset</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no direct replacement, as this is just a
|
1707
1627
|
convenience function for gdk_gc_set_ts_origin and <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()"><code class="function">gdk_gc_set_clip_origin()</code></a>.</p>
|
@@ -1722,13 +1642,11 @@ GC.
|
|
1722
1642
|
</tr>
|
1723
1643
|
<tr>
|
1724
1644
|
<td><p><span class="term"><em class="parameter"><code>x_offset</code></em> :</span></p></td>
|
1725
|
-
<td>amount by which to offset the GC in the X direction
|
1726
|
-
</td>
|
1645
|
+
<td>amount by which to offset the GC in the X direction</td>
|
1727
1646
|
</tr>
|
1728
1647
|
<tr>
|
1729
1648
|
<td><p><span class="term"><em class="parameter"><code>y_offset</code></em> :</span></p></td>
|
1730
|
-
<td>amount by which to offset the GC in the Y direction
|
1731
|
-
</td>
|
1649
|
+
<td>amount by which to offset the GC in the Y direction</td>
|
1732
1650
|
</tr>
|
1733
1651
|
</tbody>
|
1734
1652
|
</table></div>
|
@@ -1737,6 +1655,6 @@ GC.
|
|
1737
1655
|
</div>
|
1738
1656
|
<div class="footer">
|
1739
1657
|
<hr>
|
1740
|
-
Generated by GTK-Doc V1.
|
1658
|
+
Generated by GTK-Doc V1.17</div>
|
1741
1659
|
</body>
|
1742
1660
|
</html>
|