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>GtkImage</title>
         | 
| 6 6 | 
             
            <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
         | 
| 7 | 
            -
            <link rel="home" href="index.html" title="GTK+ Reference Manual">
         | 
| 7 | 
            +
            <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
         | 
| 8 8 | 
             
            <link rel="up" href="DisplayWidgets.html" title="Display Widgets">
         | 
| 9 9 | 
             
            <link rel="prev" href="GtkAccelLabel.html" title="GtkAccelLabel">
         | 
| 10 10 | 
             
            <link rel="next" href="GtkLabel.html" title="GtkLabel">
         | 
| 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="GtkAccelLabel.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="u" href="DisplayWidgets.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 19 19 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 20 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 20 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 21 21 | 
             
            <td><a accesskey="n" href="GtkLabel.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 22 22 | 
             
            </tr>
         | 
| 23 23 | 
             
            <tr><td colspan="5" class="shortcuts">
         | 
| @@ -32,7 +32,7 @@ | |
| 32 32 | 
             
                              <a href="#GtkImage.properties" class="shortcut">Properties</a>
         | 
| 33 33 | 
             
            </td></tr>
         | 
| 34 34 | 
             
            </table>
         | 
| 35 | 
            -
            <div class="refentry" | 
| 35 | 
            +
            <div class="refentry">
         | 
| 36 36 | 
             
            <a name="GtkImage"></a><div class="titlepage"></div>
         | 
| 37 37 | 
             
            <div class="refnamediv"><table width="100%"><tr>
         | 
| 38 38 | 
             
            <td valign="top">
         | 
| @@ -41,67 +41,66 @@ | |
| 41 41 | 
             
            </td>
         | 
| 42 42 | 
             
            <td valign="top" align="right"><img src="image.png"></td>
         | 
| 43 43 | 
             
            </tr></table></div>
         | 
| 44 | 
            -
            <div class="refsynopsisdiv" | 
| 44 | 
            +
            <div class="refsynopsisdiv">
         | 
| 45 45 | 
             
            <a name="GtkImage.synopsis"></a><h2>Synopsis</h2>
         | 
| 46 46 | 
             
            <pre class="synopsis">
         | 
| 47 47 | 
             
            #include <gtk/gtk.h>
         | 
| 48 48 |  | 
| 49 | 
            -
             | 
| 49 | 
            +
            struct              <a class="link" href="GtkImage.html#GtkImage-struct" title="struct GtkImage">GtkImage</a>;
         | 
| 50 50 | 
             
            enum                <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType">GtkImageType</a>;
         | 
| 51 51 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-get-icon-set" title="gtk_image_get_icon_set ()">gtk_image_get_icon_set</a>              (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 52 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" | 
| 52 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> **icon_set</code></em>,
         | 
| 53 53 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> *size</code></em>);
         | 
| 54 54 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-get-image" title="gtk_image_get_image ()">gtk_image_get_image</a>                 (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 55 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 56 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 57 | 
            -
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 55 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> **gdk_image</code></em>,
         | 
| 56 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);
         | 
| 57 | 
            +
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *         <a class="link" href="GtkImage.html#gtk-image-get-pixbuf" title="gtk_image_get_pixbuf ()">gtk_image_get_pixbuf</a>                (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);
         | 
| 58 58 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-get-pixmap" title="gtk_image_get_pixmap ()">gtk_image_get_pixmap</a>                (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 59 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 60 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 59 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> **pixmap</code></em>,
         | 
| 60 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);
         | 
| 61 61 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-get-stock" title="gtk_image_get_stock ()">gtk_image_get_stock</a>                 (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 62 62 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **stock_id</code></em>,
         | 
| 63 63 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> *size</code></em>);
         | 
| 64 | 
            -
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 64 | 
            +
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="returnvalue">GdkPixbufAnimation</span></a> *  <a class="link" href="GtkImage.html#gtk-image-get-animation" title="gtk_image_get_animation ()">gtk_image_get_animation</a>           (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);
         | 
| 65 65 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-get-icon-name" title="gtk_image_get_icon_name ()">gtk_image_get_icon_name</a>             (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 66 | 
            -
                                                                     <em class="parameter"><code> | 
| 66 | 
            +
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **icon_name</code></em>,
         | 
| 67 67 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> *size</code></em>);
         | 
| 68 68 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-get-gicon" title="gtk_image_get_gicon ()">gtk_image_get_gicon</a>                 (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 69 69 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> **gicon</code></em>,
         | 
| 70 70 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> *size</code></em>);
         | 
| 71 71 | 
             
            <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="returnvalue">GtkImageType</span></a>        <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()">gtk_image_get_storage_type</a>          (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);
         | 
| 72 | 
            -
            <a class="link" href=" | 
| 73 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 72 | 
            +
            #define             <a class="link" href="GtkImage.html#gtk-image-new-from-file" title="gtk_image_new_from_file">gtk_image_new_from_file</a>
         | 
| 73 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkImage.html#gtk-image-new-from-icon-set" title="gtk_image_new_from_icon_set ()">gtk_image_new_from_icon_set</a>         (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
         | 
| 74 74 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
         | 
| 75 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 76 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 77 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 78 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 79 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 80 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 75 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkImage.html#gtk-image-new-from-image" title="gtk_image_new_from_image ()">gtk_image_new_from_image</a>            (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> *image</code></em>,
         | 
| 76 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);
         | 
| 77 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkImage.html#gtk-image-new-from-pixbuf" title="gtk_image_new_from_pixbuf ()">gtk_image_new_from_pixbuf</a>           (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
         | 
| 78 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkImage.html#gtk-image-new-from-pixmap" title="gtk_image_new_from_pixmap ()">gtk_image_new_from_pixmap</a>           (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
         | 
| 79 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);
         | 
| 80 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkImage.html#gtk-image-new-from-stock" title="gtk_image_new_from_stock ()">gtk_image_new_from_stock</a>            (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>,
         | 
| 81 81 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
         | 
| 82 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 83 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 82 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkImage.html#gtk-image-new-from-animation" title="gtk_image_new_from_animation ()">gtk_image_new_from_animation</a>        (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a> *animation</code></em>);
         | 
| 83 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkImage.html#gtk-image-new-from-icon-name" title="gtk_image_new_from_icon_name ()">gtk_image_new_from_icon_name</a>        (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>,
         | 
| 84 84 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
         | 
| 85 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 85 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkImage.html#gtk-image-new-from-gicon" title="gtk_image_new_from_gicon ()">gtk_image_new_from_gicon</a>            (<em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>,
         | 
| 86 86 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
         | 
| 87 | 
            -
            < | 
| 88 | 
            -
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *filename</code></em>);
         | 
| 87 | 
            +
            #define             <a class="link" href="GtkImage.html#gtk-image-set-from-file" title="gtk_image_set_from_file">gtk_image_set_from_file</a>
         | 
| 89 88 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-set-from-icon-set" title="gtk_image_set_from_icon_set ()">gtk_image_set_from_icon_set</a>         (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 90 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" | 
| 89 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
         | 
| 91 90 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
         | 
| 92 91 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-set-from-image" title="gtk_image_set_from_image ()">gtk_image_set_from_image</a>            (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 93 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 94 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 92 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> *gdk_image</code></em>,
         | 
| 93 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);
         | 
| 95 94 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-set-from-pixbuf" title="gtk_image_set_from_pixbuf ()">gtk_image_set_from_pixbuf</a>           (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 96 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 95 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
         | 
| 97 96 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-set-from-pixmap" title="gtk_image_set_from_pixmap ()">gtk_image_set_from_pixmap</a>           (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 98 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 99 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 97 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
         | 
| 98 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);
         | 
| 100 99 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-set-from-stock" title="gtk_image_set_from_stock ()">gtk_image_set_from_stock</a>            (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 101 100 | 
             
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>,
         | 
| 102 101 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
         | 
| 103 102 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-set-from-animation" title="gtk_image_set_from_animation ()">gtk_image_set_from_animation</a>        (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 104 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 103 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a> *animation</code></em>);
         | 
| 105 104 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-set-from-icon-name" title="gtk_image_set_from_icon_name ()">gtk_image_set_from_icon_name</a>        (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 106 105 | 
             
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>,
         | 
| 107 106 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
         | 
| @@ -109,19 +108,19 @@ enum                <a class="link" href="GtkImage.html#GtkImageType" title="enu | |
| 109 108 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>,
         | 
| 110 109 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);
         | 
| 111 110 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-clear" title="gtk_image_clear ()">gtk_image_clear</a>                     (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);
         | 
| 112 | 
            -
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 111 | 
            +
            <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         <a class="link" href="GtkImage.html#gtk-image-new" title="gtk_image_new ()">gtk_image_new</a>                       (<em class="parameter"><code><span class="type">void</span></code></em>);
         | 
| 113 112 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-set" title="gtk_image_set ()">gtk_image_set</a>                       (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 114 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 115 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 113 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> *val</code></em>,
         | 
| 114 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);
         | 
| 116 115 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-get" title="gtk_image_get ()">gtk_image_get</a>                       (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 117 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 118 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 116 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> **val</code></em>,
         | 
| 117 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);
         | 
| 119 118 | 
             
            <span class="returnvalue">void</span>                <a class="link" href="GtkImage.html#gtk-image-set-pixel-size" title="gtk_image_set_pixel_size ()">gtk_image_set_pixel_size</a>            (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 120 119 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> pixel_size</code></em>);
         | 
| 121 120 | 
             
            <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                <a class="link" href="GtkImage.html#gtk-image-get-pixel-size" title="gtk_image_get_pixel_size ()">gtk_image_get_pixel_size</a>            (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);
         | 
| 122 121 | 
             
            </pre>
         | 
| 123 122 | 
             
            </div>
         | 
| 124 | 
            -
            <div class="refsect1" | 
| 123 | 
            +
            <div class="refsect1">
         | 
| 125 124 | 
             
            <a name="GtkImage.object-hierarchy"></a><h2>Object Hierarchy</h2>
         | 
| 126 125 | 
             
            <pre class="synopsis">
         | 
| 127 126 | 
             
              <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
         | 
| @@ -132,37 +131,37 @@ enum                <a class="link" href="GtkImage.html#GtkImageType" title="enu | |
| 132 131 | 
             
                                       +----GtkImage
         | 
| 133 132 | 
             
            </pre>
         | 
| 134 133 | 
             
            </div>
         | 
| 135 | 
            -
            <div class="refsect1" | 
| 134 | 
            +
            <div class="refsect1">
         | 
| 136 135 | 
             
            <a name="GtkImage.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
         | 
| 137 136 | 
             
            <p>
         | 
| 138 137 | 
             
            GtkImage implements
         | 
| 139 138 | 
             
             AtkImplementorIface and  <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
         | 
| 140 139 | 
             
            </div>
         | 
| 141 | 
            -
            <div class="refsect1" | 
| 140 | 
            +
            <div class="refsect1">
         | 
| 142 141 | 
             
            <a name="GtkImage.properties"></a><h2>Properties</h2>
         | 
| 143 142 | 
             
            <pre class="synopsis">
         | 
| 144 143 | 
             
              "<a class="link" href="GtkImage.html#GtkImage--file" title='The "file" property'>file</a>"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write
         | 
