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>Themeable Stock Images</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="gtkbase.html" title="Part II. GTK+ Core Reference">
|
9
9
|
<link rel="prev" href="gtk-Stock-Items.html" title="Stock Items">
|
10
10
|
<link rel="next" href="gtk-Resource-Files.html" title="Resource Files">
|
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="gtk-Stock-Items.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="gtkbase.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="gtk-Resource-Files.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">
|
@@ -30,7 +30,7 @@
|
|
30
30
|
<a href="#gtk-Themeable-Stock-Images.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
|
31
31
|
</td></tr>
|
32
32
|
</table>
|
33
|
-
<div class="refentry"
|
33
|
+
<div class="refentry">
|
34
34
|
<a name="gtk-Themeable-Stock-Images"></a><div class="titlepage"></div>
|
35
35
|
<div class="refnamediv"><table width="100%"><tr>
|
36
36
|
<td valign="top">
|
@@ -39,40 +39,40 @@
|
|
39
39
|
</td>
|
40
40
|
<td valign="top" align="right"></td>
|
41
41
|
</tr></table></div>
|
42
|
-
<div class="refsynopsisdiv"
|
42
|
+
<div class="refsynopsisdiv">
|
43
43
|
<a name="gtk-Themeable-Stock-Images.synopsis"></a><h2>Synopsis</h2>
|
44
|
-
<a name="GtkIconFactory"></a><pre class="synopsis">
|
44
|
+
<a name="GtkIconFactory"></a><a name="GtkIconSet"></a><pre class="synopsis">
|
45
45
|
#include <gtk/gtk.h>
|
46
46
|
|
47
47
|
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource">GtkIconSource</a>;
|
48
48
|
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory-struct" title="GtkIconFactory">GtkIconFactory</a>;
|
49
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" title="GtkIconSet">GtkIconSet</a>;
|
49
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet-struct" title="GtkIconSet">GtkIconSet</a>;
|
50
50
|
enum <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize">GtkIconSize</a>;
|
51
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="returnvalue">GtkIconSource</span></a
|
51
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="returnvalue">GtkIconSource</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-copy" title="gtk_icon_source_copy ()">gtk_icon_source_copy</a> (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
52
52
|
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-free" title="gtk_icon_source_free ()">gtk_icon_source_free</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
53
53
|
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-factory-add" title="gtk_icon_factory_add ()">gtk_icon_factory_add</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a> *factory</code></em>,
|
54
54
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *stock_id</code></em>,
|
55
|
-
<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
55
|
+
<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>);
|
56
56
|
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-factory-add-default" title="gtk_icon_factory_add_default ()">gtk_icon_factory_add_default</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a> *factory</code></em>);
|
57
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
57
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-factory-lookup" title="gtk_icon_factory_lookup ()">gtk_icon_factory_lookup</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a> *factory</code></em>,
|
58
58
|
<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>);
|
59
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
60
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="returnvalue">GtkIconFactory</span></a
|
59
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-factory-lookup-default" title="gtk_icon_factory_lookup_default ()">gtk_icon_factory_lookup_default</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>);
|
60
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="returnvalue">GtkIconFactory</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-factory-new" title="gtk_icon_factory_new ()">gtk_icon_factory_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
61
61
|
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-factory-remove-default" title="gtk_icon_factory_remove_default ()">gtk_icon_factory_remove_default</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a> *factory</code></em>);
|
62
|
-
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-add-source" title="gtk_icon_set_add_source ()">gtk_icon_set_add_source</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
62
|
+
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-add-source" title="gtk_icon_set_add_source ()">gtk_icon_set_add_source</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>,
|
63
63
|
<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
64
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
65
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
66
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
67
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
68
|
-
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
64
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-copy" title="gtk_icon_set_copy ()">gtk_icon_set_copy</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>);
|
65
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-new" title="gtk_icon_set_new ()">gtk_icon_set_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
66
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-new-from-pixbuf" title="gtk_icon_set_new_from_pixbuf ()">gtk_icon_set_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>);
|
67
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-ref" title="gtk_icon_set_ref ()">gtk_icon_set_ref</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>);
|
68
|
+
<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="gtk-Themeable-Stock-Images.html#gtk-icon-set-render-icon" title="gtk_icon_set_render_icon ()">gtk_icon_set_render_icon</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>,
|
69
69
|
<em class="parameter"><code><a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> *style</code></em>,
|
70
70
|
<em class="parameter"><code><a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> direction</code></em>,
|
71
71
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state</code></em>,
|
72
72
|
<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>,
|
73
73
|
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>,
|
74
74
|
<em class="parameter"><code>const <span class="type">char</span> *detail</code></em>);
|
75
|
-
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-unref" title="gtk_icon_set_unref ()">gtk_icon_set_unref</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
75
|
+
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-unref" title="gtk_icon_set_unref ()">gtk_icon_set_unref</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>);
|
76
76
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-size-lookup" title="gtk_icon_size_lookup ()">gtk_icon_size_lookup</a> (<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>,
|
77
77
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *width</code></em>,
|
78
78
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *height</code></em>);
|
@@ -86,31 +86,30 @@ enum <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIco
|
|
86
86
|
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-size-register-alias" title="gtk_icon_size_register_alias ()">gtk_icon_size_register_alias</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> *alias</code></em>,
|
87
87
|
<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> target</code></em>);
|
88
88
|
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="returnvalue">GtkIconSize</span></a> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-size-from-name" title="gtk_icon_size_from_name ()">gtk_icon_size_from_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> *name</code></em>);
|
89
|
-
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a
|
90
|
-
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-get-sizes" title="gtk_icon_set_get_sizes ()">gtk_icon_set_get_sizes</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
89
|
+
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-size-get-name" title="gtk_icon_size_get_name ()">gtk_icon_size_get_name</a> (<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>);
|
90
|
+
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-get-sizes" title="gtk_icon_set_get_sizes ()">gtk_icon_set_get_sizes</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>,
|
91
91
|
<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> **sizes</code></em>,
|
92
92
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_sizes</code></em>);
|
93
93
|
<a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="returnvalue">GtkTextDirection</span></a> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-direction" title="gtk_icon_source_get_direction ()">gtk_icon_source_get_direction</a> (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
94
94
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-direction-wildcarded" title="gtk_icon_source_get_direction_wildcarded ()">gtk_icon_source_get_direction_wildcarded</a>
|
95
95
|
(<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
96
|
-
|
97
|
-
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
98
|
-
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a
|
96
|
+
#define <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-filename" title="gtk_icon_source_get_filename">gtk_icon_source_get_filename</a>
|
97
|
+
<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="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-pixbuf" title="gtk_icon_source_get_pixbuf ()">gtk_icon_source_get_pixbuf</a> (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
98
|
+
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-icon-name" title="gtk_icon_source_get_icon_name ()">gtk_icon_source_get_icon_name</a> (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
99
99
|
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="returnvalue">GtkIconSize</span></a> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-size" title="gtk_icon_source_get_size ()">gtk_icon_source_get_size</a> (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
100
100
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-size-wildcarded" title="gtk_icon_source_get_size_wildcarded ()">gtk_icon_source_get_size_wildcarded</a> (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
101
101
|
<a class="link" href="gtk-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="returnvalue">GtkStateType</span></a> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-state" title="gtk_icon_source_get_state ()">gtk_icon_source_get_state</a> (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
102
102
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-get-state-wildcarded" title="gtk_icon_source_get_state_wildcarded ()">gtk_icon_source_get_state_wildcarded</a>
|
103
103
|
(<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);
|
104
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="returnvalue">GtkIconSource</span></a
|
104
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="returnvalue">GtkIconSource</span></a> * <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-new" title="gtk_icon_source_new ()">gtk_icon_source_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
105
105
|
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-direction" title="gtk_icon_source_set_direction ()">gtk_icon_source_set_direction</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
106
106
|
<em class="parameter"><code><a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> direction</code></em>);
|
107
107
|
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-direction-wildcarded" title="gtk_icon_source_set_direction_wildcarded ()">gtk_icon_source_set_direction_wildcarded</a>
|
108
108
|
(<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
109
109
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);
|
110
|
-
<
|
111
|
-
<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>);
|
110
|
+
#define <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-filename" title="gtk_icon_source_set_filename">gtk_icon_source_set_filename</a>
|
112
111
|
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-pixbuf" title="gtk_icon_source_set_pixbuf ()">gtk_icon_source_set_pixbuf</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
113
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
112
|
+
<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>);
|
114
113
|
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-icon-name" title="gtk_icon_source_set_icon_name ()">gtk_icon_source_set_icon_name</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
115
114
|
<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>);
|
116
115
|
<span class="returnvalue">void</span> <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-size" title="gtk_icon_source_set_size ()">gtk_icon_source_set_size</a> (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
@@ -124,28 +123,32 @@ const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.htm
|
|
124
123
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);
|
125
124
|
</pre>
|
126
125
|
</div>
|
127
|
-
<div class="refsect1"
|
126
|
+
<div class="refsect1">
|
128
127
|
<a name="gtk-Themeable-Stock-Images.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
129
128
|
<pre class="synopsis">
|
130
129
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
131
130
|
+----GtkIconFactory
|
132
131
|
</pre>
|
132
|
+
<pre class="synopsis">
|
133
|
+
GBoxed
|
134
|
+
+----GtkIconSet
|
135
|
+
</pre>
|
133
136
|
</div>
|
134
|
-
<div class="refsect1"
|
137
|
+
<div class="refsect1">
|
135
138
|
<a name="gtk-Themeable-Stock-Images.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
136
139
|
<p>
|
137
140
|
GtkIconFactory implements
|
138
141
|
<a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
139
142
|
</div>
|
140
|
-
<div class="refsect1"
|
143
|
+
<div class="refsect1">
|
141
144
|
<a name="gtk-Themeable-Stock-Images.description"></a><h2>Description</h2>
|
142
145
|
<p>
|
143
146
|
Browse the available stock icons in the list of stock IDs found <a class="link" href="gtk-Stock-Items.html" title="Stock Items">here</a>. You can also use
|
144
147
|
the <span class="application">gtk-demo</span> application for this purpose.
|
145
148
|
</p>
|
146
149
|
<p>
|
147
|
-
An icon factory manages a collection of <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
148
|
-
set of variants of a particular icon (i.e. a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
150
|
+
An icon factory manages a collection of <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>; a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> manages a
|
151
|
+
set of variants of a particular icon (i.e. a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> contains variants for
|
149
152
|
different sizes and widget states). Icons in an icon factory are named by a
|
150
153
|
stock ID, which is a simple string identifying the icon. Each <a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> has a
|
151
154
|
list of <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a> derived from the current theme; those icon factories
|
@@ -162,7 +165,7 @@ will display the icon, or the convenience function
|
|
162
165
|
<a class="link" href="GtkWidget.html#gtk-widget-render-icon" title="gtk_widget_render_icon ()"><code class="function">gtk_widget_render_icon()</code></a>. These functions take the theme into account when
|
163
166
|
looking up the icon to use for a given stock ID.
|
164
167
|
</p>
|
165
|
-
<div class="refsect2"
|
168
|
+
<div class="refsect2">
|
166
169
|
<a name="GtkIconFactory-BUILDER-UI"></a><h3>GtkIconFactory as GtkBuildable</h3>
|
167
170
|
<p>
|
168
171
|
GtkIconFactory supports a custom <sources> element, which
|
@@ -207,7 +210,7 @@ This attribute is optional.</p></td>
|
|
207
210
|
<p>
|
208
211
|
</p>
|
209
212
|
<div class="example">
|
210
|
-
<a name="
|
213
|
+
<a name="id670088"></a><p class="title"><b>Example 5. A <span class="structname">GtkIconFactory</span> UI definition fragment.</b></p>
|
211
214
|
<div class="example-contents">
|
212
215
|
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
213
216
|
<tbody>
|
@@ -247,30 +250,30 @@ This attribute is optional.</p></td>
|
|
247
250
|
<br class="example-break">
|
248
251
|
</div>
|
249
252
|
</div>
|
250
|
-
<div class="refsect1"
|
253
|
+
<div class="refsect1">
|
251
254
|
<a name="gtk-Themeable-Stock-Images.details"></a><h2>Details</h2>
|
252
|
-
<div class="refsect2"
|
255
|
+
<div class="refsect2">
|
253
256
|
<a name="GtkIconSource"></a><h3>GtkIconSource</h3>
|
254
257
|
<pre class="programlisting">typedef struct _GtkIconSource GtkIconSource;</pre>
|
255
258
|
<p>
|
256
259
|
</p>
|
257
260
|
</div>
|
258
261
|
<hr>
|
259
|
-
<div class="refsect2"
|
262
|
+
<div class="refsect2">
|
260
263
|
<a name="GtkIconFactory-struct"></a><h3>GtkIconFactory</h3>
|
261
264
|
<pre class="programlisting">typedef struct _GtkIconFactory GtkIconFactory;</pre>
|
262
265
|
<p>
|
263
266
|
</p>
|
264
267
|
</div>
|
265
268
|
<hr>
|
266
|
-
<div class="refsect2"
|
267
|
-
<a name="GtkIconSet"></a><h3>GtkIconSet</h3>
|
269
|
+
<div class="refsect2">
|
270
|
+
<a name="GtkIconSet-struct"></a><h3>GtkIconSet</h3>
|
268
271
|
<pre class="programlisting">typedef struct _GtkIconSet GtkIconSet;</pre>
|
269
272
|
<p>
|
270
273
|
</p>
|
271
274
|
</div>
|
272
275
|
<hr>
|
273
|
-
<div class="refsect2"
|
276
|
+
<div class="refsect2">
|
274
277
|
<a name="GtkIconSize"></a><h3>enum GtkIconSize</h3>
|
275
278
|
<pre class="programlisting">typedef enum
|
276
279
|
{
|
@@ -287,9 +290,9 @@ This attribute is optional.</p></td>
|
|
287
290
|
</p>
|
288
291
|
</div>
|
289
292
|
<hr>
|
290
|
-
<div class="refsect2"
|
293
|
+
<div class="refsect2">
|
291
294
|
<a name="gtk-icon-source-copy"></a><h3>gtk_icon_source_copy ()</h3>
|
292
|
-
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="returnvalue">GtkIconSource</span></a
|
295
|
+
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="returnvalue">GtkIconSource</span></a> * gtk_icon_source_copy (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
293
296
|
<p>
|
294
297
|
Creates a copy of <em class="parameter"><code>source</code></em>; mostly useful for language bindings.
|
295
298
|
</p>
|
@@ -303,14 +306,14 @@ Creates a copy of <em class="parameter"><code>source</code></em>; mostly useful
|
|
303
306
|
</tr>
|
304
307
|
<tr>
|
305
308
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
306
|
-
<td>
|
309
|
+
<td>a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a>
|
307
310
|
</td>
|
308
311
|
</tr>
|
309
312
|
</tbody>
|
310
313
|
</table></div>
|
311
314
|
</div>
|
312
315
|
<hr>
|
313
|
-
<div class="refsect2"
|
316
|
+
<div class="refsect2">
|
314
317
|
<a name="gtk-icon-source-free"></a><h3>gtk_icon_source_free ()</h3>
|
315
318
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_source_free (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
316
319
|
<p>
|
@@ -327,11 +330,11 @@ filename, size, and pixbuf fields if those are not <a href="http://library.gnome
|
|
327
330
|
</table></div>
|
328
331
|
</div>
|
329
332
|
<hr>
|
330
|
-
<div class="refsect2"
|
333
|
+
<div class="refsect2">
|
331
334
|
<a name="gtk-icon-factory-add"></a><h3>gtk_icon_factory_add ()</h3>
|
332
335
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_factory_add (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a> *factory</code></em>,
|
333
336
|
<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>,
|
334
|
-
<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
337
|
+
<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>);</pre>
|
335
338
|
<p>
|
336
339
|
Adds the given <em class="parameter"><code>icon_set</code></em> to the icon factory, under the name
|
337
340
|
<em class="parameter"><code>stock_id</code></em>. <em class="parameter"><code>stock_id</code></em> should be namespaced for your application,
|
@@ -354,19 +357,17 @@ with the new <em class="parameter"><code>icon_set</code></em>.
|
|
354
357
|
</tr>
|
355
358
|
<tr>
|
356
359
|
<td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
|
357
|
-
<td>icon name
|
358
|
-
</td>
|
360
|
+
<td>icon name</td>
|
359
361
|
</tr>
|
360
362
|
<tr>
|
361
363
|
<td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
|
362
|
-
<td>icon set
|
363
|
-
</td>
|
364
|
+
<td>icon set</td>
|
364
365
|
</tr>
|
365
366
|
</tbody>
|
366
367
|
</table></div>
|
367
368
|
</div>
|
368
369
|
<hr>
|
369
|
-
<div class="refsect2"
|
370
|
+
<div class="refsect2">
|
370
371
|
<a name="gtk-icon-factory-add-default"></a><h3>gtk_icon_factory_add_default ()</h3>
|
371
372
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_factory_add_default (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a> *factory</code></em>);</pre>
|
372
373
|
<p>
|
@@ -387,9 +388,9 @@ can be overridden by themes.
|
|
387
388
|
</table></div>
|
388
389
|
</div>
|
389
390
|
<hr>
|
390
|
-
<div class="refsect2"
|
391
|
+
<div class="refsect2">
|
391
392
|
<a name="gtk-icon-factory-lookup"></a><h3>gtk_icon_factory_lookup ()</h3>
|
392
|
-
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
393
|
+
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * gtk_icon_factory_lookup (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a> *factory</code></em>,
|
393
394
|
<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>);</pre>
|
394
395
|
<p>
|
395
396
|
Looks up <em class="parameter"><code>stock_id</code></em> in the icon factory, returning an icon set
|
@@ -408,21 +409,20 @@ function directly, so that themes are taken into account.
|
|
408
409
|
</tr>
|
409
410
|
<tr>
|
410
411
|
<td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
|
411
|
-
<td>an icon name
|
412
|
-
</td>
|
412
|
+
<td>an icon name</td>
|
413
413
|
</tr>
|
414
414
|
<tr>
|
415
415
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
416
|
-
<td>
|
416
|
+
<td>icon set of <em class="parameter"><code>stock_id</code></em>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
417
417
|
</td>
|
418
418
|
</tr>
|
419
419
|
</tbody>
|
420
420
|
</table></div>
|
421
421
|
</div>
|
422
422
|
<hr>
|
423
|
-
<div class="refsect2"
|
423
|
+
<div class="refsect2">
|
424
424
|
<a name="gtk-icon-factory-lookup-default"></a><h3>gtk_icon_factory_lookup_default ()</h3>
|
425
|
-
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
425
|
+
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * gtk_icon_factory_lookup_default (<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>);</pre>
|
426
426
|
<p>
|
427
427
|
Looks for an icon in the list of default icon factories. For
|
428
428
|
display to the user, you should use <a class="link" href="GtkStyle.html#gtk-style-lookup-icon-set" title="gtk_style_lookup_icon_set ()"><code class="function">gtk_style_lookup_icon_set()</code></a> on
|
@@ -435,25 +435,24 @@ account.
|
|
435
435
|
<tbody>
|
436
436
|
<tr>
|
437
437
|
<td><p><span class="term"><em class="parameter"><code>stock_id</code></em> :</span></p></td>
|
438
|
-
<td>an icon name
|
439
|
-
</td>
|
438
|
+
<td>an icon name</td>
|
440
439
|
</tr>
|
441
440
|
<tr>
|
442
441
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
443
|
-
<td>
|
442
|
+
<td>a <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="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
444
443
|
</td>
|
445
444
|
</tr>
|
446
445
|
</tbody>
|
447
446
|
</table></div>
|
448
447
|
</div>
|
449
448
|
<hr>
|
450
|
-
<div class="refsect2"
|
449
|
+
<div class="refsect2">
|
451
450
|
<a name="gtk-icon-factory-new"></a><h3>gtk_icon_factory_new ()</h3>
|
452
|
-
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="returnvalue">GtkIconFactory</span></a
|
451
|
+
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="returnvalue">GtkIconFactory</span></a> * gtk_icon_factory_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
453
452
|
<p>
|
454
453
|
Creates a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a>. An icon factory manages a collection
|
455
|
-
of <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
456
|
-
particular icon (i.e. a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
454
|
+
of <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>s; a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> manages a set of variants of a
|
455
|
+
particular icon (i.e. a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> contains variants for different
|
457
456
|
sizes and widget states). Icons in an icon factory are named by a
|
458
457
|
stock ID, which is a simple string identifying the icon. Each
|
459
458
|
<a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> has a list of <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a>s derived from the current
|
@@ -469,13 +468,13 @@ themes to override the icons for the application.
|
|
469
468
|
<col align="left" valign="top">
|
470
469
|
<tbody><tr>
|
471
470
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
472
|
-
<td>
|
471
|
+
<td>a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a>
|
473
472
|
</td>
|
474
473
|
</tr></tbody>
|
475
474
|
</table></div>
|
476
475
|
</div>
|
477
476
|
<hr>
|
478
|
-
<div class="refsect2"
|
477
|
+
<div class="refsect2">
|
479
478
|
<a name="gtk-icon-factory-remove-default"></a><h3>gtk_icon_factory_remove_default ()</h3>
|
480
479
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_factory_remove_default (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a> *factory</code></em>);</pre>
|
481
480
|
<p>
|
@@ -493,15 +492,15 @@ can be unloaded or shut down.
|
|
493
492
|
</table></div>
|
494
493
|
</div>
|
495
494
|
<hr>
|
496
|
-
<div class="refsect2"
|
495
|
+
<div class="refsect2">
|
497
496
|
<a name="gtk-icon-set-add-source"></a><h3>gtk_icon_set_add_source ()</h3>
|
498
|
-
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_set_add_source (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
497
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_set_add_source (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
|
499
498
|
<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
500
499
|
<p>
|
501
500
|
Icon sets have a list of <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a>, which they use as base
|
502
501
|
icons for rendering icons in different states and sizes. Icons are
|
503
502
|
scaled, made to look insensitive, etc. in
|
504
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-render-icon" title="gtk_icon_set_render_icon ()"><code class="function">gtk_icon_set_render_icon()</code></a>, but <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
503
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-render-icon" title="gtk_icon_set_render_icon ()"><code class="function">gtk_icon_set_render_icon()</code></a>, but <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> needs base images to
|
505
504
|
work with. The base images and when to use them are described by
|
506
505
|
a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a>.
|
507
506
|
</p>
|
@@ -520,7 +519,7 @@ the icon, and you might add a separate source for each one.
|
|
520
519
|
<p>
|
521
520
|
You should nearly always add a "default" icon source with all
|
522
521
|
fields wildcarded, which will be used as a fallback if no more
|
523
|
-
specific source matches. <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
522
|
+
specific source matches. <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> always prefers more specific
|
524
523
|
icon sources to more generic icon sources. The order in which you
|
525
524
|
add the sources to the icon set does not matter.
|
526
525
|
</p>
|
@@ -533,7 +532,7 @@ default icon source based on the given pixbuf.
|
|
533
532
|
<tbody>
|
534
533
|
<tr>
|
535
534
|
<td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
|
536
|
-
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
535
|
+
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
|
537
536
|
</td>
|
538
537
|
</tr>
|
539
538
|
<tr>
|
@@ -545,9 +544,9 @@ default icon source based on the given pixbuf.
|
|
545
544
|
</table></div>
|
546
545
|
</div>
|
547
546
|
<hr>
|
548
|
-
<div class="refsect2"
|
547
|
+
<div class="refsect2">
|
549
548
|
<a name="gtk-icon-set-copy"></a><h3>gtk_icon_set_copy ()</h3>
|
550
|
-
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
549
|
+
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * gtk_icon_set_copy (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>);</pre>
|
551
550
|
<p>
|
552
551
|
Copies <em class="parameter"><code>icon_set</code></em> by value.
|
553
552
|
</p>
|
@@ -556,48 +555,47 @@ Copies <em class="parameter"><code>icon_set</code></em> by value.
|
|
556
555
|
<tbody>
|
557
556
|
<tr>
|
558
557
|
<td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
|
559
|
-
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
558
|
+
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
|
560
559
|
</td>
|
561
560
|
</tr>
|
562
561
|
<tr>
|
563
562
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
564
|
-
<td>
|
565
|
-
</td>
|
563
|
+
<td>a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> identical to the first.</td>
|
566
564
|
</tr>
|
567
565
|
</tbody>
|
568
566
|
</table></div>
|
569
567
|
</div>
|
570
568
|
<hr>
|
571
|
-
<div class="refsect2"
|
569
|
+
<div class="refsect2">
|
572
570
|
<a name="gtk-icon-set-new"></a><h3>gtk_icon_set_new ()</h3>
|
573
|
-
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
571
|
+
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * gtk_icon_set_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
574
572
|
<p>
|
575
|
-
Creates a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
576
|
-
in various sizes and widget states. It can provide a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
573
|
+
Creates a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>. A <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> represents a single icon
|
574
|
+
in various sizes and widget states. It can provide a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
|
577
575
|
for a given size and state on request, and automatically caches
|
578
|
-
some of the rendered <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
576
|
+
some of the rendered <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> objects.
|
579
577
|
</p>
|
580
578
|
<p>
|
581
579
|
Normally you would use <a class="link" href="GtkWidget.html#gtk-widget-render-icon" title="gtk_widget_render_icon ()"><code class="function">gtk_widget_render_icon()</code></a> instead of
|
582
|
-
using <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
583
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
580
|
+
using <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> directly. The one case where you'd use
|
581
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> is to create application-specific icon sets to place in
|
584
582
|
a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a>.
|
585
583
|
</p>
|
586
584
|
<div class="variablelist"><table border="0">
|
587
585
|
<col align="left" valign="top">
|
588
586
|
<tbody><tr>
|
589
587
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
590
|
-
<td>
|
588
|
+
<td>a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
|
591
589
|
</td>
|
592
590
|
</tr></tbody>
|
593
591
|
</table></div>
|
594
592
|
</div>
|
595
593
|
<hr>
|
596
|
-
<div class="refsect2"
|
594
|
+
<div class="refsect2">
|
597
595
|
<a name="gtk-icon-set-new-from-pixbuf"></a><h3>gtk_icon_set_new_from_pixbuf ()</h3>
|
598
|
-
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
596
|
+
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * gtk_icon_set_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>
|
599
597
|
<p>
|
600
|
-
Creates a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
598
|
+
Creates a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> with <em class="parameter"><code>pixbuf</code></em> as the default/fallback
|
601
599
|
source image. If you don't add any additional <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> to the
|
602
600
|
icon set, all variants of the icon will be created from <em class="parameter"><code>pixbuf</code></em>,
|
603
601
|
using scaling, pixelation, etc. as required to adjust the icon size
|
@@ -608,21 +606,21 @@ or make the icon look insensitive/prelighted.
|
|
608
606
|
<tbody>
|
609
607
|
<tr>
|
610
608
|
<td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
|
611
|
-
<td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
609
|
+
<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>
|
612
610
|
</td>
|
613
611
|
</tr>
|
614
612
|
<tr>
|
615
613
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
616
|
-
<td>
|
614
|
+
<td>a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
|
617
615
|
</td>
|
618
616
|
</tr>
|
619
617
|
</tbody>
|
620
618
|
</table></div>
|
621
619
|
</div>
|
622
620
|
<hr>
|
623
|
-
<div class="refsect2"
|
621
|
+
<div class="refsect2">
|
624
622
|
<a name="gtk-icon-set-ref"></a><h3>gtk_icon_set_ref ()</h3>
|
625
|
-
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
623
|
+
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="returnvalue">GtkIconSet</span></a> * gtk_icon_set_ref (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>);</pre>
|
626
624
|
<p>
|
627
625
|
Increments the reference count on <em class="parameter"><code>icon_set</code></em>.
|
628
626
|
</p>
|
@@ -631,21 +629,20 @@ Increments the reference count on <em class="parameter"><code>icon_set</code></e
|
|
631
629
|
<tbody>
|
632
630
|
<tr>
|
633
631
|
<td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
|
634
|
-
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
635
|
-
</td>
|
632
|
+
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>.</td>
|
636
633
|
</tr>
|
637
634
|
<tr>
|
638
635
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
639
|
-
<td>
|
640
|
-
</td>
|
636
|
+
<td>
|
637
|
+
<em class="parameter"><code>icon_set</code></em>.</td>
|
641
638
|
</tr>
|
642
639
|
</tbody>
|
643
640
|
</table></div>
|
644
641
|
</div>
|
645
642
|
<hr>
|
646
|
-
<div class="refsect2"
|
643
|
+
<div class="refsect2">
|
647
644
|
<a name="gtk-icon-set-render-icon"></a><h3>gtk_icon_set_render_icon ()</h3>
|
648
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
645
|
+
<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_icon_set_render_icon (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
|
649
646
|
<em class="parameter"><code><a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> *style</code></em>,
|
650
647
|
<em class="parameter"><code><a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> direction</code></em>,
|
651
648
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state</code></em>,
|
@@ -665,56 +662,54 @@ image" icon will be returned instead.
|
|
665
662
|
<tbody>
|
666
663
|
<tr>
|
667
664
|
<td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
|
668
|
-
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
665
|
+
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
|
669
666
|
</td>
|
670
667
|
</tr>
|
671
668
|
<tr>
|
672
669
|
<td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
|
673
|
-
<td>
|
670
|
+
<td>a <a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> associated with <em class="parameter"><code>widget</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
674
671
|
</td>
|
675
672
|
</tr>
|
676
673
|
<tr>
|
677
674
|
<td><p><span class="term"><em class="parameter"><code>direction</code></em> :</span></p></td>
|
678
|
-
<td>text direction
|
679
|
-
</td>
|
675
|
+
<td>text direction</td>
|
680
676
|
</tr>
|
681
677
|
<tr>
|
682
678
|
<td><p><span class="term"><em class="parameter"><code>state</code></em> :</span></p></td>
|
683
|
-
<td>widget state
|
684
|
-
</td>
|
679
|
+
<td>widget state</td>
|
685
680
|
</tr>
|
686
681
|
<tr>
|
687
682
|
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
688
|
-
<td>
|
689
|
-
|
683
|
+
<td>icon size. A size of (GtkIconSize)-1
|
684
|
+
means render at the size of the source and don't scale. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
|
690
685
|
</td>
|
691
686
|
</tr>
|
692
687
|
<tr>
|
693
688
|
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
694
|
-
<td>
|
695
|
-
|
696
|
-
|
689
|
+
<td>widget that will display the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
690
|
+
The only use that is typically made of this
|
691
|
+
is to determine the appropriate <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
697
692
|
</td>
|
698
693
|
</tr>
|
699
694
|
<tr>
|
700
695
|
<td><p><span class="term"><em class="parameter"><code>detail</code></em> :</span></p></td>
|
701
|
-
<td>
|
702
|
-
|
703
|
-
|
696
|
+
<td>detail to pass to the theme engine, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
697
|
+
Note that passing a detail of anything but <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
698
|
+
will disable caching. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
704
699
|
</td>
|
705
700
|
</tr>
|
706
701
|
<tr>
|
707
702
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
708
|
-
<td>
|
703
|
+
<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> to be displayed. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
709
704
|
</td>
|
710
705
|
</tr>
|
711
706
|
</tbody>
|
712
707
|
</table></div>
|
713
708
|
</div>
|
714
709
|
<hr>
|
715
|
-
<div class="refsect2"
|
710
|
+
<div class="refsect2">
|
716
711
|
<a name="gtk-icon-set-unref"></a><h3>gtk_icon_set_unref ()</h3>
|
717
|
-
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_set_unref (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
712
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_set_unref (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>);</pre>
|
718
713
|
<p>
|
719
714
|
Decrements the reference count on <em class="parameter"><code>icon_set</code></em>, and frees memory
|
720
715
|
if the reference count reaches 0.
|
@@ -723,13 +718,13 @@ if the reference count reaches 0.
|
|
723
718
|
<col align="left" valign="top">
|
724
719
|
<tbody><tr>
|
725
720
|
<td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
|
726
|
-
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
721
|
+
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
|
727
722
|
</td>
|
728
723
|
</tr></tbody>
|
729
724
|
</table></div>
|
730
725
|
</div>
|
731
726
|
<hr>
|
732
|
-
<div class="refsect2"
|
727
|
+
<div class="refsect2">
|
733
728
|
<a name="gtk-icon-size-lookup"></a><h3>gtk_icon_size_lookup ()</h3>
|
734
729
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_icon_size_lookup (<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>,
|
735
730
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *width</code></em>,
|
@@ -752,29 +747,29 @@ the usual size.
|
|
752
747
|
<tbody>
|
753
748
|
<tr>
|
754
749
|
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
755
|
-
<td>
|
750
|
+
<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>
|
756
751
|
</td>
|
757
752
|
</tr>
|
758
753
|
<tr>
|
759
754
|
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
760
|
-
<td>location to store icon width
|
755
|
+
<td>location to store icon width. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
761
756
|
</td>
|
762
757
|
</tr>
|
763
758
|
<tr>
|
764
759
|
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
765
|
-
<td>location to store icon height
|
760
|
+
<td>location to store icon height. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
766
761
|
</td>
|
767
762
|
</tr>
|
768
763
|
<tr>
|
769
764
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
770
|
-
<td>
|
771
|
-
</td>
|
765
|
+
<td>
|
766
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>size</code></em> was a valid size</td>
|
772
767
|
</tr>
|
773
768
|
</tbody>
|
774
769
|
</table></div>
|
775
770
|
</div>
|
776
771
|
<hr>
|
777
|
-
<div class="refsect2"
|
772
|
+
<div class="refsect2">
|
778
773
|
<a name="gtk-icon-size-lookup-for-settings"></a><h3>gtk_icon_size_lookup_for_settings ()</h3>
|
779
774
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_icon_size_lookup_for_settings (<em class="parameter"><code><a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> *settings</code></em>,
|
780
775
|
<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>,
|
@@ -798,36 +793,34 @@ the usual size.
|
|
798
793
|
<tr>
|
799
794
|
<td><p><span class="term"><em class="parameter"><code>settings</code></em> :</span></p></td>
|
800
795
|
<td>a <a class="link" href="GtkSettings.html" title="Settings"><span class="type">GtkSettings</span></a> object, used to determine
|
801
|
-
|
802
|
-
</td>
|
796
|
+
which set of user preferences to used.</td>
|
803
797
|
</tr>
|
804
798
|
<tr>
|
805
799
|
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
806
|
-
<td>
|
800
|
+
<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>
|
807
801
|
</td>
|
808
802
|
</tr>
|
809
803
|
<tr>
|
810
804
|
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
811
|
-
<td>location to store icon width
|
805
|
+
<td>location to store icon width. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
812
806
|
</td>
|
813
807
|
</tr>
|
814
808
|
<tr>
|
815
809
|
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
816
|
-
<td>location to store icon height
|
810
|
+
<td>location to store icon height. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
817
811
|
</td>
|
818
812
|
</tr>
|
819
813
|
<tr>
|
820
814
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
821
|
-
<td>
|
822
|
-
|
823
|
-
</td>
|
815
|
+
<td>
|
816
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if <em class="parameter"><code>size</code></em> was a valid size</td>
|
824
817
|
</tr>
|
825
818
|
</tbody>
|
826
819
|
</table></div>
|
827
820
|
<p class="since">Since 2.2</p>
|
828
821
|
</div>
|
829
822
|
<hr>
|
830
|
-
<div class="refsect2"
|
823
|
+
<div class="refsect2">
|
831
824
|
<a name="gtk-icon-size-register"></a><h3>gtk_icon_size_register ()</h3>
|
832
825
|
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="returnvalue">GtkIconSize</span></a> gtk_icon_size_register (<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> *name</code></em>,
|
833
826
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>,
|
@@ -841,29 +834,26 @@ etc. Returns the integer value for the size.
|
|
841
834
|
<tbody>
|
842
835
|
<tr>
|
843
836
|
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
844
|
-
<td>name of the icon size
|
845
|
-
</td>
|
837
|
+
<td>name of the icon size</td>
|
846
838
|
</tr>
|
847
839
|
<tr>
|
848
840
|
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
849
|
-
<td>the icon width
|
850
|
-
</td>
|
841
|
+
<td>the icon width</td>
|
851
842
|
</tr>
|
852
843
|
<tr>
|
853
844
|
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
854
|
-
<td>the icon height
|
855
|
-
</td>
|
845
|
+
<td>the icon height</td>
|
856
846
|
</tr>
|
857
847
|
<tr>
|
858
848
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
859
|
-
<td>
|
849
|
+
<td>integer value representing the size. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
|
860
850
|
</td>
|
861
851
|
</tr>
|
862
852
|
</tbody>
|
863
853
|
</table></div>
|
864
854
|
</div>
|
865
855
|
<hr>
|
866
|
-
<div class="refsect2"
|
856
|
+
<div class="refsect2">
|
867
857
|
<a name="gtk-icon-size-register-alias"></a><h3>gtk_icon_size_register_alias ()</h3>
|
868
858
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_size_register_alias (<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> *alias</code></em>,
|
869
859
|
<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> target</code></em>);</pre>
|
@@ -882,14 +872,14 @@ will return <em class="parameter"><code>target</code></em>.
|
|
882
872
|
</tr>
|
883
873
|
<tr>
|
884
874
|
<td><p><span class="term"><em class="parameter"><code>target</code></em> :</span></p></td>
|
885
|
-
<td>
|
875
|
+
<td>an existing icon size. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
|
886
876
|
</td>
|
887
877
|
</tr>
|
888
878
|
</tbody>
|
889
879
|
</table></div>
|
890
880
|
</div>
|
891
881
|
<hr>
|
892
|
-
<div class="refsect2"
|
882
|
+
<div class="refsect2">
|
893
883
|
<a name="gtk-icon-size-from-name"></a><h3>gtk_icon_size_from_name ()</h3>
|
894
884
|
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="returnvalue">GtkIconSize</span></a> gtk_icon_size_from_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> *name</code></em>);</pre>
|
895
885
|
<p>
|
@@ -900,21 +890,19 @@ Looks up the icon size associated with <em class="parameter"><code>name</code></
|
|
900
890
|
<tbody>
|
901
891
|
<tr>
|
902
892
|
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
903
|
-
<td>the name to look up
|
904
|
-
</td>
|
893
|
+
<td>the name to look up.</td>
|
905
894
|
</tr>
|
906
895
|
<tr>
|
907
896
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
908
|
-
<td>the icon size with the given name
|
909
|
-
</td>
|
897
|
+
<td>the icon size with the given name.</td>
|
910
898
|
</tr>
|
911
899
|
</tbody>
|
912
900
|
</table></div>
|
913
901
|
</div>
|
914
902
|
<hr>
|
915
|
-
<div class="refsect2"
|
903
|
+
<div class="refsect2">
|
916
904
|
<a name="gtk-icon-size-get-name"></a><h3>gtk_icon_size_get_name ()</h3>
|
917
|
-
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a
|
905
|
+
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_icon_size_get_name (<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>
|
918
906
|
<p>
|
919
907
|
Gets the canonical name of the given icon size. The returned string
|
920
908
|
is statically allocated and should not be freed.
|
@@ -924,21 +912,20 @@ is statically allocated and should not be freed.
|
|
924
912
|
<tbody>
|
925
913
|
<tr>
|
926
914
|
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
927
|
-
<td>
|
915
|
+
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a>. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
|
928
916
|
</td>
|
929
917
|
</tr>
|
930
918
|
<tr>
|
931
919
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
932
|
-
<td>the name of the given icon size
|
933
|
-
</td>
|
920
|
+
<td>the name of the given icon size.</td>
|
934
921
|
</tr>
|
935
922
|
</tbody>
|
936
923
|
</table></div>
|
937
924
|
</div>
|
938
925
|
<hr>
|
939
|
-
<div class="refsect2"
|
926
|
+
<div class="refsect2">
|
940
927
|
<a name="gtk-icon-set-get-sizes"></a><h3>gtk_icon_set_get_sizes ()</h3>
|
941
|
-
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_set_get_sizes (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
928
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_set_get_sizes (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> *icon_set</code></em>,
|
942
929
|
<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="type">GtkIconSize</span></a> **sizes</code></em>,
|
943
930
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_sizes</code></em>);</pre>
|
944
931
|
<p>
|
@@ -950,25 +937,24 @@ array must be freed with <a href="http://library.gnome.org/devel/glib/unstable/g
|
|
950
937
|
<tbody>
|
951
938
|
<tr>
|
952
939
|
<td><p><span class="term"><em class="parameter"><code>icon_set</code></em> :</span></p></td>
|
953
|
-
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
940
|
+
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>
|
954
941
|
</td>
|
955
942
|
</tr>
|
956
943
|
<tr>
|
957
944
|
<td><p><span class="term"><em class="parameter"><code>sizes</code></em> :</span></p></td>
|
958
|
-
<td>
|
959
|
-
|
945
|
+
<td>return location
|
946
|
+
for array of sizes. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_sizes][<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
|
960
947
|
</td>
|
961
948
|
</tr>
|
962
949
|
<tr>
|
963
950
|
<td><p><span class="term"><em class="parameter"><code>n_sizes</code></em> :</span></p></td>
|
964
|
-
<td>location to store number of elements in returned array
|
965
|
-
</td>
|
951
|
+
<td>location to store number of elements in returned array</td>
|
966
952
|
</tr>
|
967
953
|
</tbody>
|
968
954
|
</table></div>
|
969
955
|
</div>
|
970
956
|
<hr>
|
971
|
-
<div class="refsect2"
|
957
|
+
<div class="refsect2">
|
972
958
|
<a name="gtk-icon-source-get-direction"></a><h3>gtk_icon_source_get_direction ()</h3>
|
973
959
|
<pre class="programlisting"><a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="returnvalue">GtkTextDirection</span></a> gtk_icon_source_get_direction (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
974
960
|
<p>
|
@@ -986,14 +972,13 @@ wildcarded.
|
|
986
972
|
</tr>
|
987
973
|
<tr>
|
988
974
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
989
|
-
<td>
|
990
|
-
</td>
|
975
|
+
<td>text direction this source matches</td>
|
991
976
|
</tr>
|
992
977
|
</tbody>
|
993
978
|
</table></div>
|
994
979
|
</div>
|
995
980
|
<hr>
|
996
|
-
<div class="refsect2"
|
981
|
+
<div class="refsect2">
|
997
982
|
<a name="gtk-icon-source-get-direction-wildcarded"></a><h3>gtk_icon_source_get_direction_wildcarded ()</h3>
|
998
983
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_icon_source_get_direction_wildcarded
|
999
984
|
(<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
@@ -1010,16 +995,17 @@ Gets the value set by <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-
|
|
1010
995
|
</tr>
|
1011
996
|
<tr>
|
1012
997
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1013
|
-
<td>
|
1014
|
-
</td>
|
998
|
+
<td>
|
999
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if this icon source is a base for any text direction variant</td>
|
1015
1000
|
</tr>
|
1016
1001
|
</tbody>
|
1017
1002
|
</table></div>
|
1018
1003
|
</div>
|
1019
1004
|
<hr>
|
1020
|
-
<div class="refsect2"
|
1021
|
-
<a name="gtk-icon-source-get-filename"></a><h3>gtk_icon_source_get_filename
|
1022
|
-
<pre class="programlisting"
|
1005
|
+
<div class="refsect2">
|
1006
|
+
<a name="gtk-icon-source-get-filename"></a><h3>gtk_icon_source_get_filename</h3>
|
1007
|
+
<pre class="programlisting">#define gtk_icon_source_get_filename gtk_icon_source_get_filename_utf8
|
1008
|
+
</pre>
|
1023
1009
|
<p>
|
1024
1010
|
Retrieves the source filename, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none is set. The
|
1025
1011
|
filename is not a copy, and should not be modified or expected to
|
@@ -1027,25 +1013,17 @@ persist beyond the lifetime of the icon source.
|
|
1027
1013
|
</p>
|
1028
1014
|
<div class="variablelist"><table border="0">
|
1029
1015
|
<col align="left" valign="top">
|
1030
|
-
<tbody>
|
1031
|
-
<tr>
|
1032
|
-
<td><p><span class="term"><em class="parameter"><code>source</code></em> :</span></p></td>
|
1033
|
-
<td>a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a>
|
1034
|
-
</td>
|
1035
|
-
</tr>
|
1036
|
-
<tr>
|
1016
|
+
<tbody><tr>
|
1037
1017
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1038
|
-
<td>
|
1039
|
-
or freed
|
1040
|
-
</
|
1041
|
-
</tr>
|
1042
|
-
</tbody>
|
1018
|
+
<td>image filename. This string must not be modified
|
1019
|
+
or freed.</td>
|
1020
|
+
</tr></tbody>
|
1043
1021
|
</table></div>
|
1044
1022
|
</div>
|
1045
1023
|
<hr>
|
1046
|
-
<div class="refsect2"
|
1024
|
+
<div class="refsect2">
|
1047
1025
|
<a name="gtk-icon-source-get-pixbuf"></a><h3>gtk_icon_source_get_pixbuf ()</h3>
|
1048
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1026
|
+
<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_icon_source_get_pixbuf (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
1049
1027
|
<p>
|
1050
1028
|
Retrieves the source pixbuf, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none is set.
|
1051
1029
|
In addition, if a filename source is in use, this
|
@@ -1065,16 +1043,16 @@ not incremented.
|
|
1065
1043
|
</tr>
|
1066
1044
|
<tr>
|
1067
1045
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1068
|
-
<td>
|
1046
|
+
<td>source pixbuf. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1069
1047
|
</td>
|
1070
1048
|
</tr>
|
1071
1049
|
</tbody>
|
1072
1050
|
</table></div>
|
1073
1051
|
</div>
|
1074
1052
|
<hr>
|
1075
|
-
<div class="refsect2"
|
1053
|
+
<div class="refsect2">
|
1076
1054
|
<a name="gtk-icon-source-get-icon-name"></a><h3>gtk_icon_source_get_icon_name ()</h3>
|
1077
|
-
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a
|
1055
|
+
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_icon_source_get_icon_name (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
1078
1056
|
<p>
|
1079
1057
|
Retrieves the source icon name, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none is set. The
|
1080
1058
|
icon_name is not a copy, and should not be modified or expected to
|
@@ -1090,14 +1068,13 @@ persist beyond the lifetime of the icon source.
|
|
1090
1068
|
</tr>
|
1091
1069
|
<tr>
|
1092
1070
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1093
|
-
<td>
|
1094
|
-
</td>
|
1071
|
+
<td>icon name. This string must not be modified or freed.</td>
|
1095
1072
|
</tr>
|
1096
1073
|
</tbody>
|
1097
1074
|
</table></div>
|
1098
1075
|
</div>
|
1099
1076
|
<hr>
|
1100
|
-
<div class="refsect2"
|
1077
|
+
<div class="refsect2">
|
1101
1078
|
<a name="gtk-icon-source-get-size"></a><h3>gtk_icon_source_get_size ()</h3>
|
1102
1079
|
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSize" title="enum GtkIconSize"><span class="returnvalue">GtkIconSize</span></a> gtk_icon_source_get_size (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
1103
1080
|
<p>
|
@@ -1114,14 +1091,14 @@ is only useful/meaningful if the icon size is <span class="emphasis"><em>not</em
|
|
1114
1091
|
</tr>
|
1115
1092
|
<tr>
|
1116
1093
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1117
|
-
<td>
|
1094
|
+
<td>icon size this source matches. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
|
1118
1095
|
</td>
|
1119
1096
|
</tr>
|
1120
1097
|
</tbody>
|
1121
1098
|
</table></div>
|
1122
1099
|
</div>
|
1123
1100
|
<hr>
|
1124
|
-
<div class="refsect2"
|
1101
|
+
<div class="refsect2">
|
1125
1102
|
<a name="gtk-icon-source-get-size-wildcarded"></a><h3>gtk_icon_source_get_size_wildcarded ()</h3>
|
1126
1103
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_icon_source_get_size_wildcarded (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
1127
1104
|
<p>
|
@@ -1137,14 +1114,14 @@ Gets the value set by <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-
|
|
1137
1114
|
</tr>
|
1138
1115
|
<tr>
|
1139
1116
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1140
|
-
<td>
|
1141
|
-
</td>
|
1117
|
+
<td>
|
1118
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if this icon source is a base for any icon size variant</td>
|
1142
1119
|
</tr>
|
1143
1120
|
</tbody>
|
1144
1121
|
</table></div>
|
1145
1122
|
</div>
|
1146
1123
|
<hr>
|
1147
|
-
<div class="refsect2"
|
1124
|
+
<div class="refsect2">
|
1148
1125
|
<a name="gtk-icon-source-get-state"></a><h3>gtk_icon_source_get_state ()</h3>
|
1149
1126
|
<pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="returnvalue">GtkStateType</span></a> gtk_icon_source_get_state (<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
1150
1127
|
<p>
|
@@ -1162,14 +1139,13 @@ wildcarded.
|
|
1162
1139
|
</tr>
|
1163
1140
|
<tr>
|
1164
1141
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1165
|
-
<td>
|
1166
|
-
</td>
|
1142
|
+
<td>widget state this source matches</td>
|
1167
1143
|
</tr>
|
1168
1144
|
</tbody>
|
1169
1145
|
</table></div>
|
1170
1146
|
</div>
|
1171
1147
|
<hr>
|
1172
|
-
<div class="refsect2"
|
1148
|
+
<div class="refsect2">
|
1173
1149
|
<a name="gtk-icon-source-get-state-wildcarded"></a><h3>gtk_icon_source_get_state_wildcarded ()</h3>
|
1174
1150
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_icon_source_get_state_wildcarded
|
1175
1151
|
(<em class="parameter"><code>const <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>);</pre>
|
@@ -1186,20 +1162,20 @@ Gets the value set by <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-
|
|
1186
1162
|
</tr>
|
1187
1163
|
<tr>
|
1188
1164
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1189
|
-
<td>
|
1190
|
-
</td>
|
1165
|
+
<td>
|
1166
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if this icon source is a base for any widget state variant</td>
|
1191
1167
|
</tr>
|
1192
1168
|
</tbody>
|
1193
1169
|
</table></div>
|
1194
1170
|
</div>
|
1195
1171
|
<hr>
|
1196
|
-
<div class="refsect2"
|
1172
|
+
<div class="refsect2">
|
1197
1173
|
<a name="gtk-icon-source-new"></a><h3>gtk_icon_source_new ()</h3>
|
1198
|
-
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="returnvalue">GtkIconSource</span></a
|
1174
|
+
<pre class="programlisting"><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="returnvalue">GtkIconSource</span></a> * gtk_icon_source_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
1199
1175
|
<p>
|
1200
|
-
Creates a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a>. A <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> contains a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1176
|
+
Creates a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a>. A <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> 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> (or
|
1201
1177
|
image filename) that serves as the base image for one or more of the
|
1202
|
-
icons in a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1178
|
+
icons in a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>, along with a specification for which icons in the
|
1203
1179
|
icon set will be based on that pixbuf or image file. An icon set contains
|
1204
1180
|
a set of icons that represent "the same" logical concept in different states,
|
1205
1181
|
different global text directions, and different sizes.
|
@@ -1209,12 +1185,12 @@ So for example a web browser's "Back to Previous Page" icon might
|
|
1209
1185
|
point in a different direction in Hebrew and in English; it might
|
1210
1186
|
look different when insensitive; and it might change size depending
|
1211
1187
|
on toolbar mode (small/large icons). So a single icon set would
|
1212
|
-
contain all those variants of the icon. <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1188
|
+
contain all those variants of the icon. <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> contains a list
|
1213
1189
|
of <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> from which it can derive specific icon variants in
|
1214
1190
|
the set.
|
1215
1191
|
</p>
|
1216
1192
|
<p>
|
1217
|
-
In the simplest case, <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1193
|
+
In the simplest case, <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> contains one source pixbuf from
|
1218
1194
|
which it derives all variants. The convenience function
|
1219
1195
|
<a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-set-new-from-pixbuf" title="gtk_icon_set_new_from_pixbuf ()"><code class="function">gtk_icon_set_new_from_pixbuf()</code></a> handles this case; if you only have
|
1220
1196
|
one source pixbuf, just use that function.
|
@@ -1234,13 +1210,13 @@ direction, widget state, or icon size.
|
|
1234
1210
|
<col align="left" valign="top">
|
1235
1211
|
<tbody><tr>
|
1236
1212
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1237
|
-
<td>
|
1213
|
+
<td>a new <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a>
|
1238
1214
|
</td>
|
1239
1215
|
</tr></tbody>
|
1240
1216
|
</table></div>
|
1241
1217
|
</div>
|
1242
1218
|
<hr>
|
1243
|
-
<div class="refsect2"
|
1219
|
+
<div class="refsect2">
|
1244
1220
|
<a name="gtk-icon-source-set-direction"></a><h3>gtk_icon_source_set_direction ()</h3>
|
1245
1221
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_source_set_direction (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
1246
1222
|
<em class="parameter"><code><a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> direction</code></em>);</pre>
|
@@ -1264,14 +1240,13 @@ in addition to calling this function.
|
|
1264
1240
|
</tr>
|
1265
1241
|
<tr>
|
1266
1242
|
<td><p><span class="term"><em class="parameter"><code>direction</code></em> :</span></p></td>
|
1267
|
-
<td>text direction this source applies to
|
1268
|
-
</td>
|
1243
|
+
<td>text direction this source applies to</td>
|
1269
1244
|
</tr>
|
1270
1245
|
</tbody>
|
1271
1246
|
</table></div>
|
1272
1247
|
</div>
|
1273
1248
|
<hr>
|
1274
|
-
<div class="refsect2"
|
1249
|
+
<div class="refsect2">
|
1275
1250
|
<a name="gtk-icon-source-set-direction-wildcarded"></a><h3>gtk_icon_source_set_direction_wildcarded ()</h3>
|
1276
1251
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_source_set_direction_wildcarded
|
1277
1252
|
(<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
@@ -1285,7 +1260,7 @@ with <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-set-d
|
|
1285
1260
|
will only be used with that text direction.
|
1286
1261
|
</p>
|
1287
1262
|
<p>
|
1288
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1263
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> prefers non-wildcarded sources (exact matches) over
|
1289
1264
|
wildcarded sources, and will use an exact match when possible.
|
1290
1265
|
</p>
|
1291
1266
|
<div class="variablelist"><table border="0">
|
@@ -1299,20 +1274,19 @@ wildcarded sources, and will use an exact match when possible.
|
|
1299
1274
|
<tr>
|
1300
1275
|
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
1301
1276
|
<td>
|
1302
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to wildcard the text direction
|
1303
|
-
</td>
|
1277
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to wildcard the text direction</td>
|
1304
1278
|
</tr>
|
1305
1279
|
</tbody>
|
1306
1280
|
</table></div>
|
1307
1281
|
</div>
|
1308
1282
|
<hr>
|
1309
|
-
<div class="refsect2"
|
1310
|
-
<a name="gtk-icon-source-set-filename"></a><h3>gtk_icon_source_set_filename
|
1311
|
-
<pre class="programlisting"
|
1312
|
-
|
1283
|
+
<div class="refsect2">
|
1284
|
+
<a name="gtk-icon-source-set-filename"></a><h3>gtk_icon_source_set_filename</h3>
|
1285
|
+
<pre class="programlisting">#define gtk_icon_source_set_filename gtk_icon_source_set_filename_utf8
|
1286
|
+
</pre>
|
1313
1287
|
<p>
|
1314
1288
|
Sets the name of an image file to use as a base image when creating
|
1315
|
-
icon variants for <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1289
|
+
icon variants for <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>. The filename must be absolute.
|
1316
1290
|
</p>
|
1317
1291
|
<div class="variablelist"><table border="0">
|
1318
1292
|
<col align="left" valign="top">
|
@@ -1324,20 +1298,19 @@ icon variants for <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconS
|
|
1324
1298
|
</tr>
|
1325
1299
|
<tr>
|
1326
1300
|
<td><p><span class="term"><em class="parameter"><code>filename</code></em> :</span></p></td>
|
1327
|
-
<td>image file to use
|
1328
|
-
</td>
|
1301
|
+
<td>image file to use</td>
|
1329
1302
|
</tr>
|
1330
1303
|
</tbody>
|
1331
1304
|
</table></div>
|
1332
1305
|
</div>
|
1333
1306
|
<hr>
|
1334
|
-
<div class="refsect2"
|
1307
|
+
<div class="refsect2">
|
1335
1308
|
<a name="gtk-icon-source-set-pixbuf"></a><h3>gtk_icon_source_set_pixbuf ()</h3>
|
1336
1309
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_source_set_pixbuf (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
1337
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1310
|
+
<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>
|
1338
1311
|
<p>
|
1339
1312
|
Sets a pixbuf to use as a base image when creating icon variants
|
1340
|
-
for <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1313
|
+
for <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>.
|
1341
1314
|
</p>
|
1342
1315
|
<div class="variablelist"><table border="0">
|
1343
1316
|
<col align="left" valign="top">
|
@@ -1349,20 +1322,19 @@ for <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" title="Gtk
|
|
1349
1322
|
</tr>
|
1350
1323
|
<tr>
|
1351
1324
|
<td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
|
1352
|
-
<td>pixbuf to use as a source
|
1353
|
-
</td>
|
1325
|
+
<td>pixbuf to use as a source</td>
|
1354
1326
|
</tr>
|
1355
1327
|
</tbody>
|
1356
1328
|
</table></div>
|
1357
1329
|
</div>
|
1358
1330
|
<hr>
|
1359
|
-
<div class="refsect2"
|
1331
|
+
<div class="refsect2">
|
1360
1332
|
<a name="gtk-icon-source-set-icon-name"></a><h3>gtk_icon_source_set_icon_name ()</h3>
|
1361
1333
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_source_set_icon_name (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
1362
1334
|
<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>);</pre>
|
1363
1335
|
<p>
|
1364
1336
|
Sets the name of an icon to look up in the current icon theme
|
1365
|
-
to use as a base image when creating icon variants for <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1337
|
+
to use as a base image when creating icon variants for <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a>.
|
1366
1338
|
</p>
|
1367
1339
|
<div class="variablelist"><table border="0">
|
1368
1340
|
<col align="left" valign="top">
|
@@ -1374,14 +1346,14 @@ to use as a base image when creating icon variants for <a class="link" href="gtk
|
|
1374
1346
|
</tr>
|
1375
1347
|
<tr>
|
1376
1348
|
<td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
|
1377
|
-
<td>
|
1349
|
+
<td>name of icon to use. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1378
1350
|
</td>
|
1379
1351
|
</tr>
|
1380
1352
|
</tbody>
|
1381
1353
|
</table></div>
|
1382
1354
|
</div>
|
1383
1355
|
<hr>
|
1384
|
-
<div class="refsect2"
|
1356
|
+
<div class="refsect2">
|
1385
1357
|
<a name="gtk-icon-source-set-size"></a><h3>gtk_icon_source_set_size ()</h3>
|
1386
1358
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_source_set_size (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
1387
1359
|
<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>
|
@@ -1405,14 +1377,14 @@ in addition to calling this function.
|
|
1405
1377
|
</tr>
|
1406
1378
|
<tr>
|
1407
1379
|
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
1408
|
-
<td>
|
1380
|
+
<td>icon size this source applies to. <span class="annotation">[<acronym title="Override the parsed C type with given type"><span class="acronym">type</span></acronym> int]</span>
|
1409
1381
|
</td>
|
1410
1382
|
</tr>
|
1411
1383
|
</tbody>
|
1412
1384
|
</table></div>
|
1413
1385
|
</div>
|
1414
1386
|
<hr>
|
1415
|
-
<div class="refsect2"
|
1387
|
+
<div class="refsect2">
|
1416
1388
|
<a name="gtk-icon-source-set-size-wildcarded"></a><h3>gtk_icon_source_set_size_wildcarded ()</h3>
|
1417
1389
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_source_set_size_wildcarded (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
1418
1390
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
|
@@ -1424,11 +1396,11 @@ the size the source applies to should be set with
|
|
1424
1396
|
with that specific size.
|
1425
1397
|
</p>
|
1426
1398
|
<p>
|
1427
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1399
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> prefers non-wildcarded sources (exact matches) over
|
1428
1400
|
wildcarded sources, and will use an exact match when possible.
|
1429
1401
|
</p>
|
1430
1402
|
<p>
|
1431
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1403
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> will normally scale wildcarded source images to produce
|
1432
1404
|
an appropriate icon at a given size, but will not change the size
|
1433
1405
|
of source images that match exactly.
|
1434
1406
|
</p>
|
@@ -1443,14 +1415,13 @@ of source images that match exactly.
|
|
1443
1415
|
<tr>
|
1444
1416
|
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
1445
1417
|
<td>
|
1446
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to wildcard the widget state
|
1447
|
-
</td>
|
1418
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to wildcard the widget state</td>
|
1448
1419
|
</tr>
|
1449
1420
|
</tbody>
|
1450
1421
|
</table></div>
|
1451
1422
|
</div>
|
1452
1423
|
<hr>
|
1453
|
-
<div class="refsect2"
|
1424
|
+
<div class="refsect2">
|
1454
1425
|
<a name="gtk-icon-source-set-state"></a><h3>gtk_icon_source_set_state ()</h3>
|
1455
1426
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_source_set_state (<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
1456
1427
|
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkStateType" title="enum GtkStateType"><span class="type">GtkStateType</span></a> state</code></em>);</pre>
|
@@ -1474,14 +1445,13 @@ in addition to calling this function.
|
|
1474
1445
|
</tr>
|
1475
1446
|
<tr>
|
1476
1447
|
<td><p><span class="term"><em class="parameter"><code>state</code></em> :</span></p></td>
|
1477
|
-
<td>widget state this source applies to
|
1478
|
-
</td>
|
1448
|
+
<td>widget state this source applies to</td>
|
1479
1449
|
</tr>
|
1480
1450
|
</tbody>
|
1481
1451
|
</table></div>
|
1482
1452
|
</div>
|
1483
1453
|
<hr>
|
1484
|
-
<div class="refsect2"
|
1454
|
+
<div class="refsect2">
|
1485
1455
|
<a name="gtk-icon-source-set-state-wildcarded"></a><h3>gtk_icon_source_set_state_wildcarded ()</h3>
|
1486
1456
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_source_set_state_wildcarded
|
1487
1457
|
(<em class="parameter"><code><a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSource" title="GtkIconSource"><span class="type">GtkIconSource</span></a> *source</code></em>,
|
@@ -1494,11 +1464,11 @@ set with <a class="link" href="gtk-Themeable-Stock-Images.html#gtk-icon-source-s
|
|
1494
1464
|
only be used with that specific state.
|
1495
1465
|
</p>
|
1496
1466
|
<p>
|
1497
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1467
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> prefers non-wildcarded sources (exact matches) over
|
1498
1468
|
wildcarded sources, and will use an exact match when possible.
|
1499
1469
|
</p>
|
1500
1470
|
<p>
|
1501
|
-
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"
|
1471
|
+
<a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> will normally transform wildcarded source images to
|
1502
1472
|
produce an appropriate icon for a given state, for example
|
1503
1473
|
lightening an image on prelight, but will not modify source images
|
1504
1474
|
that match exactly.
|
@@ -1514,8 +1484,7 @@ that match exactly.
|
|
1514
1484
|
<tr>
|
1515
1485
|
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
1516
1486
|
<td>
|
1517
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to wildcard the widget state
|
1518
|
-
</td>
|
1487
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to wildcard the widget state</td>
|
1519
1488
|
</tr>
|
1520
1489
|
</tbody>
|
1521
1490
|
</table></div>
|
@@ -1524,6 +1493,6 @@ that match exactly.
|
|
1524
1493
|
</div>
|
1525
1494
|
<div class="footer">
|
1526
1495
|
<hr>
|
1527
|
-
Generated by GTK-Doc V1.
|
1496
|
+
Generated by GTK-Doc V1.17</div>
|
1528
1497
|
</body>
|
1529
1498
|
</html>
|