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>GtkIMContextSimple</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="MiscObjects.html" title="Miscellaneous">
|
9
9
|
<link rel="prev" href="GtkHandleBox.html" title="GtkHandleBox">
|
10
10
|
<link rel="next" href="GtkIMMulticontext.html" title="GtkIMMulticontext">
|
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="GtkHandleBox.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="MiscObjects.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="GtkIMMulticontext.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts">
|
@@ -28,7 +28,7 @@
|
|
28
28
|
<a href="#GtkIMContextSimple.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
29
|
</td></tr>
|
30
30
|
</table>
|
31
|
-
<div class="refentry"
|
31
|
+
<div class="refentry">
|
32
32
|
<a name="GtkIMContextSimple"></a><div class="titlepage"></div>
|
33
33
|
<div class="refnamediv"><table width="100%"><tr>
|
34
34
|
<td valign="top">
|
@@ -37,12 +37,12 @@
|
|
37
37
|
</td>
|
38
38
|
<td valign="top" align="right"></td>
|
39
39
|
</tr></table></div>
|
40
|
-
<div class="refsynopsisdiv"
|
40
|
+
<div class="refsynopsisdiv">
|
41
41
|
<a name="GtkIMContextSimple.synopsis"></a><h2>Synopsis</h2>
|
42
42
|
<pre class="synopsis">
|
43
43
|
#include <gtk/gtk.h>
|
44
44
|
|
45
|
-
|
45
|
+
struct <a class="link" href="GtkIMContextSimple.html#GtkIMContextSimple-struct" title="struct GtkIMContextSimple">GtkIMContextSimple</a>;
|
46
46
|
<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> * <a class="link" href="GtkIMContextSimple.html#gtk-im-context-simple-new" title="gtk_im_context_simple_new ()">gtk_im_context_simple_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
47
47
|
<span class="returnvalue">void</span> <a class="link" href="GtkIMContextSimple.html#gtk-im-context-simple-add-table" title="gtk_im_context_simple_add_table ()">gtk_im_context_simple_add_table</a> (<em class="parameter"><code><a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a> *context_simple</code></em>,
|
48
48
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> *data</code></em>,
|
@@ -51,7 +51,7 @@
|
|
51
51
|
#define <a class="link" href="GtkIMContextSimple.html#GTK-MAX-COMPOSE-LEN:CAPS" title="GTK_MAX_COMPOSE_LEN">GTK_MAX_COMPOSE_LEN</a>
|
52
52
|
</pre>
|
53
53
|
</div>
|
54
|
-
<div class="refsect1"
|
54
|
+
<div class="refsect1">
|
55
55
|
<a name="GtkIMContextSimple.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
56
56
|
<pre class="synopsis">
|
57
57
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
@@ -59,21 +59,21 @@
|
|
59
59
|
+----GtkIMContextSimple
|
60
60
|
</pre>
|
61
61
|
</div>
|
62
|
-
<div class="refsect1"
|
62
|
+
<div class="refsect1">
|
63
63
|
<a name="GtkIMContextSimple.description"></a><h2>Description</h2>
|
64
64
|
<p>
|
65
65
|
</p>
|
66
66
|
</div>
|
67
|
-
<div class="refsect1"
|
67
|
+
<div class="refsect1">
|
68
68
|
<a name="GtkIMContextSimple.details"></a><h2>Details</h2>
|
69
|
-
<div class="refsect2"
|
70
|
-
<a name="GtkIMContextSimple-struct"></a><h3>GtkIMContextSimple</h3>
|
71
|
-
<pre class="programlisting">
|
69
|
+
<div class="refsect2">
|
70
|
+
<a name="GtkIMContextSimple-struct"></a><h3>struct GtkIMContextSimple</h3>
|
71
|
+
<pre class="programlisting">struct GtkIMContextSimple;</pre>
|
72
72
|
<p>
|
73
73
|
</p>
|
74
74
|
</div>
|
75
75
|
<hr>
|
76
|
-
<div class="refsect2"
|
76
|
+
<div class="refsect2">
|
77
77
|
<a name="gtk-im-context-simple-new"></a><h3>gtk_im_context_simple_new ()</h3>
|
78
78
|
<pre class="programlisting"><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> * gtk_im_context_simple_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
79
79
|
<p>
|
@@ -83,13 +83,12 @@ Creates a new <a class="link" href="GtkIMContextSimple.html" title="GtkIMContext
|
|
83
83
|
<col align="left" valign="top">
|
84
84
|
<tbody><tr>
|
85
85
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
86
|
-
<td>
|
87
|
-
</td>
|
86
|
+
<td>a new <a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a>.</td>
|
88
87
|
</tr></tbody>
|
89
88
|
</table></div>
|
90
89
|
</div>
|
91
90
|
<hr>
|
92
|
-
<div class="refsect2"
|
91
|
+
<div class="refsect2">
|
93
92
|
<a name="gtk-im-context-simple-add-table"></a><h3>gtk_im_context_simple_add_table ()</h3>
|
94
93
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_context_simple_add_table (<em class="parameter"><code><a class="link" href="GtkIMContextSimple.html" title="GtkIMContextSimple"><span class="type">GtkIMContextSimple</span></a> *context_simple</code></em>,
|
95
94
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint16"><span class="type">guint16</span></a> *data</code></em>,
|
@@ -117,25 +116,22 @@ the length of the sequence should be zero.)
|
|
117
116
|
</tr>
|
118
117
|
<tr>
|
119
118
|
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
120
|
-
<td>the table
|
121
|
-
</td>
|
119
|
+
<td>the table</td>
|
122
120
|
</tr>
|
123
121
|
<tr>
|
124
122
|
<td><p><span class="term"><em class="parameter"><code>max_seq_len</code></em> :</span></p></td>
|
125
123
|
<td>Maximum length of a sequence in the table
|
126
|
-
|
127
|
-
</td>
|
124
|
+
(cannot be greater than <a class="link" href="GtkIMContextSimple.html#GTK-MAX-COMPOSE-LEN:CAPS" title="GTK_MAX_COMPOSE_LEN"><span class="type">GTK_MAX_COMPOSE_LEN</span></a>)</td>
|
128
125
|
</tr>
|
129
126
|
<tr>
|
130
127
|
<td><p><span class="term"><em class="parameter"><code>n_seqs</code></em> :</span></p></td>
|
131
|
-
<td>number of sequences in the table
|
132
|
-
</td>
|
128
|
+
<td>number of sequences in the table</td>
|
133
129
|
</tr>
|
134
130
|
</tbody>
|
135
131
|
</table></div>
|
136
132
|
</div>
|
137
133
|
<hr>
|
138
|
-
<div class="refsect2"
|
134
|
+
<div class="refsect2">
|
139
135
|
<a name="GTK-MAX-COMPOSE-LEN:CAPS"></a><h3>GTK_MAX_COMPOSE_LEN</h3>
|
140
136
|
<pre class="programlisting">#define GTK_MAX_COMPOSE_LEN 7
|
141
137
|
</pre>
|
@@ -147,6 +143,6 @@ The maximum length of sequences in compose tables.
|
|
147
143
|
</div>
|
148
144
|
<div class="footer">
|
149
145
|
<hr>
|
150
|
-
Generated by GTK-Doc V1.
|
146
|
+
Generated by GTK-Doc V1.17</div>
|
151
147
|
</body>
|
152
148
|
</html>
|
@@ -4,11 +4,11 @@
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>GtkIMMulticontext</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="MiscObjects.html" title="Miscellaneous">
|
9
9
|
<link rel="prev" href="GtkIMContextSimple.html" title="GtkIMContextSimple">
|
10
10
|
<link rel="next" href="GtkSizeGroup.html" title="GtkSizeGroup">
|
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="GtkIMContextSimple.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="MiscObjects.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="GtkSizeGroup.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts">
|
@@ -28,7 +28,7 @@
|
|
28
28
|
<a href="#GtkIMMulticontext.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
29
|
</td></tr>
|
30
30
|
</table>
|
31
|
-
<div class="refentry"
|
31
|
+
<div class="refentry">
|
32
32
|
<a name="GtkIMMulticontext"></a><div class="titlepage"></div>
|
33
33
|
<div class="refnamediv"><table width="100%"><tr>
|
34
34
|
<td valign="top">
|
@@ -37,12 +37,12 @@
|
|
37
37
|
</td>
|
38
38
|
<td valign="top" align="right"></td>
|
39
39
|
</tr></table></div>
|
40
|
-
<div class="refsynopsisdiv"
|
40
|
+
<div class="refsynopsisdiv">
|
41
41
|
<a name="GtkIMMulticontext.synopsis"></a><h2>Synopsis</h2>
|
42
42
|
<pre class="synopsis">
|
43
43
|
#include <gtk/gtk.h>
|
44
44
|
|
45
|
-
|
45
|
+
struct <a class="link" href="GtkIMMulticontext.html#GtkIMMulticontext-struct" title="struct GtkIMMulticontext">GtkIMMulticontext</a>;
|
46
46
|
<a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> * <a class="link" href="GtkIMMulticontext.html#gtk-im-multicontext-new" title="gtk_im_multicontext_new ()">gtk_im_multicontext_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
47
47
|
<span class="returnvalue">void</span> <a class="link" href="GtkIMMulticontext.html#gtk-im-multicontext-append-menuitems" title="gtk_im_multicontext_append_menuitems ()">gtk_im_multicontext_append_menuitems</a>
|
48
48
|
(<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>,
|
@@ -52,7 +52,7 @@ const <span class="returnvalue">char</span> * <a class="link" href="GtkIM
|
|
52
52
|
<em class="parameter"><code>const <span class="type">char</span> *context_id</code></em>);
|
53
53
|
</pre>
|
54
54
|
</div>
|
55
|
-
<div class="refsect1"
|
55
|
+
<div class="refsect1">
|
56
56
|
<a name="GtkIMMulticontext.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
57
57
|
<pre class="synopsis">
|
58
58
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
@@ -60,21 +60,21 @@ const <span class="returnvalue">char</span> * <a class="link" href="GtkIM
|
|
60
60
|
+----GtkIMMulticontext
|
61
61
|
</pre>
|
62
62
|
</div>
|
63
|
-
<div class="refsect1"
|
63
|
+
<div class="refsect1">
|
64
64
|
<a name="GtkIMMulticontext.description"></a><h2>Description</h2>
|
65
65
|
<p>
|
66
66
|
</p>
|
67
67
|
</div>
|
68
|
-
<div class="refsect1"
|
68
|
+
<div class="refsect1">
|
69
69
|
<a name="GtkIMMulticontext.details"></a><h2>Details</h2>
|
70
|
-
<div class="refsect2"
|
71
|
-
<a name="GtkIMMulticontext-struct"></a><h3>GtkIMMulticontext</h3>
|
72
|
-
<pre class="programlisting">
|
70
|
+
<div class="refsect2">
|
71
|
+
<a name="GtkIMMulticontext-struct"></a><h3>struct GtkIMMulticontext</h3>
|
72
|
+
<pre class="programlisting">struct GtkIMMulticontext;</pre>
|
73
73
|
<p>
|
74
74
|
</p>
|
75
75
|
</div>
|
76
76
|
<hr>
|
77
|
-
<div class="refsect2"
|
77
|
+
<div class="refsect2">
|
78
78
|
<a name="gtk-im-multicontext-new"></a><h3>gtk_im_multicontext_new ()</h3>
|
79
79
|
<pre class="programlisting"><a class="link" href="GtkIMContext.html" title="GtkIMContext"><span class="returnvalue">GtkIMContext</span></a> * gtk_im_multicontext_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
80
80
|
<p>
|
@@ -84,13 +84,12 @@ Creates a new <a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticon
|
|
84
84
|
<col align="left" valign="top">
|
85
85
|
<tbody><tr>
|
86
86
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
87
|
-
<td>
|
88
|
-
</td>
|
87
|
+
<td>a new <a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a>.</td>
|
89
88
|
</tr></tbody>
|
90
89
|
</table></div>
|
91
90
|
</div>
|
92
91
|
<hr>
|
93
|
-
<div class="refsect2"
|
92
|
+
<div class="refsect2">
|
94
93
|
<a name="gtk-im-multicontext-append-menuitems"></a><h3>gtk_im_multicontext_append_menuitems ()</h3>
|
95
94
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_multicontext_append_menuitems
|
96
95
|
(<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>,
|
@@ -117,7 +116,7 @@ for the context and the global default input method.
|
|
117
116
|
</table></div>
|
118
117
|
</div>
|
119
118
|
<hr>
|
120
|
-
<div class="refsect2"
|
119
|
+
<div class="refsect2">
|
121
120
|
<a name="gtk-im-multicontext-get-context-id"></a><h3>gtk_im_multicontext_get_context_id ()</h3>
|
122
121
|
<pre class="programlisting">const <span class="returnvalue">char</span> * gtk_im_multicontext_get_context_id (<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>);</pre>
|
123
122
|
<p>
|
@@ -133,16 +132,14 @@ Gets the id of the currently active slave of the <em class="parameter"><code>con
|
|
133
132
|
</tr>
|
134
133
|
<tr>
|
135
134
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
136
|
-
<td>
|
137
|
-
|
138
|
-
</td>
|
135
|
+
<td>the id of the currently active slave</td>
|
139
136
|
</tr>
|
140
137
|
</tbody>
|
141
138
|
</table></div>
|
142
139
|
<p class="since">Since 2.16</p>
|
143
140
|
</div>
|
144
141
|
<hr>
|
145
|
-
<div class="refsect2"
|
142
|
+
<div class="refsect2">
|
146
143
|
<a name="gtk-im-multicontext-set-context-id"></a><h3>gtk_im_multicontext_set_context_id ()</h3>
|
147
144
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_im_multicontext_set_context_id (<em class="parameter"><code><a class="link" href="GtkIMMulticontext.html" title="GtkIMMulticontext"><span class="type">GtkIMMulticontext</span></a> *context</code></em>,
|
148
145
|
<em class="parameter"><code>const <span class="type">char</span> *context_id</code></em>);</pre>
|
@@ -163,8 +160,7 @@ replaced by the slave corresponding to the new context id.
|
|
163
160
|
</tr>
|
164
161
|
<tr>
|
165
162
|
<td><p><span class="term"><em class="parameter"><code>context_id</code></em> :</span></p></td>
|
166
|
-
<td>the id to use
|
167
|
-
</td>
|
163
|
+
<td>the id to use</td>
|
168
164
|
</tr>
|
169
165
|
</tbody>
|
170
166
|
</table></div>
|
@@ -174,6 +170,6 @@ replaced by the slave corresponding to the new context id.
|
|
174
170
|
</div>
|
175
171
|
<div class="footer">
|
176
172
|
<hr>
|
177
|
-
Generated by GTK-Doc V1.
|
173
|
+
Generated by GTK-Doc V1.17</div>
|
178
174
|
</body>
|
179
175
|
</html>
|
@@ -4,11 +4,11 @@
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>GtkIconTheme</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-Drag-and-Drop.html" title="Drag and Drop">
|
10
10
|
<link rel="next" href="gtk-Stock-Items.html" title="Stock Items">
|
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-Drag-and-Drop.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-Stock-Items.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="#GtkIconTheme.signals" class="shortcut">Signals</a>
|
31
31
|
</td></tr>
|
32
32
|
</table>
|
33
|
-
<div class="refentry"
|
33
|
+
<div class="refentry">
|
34
34
|
<a name="GtkIconTheme"></a><div class="titlepage"></div>
|
35
35
|
<div class="refnamediv"><table width="100%"><tr>
|
36
36
|
<td valign="top">
|
@@ -39,31 +39,25 @@
|
|
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="GtkIconTheme.synopsis"></a><h2>Synopsis</h2>
|
44
44
|
<pre class="synopsis">
|
45
45
|
#include <gtk/gtk.h>
|
46
46
|
|
47
47
|
<a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo">GtkIconInfo</a>;
|
48
|
-
|
48
|
+
struct <a class="link" href="GtkIconTheme.html#GtkIconTheme-struct" title="struct GtkIconTheme">GtkIconTheme</a>;
|
49
49
|
enum <a class="link" href="GtkIconTheme.html#GtkIconLookupFlags" title="enum GtkIconLookupFlags">GtkIconLookupFlags</a>;
|
50
50
|
#define <a class="link" href="GtkIconTheme.html#GTK-ICON-THEME-ERROR:CAPS" title="GTK_ICON_THEME_ERROR">GTK_ICON_THEME_ERROR</a>
|
51
51
|
enum <a class="link" href="GtkIconTheme.html#GtkIconThemeError" title="enum GtkIconThemeError">GtkIconThemeError</a>;
|
52
52
|
<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-theme-new" title="gtk_icon_theme_new ()">gtk_icon_theme_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
53
53
|
<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-default" title="gtk_icon_theme_get_default ()">gtk_icon_theme_get_default</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
54
|
-
<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-for-screen" title="gtk_icon_theme_get_for_screen ()">gtk_icon_theme_get_for_screen</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
54
|
+
<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-for-screen" title="gtk_icon_theme_get_for_screen ()">gtk_icon_theme_get_for_screen</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
|
55
55
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-screen" title="gtk_icon_theme_set_screen ()">gtk_icon_theme_set_screen</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
56
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
57
|
-
<
|
58
|
-
|
59
|
-
|
60
|
-
<
|
61
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **path[]</code></em>,
|
62
|
-
<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_elements</code></em>);
|
63
|
-
<span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-append-search-path" title="gtk_icon_theme_append_search_path ()">gtk_icon_theme_append_search_path</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
64
|
-
<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> *path</code></em>);
|
65
|
-
<span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-prepend-search-path" title="gtk_icon_theme_prepend_search_path ()">gtk_icon_theme_prepend_search_path</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
66
|
-
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *path</code></em>);
|
56
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);
|
57
|
+
#define <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path">gtk_icon_theme_set_search_path</a>
|
58
|
+
#define <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-search-path" title="gtk_icon_theme_get_search_path">gtk_icon_theme_get_search_path</a>
|
59
|
+
#define <a class="link" href="GtkIconTheme.html#gtk-icon-theme-append-search-path" title="gtk_icon_theme_append_search_path">gtk_icon_theme_append_search_path</a>
|
60
|
+
#define <a class="link" href="GtkIconTheme.html#gtk-icon-theme-prepend-search-path" title="gtk_icon_theme_prepend_search_path">gtk_icon_theme_prepend_search_path</a>
|
67
61
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-custom-theme" title="gtk_icon_theme_set_custom_theme ()">gtk_icon_theme_set_custom_theme</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
68
62
|
<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> *theme_name</code></em>);
|
69
63
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-has-icon" title="gtk_icon_theme_has_icon ()">gtk_icon_theme_has_icon</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
@@ -80,7 +74,7 @@ enum <a class="link" href="GtkIconTheme.html#GtkIconThemeError" t
|
|
80
74
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>,
|
81
75
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>,
|
82
76
|
<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconLookupFlags" title="enum GtkIconLookupFlags"><span class="type">GtkIconLookupFlags</span></a> flags</code></em>);
|
83
|
-
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
77
|
+
<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="GtkIconTheme.html#gtk-icon-theme-load-icon" title="gtk_icon_theme_load_icon ()">gtk_icon_theme_load_icon</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
84
78
|
<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>,
|
85
79
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>,
|
86
80
|
<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconLookupFlags" title="enum GtkIconLookupFlags"><span class="type">GtkIconLookupFlags</span></a> flags</code></em>,
|
@@ -95,40 +89,40 @@ enum <a class="link" href="GtkIconTheme.html#GtkIconThemeError" t
|
|
95
89
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-rescan-if-needed" title="gtk_icon_theme_rescan_if_needed ()">gtk_icon_theme_rescan_if_needed</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>);
|
96
90
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-theme-add-builtin-icon" title="gtk_icon_theme_add_builtin_icon ()">gtk_icon_theme_add_builtin_icon</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *icon_name</code></em>,
|
97
91
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>,
|
98
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
99
|
-
<a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
92
|
+
<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>);
|
93
|
+
<a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-copy" title="gtk_icon_info_copy ()">gtk_icon_info_copy</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
|
100
94
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()">gtk_icon_info_free</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
|
101
|
-
<a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
102
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
95
|
+
<a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * <a class="link" href="GtkIconTheme.html#gtk-icon-info-new-for-pixbuf" title="gtk_icon_info_new_for_pixbuf ()">gtk_icon_info_new_for_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
96
|
+
<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>);
|
103
97
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-base-size" title="gtk_icon_info_get_base_size ()">gtk_icon_info_get_base_size</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
|
104
|
-
|
105
|
-
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
106
|
-
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
98
|
+
#define <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename">gtk_icon_info_get_filename</a>
|
99
|
+
<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="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()">gtk_icon_info_get_builtin_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
|
100
|
+
<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="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()">gtk_icon_info_load_icon</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
107
101
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);
|
108
102
|
<span class="returnvalue">void</span> <a class="link" href="GtkIconTheme.html#gtk-icon-info-set-raw-coordinates" title="gtk_icon_info_set_raw_coordinates ()">gtk_icon_info_set_raw_coordinates</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
109
103
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> raw_coordinates</code></em>);
|
110
104
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-embedded-rect" title="gtk_icon_info_get_embedded_rect ()">gtk_icon_info_get_embedded_rect</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
111
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
105
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);
|
112
106
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-attach-points" title="gtk_icon_info_get_attach_points ()">gtk_icon_info_get_attach_points</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
113
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
107
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Points-Rectangles-and-Regions.html#GdkPoint"><span class="type">GdkPoint</span></a> **points</code></em>,
|
114
108
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_points</code></em>);
|
115
|
-
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
109
|
+
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="GtkIconTheme.html#gtk-icon-info-get-display-name" title="gtk_icon_info_get_display_name ()">gtk_icon_info_get_display_name</a> (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);
|
116
110
|
</pre>
|
117
111
|
</div>
|
118
|
-
<div class="refsect1"
|
112
|
+
<div class="refsect1">
|
119
113
|
<a name="GtkIconTheme.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
120
114
|
<pre class="synopsis">
|
121
115
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
122
116
|
+----GtkIconTheme
|
123
117
|
</pre>
|
124
118
|
</div>
|
125
|
-
<div class="refsect1"
|
119
|
+
<div class="refsect1">
|
126
120
|
<a name="GtkIconTheme.signals"></a><h2>Signals</h2>
|
127
121
|
<pre class="synopsis">
|
128
|
-
"<a class="link" href="GtkIconTheme.html#GtkIconTheme-changed" title='The "changed" signal'>changed</a>" : Run Last
|
122
|
+
"<a class="link" href="GtkIconTheme.html#GtkIconTheme-changed" title='The "changed" signal'>changed</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
129
123
|
</pre>
|
130
124
|
</div>
|
131
|
-
<div class="refsect1"
|
125
|
+
<div class="refsect1">
|
132
126
|
<a name="GtkIconTheme.description"></a><h2>Description</h2>
|
133
127
|
<p>
|
134
128
|
<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> provides a facility for looking up icons by name
|
@@ -183,7 +177,7 @@ or stock items, rather than directly, but looking up icons
|
|
183
177
|
directly is also simple. The <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> object acts
|
184
178
|
as a database of all the icons in the current theme. You
|
185
179
|
can create new <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> objects, but its much more
|
186
|
-
efficient to use the standard icon theme for the <a href="http://library.gnome.org/devel/
|
180
|
+
efficient to use the standard icon theme for the <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>
|
187
181
|
so that the icon information is shared with other people
|
188
182
|
looking up icons. In the case where the default screen is
|
189
183
|
being used, looking up an icon can be as simple as:
|
@@ -236,9 +230,9 @@ being used, looking up an icon can be as simple as:
|
|
236
230
|
</div>
|
237
231
|
|
238
232
|
</div>
|
239
|
-
<div class="refsect1"
|
233
|
+
<div class="refsect1">
|
240
234
|
<a name="GtkIconTheme.details"></a><h2>Details</h2>
|
241
|
-
<div class="refsect2"
|
235
|
+
<div class="refsect2">
|
242
236
|
<a name="GtkIconInfo"></a><h3>GtkIconInfo</h3>
|
243
237
|
<pre class="programlisting">typedef struct _GtkIconInfo GtkIconInfo;</pre>
|
244
238
|
<p>
|
@@ -247,9 +241,9 @@ an icon theme.
|
|
247
241
|
</p>
|
248
242
|
</div>
|
249
243
|
<hr>
|
250
|
-
<div class="refsect2"
|
251
|
-
<a name="GtkIconTheme-struct"></a><h3>GtkIconTheme</h3>
|
252
|
-
<pre class="programlisting">
|
244
|
+
<div class="refsect2">
|
245
|
+
<a name="GtkIconTheme-struct"></a><h3>struct GtkIconTheme</h3>
|
246
|
+
<pre class="programlisting">struct GtkIconTheme;</pre>
|
253
247
|
<p>
|
254
248
|
Acts as a database of information about an icon theme.
|
255
249
|
Normally, you retrieve the icon theme for a particular
|
@@ -261,7 +255,7 @@ object and set the icon theme name explicitely using
|
|
261
255
|
</p>
|
262
256
|
</div>
|
263
257
|
<hr>
|
264
|
-
<div class="refsect2"
|
258
|
+
<div class="refsect2">
|
265
259
|
<a name="GtkIconLookupFlags"></a><h3>enum GtkIconLookupFlags</h3>
|
266
260
|
<pre class="programlisting">typedef enum
|
267
261
|
{
|
@@ -295,7 +289,7 @@ Used to specify options for <a class="link" href="GtkIconTheme.html#gtk-icon-the
|
|
295
289
|
<td><p><a name="GTK-ICON-LOOKUP-USE-BUILTIN:CAPS"></a><span class="term"><code class="literal">GTK_ICON_LOOKUP_USE_BUILTIN</code></span></p></td>
|
296
290
|
<td>When passed to
|
297
291
|
<a class="link" href="GtkIconTheme.html#gtk-icon-theme-lookup-icon" title="gtk_icon_theme_lookup_icon ()"><code class="function">gtk_icon_theme_lookup_icon()</code></a> includes builtin icons
|
298
|
-
as well as files. For a builtin icon, <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename
|
292
|
+
as well as files. For a builtin icon, <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename"><code class="function">gtk_icon_info_get_filename()</code></a>
|
299
293
|
returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> and you need to call <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()"><code class="function">gtk_icon_info_get_builtin_pixbuf()</code></a>.
|
300
294
|
</td>
|
301
295
|
</tr>
|
@@ -316,7 +310,7 @@ Used to specify options for <a class="link" href="GtkIconTheme.html#gtk-icon-the
|
|
316
310
|
</table></div>
|
317
311
|
</div>
|
318
312
|
<hr>
|
319
|
-
<div class="refsect2"
|
313
|
+
<div class="refsect2">
|
320
314
|
<a name="GTK-ICON-THEME-ERROR:CAPS"></a><h3>GTK_ICON_THEME_ERROR</h3>
|
321
315
|
<pre class="programlisting">#define GTK_ICON_THEME_ERROR gtk_icon_theme_error_quark ()
|
322
316
|
</pre>
|
@@ -325,7 +319,7 @@ The <a href="http://library.gnome.org/devel/glib/unstable/glib-Quarks.html#GQuar
|
|
325
319
|
</p>
|
326
320
|
</div>
|
327
321
|
<hr>
|
328
|
-
<div class="refsect2"
|
322
|
+
<div class="refsect2">
|
329
323
|
<a name="GtkIconThemeError"></a><h3>enum GtkIconThemeError</h3>
|
330
324
|
<pre class="programlisting">typedef enum {
|
331
325
|
GTK_ICON_THEME_NOT_FOUND,
|
@@ -352,7 +346,7 @@ Error codes for GtkIconTheme operations.
|
|
352
346
|
</table></div>
|
353
347
|
</div>
|
354
348
|
<hr>
|
355
|
-
<div class="refsect2"
|
349
|
+
<div class="refsect2">
|
356
350
|
<a name="gtk-icon-theme-new"></a><h3>gtk_icon_theme_new ()</h3>
|
357
351
|
<pre class="programlisting"><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * gtk_icon_theme_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
358
352
|
<p>
|
@@ -366,15 +360,13 @@ a new icon theme object for scratch.
|
|
366
360
|
<col align="left" valign="top">
|
367
361
|
<tbody><tr>
|
368
362
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
369
|
-
<td>
|
370
|
-
|
371
|
-
</td>
|
363
|
+
<td>the newly created <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> object.</td>
|
372
364
|
</tr></tbody>
|
373
365
|
</table></div>
|
374
366
|
<p class="since">Since 2.4</p>
|
375
367
|
</div>
|
376
368
|
<hr>
|
377
|
-
<div class="refsect2"
|
369
|
+
<div class="refsect2">
|
378
370
|
<a name="gtk-icon-theme-get-default"></a><h3>gtk_icon_theme_get_default ()</h3>
|
379
371
|
<pre class="programlisting"><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * gtk_icon_theme_get_default (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
380
372
|
<p>
|
@@ -385,19 +377,19 @@ Gets the icon theme for the default screen. See
|
|
385
377
|
<col align="left" valign="top">
|
386
378
|
<tbody><tr>
|
387
379
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
388
|
-
<td>
|
389
|
-
|
390
|
-
|
391
|
-
|
380
|
+
<td>A unique <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> associated with
|
381
|
+
the default screen. This icon theme is associated with
|
382
|
+
the screen and can be used as long as the screen
|
383
|
+
is open. Do not ref or unref it. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
392
384
|
</td>
|
393
385
|
</tr></tbody>
|
394
386
|
</table></div>
|
395
387
|
<p class="since">Since 2.4</p>
|
396
388
|
</div>
|
397
389
|
<hr>
|
398
|
-
<div class="refsect2"
|
390
|
+
<div class="refsect2">
|
399
391
|
<a name="gtk-icon-theme-get-for-screen"></a><h3>gtk_icon_theme_get_for_screen ()</h3>
|
400
|
-
<pre class="programlisting"><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * gtk_icon_theme_get_for_screen (<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
392
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="returnvalue">GtkIconTheme</span></a> * gtk_icon_theme_get_for_screen (<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
|
401
393
|
<p>
|
402
394
|
Gets the icon theme object associated with <em class="parameter"><code>screen</code></em>; if this
|
403
395
|
function has not previously been called for the given
|
@@ -413,15 +405,15 @@ a single icon theme object will be shared between users.
|
|
413
405
|
<tbody>
|
414
406
|
<tr>
|
415
407
|
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
416
|
-
<td>a <a href="http://library.gnome.org/devel/
|
408
|
+
<td>a <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>
|
417
409
|
</td>
|
418
410
|
</tr>
|
419
411
|
<tr>
|
420
412
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
421
|
-
<td>
|
422
|
-
|
423
|
-
|
424
|
-
|
413
|
+
<td>A unique <a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> associated with
|
414
|
+
the given screen. This icon theme is associated with
|
415
|
+
the screen and can be used as long as the screen
|
416
|
+
is open. Do not ref or unref it. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
425
417
|
</td>
|
426
418
|
</tr>
|
427
419
|
</tbody>
|
@@ -429,10 +421,10 @@ a single icon theme object will be shared between users.
|
|
429
421
|
<p class="since">Since 2.4</p>
|
430
422
|
</div>
|
431
423
|
<hr>
|
432
|
-
<div class="refsect2"
|
424
|
+
<div class="refsect2">
|
433
425
|
<a name="gtk-icon-theme-set-screen"></a><h3>gtk_icon_theme_set_screen ()</h3>
|
434
426
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_theme_set_screen (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
435
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
427
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a> *screen</code></em>);</pre>
|
436
428
|
<p>
|
437
429
|
Sets the screen for an icon theme; the screen is used
|
438
430
|
to track the user's currently configured icon theme,
|
@@ -448,7 +440,7 @@ which might be different for different screens.
|
|
448
440
|
</tr>
|
449
441
|
<tr>
|
450
442
|
<td><p><span class="term"><em class="parameter"><code>screen</code></em> :</span></p></td>
|
451
|
-
<td>a <a href="http://library.gnome.org/devel/
|
443
|
+
<td>a <a href="http://library.gnome.org/devel/gdk3/GdkScreen.html"><span class="type">GdkScreen</span></a>
|
452
444
|
</td>
|
453
445
|
</tr>
|
454
446
|
</tbody>
|
@@ -456,11 +448,10 @@ which might be different for different screens.
|
|
456
448
|
<p class="since">Since 2.4</p>
|
457
449
|
</div>
|
458
450
|
<hr>
|
459
|
-
<div class="refsect2"
|
460
|
-
<a name="gtk-icon-theme-set-search-path"></a><h3>gtk_icon_theme_set_search_path
|
461
|
-
<pre class="programlisting"
|
462
|
-
|
463
|
-
<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_elements</code></em>);</pre>
|
451
|
+
<div class="refsect2">
|
452
|
+
<a name="gtk-icon-theme-set-search-path"></a><h3>gtk_icon_theme_set_search_path</h3>
|
453
|
+
<pre class="programlisting">#define gtk_icon_theme_set_search_path gtk_icon_theme_set_search_path_utf8
|
454
|
+
</pre>
|
464
455
|
<p>
|
465
456
|
Sets the search path for the icon theme object. When looking
|
466
457
|
for an icon theme, GTK+ will search for a subdirectory of
|
@@ -488,26 +479,25 @@ rather than directly on the icon path.)
|
|
488
479
|
</tr>
|
489
480
|
<tr>
|
490
481
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
491
|
-
<td>array of
|
482
|
+
<td>array of
|
483
|
+
directories that are searched for icon themes. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_elements][<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> filename]</span>
|
492
484
|
</td>
|
493
485
|
</tr>
|
494
486
|
<tr>
|
495
487
|
<td><p><span class="term"><em class="parameter"><code>n_elements</code></em> :</span></p></td>
|
496
|
-
<td>number of elements in <em class="parameter"><code>path</code></em
|
497
|
-
</td>
|
488
|
+
<td>number of elements in <em class="parameter"><code>path</code></em>.</td>
|
498
489
|
</tr>
|
499
490
|
</tbody>
|
500
491
|
</table></div>
|
501
492
|
<p class="since">Since 2.4</p>
|
502
493
|
</div>
|
503
494
|
<hr>
|
504
|
-
<div class="refsect2"
|
505
|
-
<a name="gtk-icon-theme-get-search-path"></a><h3>gtk_icon_theme_get_search_path
|
506
|
-
<pre class="programlisting"
|
507
|
-
|
508
|
-
<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_elements</code></em>);</pre>
|
495
|
+
<div class="refsect2">
|
496
|
+
<a name="gtk-icon-theme-get-search-path"></a><h3>gtk_icon_theme_get_search_path</h3>
|
497
|
+
<pre class="programlisting">#define gtk_icon_theme_get_search_path gtk_icon_theme_get_search_path_utf8
|
498
|
+
</pre>
|
509
499
|
<p>
|
510
|
-
Gets the current search path. See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path
|
500
|
+
Gets the current search path. See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path"><code class="function">gtk_icon_theme_set_search_path()</code></a>.
|
511
501
|
</p>
|
512
502
|
<div class="variablelist"><table border="0">
|
513
503
|
<col align="left" valign="top">
|
@@ -519,14 +509,14 @@ Gets the current search path. See <a class="link" href="GtkIconTheme.html#gtk-ic
|
|
519
509
|
</tr>
|
520
510
|
<tr>
|
521
511
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
522
|
-
<td> location to store a list of icon theme path directories or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
523
|
-
|
512
|
+
<td>(array length=n_elements) (out): location to store a list of icon theme path directories or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
513
|
+
The stored value should be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-String-Utility-Functions.html#g-strfreev"><code class="function">g_strfreev()</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
524
514
|
</td>
|
525
515
|
</tr>
|
526
516
|
<tr>
|
527
517
|
<td><p><span class="term"><em class="parameter"><code>n_elements</code></em> :</span></p></td>
|
528
518
|
<td>location to store number of elements
|
529
|
-
|
519
|
+
in <em class="parameter"><code>path</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
530
520
|
</td>
|
531
521
|
</tr>
|
532
522
|
</tbody>
|
@@ -534,13 +524,13 @@ Gets the current search path. See <a class="link" href="GtkIconTheme.html#gtk-ic
|
|
534
524
|
<p class="since">Since 2.4</p>
|
535
525
|
</div>
|
536
526
|
<hr>
|
537
|
-
<div class="refsect2"
|
538
|
-
<a name="gtk-icon-theme-append-search-path"></a><h3>gtk_icon_theme_append_search_path
|
539
|
-
<pre class="programlisting"
|
540
|
-
|
527
|
+
<div class="refsect2">
|
528
|
+
<a name="gtk-icon-theme-append-search-path"></a><h3>gtk_icon_theme_append_search_path</h3>
|
529
|
+
<pre class="programlisting">#define gtk_icon_theme_append_search_path gtk_icon_theme_append_search_path_utf8
|
530
|
+
</pre>
|
541
531
|
<p>
|
542
532
|
Appends a directory to the search path.
|
543
|
-
See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path
|
533
|
+
See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path"><code class="function">gtk_icon_theme_set_search_path()</code></a>.
|
544
534
|
</p>
|
545
535
|
<div class="variablelist"><table border="0">
|
546
536
|
<col align="left" valign="top">
|
@@ -552,21 +542,20 @@ See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" titl
|
|
552
542
|
</tr>
|
553
543
|
<tr>
|
554
544
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
555
|
-
<td>directory name to append to the icon path
|
556
|
-
</td>
|
545
|
+
<td>directory name to append to the icon path</td>
|
557
546
|
</tr>
|
558
547
|
</tbody>
|
559
548
|
</table></div>
|
560
549
|
<p class="since">Since 2.4</p>
|
561
550
|
</div>
|
562
551
|
<hr>
|
563
|
-
<div class="refsect2"
|
564
|
-
<a name="gtk-icon-theme-prepend-search-path"></a><h3>gtk_icon_theme_prepend_search_path
|
565
|
-
<pre class="programlisting"
|
566
|
-
|
552
|
+
<div class="refsect2">
|
553
|
+
<a name="gtk-icon-theme-prepend-search-path"></a><h3>gtk_icon_theme_prepend_search_path</h3>
|
554
|
+
<pre class="programlisting">#define gtk_icon_theme_prepend_search_path gtk_icon_theme_prepend_search_path_utf8
|
555
|
+
</pre>
|
567
556
|
<p>
|
568
557
|
Prepends a directory to the search path.
|
569
|
-
See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path
|
558
|
+
See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" title="gtk_icon_theme_set_search_path"><code class="function">gtk_icon_theme_set_search_path()</code></a>.
|
570
559
|
</p>
|
571
560
|
<div class="variablelist"><table border="0">
|
572
561
|
<col align="left" valign="top">
|
@@ -578,15 +567,14 @@ See <a class="link" href="GtkIconTheme.html#gtk-icon-theme-set-search-path" titl
|
|
578
567
|
</tr>
|
579
568
|
<tr>
|
580
569
|
<td><p><span class="term"><em class="parameter"><code>path</code></em> :</span></p></td>
|
581
|
-
<td>directory name to prepend to the icon path
|
582
|
-
</td>
|
570
|
+
<td>directory name to prepend to the icon path</td>
|
583
571
|
</tr>
|
584
572
|
</tbody>
|
585
573
|
</table></div>
|
586
574
|
<p class="since">Since 2.4</p>
|
587
575
|
</div>
|
588
576
|
<hr>
|
589
|
-
<div class="refsect2"
|
577
|
+
<div class="refsect2">
|
590
578
|
<a name="gtk-icon-theme-set-custom-theme"></a><h3>gtk_icon_theme_set_custom_theme ()</h3>
|
591
579
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_theme_set_custom_theme (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
592
580
|
<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> *theme_name</code></em>);</pre>
|
@@ -607,15 +595,14 @@ and <a class="link" href="GtkIconTheme.html#gtk-icon-theme-get-for-screen" title
|
|
607
595
|
<tr>
|
608
596
|
<td><p><span class="term"><em class="parameter"><code>theme_name</code></em> :</span></p></td>
|
609
597
|
<td>name of icon theme to use instead of configured theme,
|
610
|
-
|
611
|
-
</td>
|
598
|
+
or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to unset a previously set custom theme</td>
|
612
599
|
</tr>
|
613
600
|
</tbody>
|
614
601
|
</table></div>
|
615
602
|
<p class="since">Since 2.4</p>
|
616
603
|
</div>
|
617
604
|
<hr>
|
618
|
-
<div class="refsect2"
|
605
|
+
<div class="refsect2">
|
619
606
|
<a name="gtk-icon-theme-has-icon"></a><h3>gtk_icon_theme_has_icon ()</h3>
|
620
607
|
<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_theme_has_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
621
608
|
<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>
|
@@ -633,22 +620,20 @@ for a particular name.
|
|
633
620
|
</tr>
|
634
621
|
<tr>
|
635
622
|
<td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
|
636
|
-
<td>the name of an icon
|
637
|
-
</td>
|
623
|
+
<td>the name of an icon</td>
|
638
624
|
</tr>
|
639
625
|
<tr>
|
640
626
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
641
|
-
<td>
|
642
|
-
|
643
|
-
|
644
|
-
</td>
|
627
|
+
<td>
|
628
|
+
<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>icon_theme</code></em> includes an
|
629
|
+
icon for <em class="parameter"><code>icon_name</code></em>.</td>
|
645
630
|
</tr>
|
646
631
|
</tbody>
|
647
632
|
</table></div>
|
648
633
|
<p class="since">Since 2.4</p>
|
649
634
|
</div>
|
650
635
|
<hr>
|
651
|
-
<div class="refsect2"
|
636
|
+
<div class="refsect2">
|
652
637
|
<a name="gtk-icon-theme-lookup-icon"></a><h3>gtk_icon_theme_lookup_icon ()</h3>
|
653
638
|
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_theme_lookup_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
654
639
|
<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>,
|
@@ -671,25 +656,21 @@ combines these two steps if all you need is the pixbuf.)
|
|
671
656
|
</tr>
|
672
657
|
<tr>
|
673
658
|
<td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
|
674
|
-
<td>the name of the icon to lookup
|
675
|
-
</td>
|
659
|
+
<td>the name of the icon to lookup</td>
|
676
660
|
</tr>
|
677
661
|
<tr>
|
678
662
|
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
679
|
-
<td>desired icon size
|
680
|
-
</td>
|
663
|
+
<td>desired icon size</td>
|
681
664
|
</tr>
|
682
665
|
<tr>
|
683
666
|
<td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
|
684
|
-
<td>flags modifying the behavior of the icon lookup
|
685
|
-
</td>
|
667
|
+
<td>flags modifying the behavior of the icon lookup</td>
|
686
668
|
</tr>
|
687
669
|
<tr>
|
688
670
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
689
|
-
<td>
|
671
|
+
<td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing information
|
690
672
|
about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon wasn't found. Free with
|
691
673
|
<a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()"><code class="function">gtk_icon_info_free()</code></a>
|
692
|
-
|
693
674
|
</td>
|
694
675
|
</tr>
|
695
676
|
</tbody>
|
@@ -697,7 +678,7 @@ about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-St
|
|
697
678
|
<p class="since">Since 2.4</p>
|
698
679
|
</div>
|
699
680
|
<hr>
|
700
|
-
<div class="refsect2"
|
681
|
+
<div class="refsect2">
|
701
682
|
<a name="gtk-icon-theme-choose-icon"></a><h3>gtk_icon_theme_choose_icon ()</h3>
|
702
683
|
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_theme_choose_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
703
684
|
<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_names[]</code></em>,
|
@@ -726,25 +707,23 @@ inherited icon themes.
|
|
726
707
|
<tr>
|
727
708
|
<td><p><span class="term"><em class="parameter"><code>icon_names</code></em> :</span></p></td>
|
728
709
|
<td>
|
729
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of
|
710
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated array of
|
711
|
+
icon names to lookup. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1]</span>
|
730
712
|
</td>
|
731
713
|
</tr>
|
732
714
|
<tr>
|
733
715
|
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
734
|
-
<td>desired icon size
|
735
|
-
</td>
|
716
|
+
<td>desired icon size</td>
|
736
717
|
</tr>
|
737
718
|
<tr>
|
738
719
|
<td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
|
739
|
-
<td>flags modifying the behavior of the icon lookup
|
740
|
-
</td>
|
720
|
+
<td>flags modifying the behavior of the icon lookup</td>
|
741
721
|
</tr>
|
742
722
|
<tr>
|
743
723
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
744
|
-
<td>
|
724
|
+
<td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing information
|
745
725
|
about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon wasn't found. Free with
|
746
726
|
<a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()"><code class="function">gtk_icon_info_free()</code></a>
|
747
|
-
|
748
727
|
</td>
|
749
728
|
</tr>
|
750
729
|
</tbody>
|
@@ -752,7 +731,7 @@ about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-St
|
|
752
731
|
<p class="since">Since 2.12</p>
|
753
732
|
</div>
|
754
733
|
<hr>
|
755
|
-
<div class="refsect2"
|
734
|
+
<div class="refsect2">
|
756
735
|
<a name="gtk-icon-theme-lookup-by-gicon"></a><h3>gtk_icon_theme_lookup_by_gicon ()</h3>
|
757
736
|
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_theme_lookup_by_gicon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
758
737
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> *icon</code></em>,
|
@@ -774,25 +753,21 @@ The icon can then be rendered into a pixbuf using
|
|
774
753
|
</tr>
|
775
754
|
<tr>
|
776
755
|
<td><p><span class="term"><em class="parameter"><code>icon</code></em> :</span></p></td>
|
777
|
-
<td>the <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> to look up
|
778
|
-
</td>
|
756
|
+
<td>the <a href="http://library.gnome.org/devel/gio/unstable/GIcon.html"><span class="type">GIcon</span></a> to look up</td>
|
779
757
|
</tr>
|
780
758
|
<tr>
|
781
759
|
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
782
|
-
<td>desired icon size
|
783
|
-
</td>
|
760
|
+
<td>desired icon size</td>
|
784
761
|
</tr>
|
785
762
|
<tr>
|
786
763
|
<td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
|
787
|
-
<td>flags modifying the behavior of the icon lookup
|
788
|
-
</td>
|
764
|
+
<td>flags modifying the behavior of the icon lookup</td>
|
789
765
|
</tr>
|
790
766
|
<tr>
|
791
767
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
792
|
-
<td>
|
793
|
-
|
794
|
-
|
795
|
-
|
768
|
+
<td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure containing
|
769
|
+
information about the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon
|
770
|
+
wasn't found. Free with <a class="link" href="GtkIconTheme.html#gtk-icon-info-free" title="gtk_icon_info_free ()"><code class="function">gtk_icon_info_free()</code></a>
|
796
771
|
</td>
|
797
772
|
</tr>
|
798
773
|
</tbody>
|
@@ -800,9 +775,9 @@ The icon can then be rendered into a pixbuf using
|
|
800
775
|
<p class="since">Since 2.14</p>
|
801
776
|
</div>
|
802
777
|
<hr>
|
803
|
-
<div class="refsect2"
|
778
|
+
<div class="refsect2">
|
804
779
|
<a name="gtk-icon-theme-load-icon"></a><h3>gtk_icon_theme_load_icon ()</h3>
|
805
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
780
|
+
<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_theme_load_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
806
781
|
<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>,
|
807
782
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>,
|
808
783
|
<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconLookupFlags" title="enum GtkIconLookupFlags"><span class="type">GtkIconLookupFlags</span></a> flags</code></em>,
|
@@ -818,7 +793,7 @@ Note that you probably want to listen for icon theme changes and
|
|
818
793
|
update the icon. This is usually done by connecting to the
|
819
794
|
GtkWidget::style-set signal. If for some reason you do not want to
|
820
795
|
update the icon when the icon theme changes, you should consider
|
821
|
-
using <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
796
|
+
using <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Image-Data-in-Memory.html#gdk-pixbuf-copy"><code class="function">gdk_pixbuf_copy()</code></a> to make a private copy of the pixbuf
|
822
797
|
returned by this function. Otherwise GTK+ may need to keep the old
|
823
798
|
icon theme loaded, which would be a waste of memory.
|
824
799
|
</p>
|
@@ -832,32 +807,28 @@ icon theme loaded, which would be a waste of memory.
|
|
832
807
|
</tr>
|
833
808
|
<tr>
|
834
809
|
<td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
|
835
|
-
<td>the name of the icon to lookup
|
836
|
-
</td>
|
810
|
+
<td>the name of the icon to lookup</td>
|
837
811
|
</tr>
|
838
812
|
<tr>
|
839
813
|
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
840
814
|
<td>the desired icon size. The resulting icon may not be
|
841
|
-
|
842
|
-
</td>
|
815
|
+
exactly this size; see <a class="link" href="GtkIconTheme.html#gtk-icon-info-load-icon" title="gtk_icon_info_load_icon ()"><code class="function">gtk_icon_info_load_icon()</code></a>.</td>
|
843
816
|
</tr>
|
844
817
|
<tr>
|
845
818
|
<td><p><span class="term"><em class="parameter"><code>flags</code></em> :</span></p></td>
|
846
|
-
<td>flags modifying the behavior of the icon lookup
|
847
|
-
</td>
|
819
|
+
<td>flags modifying the behavior of the icon lookup</td>
|
848
820
|
</tr>
|
849
821
|
<tr>
|
850
822
|
<td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
|
851
|
-
<td>
|
823
|
+
<td>Location to store error information on failure, 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>
|
852
824
|
</td>
|
853
825
|
</tr>
|
854
826
|
<tr>
|
855
827
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
856
|
-
<td>
|
857
|
-
or a new reference to an internal icon, so you must not modify
|
858
|
-
|
859
|
-
|
860
|
-
|
828
|
+
<td>the rendered icon; this may be a newly
|
829
|
+
created icon or a new reference to an internal icon, so you must not modify
|
830
|
+
the icon. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> to release your reference to the
|
831
|
+
icon. <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the icon isn't found. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
861
832
|
</td>
|
862
833
|
</tr>
|
863
834
|
</tbody>
|
@@ -865,7 +836,7 @@ icon theme loaded, which would be a waste of memory.
|
|
865
836
|
<p class="since">Since 2.4</p>
|
866
837
|
</div>
|
867
838
|
<hr>
|
868
|
-
<div class="refsect2"
|
839
|
+
<div class="refsect2">
|
869
840
|
<a name="gtk-icon-theme-list-contexts"></a><h3>gtk_icon_theme_list_contexts ()</h3>
|
870
841
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gtk_icon_theme_list_contexts (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>);</pre>
|
871
842
|
<p>
|
@@ -882,10 +853,10 @@ hierarchy of icon themes
|
|
882
853
|
</tr>
|
883
854
|
<tr>
|
884
855
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
885
|
-
<td>
|
886
|
-
|
887
|
-
|
888
|
-
|
856
|
+
<td>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> list holding the names of all the
|
857
|
+
contexts in the theme. You must first free each element
|
858
|
+
in the list with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, then free the list itself
|
859
|
+
with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
889
860
|
</td>
|
890
861
|
</tr>
|
891
862
|
</tbody>
|
@@ -893,7 +864,7 @@ hierarchy of icon themes
|
|
893
864
|
<p class="since">Since 2.12</p>
|
894
865
|
</div>
|
895
866
|
<hr>
|
896
|
-
<div class="refsect2"
|
867
|
+
<div class="refsect2">
|
897
868
|
<a name="gtk-icon-theme-list-icons"></a><h3>gtk_icon_theme_list_icons ()</h3>
|
898
869
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="returnvalue">GList</span></a> * gtk_icon_theme_list_icons (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
899
870
|
<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> *context</code></em>);</pre>
|
@@ -915,15 +886,14 @@ but will typically include such values as "Applications" and
|
|
915
886
|
<tr>
|
916
887
|
<td><p><span class="term"><em class="parameter"><code>context</code></em> :</span></p></td>
|
917
888
|
<td>a string identifying a particular type of icon,
|
918
|
-
|
919
|
-
</td>
|
889
|
+
or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to list all icons.</td>
|
920
890
|
</tr>
|
921
891
|
<tr>
|
922
892
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
923
|
-
<td>
|
924
|
-
icons in the theme. You must first
|
925
|
-
in the list with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, then free the list
|
926
|
-
with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="
|
893
|
+
<td>a <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#GList"><span class="type">GList</span></a> list
|
894
|
+
holding the names of all the icons in the theme. You must first
|
895
|
+
free each element in the list with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>, then free the list
|
896
|
+
itself with <a href="http://library.gnome.org/devel/glib/unstable/glib-Doubly-Linked-Lists.html#g-list-free"><code class="function">g_list_free()</code></a>. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> utf8][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
927
897
|
</td>
|
928
898
|
</tr>
|
929
899
|
</tbody>
|
@@ -931,7 +901,7 @@ but will typically include such values as "Applications" and
|
|
931
901
|
<p class="since">Since 2.4</p>
|
932
902
|
</div>
|
933
903
|
<hr>
|
934
|
-
<div class="refsect2"
|
904
|
+
<div class="refsect2">
|
935
905
|
<a name="gtk-icon-theme-get-icon-sizes"></a><h3>gtk_icon_theme_get_icon_sizes ()</h3>
|
936
906
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> * gtk_icon_theme_get_icon_sizes (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
937
907
|
<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>
|
@@ -951,15 +921,13 @@ is zero-terminated.
|
|
951
921
|
</tr>
|
952
922
|
<tr>
|
953
923
|
<td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
|
954
|
-
<td>the name of an icon
|
955
|
-
</td>
|
924
|
+
<td>the name of an icon</td>
|
956
925
|
</tr>
|
957
926
|
<tr>
|
958
927
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
959
|
-
<td>
|
960
|
-
which the icon is available. The array
|
961
|
-
when it is no longer needed.
|
962
|
-
|
928
|
+
<td>An newly allocated array
|
929
|
+
describing the sizes at which the icon is available. The array
|
930
|
+
should be freed with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a> when it is no longer needed. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> zero-terminated=1]</span>
|
963
931
|
</td>
|
964
932
|
</tr>
|
965
933
|
</tbody>
|
@@ -967,7 +935,7 @@ when it is no longer needed.
|
|
967
935
|
<p class="since">Since 2.6</p>
|
968
936
|
</div>
|
969
937
|
<hr>
|
970
|
-
<div class="refsect2"
|
938
|
+
<div class="refsect2">
|
971
939
|
<a name="gtk-icon-theme-get-example-icon-name"></a><h3>gtk_icon_theme_get_example_icon_name ()</h3>
|
972
940
|
<pre class="programlisting"><span class="returnvalue">char</span> * gtk_icon_theme_get_example_icon_name
|
973
941
|
(<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>);</pre>
|
@@ -986,17 +954,15 @@ a list of themes to the user.)
|
|
986
954
|
</tr>
|
987
955
|
<tr>
|
988
956
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
989
|
-
<td>
|
990
|
-
|
991
|
-
|
992
|
-
</td>
|
957
|
+
<td>the name of an example icon or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.
|
958
|
+
Free with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>.</td>
|
993
959
|
</tr>
|
994
960
|
</tbody>
|
995
961
|
</table></div>
|
996
962
|
<p class="since">Since 2.4</p>
|
997
963
|
</div>
|
998
964
|
<hr>
|
999
|
-
<div class="refsect2"
|
965
|
+
<div class="refsect2">
|
1000
966
|
<a name="gtk-icon-theme-rescan-if-needed"></a><h3>gtk_icon_theme_rescan_if_needed ()</h3>
|
1001
967
|
<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_theme_rescan_if_needed (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>);</pre>
|
1002
968
|
<p>
|
@@ -1014,21 +980,20 @@ next time <em class="parameter"><code>icon_theme</code></em> is accessed.
|
|
1014
980
|
</tr>
|
1015
981
|
<tr>
|
1016
982
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1017
|
-
<td>
|
1018
|
-
|
1019
|
-
|
1020
|
-
</td>
|
983
|
+
<td>
|
984
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon theme has changed and needed
|
985
|
+
to be reloaded.</td>
|
1021
986
|
</tr>
|
1022
987
|
</tbody>
|
1023
988
|
</table></div>
|
1024
989
|
<p class="since">Since 2.4</p>
|
1025
990
|
</div>
|
1026
991
|
<hr>
|
1027
|
-
<div class="refsect2"
|
992
|
+
<div class="refsect2">
|
1028
993
|
<a name="gtk-icon-theme-add-builtin-icon"></a><h3>gtk_icon_theme_add_builtin_icon ()</h3>
|
1029
994
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_theme_add_builtin_icon (<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>,
|
1030
995
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> size</code></em>,
|
1031
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
996
|
+
<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>
|
1032
997
|
<p>
|
1033
998
|
Registers a built-in icon for icon theme lookups. The idea
|
1034
999
|
of built-in icons is to allow an application or library
|
@@ -1044,38 +1009,35 @@ that the icon is generally available.
|
|
1044
1009
|
</p>
|
1045
1010
|
<p>
|
1046
1011
|
This function will generally be used with pixbufs loaded
|
1047
|
-
via <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1012
|
+
via <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-Image-Data-in-Memory.html#gdk-pixbuf-new-from-inline"><code class="function">gdk_pixbuf_new_from_inline()</code></a>.
|
1048
1013
|
</p>
|
1049
1014
|
<div class="variablelist"><table border="0">
|
1050
1015
|
<col align="left" valign="top">
|
1051
1016
|
<tbody>
|
1052
1017
|
<tr>
|
1053
1018
|
<td><p><span class="term"><em class="parameter"><code>icon_name</code></em> :</span></p></td>
|
1054
|
-
<td>the name of the icon to register
|
1055
|
-
</td>
|
1019
|
+
<td>the name of the icon to register</td>
|
1056
1020
|
</tr>
|
1057
1021
|
<tr>
|
1058
1022
|
<td><p><span class="term"><em class="parameter"><code>size</code></em> :</span></p></td>
|
1059
1023
|
<td>the size at which to register the icon (different
|
1060
|
-
|
1061
|
-
|
1062
|
-
</td>
|
1024
|
+
images can be registered for the same icon name
|
1025
|
+
at different sizes.)</td>
|
1063
1026
|
</tr>
|
1064
1027
|
<tr>
|
1065
1028
|
<td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
|
1066
1029
|
<td>
|
1067
|
-
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1068
|
-
|
1069
|
-
</td>
|
1030
|
+
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> that contains the image to use
|
1031
|
+
for <em class="parameter"><code>icon_name</code></em>.</td>
|
1070
1032
|
</tr>
|
1071
1033
|
</tbody>
|
1072
1034
|
</table></div>
|
1073
1035
|
<p class="since">Since 2.4</p>
|
1074
1036
|
</div>
|
1075
1037
|
<hr>
|
1076
|
-
<div class="refsect2"
|
1038
|
+
<div class="refsect2">
|
1077
1039
|
<a name="gtk-icon-info-copy"></a><h3>gtk_icon_info_copy ()</h3>
|
1078
|
-
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
1040
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_info_copy (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
|
1079
1041
|
<p>
|
1080
1042
|
Make a copy of a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a>.
|
1081
1043
|
</p>
|
@@ -1089,16 +1051,14 @@ Make a copy of a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="Gtk
|
|
1089
1051
|
</tr>
|
1090
1052
|
<tr>
|
1091
1053
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1092
|
-
<td>
|
1093
|
-
|
1094
|
-
</td>
|
1054
|
+
<td>the new GtkIconInfo</td>
|
1095
1055
|
</tr>
|
1096
1056
|
</tbody>
|
1097
1057
|
</table></div>
|
1098
1058
|
<p class="since">Since 2.4</p>
|
1099
1059
|
</div>
|
1100
1060
|
<hr>
|
1101
|
-
<div class="refsect2"
|
1061
|
+
<div class="refsect2">
|
1102
1062
|
<a name="gtk-icon-info-free"></a><h3>gtk_icon_info_free ()</h3>
|
1103
1063
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_info_free (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
|
1104
1064
|
<p>
|
@@ -1115,12 +1075,12 @@ Free a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo">
|
|
1115
1075
|
<p class="since">Since 2.4</p>
|
1116
1076
|
</div>
|
1117
1077
|
<hr>
|
1118
|
-
<div class="refsect2"
|
1078
|
+
<div class="refsect2">
|
1119
1079
|
<a name="gtk-icon-info-new-for-pixbuf"></a><h3>gtk_icon_info_new_for_pixbuf ()</h3>
|
1120
|
-
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> *
|
1121
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1080
|
+
<pre class="programlisting"><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="returnvalue">GtkIconInfo</span></a> * gtk_icon_info_new_for_pixbuf (<em class="parameter"><code><a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme</code></em>,
|
1081
|
+
<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>
|
1122
1082
|
<p>
|
1123
|
-
Creates a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> for a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1083
|
+
Creates a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> for a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>.
|
1124
1084
|
</p>
|
1125
1085
|
<div class="variablelist"><table border="0">
|
1126
1086
|
<col align="left" valign="top">
|
@@ -1137,8 +1097,7 @@ Creates a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInf
|
|
1137
1097
|
</tr>
|
1138
1098
|
<tr>
|
1139
1099
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1140
|
-
<td>
|
1141
|
-
|
1100
|
+
<td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a>
|
1142
1101
|
</td>
|
1143
1102
|
</tr>
|
1144
1103
|
</tbody>
|
@@ -1146,7 +1105,7 @@ Creates a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInf
|
|
1146
1105
|
<p class="since">Since 2.14</p>
|
1147
1106
|
</div>
|
1148
1107
|
<hr>
|
1149
|
-
<div class="refsect2"
|
1108
|
+
<div class="refsect2">
|
1150
1109
|
<a name="gtk-icon-info-get-base-size"></a><h3>gtk_icon_info_get_base_size ()</h3>
|
1151
1110
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_icon_info_get_base_size (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
|
1152
1111
|
<p>
|
@@ -1169,19 +1128,18 @@ they are attached.
|
|
1169
1128
|
</tr>
|
1170
1129
|
<tr>
|
1171
1130
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1172
|
-
<td>
|
1173
|
-
|
1174
|
-
|
1175
|
-
</td>
|
1131
|
+
<td>the base size, or 0, if no base
|
1132
|
+
size is known for the icon.</td>
|
1176
1133
|
</tr>
|
1177
1134
|
</tbody>
|
1178
1135
|
</table></div>
|
1179
1136
|
<p class="since">Since 2.4</p>
|
1180
1137
|
</div>
|
1181
1138
|
<hr>
|
1182
|
-
<div class="refsect2"
|
1183
|
-
<a name="gtk-icon-info-get-filename"></a><h3>gtk_icon_info_get_filename
|
1184
|
-
<pre class="programlisting"
|
1139
|
+
<div class="refsect2">
|
1140
|
+
<a name="gtk-icon-info-get-filename"></a><h3>gtk_icon_info_get_filename</h3>
|
1141
|
+
<pre class="programlisting">#define gtk_icon_info_get_filename gtk_icon_info_get_filename_utf8
|
1142
|
+
</pre>
|
1185
1143
|
<p>
|
1186
1144
|
Gets the filename for the icon. If the
|
1187
1145
|
<a class="link" href="GtkIconTheme.html#GTK-ICON-LOOKUP-USE-BUILTIN:CAPS"><code class="literal">GTK_ICON_LOOKUP_USE_BUILTIN</code></a> flag was passed
|
@@ -1191,29 +1149,20 @@ case, you should use <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-b
|
|
1191
1149
|
</p>
|
1192
1150
|
<div class="variablelist"><table border="0">
|
1193
1151
|
<col align="left" valign="top">
|
1194
|
-
<tbody>
|
1195
|
-
<tr>
|
1196
|
-
<td><p><span class="term"><em class="parameter"><code>icon_info</code></em> :</span></p></td>
|
1197
|
-
<td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a>
|
1198
|
-
</td>
|
1199
|
-
</tr>
|
1200
|
-
<tr>
|
1152
|
+
<tbody><tr>
|
1201
1153
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1202
|
-
<td>
|
1203
|
-
|
1204
|
-
|
1205
|
-
|
1206
|
-
|
1207
|
-
</td>
|
1208
|
-
</tr>
|
1209
|
-
</tbody>
|
1154
|
+
<td>the filename for the icon, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1155
|
+
if <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-builtin-pixbuf" title="gtk_icon_info_get_builtin_pixbuf ()"><code class="function">gtk_icon_info_get_builtin_pixbuf()</code></a> should
|
1156
|
+
be used instead. The return value is owned by
|
1157
|
+
GTK+ and should not be modified or freed.</td>
|
1158
|
+
</tr></tbody>
|
1210
1159
|
</table></div>
|
1211
1160
|
<p class="since">Since 2.4</p>
|
1212
1161
|
</div>
|
1213
1162
|
<hr>
|
1214
|
-
<div class="refsect2"
|
1163
|
+
<div class="refsect2">
|
1215
1164
|
<a name="gtk-icon-info-get-builtin-pixbuf"></a><h3>gtk_icon_info_get_builtin_pixbuf ()</h3>
|
1216
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1165
|
+
<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_info_get_builtin_pixbuf (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
|
1217
1166
|
<p>
|
1218
1167
|
Gets the built-in image for this icon, if any. To allow
|
1219
1168
|
GTK+ to use built in icon images, you must pass the
|
@@ -1225,15 +1174,14 @@ GTK+ to use built in icon images, you must pass the
|
|
1225
1174
|
<tbody>
|
1226
1175
|
<tr>
|
1227
1176
|
<td><p><span class="term"><em class="parameter"><code>icon_info</code></em> :</span></p></td>
|
1228
|
-
<td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure
|
1229
|
-
</td>
|
1177
|
+
<td>a <a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> structure</td>
|
1230
1178
|
</tr>
|
1231
1179
|
<tr>
|
1232
1180
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1233
|
-
<td>
|
1234
|
-
|
1235
|
-
|
1236
|
-
|
1181
|
+
<td>the built-in image pixbuf, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. No
|
1182
|
+
extra reference is added to the returned pixbuf, so if
|
1183
|
+
you want to keep it around, you must use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a>.
|
1184
|
+
The returned image must not be modified. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1237
1185
|
</td>
|
1238
1186
|
</tr>
|
1239
1187
|
</tbody>
|
@@ -1241,9 +1189,9 @@ GTK+ to use built in icon images, you must pass the
|
|
1241
1189
|
<p class="since">Since 2.4</p>
|
1242
1190
|
</div>
|
1243
1191
|
<hr>
|
1244
|
-
<div class="refsect2"
|
1192
|
+
<div class="refsect2">
|
1245
1193
|
<a name="gtk-icon-info-load-icon"></a><h3>gtk_icon_info_load_icon ()</h3>
|
1246
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1194
|
+
<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_info_load_icon (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
1247
1195
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
1248
1196
|
<p>
|
1249
1197
|
Renders an icon previously looked up in an icon theme using
|
@@ -1268,16 +1216,16 @@ returned by this function will be scaled to the exact size.
|
|
1268
1216
|
</tr>
|
1269
1217
|
<tr>
|
1270
1218
|
<td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
|
1271
|
-
<td>
|
1219
|
+
<td>location to store error information on failure,
|
1220
|
+
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>
|
1272
1221
|
</td>
|
1273
1222
|
</tr>
|
1274
1223
|
<tr>
|
1275
1224
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1276
|
-
<td>
|
1277
|
-
or a new reference to an internal icon, so you must
|
1278
|
-
the icon. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> to release your reference
|
1279
|
-
icon.
|
1280
|
-
|
1225
|
+
<td>the rendered icon; this may be a newly
|
1226
|
+
created icon or a new reference to an internal icon, so you must
|
1227
|
+
not modify the icon. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> to release your reference
|
1228
|
+
to the icon. <span class="annotation">[<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
1281
1229
|
</td>
|
1282
1230
|
</tr>
|
1283
1231
|
</tbody>
|
@@ -1285,7 +1233,7 @@ returned by this function will be scaled to the exact size.
|
|
1285
1233
|
<p class="since">Since 2.4</p>
|
1286
1234
|
</div>
|
1287
1235
|
<hr>
|
1288
|
-
<div class="refsect2"
|
1236
|
+
<div class="refsect2">
|
1289
1237
|
<a name="gtk-icon-info-set-raw-coordinates"></a><h3>gtk_icon_info_set_raw_coordinates ()</h3>
|
1290
1238
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_icon_info_set_raw_coordinates (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
1291
1239
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> raw_coordinates</code></em>);</pre>
|
@@ -1300,7 +1248,7 @@ Raw coordinates are somewhat strange; they are specified to be with
|
|
1300
1248
|
respect to the unscaled pixmap for PNG and XPM icons, but for SVG
|
1301
1249
|
icons, they are in a 1000x1000 coordinate space that is scaled
|
1302
1250
|
to the final size of the icon. You can determine if the icon is an SVG
|
1303
|
-
icon by using <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename
|
1251
|
+
icon by using <a class="link" href="GtkIconTheme.html#gtk-icon-info-get-filename" title="gtk_icon_info_get_filename"><code class="function">gtk_icon_info_get_filename()</code></a>, and seeing if it is non-<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1304
1252
|
and ends in '.svg'.
|
1305
1253
|
</p>
|
1306
1254
|
<p>
|
@@ -1318,19 +1266,18 @@ for older API's, and is not expected to be useful for applications.
|
|
1318
1266
|
<tr>
|
1319
1267
|
<td><p><span class="term"><em class="parameter"><code>raw_coordinates</code></em> :</span></p></td>
|
1320
1268
|
<td>whether the coordinates of embedded rectangles
|
1321
|
-
|
1322
|
-
|
1323
|
-
</td>
|
1269
|
+
and attached points should be returned in their original
|
1270
|
+
(unscaled) form.</td>
|
1324
1271
|
</tr>
|
1325
1272
|
</tbody>
|
1326
1273
|
</table></div>
|
1327
1274
|
<p class="since">Since 2.4</p>
|
1328
1275
|
</div>
|
1329
1276
|
<hr>
|
1330
|
-
<div class="refsect2"
|
1277
|
+
<div class="refsect2">
|
1331
1278
|
<a name="gtk-icon-info-get-embedded-rect"></a><h3>gtk_icon_info_get_embedded_rect ()</h3>
|
1332
1279
|
<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_info_get_embedded_rect (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
1333
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
1280
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);</pre>
|
1334
1281
|
<p>
|
1335
1282
|
Gets the coordinates of a rectangle within the icon
|
1336
1283
|
that can be used for display of information such
|
@@ -1349,26 +1296,25 @@ information about the coordinate system.
|
|
1349
1296
|
<tr>
|
1350
1297
|
<td><p><span class="term"><em class="parameter"><code>rectangle</code></em> :</span></p></td>
|
1351
1298
|
<td>
|
1352
|
-
<a href="http://library.gnome.org/devel/
|
1353
|
-
|
1354
|
-
|
1299
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Points-Rectangles-and-Regions.html#GdkRectangle"><span class="type">GdkRectangle</span></a> in which to store embedded
|
1300
|
+
rectangle coordinates; coordinates are only stored
|
1301
|
+
when this function returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1355
1302
|
</td>
|
1356
1303
|
</tr>
|
1357
1304
|
<tr>
|
1358
1305
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1359
|
-
<td>
|
1360
|
-
|
1361
|
-
</td>
|
1306
|
+
<td>
|
1307
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the icon has an embedded rectangle</td>
|
1362
1308
|
</tr>
|
1363
1309
|
</tbody>
|
1364
1310
|
</table></div>
|
1365
1311
|
<p class="since">Since 2.4</p>
|
1366
1312
|
</div>
|
1367
1313
|
<hr>
|
1368
|
-
<div class="refsect2"
|
1314
|
+
<div class="refsect2">
|
1369
1315
|
<a name="gtk-icon-info-get-attach-points"></a><h3>gtk_icon_info_get_attach_points ()</h3>
|
1370
1316
|
<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_info_get_attach_points (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>,
|
1371
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
1317
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Points-Rectangles-and-Regions.html#GdkPoint"><span class="type">GdkPoint</span></a> **points</code></em>,
|
1372
1318
|
<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_points</code></em>);</pre>
|
1373
1319
|
<p>
|
1374
1320
|
Fetches the set of attach points for an icon. An attach point
|
@@ -1385,29 +1331,28 @@ emblems or overlays to the icon.
|
|
1385
1331
|
</tr>
|
1386
1332
|
<tr>
|
1387
1333
|
<td><p><span class="term"><em class="parameter"><code>points</code></em> :</span></p></td>
|
1388
|
-
<td> location to store pointer to an array of points, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1389
|
-
|
1334
|
+
<td>(array length=n_points) (out): location to store pointer to an array of points, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1335
|
+
free the array of points with <a href="http://library.gnome.org/devel/glib/unstable/glib-Memory-Allocation.html#g-free"><code class="function">g_free()</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1390
1336
|
</td>
|
1391
1337
|
</tr>
|
1392
1338
|
<tr>
|
1393
1339
|
<td><p><span class="term"><em class="parameter"><code>n_points</code></em> :</span></p></td>
|
1394
|
-
<td>
|
1340
|
+
<td>location to store the number of points in <em class="parameter"><code>points</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>
|
1395
1341
|
</td>
|
1396
1342
|
</tr>
|
1397
1343
|
<tr>
|
1398
1344
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1399
|
-
<td>
|
1400
|
-
|
1401
|
-
</td>
|
1345
|
+
<td>
|
1346
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if there are any attach points for the icon.</td>
|
1402
1347
|
</tr>
|
1403
1348
|
</tbody>
|
1404
1349
|
</table></div>
|
1405
1350
|
<p class="since">Since 2.4</p>
|
1406
1351
|
</div>
|
1407
1352
|
<hr>
|
1408
|
-
<div class="refsect2"
|
1353
|
+
<div class="refsect2">
|
1409
1354
|
<a name="gtk-icon-info-get-display-name"></a><h3>gtk_icon_info_get_display_name ()</h3>
|
1410
|
-
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1355
|
+
<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_info_get_display_name (<em class="parameter"><code><a class="link" href="GtkIconTheme.html#GtkIconInfo" title="GtkIconInfo"><span class="type">GtkIconInfo</span></a> *icon_info</code></em>);</pre>
|
1411
1356
|
<p>
|
1412
1357
|
Gets the display name for an icon. A display name is a
|
1413
1358
|
string to be used in place of the icon name in a user
|
@@ -1423,23 +1368,21 @@ visible context like a list of icons.
|
|
1423
1368
|
</tr>
|
1424
1369
|
<tr>
|
1425
1370
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1426
|
-
<td>
|
1427
|
-
|
1428
|
-
|
1429
|
-
|
1430
|
-
</td>
|
1371
|
+
<td>the display name for the icon or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, if
|
1372
|
+
the icon doesn't have a specified display name. This value
|
1373
|
+
is owned <em class="parameter"><code>icon_info</code></em> and must not be modified or free.</td>
|
1431
1374
|
</tr>
|
1432
1375
|
</tbody>
|
1433
1376
|
</table></div>
|
1434
1377
|
<p class="since">Since 2.4</p>
|
1435
1378
|
</div>
|
1436
1379
|
</div>
|
1437
|
-
<div class="refsect1"
|
1380
|
+
<div class="refsect1">
|
1438
1381
|
<a name="GtkIconTheme.signal-details"></a><h2>Signal Details</h2>
|
1439
|
-
<div class="refsect2"
|
1382
|
+
<div class="refsect2">
|
1440
1383
|
<a name="GtkIconTheme-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
|
1441
1384
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkIconTheme.html" title="GtkIconTheme"><span class="type">GtkIconTheme</span></a> *icon_theme,
|
1442
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
|
1385
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
1443
1386
|
<p>
|
1444
1387
|
Emitted when the current icon theme is switched or GTK+ detects
|
1445
1388
|
that a change has occurred in the contents of the current
|
@@ -1450,8 +1393,7 @@ icon theme.
|
|
1450
1393
|
<tbody>
|
1451
1394
|
<tr>
|
1452
1395
|
<td><p><span class="term"><em class="parameter"><code>icon_theme</code></em> :</span></p></td>
|
1453
|
-
<td>the icon theme
|
1454
|
-
</td>
|
1396
|
+
<td>the icon theme</td>
|
1455
1397
|
</tr>
|
1456
1398
|
<tr>
|
1457
1399
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -1464,6 +1406,6 @@ icon theme.
|
|
1464
1406
|
</div>
|
1465
1407
|
<div class="footer">
|
1466
1408
|
<hr>
|
1467
|
-
Generated by GTK-Doc V1.
|
1409
|
+
Generated by GTK-Doc V1.17</div>
|
1468
1410
|
</body>
|
1469
1411
|
</html>
|