| 145 144 | 
             
              "<a class="link" href="GtkImage.html#GtkImage--gicon" title='The "gicon" property'>gicon</a>"                    <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>*                : Read / Write
         | 
| 146 145 | 
             
              "<a class="link" href="GtkImage.html#GtkImage--icon-name" title='The "icon-name" property'>icon-name</a>"                <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write
         | 
| 147 | 
            -
              "<a class="link" href="GtkImage.html#GtkImage--icon-set" title='The "icon-set" property'>icon-set</a>"                 <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" | 
| 146 | 
            +
              "<a class="link" href="GtkImage.html#GtkImage--icon-set" title='The "icon-set" property'>icon-set</a>"                 <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>*           : Read / Write
         | 
| 148 147 | 
             
              "<a class="link" href="GtkImage.html#GtkImage--icon-size" title='The "icon-size" property'>icon-size</a>"                <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write
         | 
| 149 | 
            -
              "<a class="link" href="GtkImage.html#GtkImage--image" title='The "image" property'>image</a>"                    <a href="http://library.gnome.org/devel/ | 
| 150 | 
            -
              "<a class="link" href="GtkImage.html#GtkImage--mask" title='The "mask" property'>mask</a>"                     <a href="http://library.gnome.org/devel/ | 
| 151 | 
            -
              "<a class="link" href="GtkImage.html#GtkImage--pixbuf" title='The "pixbuf" property'>pixbuf</a>"                   <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 152 | 
            -
              "<a class="link" href="GtkImage.html#GtkImage--pixbuf-animation" title='The "pixbuf-animation" property'>pixbuf-animation</a>"         <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 148 | 
            +
              "<a class="link" href="GtkImage.html#GtkImage--image" title='The "image" property'>image</a>"                    <a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a>*             : Read / Write
         | 
| 149 | 
            +
              "<a class="link" href="GtkImage.html#GtkImage--mask" title='The "mask" property'>mask</a>"                     <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>*            : Read / Write
         | 
| 150 | 
            +
              "<a class="link" href="GtkImage.html#GtkImage--pixbuf" title='The "pixbuf" property'>pixbuf</a>"                   <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>*            : Read / Write
         | 
| 151 | 
            +
              "<a class="link" href="GtkImage.html#GtkImage--pixbuf-animation" title='The "pixbuf-animation" property'>pixbuf-animation</a>"         <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a>*   : Read / Write
         | 
| 153 152 | 
             
              "<a class="link" href="GtkImage.html#GtkImage--pixel-size" title='The "pixel-size" property'>pixel-size</a>"               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write
         | 
| 154 | 
            -
              "<a class="link" href="GtkImage.html#GtkImage--pixmap" title='The "pixmap" property'>pixmap</a>"                   <a href="http://library.gnome.org/devel/ | 
| 153 | 
            +
              "<a class="link" href="GtkImage.html#GtkImage--pixmap" title='The "pixmap" property'>pixmap</a>"                   <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>*            : Read / Write
         | 
| 155 154 | 
             
              "<a class="link" href="GtkImage.html#GtkImage--stock" title='The "stock" property'>stock</a>"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write
         | 
| 156 155 | 
             
              "<a class="link" href="GtkImage.html#GtkImage--storage-type" title='The "storage-type" property'>storage-type</a>"             <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a>          : Read
         | 
| 157 156 | 
             
            </pre>
         | 
| 158 157 | 
             
            </div>
         | 
| 159 | 
            -
            <div class="refsect1" | 
| 158 | 
            +
            <div class="refsect1">
         | 
| 160 159 | 
             
            <a name="GtkImage.description"></a><h2>Description</h2>
         | 
| 161 160 | 
             
            <p>
         | 
| 162 161 | 
             
            The <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget displays an image. Various kinds of object
         | 
| 163 162 | 
             
            can be displayed as an image; most typically, you would load a
         | 
| 164 | 
            -
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 165 | 
            -
            There's a convenience function to do this, <a class="link" href="GtkImage.html#gtk-image-new-from-file" title="gtk_image_new_from_file | 
| 163 | 
            +
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> ("pixel buffer") from a file, and then display that.
         | 
| 164 | 
            +
            There's a convenience function to do this, <a class="link" href="GtkImage.html#gtk-image-new-from-file" title="gtk_image_new_from_file"><code class="function">gtk_image_new_from_file()</code></a>,
         | 
| 166 165 | 
             
            used as follows:
         | 
| 167 166 | 
             
            </p>
         | 
| 168 167 | 
             
            <div class="informalexample">
         | 
| @@ -183,12 +182,12 @@ If the file isn't loaded successfully, the image will contain a | |
| 183 182 | 
             
            "broken image" icon similar to that used in many web browsers.
         | 
| 184 183 | 
             
            If you want to handle errors in loading the file yourself,
         | 
| 185 184 | 
             
            for example by displaying an error message, then load the image with
         | 
| 186 | 
            -
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 185 | 
            +
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-File-Loading.html#gdk-pixbuf-new-from-file"><code class="function">gdk_pixbuf_new_from_file()</code></a>, then create the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> with
         | 
| 187 186 | 
             
            <a class="link" href="GtkImage.html#gtk-image-new-from-pixbuf" title="gtk_image_new_from_pixbuf ()"><code class="function">gtk_image_new_from_pixbuf()</code></a>.
         | 
| 188 187 | 
             
            </p>
         | 
| 189 188 | 
             
            <p>
         | 
| 190 189 | 
             
            The image file may contain an animation, if so the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> will
         | 
| 191 | 
            -
            display an animation (<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 190 | 
            +
            display an animation (<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a>) instead of a static image.
         | 
| 192 191 | 
             
            </p>
         | 
| 193 192 | 
             
            <p>
         | 
| 194 193 | 
             
            <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> is a subclass of <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a>, which implies that you can
         | 
| @@ -196,13 +195,13 @@ align it (center, left, right) and add padding to it, using | |
| 196 195 | 
             
            <a class="link" href="GtkMisc.html" title="GtkMisc"><span class="type">GtkMisc</span></a> methods.
         | 
| 197 196 | 
             
            </p>
         | 
| 198 197 | 
             
            <p>
         | 
| 199 | 
            -
            <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> is a "no window" widget (has no <a href="http://library.gnome.org/devel/ | 
| 198 | 
            +
            <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> is a "no window" widget (has no <a href="http://library.gnome.org/devel/gdk3/gdk-Windows.html#GdkWindow"><span class="type">GdkWindow</span></a> of its own),
         | 
| 200 199 | 
             
            so by default does not receive events. If you want to receive events
         | 
| 201 200 | 
             
            on the image, such as button clicks, place the image inside a
         | 
| 202 201 | 
             
            <a class="link" href="GtkEventBox.html" title="GtkEventBox"><span class="type">GtkEventBox</span></a>, then connect to the event signals on the event box.
         | 
| 203 202 | 
             
            </p>
         | 
| 204 203 | 
             
            <div class="example">
         | 
| 205 | 
            -
            <a name=" | 
| 204 | 
            +
            <a name="id776213"></a><p class="title"><b>Example 12. Handling button press events on a
         | 
| 206 205 | 
             
            <span class="structname">GtkImage</span>.</b></p>
         | 
| 207 206 | 
             
            <div class="example-contents">
         | 
| 208 207 | 
             
              <table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
         | 
| @@ -299,22 +298,22 @@ Sometimes an application will want to avoid depending on external data | |
| 299 298 | 
             
            files, such as image files. GTK+ comes with a program to avoid this,
         | 
| 300 299 | 
             
            called <span class="application">gdk-pixbuf-csource</span>. This program
         | 
| 301 300 | 
             
            allows you to convert an image into a C variable declaration, which
         | 
| 302 | 
            -
            can then be loaded into a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 303 | 
            -
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 301 | 
            +
            can then be loaded into a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> using
         | 
| 302 | 
            +
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Image-Data-in-Memory.html#gdk-pixbuf-new-from-inline"><code class="function">gdk_pixbuf_new_from_inline()</code></a>.
         | 
| 304 303 | 
             
            </p>
         | 
| 305 304 | 
             
            </div>
         | 
| 306 | 
            -
            <div class="refsect1" | 
| 305 | 
            +
            <div class="refsect1">
         | 
| 307 306 | 
             
            <a name="GtkImage.details"></a><h2>Details</h2>
         | 
| 308 | 
            -
            <div class="refsect2" | 
| 309 | 
            -
            <a name="GtkImage-struct"></a><h3>GtkImage</h3>
         | 
| 310 | 
            -
            <pre class="programlisting"> | 
| 307 | 
            +
            <div class="refsect2">
         | 
| 308 | 
            +
            <a name="GtkImage-struct"></a><h3>struct GtkImage</h3>
         | 
| 309 | 
            +
            <pre class="programlisting">struct GtkImage;</pre>
         | 
| 311 310 | 
             
            <p>
         | 
| 312 311 | 
             
            This struct contain private data only and should be accessed by the functions
         | 
| 313 312 | 
             
            below.
         | 
| 314 313 | 
             
            </p>
         | 
| 315 314 | 
             
            </div>
         | 
| 316 315 | 
             
            <hr>
         | 
| 317 | 
            -
            <div class="refsect2" | 
| 316 | 
            +
            <div class="refsect2">
         | 
| 318 317 | 
             
            <a name="GtkImageType"></a><h3>enum GtkImageType</h3>
         | 
| 319 318 | 
             
            <pre class="programlisting">typedef enum
         | 
| 320 319 | 
             
            {
         | 
| @@ -348,17 +347,17 @@ functions), but they will all return <a href="http://library.gnome.org/devel/gli | |
| 348 347 | 
             
            </tr>
         | 
| 349 348 | 
             
            <tr>
         | 
| 350 349 | 
             
            <td><p><a name="GTK-IMAGE-PIXMAP:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_PIXMAP</code></span></p></td>
         | 
| 351 | 
            -
            <td>the widget contains a <a href="http://library.gnome.org/devel/ | 
| 350 | 
            +
            <td>the widget contains a <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>
         | 
| 352 351 | 
             
            </td>
         | 
| 353 352 | 
             
            </tr>
         | 
| 354 353 | 
             
            <tr>
         | 
| 355 354 | 
             
            <td><p><a name="GTK-IMAGE-IMAGE:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_IMAGE</code></span></p></td>
         | 
| 356 | 
            -
            <td>the widget contains a <a href="http://library.gnome.org/devel/ | 
| 355 | 
            +
            <td>the widget contains a <a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a>
         | 
| 357 356 | 
             
            </td>
         | 
| 358 357 | 
             
            </tr>
         | 
| 359 358 | 
             
            <tr>
         | 
| 360 359 | 
             
            <td><p><a name="GTK-IMAGE-PIXBUF:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_PIXBUF</code></span></p></td>
         | 
| 361 | 
            -
            <td>the widget contains a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 360 | 
            +
            <td>the widget contains a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
         | 
| 362 361 | 
             
            </td>
         | 
| 363 362 | 
             
            </tr>
         | 
| 364 363 | 
             
            <tr>
         | 
| @@ -368,12 +367,12 @@ functions), but they will all return <a href="http://library.gnome.org/devel/gli | |
| 368 367 | 
             
            </tr>
         | 
| 369 368 | 
             
            <tr>
         | 
| 370 369 | 
             
            <td><p><a name="GTK-IMAGE-ICON-SET:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_ICON_SET</code></span></p></td>
         | 
| 371 | 
            -
            <td>the widget contains a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" | 
| 370 | 
            +
            <td>the widget contains a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
         | 
| 372 371 | 
             
            </td>
         | 
| 373 372 | 
             
            </tr>
         | 
| 374 373 | 
             
            <tr>
         | 
| 375 374 | 
             
            <td><p><a name="GTK-IMAGE-ANIMATION:CAPS"></a><span class="term"><code class="literal">GTK_IMAGE_ANIMATION</code></span></p></td>
         | 
| 376 | 
            -
            <td>the widget contains a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 375 | 
            +
            <td>the widget contains a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a>
         | 
| 377 376 | 
             
            </td>
         | 
| 378 377 | 
             
            </tr>
         | 
| 379 378 | 
             
            <tr>
         | 
| @@ -392,10 +391,10 @@ functions), but they will all return <a href="http://library.gnome.org/devel/gli | |
| 392 391 | 
             
            </table></div>
         | 
| 393 392 | 
             
            </div>
         | 
| 394 393 | 
             
            <hr>
         | 
| 395 | 
            -
            <div class="refsect2" | 
| 394 | 
            +
            <div class="refsect2">
         | 
| 396 395 | 
             
            <a name="gtk-image-get-icon-set"></a><h3>gtk_image_get_icon_set ()</h3>
         | 
| 397 396 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_get_icon_set              (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 398 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" | 
| 397 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> **icon_set</code></em>,
         | 
| 399 398 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> *size</code></em>);</pre>
         | 
| 400 399 | 
             
            <p>
         | 
| 401 400 | 
             
            Gets the icon set and size being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
         | 
| @@ -412,27 +411,27 @@ The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IM | |
| 412 411 | 
             
            </tr>
         | 
| 413 412 | 
             
            <tr>
         | 
| 414 413 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
         | 
| 415 | 
            -
            <td> | 
| 416 | 
            -
             | 
| 414 | 
            +
            <td>location to store a
         | 
| 415 | 
            +
            <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 417 416 | 
             
            </td>
         | 
| 418 417 | 
             
            </tr>
         | 
| 419 418 | 
             
            <tr>
         | 
| 420 419 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 421 | 
            -
            <td> | 
| 422 | 
            -
             | 
| 420 | 
            +
            <td>location to store a stock
         | 
| 421 | 
            +
            icon size, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 423 422 | 
             
            </td>
         | 
| 424 423 | 
             
            </tr>
         | 
| 425 424 | 
             
            </tbody>
         | 
| 426 425 | 
             
            </table></div>
         | 
| 427 426 | 
             
            </div>
         | 
| 428 427 | 
             
            <hr>
         | 
| 429 | 
            -
            <div class="refsect2" | 
| 428 | 
            +
            <div class="refsect2">
         | 
| 430 429 | 
             
            <a name="gtk-image-get-image"></a><h3>gtk_image_get_image ()</h3>
         | 
| 431 430 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_get_image                 (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 432 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 433 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 431 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> **gdk_image</code></em>,
         | 
| 432 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);</pre>
         | 
| 434 433 | 
             
            <p>
         | 
| 435 | 
            -
            Gets the <a href="http://library.gnome.org/devel/ | 
| 434 | 
            +
            Gets the <a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> and mask being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
         | 
| 436 435 | 
             
            The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
         | 
| 437 436 | 
             
            <a class="link" href="GtkImage.html#GTK-IMAGE-IMAGE:CAPS"><code class="literal">GTK_IMAGE_IMAGE</code></a> (see <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>).
         | 
| 438 437 | 
             
            The caller of this function does not own a reference to the
         | 
| @@ -448,25 +447,25 @@ returned image and mask. | |
| 448 447 | 
             
            </tr>
         | 
| 449 448 | 
             
            <tr>
         | 
| 450 449 | 
             
            <td><p><span class="term"><em class="parameter"><code>gdk_image</code></em> :</span></p></td>
         | 
| 451 | 
            -
            <td> | 
| 452 | 
            -
             | 
| 450 | 
            +
            <td>return location for
         | 
| 451 | 
            +
            a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 453 452 | 
             
            </td>
         | 
| 454 453 | 
             
            </tr>
         | 
| 455 454 | 
             
            <tr>
         | 
| 456 455 | 
             
            <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
         | 
| 457 | 
            -
            <td> | 
| 458 | 
            -
             | 
| 456 | 
            +
            <td>return location for a
         | 
| 457 | 
            +
            <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 459 458 | 
             
            </td>
         | 
| 460 459 | 
             
            </tr>
         | 
| 461 460 | 
             
            </tbody>
         | 
| 462 461 | 
             
            </table></div>
         | 
| 463 462 | 
             
            </div>
         | 
| 464 463 | 
             
            <hr>
         | 
| 465 | 
            -
            <div class="refsect2" | 
| 464 | 
            +
            <div class="refsect2">
         | 
| 466 465 | 
             
            <a name="gtk-image-get-pixbuf"></a><h3>gtk_image_get_pixbuf ()</h3>
         | 
| 467 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 466 | 
            +
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="returnvalue">GdkPixbuf</span></a> *         gtk_image_get_pixbuf                (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);</pre>
         | 
| 468 467 | 
             
            <p>
         | 
| 469 | 
            -
            Gets the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 468 | 
            +
            Gets the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
         | 
| 470 469 | 
             
            The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
         | 
| 471 470 | 
             
            <a class="link" href="GtkImage.html#GTK-IMAGE-PIXBUF:CAPS"><code class="literal">GTK_IMAGE_PIXBUF</code></a> (see <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>).
         | 
| 472 471 | 
             
            The caller of this function does not own a reference to the
         | 
| @@ -482,7 +481,7 @@ returned pixbuf. | |
| 482 481 | 
             
            </tr>
         | 
| 483 482 | 
             
            <tr>
         | 
| 484 483 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 485 | 
            -
            <td> | 
| 484 | 
            +
            <td>the displayed pixbuf, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
         | 
| 486 485 | 
             
            the image is empty. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 487 486 | 
             
            </td>
         | 
| 488 487 | 
             
            </tr>
         | 
| @@ -490,11 +489,11 @@ the image is empty. <span class="annotation">[<acronym title="Don't free data af | |
| 490 489 | 
             
            </table></div>
         | 
| 491 490 | 
             
            </div>
         | 
| 492 491 | 
             
            <hr>
         | 
| 493 | 
            -
            <div class="refsect2" | 
| 492 | 
            +
            <div class="refsect2">
         | 
| 494 493 | 
             
            <a name="gtk-image-get-pixmap"></a><h3>gtk_image_get_pixmap ()</h3>
         | 
| 495 494 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_get_pixmap                (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 496 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 497 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 495 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> **pixmap</code></em>,
         | 
| 496 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);</pre>
         | 
| 498 497 | 
             
            <p>
         | 
| 499 498 | 
             
            Gets the pixmap and mask being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
         | 
| 500 499 | 
             
            The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
         | 
| @@ -512,21 +511,21 @@ returned pixmap and mask. | |
| 512 511 | 
             
            </tr>
         | 
| 513 512 | 
             
            <tr>
         | 
| 514 513 | 
             
            <td><p><span class="term"><em class="parameter"><code>pixmap</code></em> :</span></p></td>
         | 
| 515 | 
            -
            <td> | 
| 516 | 
            -
             | 
| 514 | 
            +
            <td>location to store the
         | 
| 515 | 
            +
            pixmap, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 517 516 | 
             
            </td>
         | 
| 518 517 | 
             
            </tr>
         | 
| 519 518 | 
             
            <tr>
         | 
| 520 519 | 
             
            <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
         | 
| 521 | 
            -
            <td> | 
| 522 | 
            -
             | 
| 520 | 
            +
            <td>location to store the
         | 
| 521 | 
            +
            mask, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 523 522 | 
             
            </td>
         | 
| 524 523 | 
             
            </tr>
         | 
| 525 524 | 
             
            </tbody>
         | 
| 526 525 | 
             
            </table></div>
         | 
| 527 526 | 
             
            </div>
         | 
| 528 527 | 
             
            <hr>
         | 
| 529 | 
            -
            <div class="refsect2" | 
| 528 | 
            +
            <div class="refsect2">
         | 
| 530 529 | 
             
            <a name="gtk-image-get-stock"></a><h3>gtk_image_get_stock ()</h3>
         | 
| 531 530 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_get_stock                 (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 532 531 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **stock_id</code></em>,
         | 
| @@ -548,25 +547,25 @@ be freed. | |
| 548 547 | 
             
            </tr>
         | 
| 549 548 | 
             
            <tr>
         | 
| 550 549 | 
             
            <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
         | 
| 551 | 
            -
            <td> | 
| 552 | 
            -
             | 
| 550 | 
            +
            <td>place to store a
         | 
| 551 | 
            +
            stock icon name, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 553 552 | 
             
            </td>
         | 
| 554 553 | 
             
            </tr>
         | 
| 555 554 | 
             
            <tr>
         | 
| 556 555 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 557 | 
            -
            <td> | 
| 558 | 
            -
             | 
| 556 | 
            +
            <td>place to store a stock icon
         | 
| 557 | 
            +
            size, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 559 558 | 
             
            </td>
         | 
| 560 559 | 
             
            </tr>
         | 
| 561 560 | 
             
            </tbody>
         | 
| 562 561 | 
             
            </table></div>
         | 
| 563 562 | 
             
            </div>
         | 
| 564 563 | 
             
            <hr>
         | 
| 565 | 
            -
            <div class="refsect2" | 
| 564 | 
            +
            <div class="refsect2">
         | 
| 566 565 | 
             
            <a name="gtk-image-get-animation"></a><h3>gtk_image_get_animation ()</h3>
         | 
| 567 | 
            -
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 566 | 
            +
            <pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="returnvalue">GdkPixbufAnimation</span></a> *  gtk_image_get_animation           (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);</pre>
         | 
| 568 567 | 
             
            <p>
         | 
| 569 | 
            -
            Gets the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 568 | 
            +
            Gets the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a> being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
         | 
| 570 569 | 
             
            The storage type of the image must be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAPS"><code class="literal">GTK_IMAGE_EMPTY</code></a> or
         | 
| 571 570 | 
             
            <a class="link" href="GtkImage.html#GTK-IMAGE-ANIMATION:CAPS"><code class="literal">GTK_IMAGE_ANIMATION</code></a> (see <a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>).
         | 
| 572 571 | 
             
            The caller of this function does not own a reference to the
         | 
| @@ -582,7 +581,7 @@ returned animation. | |
| 582 581 | 
             
            </tr>
         | 
| 583 582 | 
             
            <tr>
         | 
| 584 583 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 585 | 
            -
            <td> | 
| 584 | 
            +
            <td>the displayed animation, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if
         | 
| 586 585 | 
             
            the image is empty. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
         | 
| 587 586 | 
             
            </td>
         | 
| 588 587 | 
             
            </tr>
         | 
| @@ -590,10 +589,10 @@ the image is empty. <span class="annotation">[<acronym title="Don't free data af | |
| 590 589 | 
             
            </table></div>
         | 
| 591 590 | 
             
            </div>
         | 
| 592 591 | 
             
            <hr>
         | 
| 593 | 
            -
            <div class="refsect2" | 
| 592 | 
            +
            <div class="refsect2">
         | 
| 594 593 | 
             
            <a name="gtk-image-get-icon-name"></a><h3>gtk_image_get_icon_name ()</h3>
         | 
| 595 594 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_get_icon_name             (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 596 | 
            -
                                                                     <em class="parameter"><code> | 
| 595 | 
            +
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **icon_name</code></em>,
         | 
| 597 596 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> *size</code></em>);</pre>
         | 
| 598 597 | 
             
            <p>
         | 
| 599 598 | 
             
            Gets the icon name and size being displayed by the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>.
         | 
| @@ -612,14 +611,14 @@ be freed. | |
| 612 611 | 
             
            </tr>
         | 
| 613 612 | 
             
            <tr>
         | 
| 614 613 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
         | 
| 615 | 
            -
            <td> | 
| 616 | 
            -
             | 
| 614 | 
            +
            <td>place to store an
         | 
| 615 | 
            +
            icon name, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 617 616 | 
             
            </td>
         | 
| 618 617 | 
             
            </tr>
         | 
| 619 618 | 
             
            <tr>
         | 
| 620 619 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 621 | 
            -
            <td> | 
| 622 | 
            -
             | 
| 620 | 
            +
            <td>place to store an icon size,
         | 
| 621 | 
            +
            or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 623 622 | 
             
            </td>
         | 
| 624 623 | 
             
            </tr>
         | 
| 625 624 | 
             
            </tbody>
         | 
| @@ -627,7 +626,7 @@ be freed. | |
| 627 626 | 
             
            <p class="since">Since 2.6</p>
         | 
| 628 627 | 
             
            </div>
         | 
| 629 628 | 
             
            <hr>
         | 
| 630 | 
            -
            <div class="refsect2" | 
| 629 | 
            +
            <div class="refsect2">
         | 
| 631 630 | 
             
            <a name="gtk-image-get-gicon"></a><h3>gtk_image_get_gicon ()</h3>
         | 
| 632 631 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_get_gicon                 (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 633 632 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> **gicon</code></em>,
         | 
| @@ -649,14 +648,14 @@ returned <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span | |
| 649 648 | 
             
            </tr>
         | 
| 650 649 | 
             
            <tr>
         | 
| 651 650 | 
             
            <td><p><span class="term"><em class="parameter"><code>gicon</code></em> :</span></p></td>
         | 
| 652 | 
            -
            <td> | 
| 653 | 
            -
             | 
| 651 | 
            +
            <td>place to store a
         | 
| 652 | 
            +
            <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 654 653 | 
             
            </td>
         | 
| 655 654 | 
             
            </tr>
         | 
| 656 655 | 
             
            <tr>
         | 
| 657 656 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 658 | 
            -
            <td> | 
| 659 | 
            -
             | 
| 657 | 
            +
            <td>place to store an icon size,
         | 
| 658 | 
            +
            or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>][<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 660 659 | 
             
            </td>
         | 
| 661 660 | 
             
            </tr>
         | 
| 662 661 | 
             
            </tbody>
         | 
| @@ -664,7 +663,7 @@ returned <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span | |
| 664 663 | 
             
            <p class="since">Since 2.14</p>
         | 
| 665 664 | 
             
            </div>
         | 
| 666 665 | 
             
            <hr>
         | 
| 667 | 
            -
            <div class="refsect2" | 
| 666 | 
            +
            <div class="refsect2">
         | 
| 668 667 | 
             
            <a name="gtk-image-get-storage-type"></a><h3>gtk_image_get_storage_type ()</h3>
         | 
| 669 668 | 
             
            <pre class="programlisting"><a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="returnvalue">GtkImageType</span></a>        gtk_image_get_storage_type          (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);</pre>
         | 
| 670 669 | 
             
            <p>
         | 
| @@ -682,16 +681,16 @@ the return value will be <a class="link" href="GtkImage.html#GTK-IMAGE-EMPTY:CAP | |
| 682 681 | 
             
            </tr>
         | 
| 683 682 | 
             
            <tr>
         | 
| 684 683 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 685 | 
            -
            <td> | 
| 686 | 
            -
            </td>
         | 
| 684 | 
            +
            <td>image representation being used</td>
         | 
| 687 685 | 
             
            </tr>
         | 
| 688 686 | 
             
            </tbody>
         | 
| 689 687 | 
             
            </table></div>
         | 
| 690 688 | 
             
            </div>
         | 
| 691 689 | 
             
            <hr>
         | 
| 692 | 
            -
            <div class="refsect2" | 
| 693 | 
            -
            <a name="gtk-image-new-from-file"></a><h3>gtk_image_new_from_file | 
| 694 | 
            -
            <pre class="programlisting" | 
| 690 | 
            +
            <div class="refsect2">
         | 
| 691 | 
            +
            <a name="gtk-image-new-from-file"></a><h3>gtk_image_new_from_file</h3>
         | 
| 692 | 
            +
            <pre class="programlisting">#define gtk_image_new_from_file gtk_image_new_from_file_utf8
         | 
| 693 | 
            +
            </pre>
         | 
| 695 694 | 
             
            <p>
         | 
| 696 695 | 
             
            Creates a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the file <em class="parameter"><code>filename</code></em>. If the file
         | 
| 697 696 | 
             
            isn't found or can't be loaded, the resulting <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> will
         | 
| @@ -704,9 +703,9 @@ animation. | |
| 704 703 | 
             
            </p>
         | 
| 705 704 | 
             
            <p>
         | 
| 706 705 | 
             
            If you need to detect failures to load the file, use
         | 
| 707 | 
            -
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 706 | 
            +
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-File-Loading.html#gdk-pixbuf-new-from-file"><code class="function">gdk_pixbuf_new_from_file()</code></a> to load the file yourself, then create
         | 
| 708 707 | 
             
            the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> from the pixbuf. (Or for animations, use
         | 
| 709 | 
            -
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 708 | 
            +
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#gdk-pixbuf-animation-new-from-file"><code class="function">gdk_pixbuf_animation_new_from_file()</code></a>).
         | 
| 710 709 | 
             
            </p>
         | 
| 711 710 | 
             
            <p>
         | 
| 712 711 | 
             
            The storage type (<a class="link" href="GtkImage.html#gtk-image-get-storage-type" title="gtk_image_get_storage_type ()"><code class="function">gtk_image_get_storage_type()</code></a>) of the returned
         | 
| @@ -718,21 +717,20 @@ displaying the file. | |
| 718 717 | 
             
            <tbody>
         | 
| 719 718 | 
             
            <tr>
         | 
| 720 719 | 
             
            <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
         | 
| 721 | 
            -
            <td>a filename
         | 
| 722 | 
            -
            </td>
         | 
| 720 | 
            +
            <td>a filename</td>
         | 
| 723 721 | 
             
            </tr>
         | 
| 724 722 | 
             
            <tr>
         | 
| 725 723 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 726 | 
            -
            <td> | 
| 724 | 
            +
            <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
         | 
| 727 725 | 
             
            </td>
         | 
| 728 726 | 
             
            </tr>
         | 
| 729 727 | 
             
            </tbody>
         | 
| 730 728 | 
             
            </table></div>
         | 
| 731 729 | 
             
            </div>
         | 
| 732 730 | 
             
            <hr>
         | 
| 733 | 
            -
            <div class="refsect2" | 
| 731 | 
            +
            <div class="refsect2">
         | 
| 734 732 | 
             
            <a name="gtk-image-new-from-icon-set"></a><h3>gtk_image_new_from_icon_set ()</h3>
         | 
| 735 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 733 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_image_new_from_icon_set         (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
         | 
| 736 734 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);</pre>
         | 
| 737 735 | 
             
            <p>
         | 
| 738 736 | 
             
            Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying an icon set. Sample stock sizes are
         | 
| @@ -753,30 +751,30 @@ icon set; you still need to unref it if you own references. | |
| 753 751 | 
             
            <tbody>
         | 
| 754 752 | 
             
            <tr>
         | 
| 755 753 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
         | 
| 756 | 
            -
            <td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" | 
| 754 | 
            +
            <td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
         | 
| 757 755 | 
             
            </td>
         | 
| 758 756 | 
             
            </tr>
         | 
| 759 757 | 
             
            <tr>
         | 
| 760 758 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 761 | 
            -
            <td> | 
| 759 | 
            +
            <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 762 760 | 
             
            </td>
         | 
| 763 761 | 
             
            </tr>
         | 
| 764 762 | 
             
            <tr>
         | 
| 765 763 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 766 | 
            -
            <td> | 
| 764 | 
            +
            <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
         | 
| 767 765 | 
             
            </td>
         | 
| 768 766 | 
             
            </tr>
         | 
| 769 767 | 
             
            </tbody>
         | 
| 770 768 | 
             
            </table></div>
         | 
| 771 769 | 
             
            </div>
         | 
| 772 770 | 
             
            <hr>
         | 
| 773 | 
            -
            <div class="refsect2" | 
| 771 | 
            +
            <div class="refsect2">
         | 
| 774 772 | 
             
            <a name="gtk-image-new-from-image"></a><h3>gtk_image_new_from_image ()</h3>
         | 
| 775 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 776 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 773 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_image_new_from_image            (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> *image</code></em>,
         | 
| 774 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
         | 
| 777 775 | 
             
            <p>
         | 
| 778 776 | 
             
            Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget displaying a <em class="parameter"><code>image</code></em> with a <em class="parameter"><code>mask</code></em>.
         | 
| 779 | 
            -
            A <a href="http://library.gnome.org/devel/ | 
| 777 | 
            +
            A <a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> is a client-side image buffer in the pixel format of the
         | 
| 780 778 | 
             
            current display. The <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> does not assume a reference to the
         | 
| 781 779 | 
             
            image or mask; you still need to unref them if you own references.
         | 
| 782 780 | 
             
            <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> will add its own reference rather than adopting yours.
         | 
| @@ -786,26 +784,26 @@ image or mask; you still need to unref them if you own references. | |
| 786 784 | 
             
            <tbody>
         | 
| 787 785 | 
             
            <tr>
         | 
| 788 786 | 
             
            <td><p><span class="term"><em class="parameter"><code>image</code></em> :</span></p></td>
         | 
| 789 | 
            -
            <td> | 
| 787 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 790 788 | 
             
            </td>
         | 
| 791 789 | 
             
            </tr>
         | 
| 792 790 | 
             
            <tr>
         | 
| 793 791 | 
             
            <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
         | 
| 794 | 
            -
            <td> | 
| 792 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 795 793 | 
             
            </td>
         | 
| 796 794 | 
             
            </tr>
         | 
| 797 795 | 
             
            <tr>
         | 
| 798 796 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 799 | 
            -
            <td> | 
| 797 | 
            +
            <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
         | 
| 800 798 | 
             
            </td>
         | 
| 801 799 | 
             
            </tr>
         | 
| 802 800 | 
             
            </tbody>
         | 
| 803 801 | 
             
            </table></div>
         | 
| 804 802 | 
             
            </div>
         | 
| 805 803 | 
             
            <hr>
         | 
| 806 | 
            -
            <div class="refsect2" | 
| 804 | 
            +
            <div class="refsect2">
         | 
| 807 805 | 
             
            <a name="gtk-image-new-from-pixbuf"></a><h3>gtk_image_new_from_pixbuf ()</h3>
         | 
| 808 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 806 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_image_new_from_pixbuf           (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
         | 
| 809 807 | 
             
            <p>
         | 
| 810 808 | 
             
            Creates a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying <em class="parameter"><code>pixbuf</code></em>.
         | 
| 811 809 | 
             
            The <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> does not assume a reference to the
         | 
| @@ -822,25 +820,25 @@ you should use <a class="link" href="GtkImage.html#gtk-image-new-from-icon-set" | |
| 822 820 | 
             
            <tbody>
         | 
| 823 821 | 
             
            <tr>
         | 
| 824 822 | 
             
            <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
         | 
| 825 | 
            -
            <td> | 
| 823 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 826 824 | 
             
            </td>
         | 
| 827 825 | 
             
            </tr>
         | 
| 828 826 | 
             
            <tr>
         | 
| 829 827 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 830 | 
            -
            <td> | 
| 828 | 
            +
            <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
         | 
| 831 829 | 
             
            </td>
         | 
| 832 830 | 
             
            </tr>
         | 
| 833 831 | 
             
            </tbody>
         | 
| 834 832 | 
             
            </table></div>
         | 
| 835 833 | 
             
            </div>
         | 
| 836 834 | 
             
            <hr>
         | 
| 837 | 
            -
            <div class="refsect2" | 
| 835 | 
            +
            <div class="refsect2">
         | 
| 838 836 | 
             
            <a name="gtk-image-new-from-pixmap"></a><h3>gtk_image_new_from_pixmap ()</h3>
         | 
| 839 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 840 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 837 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_image_new_from_pixmap           (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
         | 
| 838 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
         | 
| 841 839 | 
             
            <p>
         | 
| 842 840 | 
             
            Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget displaying <em class="parameter"><code>pixmap</code></em> with a <em class="parameter"><code>mask</code></em>.
         | 
| 843 | 
            -
            A <a href="http://library.gnome.org/devel/ | 
| 841 | 
            +
            A <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> is a server-side image buffer in the pixel format of the
         | 
| 844 842 | 
             
            current display. The <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> does not assume a reference to the
         | 
| 845 843 | 
             
            pixmap or mask; you still need to unref them if you own references.
         | 
| 846 844 | 
             
            <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> will add its own reference rather than adopting yours.
         | 
| @@ -850,26 +848,26 @@ pixmap or mask; you still need to unref them if you own references. | |
| 850 848 | 
             
            <tbody>
         | 
| 851 849 | 
             
            <tr>
         | 
| 852 850 | 
             
            <td><p><span class="term"><em class="parameter"><code>pixmap</code></em> :</span></p></td>
         | 
| 853 | 
            -
            <td> | 
| 851 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 854 852 | 
             
            </td>
         | 
| 855 853 | 
             
            </tr>
         | 
| 856 854 | 
             
            <tr>
         | 
| 857 855 | 
             
            <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
         | 
| 858 | 
            -
            <td> | 
| 856 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 859 857 | 
             
            </td>
         | 
| 860 858 | 
             
            </tr>
         | 
| 861 859 | 
             
            <tr>
         | 
| 862 860 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 863 | 
            -
            <td> | 
| 861 | 
            +
            <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a>
         | 
| 864 862 | 
             
            </td>
         | 
| 865 863 | 
             
            </tr>
         | 
| 866 864 | 
             
            </tbody>
         | 
| 867 865 | 
             
            </table></div>
         | 
| 868 866 | 
             
            </div>
         | 
| 869 867 | 
             
            <hr>
         | 
| 870 | 
            -
            <div class="refsect2" | 
| 868 | 
            +
            <div class="refsect2">
         | 
| 871 869 | 
             
            <a name="gtk-image-new-from-stock"></a><h3>gtk_image_new_from_stock ()</h3>
         | 
| 872 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 870 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_image_new_from_stock            (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>,
         | 
| 873 871 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);</pre>
         | 
| 874 872 | 
             
            <p>
         | 
| 875 873 | 
             
            Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying a stock icon. Sample stock icon
         | 
| @@ -884,26 +882,24 @@ You can register your own stock icon names, see | |
| 884 882 | 
             
            <tbody>
         | 
| 885 883 | 
             
            <tr>
         | 
| 886 884 | 
             
            <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
         | 
| 887 | 
            -
            <td>a stock icon name
         | 
| 888 | 
            -
            </td>
         | 
| 885 | 
            +
            <td>a stock icon name</td>
         | 
| 889 886 | 
             
            </tr>
         | 
| 890 887 | 
             
            <tr>
         | 
| 891 888 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 892 | 
            -
            <td> | 
| 889 | 
            +
            <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 893 890 | 
             
            </td>
         | 
| 894 891 | 
             
            </tr>
         | 
| 895 892 | 
             
            <tr>
         | 
| 896 893 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 897 | 
            -
            <td> | 
| 898 | 
            -
            </td>
         | 
| 894 | 
            +
            <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the stock icon</td>
         | 
| 899 895 | 
             
            </tr>
         | 
| 900 896 | 
             
            </tbody>
         | 
| 901 897 | 
             
            </table></div>
         | 
| 902 898 | 
             
            </div>
         | 
| 903 899 | 
             
            <hr>
         | 
| 904 | 
            -
            <div class="refsect2" | 
| 900 | 
            +
            <div class="refsect2">
         | 
| 905 901 | 
             
            <a name="gtk-image-new-from-animation"></a><h3>gtk_image_new_from_animation ()</h3>
         | 
| 906 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 902 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_image_new_from_animation        (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a> *animation</code></em>);</pre>
         | 
| 907 903 | 
             
            <p>
         | 
| 908 904 | 
             
            Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the given animation.
         | 
| 909 905 | 
             
            The <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> does not assume a reference to the
         | 
| @@ -921,21 +917,19 @@ is not busy with something that has a higher priority. | |
| 921 917 | 
             
            <tbody>
         | 
| 922 918 | 
             
            <tr>
         | 
| 923 919 | 
             
            <td><p><span class="term"><em class="parameter"><code>animation</code></em> :</span></p></td>
         | 
| 924 | 
            -
            <td>an animation
         | 
| 925 | 
            -
            </td>
         | 
| 920 | 
            +
            <td>an animation</td>
         | 
| 926 921 | 
             
            </tr>
         | 
| 927 922 | 
             
            <tr>
         | 
| 928 923 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 929 | 
            -
            <td> | 
| 930 | 
            -
            </td>
         | 
| 924 | 
            +
            <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget</td>
         | 
| 931 925 | 
             
            </tr>
         | 
| 932 926 | 
             
            </tbody>
         | 
| 933 927 | 
             
            </table></div>
         | 
| 934 928 | 
             
            </div>
         | 
| 935 929 | 
             
            <hr>
         | 
| 936 | 
            -
            <div class="refsect2" | 
| 930 | 
            +
            <div class="refsect2">
         | 
| 937 931 | 
             
            <a name="gtk-image-new-from-icon-name"></a><h3>gtk_image_new_from_icon_name ()</h3>
         | 
| 938 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 932 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_image_new_from_icon_name        (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>,
         | 
| 939 933 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);</pre>
         | 
| 940 934 | 
             
            <p>
         | 
| 941 935 | 
             
            Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying an icon from the current icon theme.
         | 
| @@ -948,28 +942,25 @@ will be updated appropriately. | |
| 948 942 | 
             
            <tbody>
         | 
| 949 943 | 
             
            <tr>
         | 
| 950 944 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
         | 
| 951 | 
            -
            <td>an icon name
         | 
| 952 | 
            -
            </td>
         | 
| 945 | 
            +
            <td>an icon name</td>
         | 
| 953 946 | 
             
            </tr>
         | 
| 954 947 | 
             
            <tr>
         | 
| 955 948 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 956 | 
            -
            <td> | 
| 949 | 
            +
            <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 957 950 | 
             
            </td>
         | 
| 958 951 | 
             
            </tr>
         | 
| 959 952 | 
             
            <tr>
         | 
| 960 953 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 961 | 
            -
            <td> | 
| 962 | 
            -
             | 
| 963 | 
            -
            </td>
         | 
| 954 | 
            +
            <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the themed icon</td>
         | 
| 964 955 | 
             
            </tr>
         | 
| 965 956 | 
             
            </tbody>
         | 
| 966 957 | 
             
            </table></div>
         | 
| 967 958 | 
             
            <p class="since">Since 2.6</p>
         | 
| 968 959 | 
             
            </div>
         | 
| 969 960 | 
             
            <hr>
         | 
| 970 | 
            -
            <div class="refsect2" | 
| 961 | 
            +
            <div class="refsect2">
         | 
| 971 962 | 
             
            <a name="gtk-image-new-from-gicon"></a><h3>gtk_image_new_from_gicon ()</h3>
         | 
| 972 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 963 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_image_new_from_gicon            (<em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>,
         | 
| 973 964 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);</pre>
         | 
| 974 965 | 
             
            <p>
         | 
| 975 966 | 
             
            Creates a <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying an icon from the current icon theme.
         | 
| @@ -982,31 +973,28 @@ will be updated appropriately. | |
| 982 973 | 
             
            <tbody>
         | 
| 983 974 | 
             
            <tr>
         | 
| 984 975 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
         | 
| 985 | 
            -
            <td>an icon
         | 
| 986 | 
            -
            </td>
         | 
| 976 | 
            +
            <td>an icon</td>
         | 
| 987 977 | 
             
            </tr>
         | 
| 988 978 | 
             
            <tr>
         | 
| 989 979 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 990 | 
            -
            <td> | 
| 980 | 
            +
            <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 991 981 | 
             
            </td>
         | 
| 992 982 | 
             
            </tr>
         | 
| 993 983 | 
             
            <tr>
         | 
| 994 984 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 995 | 
            -
            <td> | 
| 996 | 
            -
             | 
| 997 | 
            -
            </td>
         | 
| 985 | 
            +
            <td>a new <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> displaying the themed icon</td>
         | 
| 998 986 | 
             
            </tr>
         | 
| 999 987 | 
             
            </tbody>
         | 
| 1000 988 | 
             
            </table></div>
         | 
| 1001 989 | 
             
            <p class="since">Since 2.14</p>
         | 
| 1002 990 | 
             
            </div>
         | 
| 1003 991 | 
             
            <hr>
         | 
| 1004 | 
            -
            <div class="refsect2" | 
| 1005 | 
            -
            <a name="gtk-image-set-from-file"></a><h3>gtk_image_set_from_file | 
| 1006 | 
            -
            <pre class="programlisting" | 
| 1007 | 
            -
             | 
| 992 | 
            +
            <div class="refsect2">
         | 
| 993 | 
            +
            <a name="gtk-image-set-from-file"></a><h3>gtk_image_set_from_file</h3>
         | 
| 994 | 
            +
            <pre class="programlisting">#define gtk_image_set_from_file gtk_image_set_from_file_utf8
         | 
| 995 | 
            +
            </pre>
         | 
| 1008 996 | 
             
            <p>
         | 
| 1009 | 
            -
            See <a class="link" href="GtkImage.html#gtk-image-new-from-file" title="gtk_image_new_from_file | 
| 997 | 
            +
            See <a class="link" href="GtkImage.html#gtk-image-new-from-file" title="gtk_image_new_from_file"><code class="function">gtk_image_new_from_file()</code></a> for details.
         | 
| 1010 998 | 
             
            </p>
         | 
| 1011 999 | 
             
            <div class="variablelist"><table border="0">
         | 
| 1012 1000 | 
             
            <col align="left" valign="top">
         | 
| @@ -1018,17 +1006,17 @@ See <a class="link" href="GtkImage.html#gtk-image-new-from-file" title="gtk_imag | |
| 1018 1006 | 
             
            </tr>
         | 
| 1019 1007 | 
             
            <tr>
         | 
| 1020 1008 | 
             
            <td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
         | 
| 1021 | 
            -
            <td> | 
| 1009 | 
            +
            <td>a filename or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1022 1010 | 
             
            </td>
         | 
| 1023 1011 | 
             
            </tr>
         | 
| 1024 1012 | 
             
            </tbody>
         | 
| 1025 1013 | 
             
            </table></div>
         | 
| 1026 1014 | 
             
            </div>
         | 
| 1027 1015 | 
             
            <hr>
         | 
| 1028 | 
            -
            <div class="refsect2" | 
| 1016 | 
            +
            <div class="refsect2">
         | 
| 1029 1017 | 
             
            <a name="gtk-image-set-from-icon-set"></a><h3>gtk_image_set_from_icon_set ()</h3>
         | 
| 1030 1018 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_set_from_icon_set         (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1031 | 
            -
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" | 
| 1019 | 
            +
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
         | 
| 1032 1020 | 
             
                                                                     <em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> size</code></em>);</pre>
         | 
| 1033 1021 | 
             
            <p>
         | 
| 1034 1022 | 
             
            See <a class="link" href="GtkImage.html#gtk-image-new-from-icon-set" title="gtk_image_new_from_icon_set ()"><code class="function">gtk_image_new_from_icon_set()</code></a> for details.
         | 
| @@ -1043,23 +1031,23 @@ See <a class="link" href="GtkImage.html#gtk-image-new-from-icon-set" title="gtk_ | |
| 1043 1031 | 
             
            </tr>
         | 
| 1044 1032 | 
             
            <tr>
         | 
| 1045 1033 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
         | 
| 1046 | 
            -
            <td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" | 
| 1034 | 
            +
            <td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
         | 
| 1047 1035 | 
             
            </td>
         | 
| 1048 1036 | 
             
            </tr>
         | 
| 1049 1037 | 
             
            <tr>
         | 
| 1050 1038 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 1051 | 
            -
            <td> | 
| 1039 | 
            +
            <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 1052 1040 | 
             
            </td>
         | 
| 1053 1041 | 
             
            </tr>
         | 
| 1054 1042 | 
             
            </tbody>
         | 
| 1055 1043 | 
             
            </table></div>
         | 
| 1056 1044 | 
             
            </div>
         | 
| 1057 1045 | 
             
            <hr>
         | 
| 1058 | 
            -
            <div class="refsect2" | 
| 1046 | 
            +
            <div class="refsect2">
         | 
| 1059 1047 | 
             
            <a name="gtk-image-set-from-image"></a><h3>gtk_image_set_from_image ()</h3>
         | 
| 1060 1048 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_set_from_image            (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1061 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 1062 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 1049 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> *gdk_image</code></em>,
         | 
| 1050 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
         | 
| 1063 1051 | 
             
            <p>
         | 
| 1064 1052 | 
             
            See <a class="link" href="GtkImage.html#gtk-image-new-from-image" title="gtk_image_new_from_image ()"><code class="function">gtk_image_new_from_image()</code></a> for details.
         | 
| 1065 1053 | 
             
            </p>
         | 
| @@ -1073,22 +1061,22 @@ See <a class="link" href="GtkImage.html#gtk-image-new-from-image" title="gtk_ima | |
| 1073 1061 | 
             
            </tr>
         | 
| 1074 1062 | 
             
            <tr>
         | 
| 1075 1063 | 
             
            <td><p><span class="term"><em class="parameter"><code>gdk_image</code></em> :</span></p></td>
         | 
| 1076 | 
            -
            <td> | 
| 1064 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1077 1065 | 
             
            </td>
         | 
| 1078 1066 | 
             
            </tr>
         | 
| 1079 1067 | 
             
            <tr>
         | 
| 1080 1068 | 
             
            <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
         | 
| 1081 | 
            -
            <td> | 
| 1069 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1082 1070 | 
             
            </td>
         | 
| 1083 1071 | 
             
            </tr>
         | 
| 1084 1072 | 
             
            </tbody>
         | 
| 1085 1073 | 
             
            </table></div>
         | 
| 1086 1074 | 
             
            </div>
         | 
| 1087 1075 | 
             
            <hr>
         | 
| 1088 | 
            -
            <div class="refsect2" | 
| 1076 | 
            +
            <div class="refsect2">
         | 
| 1089 1077 | 
             
            <a name="gtk-image-set-from-pixbuf"></a><h3>gtk_image_set_from_pixbuf ()</h3>
         | 
| 1090 1078 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_set_from_pixbuf           (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1091 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 1079 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
         | 
| 1092 1080 | 
             
            <p>
         | 
| 1093 1081 | 
             
            See <a class="link" href="GtkImage.html#gtk-image-new-from-pixbuf" title="gtk_image_new_from_pixbuf ()"><code class="function">gtk_image_new_from_pixbuf()</code></a> for details.
         | 
| 1094 1082 | 
             
            </p>
         | 
| @@ -1102,18 +1090,18 @@ See <a class="link" href="GtkImage.html#gtk-image-new-from-pixbuf" title="gtk_im | |
| 1102 1090 | 
             
            </tr>
         | 
| 1103 1091 | 
             
            <tr>
         | 
| 1104 1092 | 
             
            <td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
         | 
| 1105 | 
            -
            <td> | 
| 1093 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1106 1094 | 
             
            </td>
         | 
| 1107 1095 | 
             
            </tr>
         | 
| 1108 1096 | 
             
            </tbody>
         | 
| 1109 1097 | 
             
            </table></div>
         | 
| 1110 1098 | 
             
            </div>
         | 
| 1111 1099 | 
             
            <hr>
         | 
| 1112 | 
            -
            <div class="refsect2" | 
| 1100 | 
            +
            <div class="refsect2">
         | 
| 1113 1101 | 
             
            <a name="gtk-image-set-from-pixmap"></a><h3>gtk_image_set_from_pixmap ()</h3>
         | 
| 1114 1102 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_set_from_pixmap           (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1115 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 1116 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 1103 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
         | 
| 1104 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
         | 
| 1117 1105 | 
             
            <p>
         | 
| 1118 1106 | 
             
            See <a class="link" href="GtkImage.html#gtk-image-new-from-pixmap" title="gtk_image_new_from_pixmap ()"><code class="function">gtk_image_new_from_pixmap()</code></a> for details.
         | 
| 1119 1107 | 
             
            </p>
         | 
| @@ -1127,19 +1115,19 @@ See <a class="link" href="GtkImage.html#gtk-image-new-from-pixmap" title="gtk_im | |
| 1127 1115 | 
             
            </tr>
         | 
| 1128 1116 | 
             
            <tr>
         | 
| 1129 1117 | 
             
            <td><p><span class="term"><em class="parameter"><code>pixmap</code></em> :</span></p></td>
         | 
| 1130 | 
            -
            <td> | 
| 1118 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1131 1119 | 
             
            </td>
         | 
| 1132 1120 | 
             
            </tr>
         | 
| 1133 1121 | 
             
            <tr>
         | 
| 1134 1122 | 
             
            <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
         | 
| 1135 | 
            -
            <td> | 
| 1123 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
         | 
| 1136 1124 | 
             
            </td>
         | 
| 1137 1125 | 
             
            </tr>
         | 
| 1138 1126 | 
             
            </tbody>
         | 
| 1139 1127 | 
             
            </table></div>
         | 
| 1140 1128 | 
             
            </div>
         | 
| 1141 1129 | 
             
            <hr>
         | 
| 1142 | 
            -
            <div class="refsect2" | 
| 1130 | 
            +
            <div class="refsect2">
         | 
| 1143 1131 | 
             
            <a name="gtk-image-set-from-stock"></a><h3>gtk_image_set_from_stock ()</h3>
         | 
| 1144 1132 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_set_from_stock            (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1145 1133 | 
             
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>,
         | 
| @@ -1157,22 +1145,21 @@ See <a class="link" href="GtkImage.html#gtk-image-new-from-stock" title="gtk_ima | |
| 1157 1145 | 
             
            </tr>
         | 
| 1158 1146 | 
             
            <tr>
         | 
| 1159 1147 | 
             
            <td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
         | 
| 1160 | 
            -
            <td>a stock icon name
         | 
| 1161 | 
            -
            </td>
         | 
| 1148 | 
            +
            <td>a stock icon name</td>
         | 
| 1162 1149 | 
             
            </tr>
         | 
| 1163 1150 | 
             
            <tr>
         | 
| 1164 1151 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 1165 | 
            -
            <td> | 
| 1152 | 
            +
            <td>a stock icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 1166 1153 | 
             
            </td>
         | 
| 1167 1154 | 
             
            </tr>
         | 
| 1168 1155 | 
             
            </tbody>
         | 
| 1169 1156 | 
             
            </table></div>
         | 
| 1170 1157 | 
             
            </div>
         | 
| 1171 1158 | 
             
            <hr>
         | 
| 1172 | 
            -
            <div class="refsect2" | 
| 1159 | 
            +
            <div class="refsect2">
         | 
| 1173 1160 | 
             
            <a name="gtk-image-set-from-animation"></a><h3>gtk_image_set_from_animation ()</h3>
         | 
| 1174 1161 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_set_from_animation        (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1175 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 1162 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a> *animation</code></em>);</pre>
         | 
| 1176 1163 | 
             
            <p>
         | 
| 1177 1164 | 
             
            Causes the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> to display the given animation (or display
         | 
| 1178 1165 | 
             
            nothing, if you set the animation to <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>).
         | 
| @@ -1187,14 +1174,14 @@ nothing, if you set the animation to <a href="http://library.gnome.org/devel/gli | |
| 1187 1174 | 
             
            </tr>
         | 
| 1188 1175 | 
             
            <tr>
         | 
| 1189 1176 | 
             
            <td><p><span class="term"><em class="parameter"><code>animation</code></em> :</span></p></td>
         | 
| 1190 | 
            -
            <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 1177 | 
            +
            <td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a>
         | 
| 1191 1178 | 
             
            </td>
         | 
| 1192 1179 | 
             
            </tr>
         | 
| 1193 1180 | 
             
            </tbody>
         | 
| 1194 1181 | 
             
            </table></div>
         | 
| 1195 1182 | 
             
            </div>
         | 
| 1196 1183 | 
             
            <hr>
         | 
| 1197 | 
            -
            <div class="refsect2" | 
| 1184 | 
            +
            <div class="refsect2">
         | 
| 1198 1185 | 
             
            <a name="gtk-image-set-from-icon-name"></a><h3>gtk_image_set_from_icon_name ()</h3>
         | 
| 1199 1186 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_set_from_icon_name        (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1200 1187 | 
             
                                                                     <em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>,
         | 
| @@ -1212,12 +1199,11 @@ See <a class="link" href="GtkImage.html#gtk-image-new-from-icon-name" title="gtk | |
| 1212 1199 | 
             
            </tr>
         | 
| 1213 1200 | 
             
            <tr>
         | 
| 1214 1201 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
         | 
| 1215 | 
            -
            <td>an icon name
         | 
| 1216 | 
            -
            </td>
         | 
| 1202 | 
            +
            <td>an icon name</td>
         | 
| 1217 1203 | 
             
            </tr>
         | 
| 1218 1204 | 
             
            <tr>
         | 
| 1219 1205 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 1220 | 
            -
            <td> | 
| 1206 | 
            +
            <td>an icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 1221 1207 | 
             
            </td>
         | 
| 1222 1208 | 
             
            </tr>
         | 
| 1223 1209 | 
             
            </tbody>
         | 
| @@ -1225,7 +1211,7 @@ See <a class="link" href="GtkImage.html#gtk-image-new-from-icon-name" title="gtk | |
| 1225 1211 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1226 1212 | 
             
            </div>
         | 
| 1227 1213 | 
             
            <hr>
         | 
| 1228 | 
            -
            <div class="refsect2" | 
| 1214 | 
            +
            <div class="refsect2">
         | 
| 1229 1215 | 
             
            <a name="gtk-image-set-from-gicon"></a><h3>gtk_image_set_from_gicon ()</h3>
         | 
| 1230 1216 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_set_from_gicon            (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1231 1217 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>,
         | 
| @@ -1243,12 +1229,11 @@ See <a class="link" href="GtkImage.html#gtk-image-new-from-gicon" title="gtk_ima | |
| 1243 1229 | 
             
            </tr>
         | 
| 1244 1230 | 
             
            <tr>
         | 
| 1245 1231 | 
             
            <td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
         | 
| 1246 | 
            -
            <td>an icon
         | 
| 1247 | 
            -
            </td>
         | 
| 1232 | 
            +
            <td>an icon</td>
         | 
| 1248 1233 | 
             
            </tr>
         | 
| 1249 1234 | 
             
            <tr>
         | 
| 1250 1235 | 
             
            <td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
         | 
| 1251 | 
            -
            <td> | 
| 1236 | 
            +
            <td>an icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
         | 
| 1252 1237 | 
             
            </td>
         | 
| 1253 1238 | 
             
            </tr>
         | 
| 1254 1239 | 
             
            </tbody>
         | 
| @@ -1256,7 +1241,7 @@ See <a class="link" href="GtkImage.html#gtk-image-new-from-gicon" title="gtk_ima | |
| 1256 1241 | 
             
            <p class="since">Since 2.14</p>
         | 
| 1257 1242 | 
             
            </div>
         | 
| 1258 1243 | 
             
            <hr>
         | 
| 1259 | 
            -
            <div class="refsect2" | 
| 1244 | 
            +
            <div class="refsect2">
         | 
| 1260 1245 | 
             
            <a name="gtk-image-clear"></a><h3>gtk_image_clear ()</h3>
         | 
| 1261 1246 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_clear                     (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);</pre>
         | 
| 1262 1247 | 
             
            <p>
         | 
| @@ -1273,9 +1258,9 @@ Resets the image to be empty. | |
| 1273 1258 | 
             
            <p class="since">Since 2.8</p>
         | 
| 1274 1259 | 
             
            </div>
         | 
| 1275 1260 | 
             
            <hr>
         | 
| 1276 | 
            -
            <div class="refsect2" | 
| 1261 | 
            +
            <div class="refsect2">
         | 
| 1277 1262 | 
             
            <a name="gtk-image-new"></a><h3>gtk_image_new ()</h3>
         | 
| 1278 | 
            -
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a | 
| 1263 | 
            +
            <pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *         gtk_image_new                       (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
         | 
| 1279 1264 | 
             
            <p>
         | 
| 1280 1265 | 
             
            Creates a new empty <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget.
         | 
| 1281 1266 | 
             
            </p>
         | 
| @@ -1283,18 +1268,17 @@ Creates a new empty <a class="link" href="GtkImage.html" title="GtkImage"><span | |
| 1283 1268 | 
             
            <col align="left" valign="top">
         | 
| 1284 1269 | 
             
            <tbody><tr>
         | 
| 1285 1270 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1286 | 
            -
            <td> | 
| 1287 | 
            -
            </td>
         | 
| 1271 | 
            +
            <td>a newly created <a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> widget.</td>
         | 
| 1288 1272 | 
             
            </tr></tbody>
         | 
| 1289 1273 | 
             
            </table></div>
         | 
| 1290 1274 | 
             
            </div>
         | 
| 1291 1275 | 
             
            <hr>
         | 
| 1292 | 
            -
            <div class="refsect2" | 
| 1276 | 
            +
            <div class="refsect2">
         | 
| 1293 1277 | 
             
            <a name="gtk-image-set"></a><h3>gtk_image_set ()</h3>
         | 
| 1294 1278 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_set                       (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1295 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 1296 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 1297 | 
            -
            <div class="warning"  | 
| 1279 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> *val</code></em>,
         | 
| 1280 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
         | 
| 1281 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1298 1282 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1299 1283 | 
             
            <p><code class="literal">gtk_image_set</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a class="link" href="GtkImage.html#gtk-image-set-from-image" title="gtk_image_set_from_image ()"><code class="function">gtk_image_set_from_image()</code></a> instead.</p>
         | 
| 1300 1284 | 
             
            </div>
         | 
| @@ -1311,24 +1295,23 @@ Sets the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type | |
| 1311 1295 | 
             
            </tr>
         | 
| 1312 1296 | 
             
            <tr>
         | 
| 1313 1297 | 
             
            <td><p><span class="term"><em class="parameter"><code>val</code></em> :</span></p></td>
         | 
| 1314 | 
            -
            <td>a <a href="http://library.gnome.org/devel/ | 
| 1298 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a>
         | 
| 1315 1299 | 
             
            </td>
         | 
| 1316 1300 | 
             
            </tr>
         | 
| 1317 1301 | 
             
            <tr>
         | 
| 1318 1302 | 
             
            <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
         | 
| 1319 | 
            -
            <td>a <a href="http://library.gnome.org/devel/ | 
| 1320 | 
            -
            </td>
         | 
| 1303 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> that indicates which parts of the image should be transparent.</td>
         | 
| 1321 1304 | 
             
            </tr>
         | 
| 1322 1305 | 
             
            </tbody>
         | 
| 1323 1306 | 
             
            </table></div>
         | 
| 1324 1307 | 
             
            </div>
         | 
| 1325 1308 | 
             
            <hr>
         | 
| 1326 | 
            -
            <div class="refsect2" | 
| 1309 | 
            +
            <div class="refsect2">
         | 
| 1327 1310 | 
             
            <a name="gtk-image-get"></a><h3>gtk_image_get ()</h3>
         | 
| 1328 1311 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_get                       (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1329 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 1330 | 
            -
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/ | 
| 1331 | 
            -
            <div class="warning"  | 
| 1312 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a> **val</code></em>,
         | 
| 1313 | 
            +
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);</pre>
         | 
| 1314 | 
            +
            <div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
         | 
| 1332 1315 | 
             
            <h3 class="title">Warning</h3>
         | 
| 1333 1316 | 
             
            <p><code class="literal">gtk_image_get</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a class="link" href="GtkImage.html#gtk-image-get-image" title="gtk_image_get_image ()"><code class="function">gtk_image_get_image()</code></a> instead.</p>
         | 
| 1334 1317 | 
             
            </div>
         | 
| @@ -1345,19 +1328,18 @@ Gets the <a class="link" href="GtkImage.html" title="GtkImage"><span class="type | |
| 1345 1328 | 
             
            </tr>
         | 
| 1346 1329 | 
             
            <tr>
         | 
| 1347 1330 | 
             
            <td><p><span class="term"><em class="parameter"><code>val</code></em> :</span></p></td>
         | 
| 1348 | 
            -
            <td>return location for a <a href="http://library.gnome.org/devel/ | 
| 1331 | 
            +
            <td>return location for a <a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a>
         | 
| 1349 1332 | 
             
            </td>
         | 
| 1350 1333 | 
             
            </tr>
         | 
| 1351 1334 | 
             
            <tr>
         | 
| 1352 1335 | 
             
            <td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
         | 
| 1353 | 
            -
            <td>a <a href="http://library.gnome.org/devel/ | 
| 1354 | 
            -
            </td>
         | 
| 1336 | 
            +
            <td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> that indicates which parts of the image should be transparent.</td>
         | 
| 1355 1337 | 
             
            </tr>
         | 
| 1356 1338 | 
             
            </tbody>
         | 
| 1357 1339 | 
             
            </table></div>
         | 
| 1358 1340 | 
             
            </div>
         | 
| 1359 1341 | 
             
            <hr>
         | 
| 1360 | 
            -
            <div class="refsect2" | 
| 1342 | 
            +
            <div class="refsect2">
         | 
| 1361 1343 | 
             
            <a name="gtk-image-set-pixel-size"></a><h3>gtk_image_set_pixel_size ()</h3>
         | 
| 1362 1344 | 
             
            <pre class="programlisting"><span class="returnvalue">void</span>                gtk_image_set_pixel_size            (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>,
         | 
| 1363 1345 | 
             
                                                                     <em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> pixel_size</code></em>);</pre>
         | 
| @@ -1376,15 +1358,14 @@ to a value != -1, it is used instead of the icon size set by | |
| 1376 1358 | 
             
            </tr>
         | 
| 1377 1359 | 
             
            <tr>
         | 
| 1378 1360 | 
             
            <td><p><span class="term"><em class="parameter"><code>pixel_size</code></em> :</span></p></td>
         | 
| 1379 | 
            -
            <td>the new pixel size
         | 
| 1380 | 
            -
            </td>
         | 
| 1361 | 
            +
            <td>the new pixel size</td>
         | 
| 1381 1362 | 
             
            </tr>
         | 
| 1382 1363 | 
             
            </tbody>
         | 
| 1383 1364 | 
             
            </table></div>
         | 
| 1384 1365 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1385 1366 | 
             
            </div>
         | 
| 1386 1367 | 
             
            <hr>
         | 
| 1387 | 
            -
            <div class="refsect2" | 
| 1368 | 
            +
            <div class="refsect2">
         | 
| 1388 1369 | 
             
            <a name="gtk-image-get-pixel-size"></a><h3>gtk_image_get_pixel_size ()</h3>
         | 
| 1389 1370 | 
             
            <pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>                gtk_image_get_pixel_size            (<em class="parameter"><code><a class="link" href="GtkImage.html" title="GtkImage"><span class="type">GtkImage</span></a> *image</code></em>);</pre>
         | 
| 1390 1371 | 
             
            <p>
         | 
| @@ -1400,25 +1381,23 @@ Gets the pixel size used for named icons. | |
| 1400 1381 | 
             
            </tr>
         | 
| 1401 1382 | 
             
            <tr>
         | 
| 1402 1383 | 
             
            <td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
         | 
| 1403 | 
            -
            <td> | 
| 1404 | 
            -
             | 
| 1405 | 
            -
            </td>
         | 
| 1384 | 
            +
            <td>the pixel size used for named icons.</td>
         | 
| 1406 1385 | 
             
            </tr>
         | 
| 1407 1386 | 
             
            </tbody>
         | 
| 1408 1387 | 
             
            </table></div>
         | 
| 1409 1388 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1410 1389 | 
             
            </div>
         | 
| 1411 1390 | 
             
            </div>
         | 
| 1412 | 
            -
            <div class="refsect1" | 
| 1391 | 
            +
            <div class="refsect1">
         | 
| 1413 1392 | 
             
            <a name="GtkImage.property-details"></a><h2>Property Details</h2>
         | 
| 1414 | 
            -
            <div class="refsect2" | 
| 1393 | 
            +
            <div class="refsect2">
         | 
| 1415 1394 | 
             
            <a name="GtkImage--file"></a><h3>The <code class="literal">"file"</code> property</h3>
         | 
| 1416 1395 | 
             
            <pre class="programlisting">  "file"                     <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1417 1396 | 
             
            <p>Filename to load and display.</p>
         | 
| 1418 1397 | 
             
            <p>Default value: NULL</p>
         | 
| 1419 1398 | 
             
            </div>
         | 
| 1420 1399 | 
             
            <hr>
         | 
| 1421 | 
            -
            <div class="refsect2" | 
| 1400 | 
            +
            <div class="refsect2">
         | 
| 1422 1401 | 
             
            <a name="GtkImage--gicon"></a><h3>The <code class="literal">"gicon"</code> property</h3>
         | 
| 1423 1402 | 
             
            <pre class="programlisting">  "gicon"                    <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a>*                : Read / Write</pre>
         | 
| 1424 1403 | 
             
            <p>
         | 
| @@ -1429,7 +1408,7 @@ automatically. | |
| 1429 1408 | 
             
            <p class="since">Since 2.14</p>
         | 
| 1430 1409 | 
             
            </div>
         | 
| 1431 1410 | 
             
            <hr>
         | 
| 1432 | 
            -
            <div class="refsect2" | 
| 1411 | 
            +
            <div class="refsect2">
         | 
| 1433 1412 | 
             
            <a name="GtkImage--icon-name"></a><h3>The <code class="literal">"icon-name"</code> property</h3>
         | 
| 1434 1413 | 
             
            <pre class="programlisting">  "icon-name"                <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1435 1414 | 
             
            <p>
         | 
| @@ -1440,13 +1419,13 @@ changed, the image will be updated automatically. | |
| 1440 1419 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1441 1420 | 
             
            </div>
         | 
| 1442 1421 | 
             
            <hr>
         | 
| 1443 | 
            -
            <div class="refsect2" | 
| 1422 | 
            +
            <div class="refsect2">
         | 
| 1444 1423 | 
             
            <a name="GtkImage--icon-set"></a><h3>The <code class="literal">"icon-set"</code> property</h3>
         | 
| 1445 | 
            -
            <pre class="programlisting">  "icon-set"                 <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" | 
| 1424 | 
            +
            <pre class="programlisting">  "icon-set"                 <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>*           : Read / Write</pre>
         | 
| 1446 1425 | 
             
            <p>Icon set to display.</p>
         | 
| 1447 1426 | 
             
            </div>
         | 
| 1448 1427 | 
             
            <hr>
         | 
| 1449 | 
            -
            <div class="refsect2" | 
| 1428 | 
            +
            <div class="refsect2">
         | 
| 1450 1429 | 
             
            <a name="GtkImage--icon-size"></a><h3>The <code class="literal">"icon-size"</code> property</h3>
         | 
| 1451 1430 | 
             
            <pre class="programlisting">  "icon-size"                <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write</pre>
         | 
| 1452 1431 | 
             
            <p>Symbolic size to use for stock icon, icon set or named icon.</p>
         | 
| @@ -1454,31 +1433,31 @@ changed, the image will be updated automatically. | |
| 1454 1433 | 
             
            <p>Default value: 4</p>
         | 
| 1455 1434 | 
             
            </div>
         | 
| 1456 1435 | 
             
            <hr>
         | 
| 1457 | 
            -
            <div class="refsect2" | 
| 1436 | 
            +
            <div class="refsect2">
         | 
| 1458 1437 | 
             
            <a name="GtkImage--image"></a><h3>The <code class="literal">"image"</code> property</h3>
         | 
| 1459 | 
            -
            <pre class="programlisting">  "image"                    <a href="http://library.gnome.org/devel/ | 
| 1438 | 
            +
            <pre class="programlisting">  "image"                    <a href="http://library.gnome.org/devel/gdk3/gdk-Images.html#GdkImage"><span class="type">GdkImage</span></a>*             : Read / Write</pre>
         | 
| 1460 1439 | 
             
            <p>A GdkImage to display.</p>
         | 
| 1461 1440 | 
             
            </div>
         | 
| 1462 1441 | 
             
            <hr>
         | 
| 1463 | 
            -
            <div class="refsect2" | 
| 1442 | 
            +
            <div class="refsect2">
         | 
| 1464 1443 | 
             
            <a name="GtkImage--mask"></a><h3>The <code class="literal">"mask"</code> property</h3>
         | 
| 1465 | 
            -
            <pre class="programlisting">  "mask"                     <a href="http://library.gnome.org/devel/ | 
| 1444 | 
            +
            <pre class="programlisting">  "mask"                     <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>*            : Read / Write</pre>
         | 
| 1466 1445 | 
             
            <p>Mask bitmap to use with GdkImage or GdkPixmap.</p>
         | 
| 1467 1446 | 
             
            </div>
         | 
| 1468 1447 | 
             
            <hr>
         | 
| 1469 | 
            -
            <div class="refsect2" | 
| 1448 | 
            +
            <div class="refsect2">
         | 
| 1470 1449 | 
             
            <a name="GtkImage--pixbuf"></a><h3>The <code class="literal">"pixbuf"</code> property</h3>
         | 
| 1471 | 
            -
            <pre class="programlisting">  "pixbuf"                   <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 1450 | 
            +
            <pre class="programlisting">  "pixbuf"                   <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>*            : Read / Write</pre>
         | 
| 1472 1451 | 
             
            <p>A GdkPixbuf to display.</p>
         | 
| 1473 1452 | 
             
            </div>
         | 
| 1474 1453 | 
             
            <hr>
         | 
| 1475 | 
            -
            <div class="refsect2" | 
| 1454 | 
            +
            <div class="refsect2">
         | 
| 1476 1455 | 
             
            <a name="GtkImage--pixbuf-animation"></a><h3>The <code class="literal">"pixbuf-animation"</code> property</h3>
         | 
| 1477 | 
            -
            <pre class="programlisting">  "pixbuf-animation"         <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 1456 | 
            +
            <pre class="programlisting">  "pixbuf-animation"         <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Animations.html#GdkPixbufAnimation"><span class="type">GdkPixbufAnimation</span></a>*   : Read / Write</pre>
         | 
| 1478 1457 | 
             
            <p>GdkPixbufAnimation to display.</p>
         | 
| 1479 1458 | 
             
            </div>
         | 
| 1480 1459 | 
             
            <hr>
         | 
| 1481 | 
            -
            <div class="refsect2" | 
| 1460 | 
            +
            <div class="refsect2">
         | 
| 1482 1461 | 
             
            <a name="GtkImage--pixel-size"></a><h3>The <code class="literal">"pixel-size"</code> property</h3>
         | 
| 1483 1462 | 
             
            <pre class="programlisting">  "pixel-size"               <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a>                  : Read / Write</pre>
         | 
| 1484 1463 | 
             
            <p>
         | 
| @@ -1491,33 +1470,33 @@ overriding the <a class="link" href="GtkImage.html#GtkImage--icon-size" title='T | |
| 1491 1470 | 
             
            <p class="since">Since 2.6</p>
         | 
| 1492 1471 | 
             
            </div>
         | 
| 1493 1472 | 
             
            <hr>
         | 
| 1494 | 
            -
            <div class="refsect2" | 
| 1473 | 
            +
            <div class="refsect2">
         | 
| 1495 1474 | 
             
            <a name="GtkImage--pixmap"></a><h3>The <code class="literal">"pixmap"</code> property</h3>
         | 
| 1496 | 
            -
            <pre class="programlisting">  "pixmap"                   <a href="http://library.gnome.org/devel/ | 
| 1475 | 
            +
            <pre class="programlisting">  "pixmap"                   <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>*            : Read / Write</pre>
         | 
| 1497 1476 | 
             
            <p>A GdkPixmap to display.</p>
         | 
| 1498 1477 | 
             
            </div>
         | 
| 1499 1478 | 
             
            <hr>
         | 
| 1500 | 
            -
            <div class="refsect2" | 
| 1479 | 
            +
            <div class="refsect2">
         | 
| 1501 1480 | 
             
            <a name="GtkImage--stock"></a><h3>The <code class="literal">"stock"</code> property</h3>
         | 
| 1502 1481 | 
             
            <pre class="programlisting">  "stock"                    <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>*                : Read / Write</pre>
         | 
| 1503 1482 | 
             
            <p>Stock ID for a stock image to display.</p>
         | 
| 1504 1483 | 
             
            <p>Default value: NULL</p>
         | 
| 1505 1484 | 
             
            </div>
         | 
| 1506 1485 | 
             
            <hr>
         | 
| 1507 | 
            -
            <div class="refsect2" | 
| 1486 | 
            +
            <div class="refsect2">
         | 
| 1508 1487 | 
             
            <a name="GtkImage--storage-type"></a><h3>The <code class="literal">"storage-type"</code> property</h3>
         | 
| 1509 1488 | 
             
            <pre class="programlisting">  "storage-type"             <a class="link" href="GtkImage.html#GtkImageType" title="enum GtkImageType"><span class="type">GtkImageType</span></a>          : Read</pre>
         | 
| 1510 1489 | 
             
            <p>The representation being used for image data.</p>
         | 
| 1511 1490 | 
             
            <p>Default value: GTK_IMAGE_EMPTY</p>
         | 
| 1512 1491 | 
             
            </div>
         | 
| 1513 1492 | 
             
            </div>
         | 
| 1514 | 
            -
            <div class="refsect1" | 
| 1493 | 
            +
            <div class="refsect1">
         | 
| 1515 1494 | 
             
            <a name="GtkImage.see-also"></a><h2>See Also</h2>
         | 
| 1516 | 
            -
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf- | 
| 1495 | 
            +
            <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
         | 
| 1517 1496 | 
             
            </div>
         | 
| 1518 1497 | 
             
            </div>
         | 
| 1519 1498 | 
             
            <div class="footer">
         | 
| 1520 1499 | 
             
            <hr>
         | 
| 1521 | 
            -
                      Generated by GTK-Doc V1. | 
| 1500 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 1522 1501 | 
             
            </body>
         | 
| 1523 1502 | 
             
            </html>
         |