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>Migrating from GtkCombo to GtkComboBoxEntry</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="gtk-migrating-GtkComboBox.html" title="Migrating from GtkOptionMenu and GtkCombo to GtkComboBox and GtkComboBoxEntry">
         | 
| 9 9 | 
             
            <link rel="prev" href="gtk-migrating-GtkComboBox.html" title="Migrating from GtkOptionMenu and GtkCombo to GtkComboBox and GtkComboBoxEntry">
         | 
| 10 10 | 
             
            <link rel="next" href="new-features-GtkComboBox.html" title="New features">
         | 
| 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">
         | 
| @@ -16,10 +16,10 @@ | |
| 16 16 | 
             
            <td><a accesskey="p" href="gtk-migrating-GtkComboBox.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 17 17 | 
             
            <td><a accesskey="u" href="gtk-migrating-GtkComboBox.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 19 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 19 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 20 20 | 
             
            <td><a accesskey="n" href="new-features-GtkComboBox.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 21 21 | 
             
            </tr></table>
         | 
| 22 | 
            -
            <div class="section" | 
| 22 | 
            +
            <div class="section">
         | 
| 23 23 | 
             
            <div class="titlepage"><div><div><h2 class="title" style="clear: both">
         | 
| 24 24 | 
             
            <a name="migrating-GtkCombo"></a>Migrating from GtkCombo to GtkComboBoxEntry</h2></div></div></div>
         | 
| 25 25 | 
             
            <p>
         | 
| @@ -89,6 +89,6 @@ | |
| 89 89 | 
             
            </div>
         | 
| 90 90 | 
             
            <div class="footer">
         | 
| 91 91 | 
             
            <hr>
         | 
| 92 | 
            -
                      Generated by GTK-Doc V1. | 
| 92 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 93 93 | 
             
            </body>
         | 
| 94 94 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>Migrating from GnomeUIInfo</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="gtk-migrating-GtkAction.html" title="Migrating from old menu and toolbar systems to GtkAction">
         | 
| 9 9 | 
             
            <link rel="prev" href="ui-manager.html" title="User Interface Manager Object">
         | 
| 10 10 | 
             
            <link rel="next" href="gtk-migrating-GtkComboBox.html" title="Migrating from GtkOptionMenu and GtkCombo to GtkComboBox and GtkComboBoxEntry">
         | 
| 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">
         | 
| @@ -16,10 +16,10 @@ | |
| 16 16 | 
             
            <td><a accesskey="p" href="ui-manager.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 17 17 | 
             
            <td><a accesskey="u" href="gtk-migrating-GtkAction.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 19 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 19 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 20 20 | 
             
            <td><a accesskey="n" href="gtk-migrating-GtkComboBox.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 21 21 | 
             
            </tr></table>
         | 
| 22 | 
            -
            <div class="section" | 
| 22 | 
            +
            <div class="section">
         | 
| 23 23 | 
             
            <div class="titlepage"><div><div><h2 class="title" style="clear: both">
         | 
| 24 24 | 
             
            <a name="migrating-gnomeuiinfo"></a>Migrating from GnomeUIInfo</h2></div></div></div>
         | 
| 25 25 | 
             
            <p>
         | 
| @@ -62,7 +62,7 @@ | |
| 62 62 | 
             
            <li class="listitem"><p>
         | 
| 63 63 | 
             
            	  Separate your existing GnomeUIInfo entries into normal
         | 
| 64 64 | 
             
            	  actions, toggle actions, and radio actions, and then create
         | 
| 65 | 
            -
            	  a separate array of <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="GtkActionEntry"><span class="type">GtkActionEntry</span></a> structures
         | 
| 65 | 
            +
            	  a separate array of <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="struct GtkActionEntry"><span class="type">GtkActionEntry</span></a> structures
         | 
| 66 66 | 
             
            	  for each group.  This will allow you to create the necessary
         | 
| 67 67 | 
             
            	  <a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> objects.  Note that this does not describe 
         | 
| 68 68 | 
             
                      the actual "shape" that your menus and toolbars will have; 
         | 
| @@ -81,13 +81,13 @@ | |
| 81 81 | 
             
                     If your GnomeUIInfo entries use GNOME_APP_PIXMAP_DATA or 
         | 
| 82 82 | 
             
                     GNOME_APP_PIXMAP_FILENAME for pixmaps, you have to create a 
         | 
| 83 83 | 
             
                     <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconFactory"><span class="type">GtkIconFactory</span></a>, add it to the list of default factories, then 
         | 
| 84 | 
            -
                     create a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet" | 
| 85 | 
            -
                     the factory, and use the id in the <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="GtkActionEntry"><span class="type">GtkActionEntry</span></a> like a regular 
         | 
| 84 | 
            +
                     create a <a class="link" href="gtk-Themeable-Stock-Images.html#GtkIconSet"><span class="type">GtkIconSet</span></a> for each of your own icons. Add the sets to 
         | 
| 85 | 
            +
                     the factory, and use the id in the <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="struct GtkActionEntry"><span class="type">GtkActionEntry</span></a> like a regular 
         | 
| 86 86 | 
             
                     GTK+ stock id.
         | 
| 87 87 | 
             
                   </p></li>
         | 
| 88 88 | 
             
            </ol></div>
         | 
| 89 89 | 
             
            <div class="example">
         | 
| 90 | 
            -
            <a name="gnomeuiinfo-example"></a><p class="title"><b>Example  | 
| 90 | 
            +
            <a name="gnomeuiinfo-example"></a><p class="title"><b>Example 66. GnomeUIInfo Example</b></p>
         | 
| 91 91 | 
             
            <div class="example-contents">
         | 
| 92 92 | 
             
            <p>
         | 
| 93 93 | 
             
            	The following code shows a declaration of a simple menu bar to
         | 
| @@ -167,18 +167,18 @@ static GnomeUIInfo menubar[] = { | |
| 167 167 | 
             
            </div>
         | 
| 168 168 | 
             
            </div>
         | 
| 169 169 | 
             
            <br class="example-break"><div class="example">
         | 
| 170 | 
            -
            <a name="gnomeuiinfo-action-entries"></a><p class="title"><b>Example  | 
| 170 | 
            +
            <a name="gnomeuiinfo-action-entries"></a><p class="title"><b>Example 67. <span class="structname">GtkActionEntry</span> Structures</b></p>
         | 
| 171 171 | 
             
            <div class="example-contents">
         | 
| 172 172 | 
             
            <p>
         | 
| 173 173 | 
             
            	The following code is the set of actions that are present in
         | 
| 174 | 
            -
            	the <a class="link" href="migrating-gnomeuiinfo.html#gnomeuiinfo-example" title="Example  | 
| 174 | 
            +
            	the <a class="link" href="migrating-gnomeuiinfo.html#gnomeuiinfo-example" title="Example 66. GnomeUIInfo Example">previous
         | 
| 175 175 | 
             
            	example</a>.  Note that the toggle and radio entries are
         | 
| 176 | 
            -
            	separate from normal actions.  Also, note that <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="GtkActionEntry"><span class="type">GtkActionEntry</span></a> 
         | 
| 176 | 
            +
            	separate from normal actions.  Also, note that <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="struct GtkActionEntry"><span class="type">GtkActionEntry</span></a> 
         | 
| 177 177 | 
             
                    structures take key names in the format of <a class="link" href="gtk-Keyboard-Accelerators.html#gtk-accelerator-parse" title="gtk_accelerator_parse ()"><code class="function">gtk_accelerator_parse()</code></a> 
         | 
| 178 178 | 
             
                    rather than key values plus modifiers; you will have to convert these
         | 
| 179 179 | 
             
            	values by hand.  For example, <code class="literal">GDK_F11</code> with no modifiers is equivalent 
         | 
| 180 180 | 
             
                    to a key name of <code class="literal">"F11"</code>.  Likewise, <code class="literal">"o"</code>
         | 
| 181 | 
            -
            	with <a href="http://library.gnome.org/devel/ | 
| 181 | 
            +
            	with <a href="http://library.gnome.org/devel/gdk3/gdk-Windows.html#GDK-CONTROL-MASK:CAPS"><code class="literal">GDK_CONTROL_MASK</code></a> is equivalent to <code class="literal">"<ontrol>O"</code>.
         | 
| 182 182 | 
             
                  </p>
         | 
| 183 183 | 
             
            <pre class="programlisting">
         | 
| 184 184 | 
             
            /* Normal items */
         | 
| @@ -206,16 +206,16 @@ static const GtkRadioActionEntry radio_entries[] = { | |
| 206 206 | 
             
            </div>
         | 
| 207 207 | 
             
            </div>
         | 
| 208 208 | 
             
            <br class="example-break"><div class="example">
         | 
| 209 | 
            -
            <a name="gnomeuiinfo-xml"></a><p class="title"><b>Example  | 
| 209 | 
            +
            <a name="gnomeuiinfo-xml"></a><p class="title"><b>Example 68. XML Description</b></p>
         | 
| 210 210 | 
             
            <div class="example-contents">
         | 
| 211 211 | 
             
            <p>
         | 
| 212 212 | 
             
            	After extracting the actions, you will need to create an XML
         | 
| 213 213 | 
             
            	description of the actual layout of your menus and toolbars
         | 
| 214 214 | 
             
            	for use with <a class="link" href="GtkUIManager.html" title="GtkUIManager"><span class="type">GtkUIManager</span></a>. The following code shows a simple 
         | 
| 215 | 
            -
                    menu bar that corresponds to the <a class="link" href="migrating-gnomeuiinfo.html#gnomeuiinfo-example" title="Example  | 
| 215 | 
            +
                    menu bar that corresponds to the <a class="link" href="migrating-gnomeuiinfo.html#gnomeuiinfo-example" title="Example 66. GnomeUIInfo Example">previous
         | 
| 216 216 | 
             
            	example</a>.  Note that the <span class="guimenu">File</span> and
         | 
| 217 217 | 
             
            	<span class="guimenu">View</span> menus have their names specified in
         | 
| 218 | 
            -
            	the <a class="link" href="migrating-gnomeuiinfo.html#gnomeuiinfo-action-entries" title="Example  | 
| 218 | 
            +
            	the <a class="link" href="migrating-gnomeuiinfo.html#gnomeuiinfo-action-entries" title="Example 67. GtkActionEntry Structures">action
         | 
| 219 219 | 
             
            	entries</a>, not in the XML itself.  This is because the
         | 
| 220 220 | 
             
            	XML description only contains <span class="emphasis"><em>identifiers</em></span>
         | 
| 221 221 | 
             
            	for the items in the GUI, rather than human-readable names.
         | 
| @@ -244,12 +244,12 @@ static const char *ui_description = | |
| 244 244 | 
             
            </div>
         | 
| 245 245 | 
             
            </div>
         | 
| 246 246 | 
             
            <br class="example-break"><div class="example">
         | 
| 247 | 
            -
            <a name="gnomeuiinfo-code"></a><p class="title"><b>Example  | 
| 247 | 
            +
            <a name="gnomeuiinfo-code"></a><p class="title"><b>Example 69. Creating the Menu Bar</b></p>
         | 
| 248 248 | 
             
            <div class="example-contents">
         | 
| 249 249 | 
             
            <p>
         | 
| 250 250 | 
             
            	In this last example, we will create a <a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> based on the
         | 
| 251 | 
            -
            	<a class="link" href="migrating-gnomeuiinfo.html#gnomeuiinfo-action-entries" title="Example  | 
| 252 | 
            -
                    we created above.  We will then create a <a class="link" href="GtkUIManager.html" title="GtkUIManager"><span class="type">GtkUIManager</span></a> with the <a class="link" href="migrating-gnomeuiinfo.html#gnomeuiinfo-xml" title="Example  | 
| 251 | 
            +
            	<a class="link" href="migrating-gnomeuiinfo.html#gnomeuiinfo-action-entries" title="Example 67. GtkActionEntry Structures">action entries</a> 
         | 
| 252 | 
            +
                    we created above.  We will then create a <a class="link" href="GtkUIManager.html" title="GtkUIManager"><span class="type">GtkUIManager</span></a> with the <a class="link" href="migrating-gnomeuiinfo.html#gnomeuiinfo-xml" title="Example 68. XML Description">XML description</a> of the menu
         | 
| 253 253 | 
             
            	layout.  We will also extract the accelerator group and the
         | 
| 254 254 | 
             
            	widgets from the <a class="link" href="GtkUIManager.html" title="GtkUIManager"><span class="type">GtkUIManager</span></a> put them into a window.
         | 
| 255 255 | 
             
                  </p>
         | 
| @@ -296,7 +296,7 @@ gtk_widget_show_all (window); | |
| 296 296 | 
             
            </div>
         | 
| 297 297 | 
             
            </div>
         | 
| 298 298 | 
             
            <br class="example-break"><div class="example">
         | 
| 299 | 
            -
            <a name="gnomeuiinfo-icons"></a><p class="title"><b>Example  | 
| 299 | 
            +
            <a name="gnomeuiinfo-icons"></a><p class="title"><b>Example 70. Registering the icons</b></p>
         | 
| 300 300 | 
             
            <div class="example-contents">
         | 
| 301 301 | 
             
            <p>
         | 
| 302 302 | 
             
            	Here we show how the <code class="function">register_my_stock_icons()</code> function
         | 
| @@ -346,6 +346,6 @@ register_my_stock_icons (void) | |
| 346 346 | 
             
            </div>
         | 
| 347 347 | 
             
            <div class="footer">
         | 
| 348 348 | 
             
            <hr>
         | 
| 349 | 
            -
                      Generated by GTK-Doc V1. | 
| 349 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 350 350 | 
             
            </body>
         | 
| 351 351 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>Part IV. Migrating from Previous Versions of GTK+</title>
         | 
| 6 6 | 
             
            <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
         | 
| 7 | 
            -
            <link rel="home" href="index.html" title="GTK+ Reference Manual">
         | 
| 8 | 
            -
            <link rel="up" href="index.html" title="GTK+ Reference Manual">
         | 
| 7 | 
            +
            <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
         | 
| 8 | 
            +
            <link rel="up" href="index.html" title="GTK+ 2 Reference Manual">
         | 
| 9 9 | 
             
            <link rel="prev" href="GtkTreeItem.html" title="GtkTreeItem">
         | 
| 10 10 | 
             
            <link rel="next" href="gtk-migrating-checklist.html" title="Migration Checklist">
         | 
| 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">
         | 
| @@ -16,13 +16,13 @@ | |
| 16 16 | 
             
            <td><a accesskey="p" href="GtkTreeItem.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 17 17 | 
             
            <td> </td>
         | 
| 18 18 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 19 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 19 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 20 20 | 
             
            <td><a accesskey="n" href="gtk-migrating-checklist.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 21 21 | 
             
            </tr></table>
         | 
| 22 | 
            -
            <div class="part" | 
| 22 | 
            +
            <div class="part">
         | 
| 23 23 | 
             
            <div class="titlepage"><div><div><h1 class="title">
         | 
| 24 24 | 
             
            <a name="migrating"></a>Part IV. Migrating from Previous Versions of GTK+</h1></div></div></div>
         | 
| 25 | 
            -
            <div class="partintro" | 
| 25 | 
            +
            <div class="partintro">
         | 
| 26 26 | 
             
            <div></div>
         | 
| 27 27 | 
             
            <p>
         | 
| 28 28 | 
             
            	This part describes what you need to change in programs use
         | 
| @@ -99,6 +99,6 @@ Incompatible changes made between version 1.2 and version 2.0 | |
| 99 99 | 
             
            </div>
         | 
| 100 100 | 
             
            <div class="footer">
         | 
| 101 101 | 
             
            <hr>
         | 
| 102 | 
            -
                      Generated by GTK-Doc V1. | 
| 102 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 103 103 | 
             
            </body>
         | 
| 104 104 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>New features</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="gtk-migrating-GtkComboBox.html" title="Migrating from GtkOptionMenu and GtkCombo to GtkComboBox and GtkComboBoxEntry">
         | 
| 9 9 | 
             
            <link rel="prev" href="migrating-GtkCombo.html" title="Migrating from GtkCombo to GtkComboBoxEntry">
         | 
| 10 10 | 
             
            <link rel="next" href="gtk-migrating-GtkIconView.html" title="Migrating from GnomeIconList to GtkIconView">
         | 
| 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">
         | 
| @@ -16,10 +16,10 @@ | |
| 16 16 | 
             
            <td><a accesskey="p" href="migrating-GtkCombo.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 17 17 | 
             
            <td><a accesskey="u" href="gtk-migrating-GtkComboBox.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 19 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 19 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 20 20 | 
             
            <td><a accesskey="n" href="gtk-migrating-GtkIconView.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 21 21 | 
             
            </tr></table>
         | 
| 22 | 
            -
            <div class="section" | 
| 22 | 
            +
            <div class="section">
         | 
| 23 23 | 
             
            <div class="titlepage"><div><div><h2 class="title" style="clear: both">
         | 
| 24 24 | 
             
            <a name="new-features-GtkComboBox"></a>New features</h2></div></div></div>
         | 
| 25 25 | 
             
            <p>
         | 
| @@ -66,6 +66,6 @@ | |
| 66 66 | 
             
            </div>
         | 
| 67 67 | 
             
            <div class="footer">
         | 
| 68 68 | 
             
            <hr>
         | 
| 69 | 
            -
                      Generated by GTK-Doc V1. | 
| 69 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 70 70 | 
             
            </body>
         | 
| 71 71 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>Part V. GTK+ Tools</title>
         | 
| 6 6 | 
             
            <meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
         | 
| 7 | 
            -
            <link rel="home" href="index.html" title="GTK+ Reference Manual">
         | 
| 8 | 
            -
            <link rel="up" href="index.html" title="GTK+ Reference Manual">
         | 
| 7 | 
            +
            <link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
         | 
| 8 | 
            +
            <link rel="up" href="index.html" title="GTK+ 2 Reference Manual">
         | 
| 9 9 | 
             
            <link rel="prev" href="gtk-migrating-ClientSideWindows.html" title="Migrating to client-side windows">
         | 
| 10 10 | 
             
            <link rel="next" href="gtk-query-immodules-2.0.html" title="gtk-query-immodules-2.0">
         | 
| 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">
         | 
| @@ -16,12 +16,12 @@ | |
| 16 16 | 
             
            <td><a accesskey="p" href="gtk-migrating-ClientSideWindows.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 17 17 | 
             
            <td> </td>
         | 
| 18 18 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 19 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 19 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 20 20 | 
             
            <td><a accesskey="n" href="gtk-query-immodules-2.0.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 21 21 | 
             
            </tr></table>
         | 
| 22 | 
            -
            <div class="part" | 
| 22 | 
            +
            <div class="part">
         | 
| 23 23 | 
             
            <div class="titlepage"><div><div><h1 class="title">
         | 
| 24 | 
            -
            <a name=" | 
| 24 | 
            +
            <a name="id567467"></a>Part V. GTK+ Tools</h1></div></div></div>
         | 
| 25 25 | 
             
            <div class="toc">
         | 
| 26 26 | 
             
            <p><b>Table of Contents</b></p>
         | 
| 27 27 | 
             
            <dl>
         | 
| @@ -39,6 +39,6 @@ | |
| 39 39 | 
             
            </div>
         | 
| 40 40 | 
             
            <div class="footer">
         | 
| 41 41 | 
             
            <hr>
         | 
| 42 | 
            -
                      Generated by GTK-Doc V1. | 
| 42 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 43 43 | 
             
            </body>
         | 
| 44 44 | 
             
            </html>
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>Setting the page flow</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="gtk-migrating-GtkAssistant.html" title="Migrating from GnomeDruid to GtkAssistant">
         | 
| 9 9 | 
             
            <link rel="prev" href="decorating-the-assistant-pages.html" title="Decorating the assistant pages">
         | 
| 10 10 | 
             
            <link rel="next" href="gtk-migrating-GtkRecentChooser.html" title="Migrating from EggRecent to GtkRecentChooser">
         | 
| 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">
         | 
| @@ -16,10 +16,10 @@ | |
| 16 16 | 
             
            <td><a accesskey="p" href="decorating-the-assistant-pages.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 17 17 | 
             
            <td><a accesskey="u" href="gtk-migrating-GtkAssistant.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 19 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 19 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 20 20 | 
             
            <td><a accesskey="n" href="gtk-migrating-GtkRecentChooser.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 21 21 | 
             
            </tr></table>
         | 
| 22 | 
            -
            <div class="section" | 
| 22 | 
            +
            <div class="section">
         | 
| 23 23 | 
             
            <div class="titlepage"><div><div><h2 class="title" style="clear: both">
         | 
| 24 24 | 
             
            <a name="setting-the-page-flow"></a>Setting the page flow</h2></div></div></div>
         | 
| 25 25 | 
             
            <p>
         | 
| @@ -72,6 +72,6 @@ forward_page_function (gint     current_page, | |
| 72 72 | 
             
            </div>
         | 
| 73 73 | 
             
            <div class="footer">
         | 
| 74 74 | 
             
            <hr>
         | 
| 75 | 
            -
                      Generated by GTK-Doc V1. | 
| 75 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 76 76 | 
             
            </body>
         | 
| 77 77 | 
             
            </html>
         | 
| @@ -32,8 +32,9 @@ | |
| 32 32 | 
             
              /* this is needed so that the local anchors are displayed below the naviagtion */
         | 
| 33 33 | 
             
              div.footnote a[name], div.refnamediv a[name], div.refsect1 a[name], div.refsect2 a[name], div.index a[name], div.glossary a[name], div.sect1 a[name]
         | 
| 34 34 | 
             
              {
         | 
| 35 | 
            +
                display: inline-block;
         | 
| 35 36 | 
             
                position: relative;
         | 
| 36 | 
            -
                 | 
| 37 | 
            +
                top:-5em;
         | 
| 37 38 | 
             
              }
         | 
| 38 39 | 
             
              /* this seems to be a bug in the xsl style sheets when generating indexes */
         | 
| 39 40 | 
             
              div.index div.index
         | 
| 
            File without changes
         | 
| @@ -4,11 +4,11 @@ | |
| 4 4 | 
             
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
         | 
| 5 5 | 
             
            <title>User Interface Manager Object</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="gtk-migrating-GtkAction.html" title="Migrating from old menu and toolbar systems to GtkAction">
         | 
| 9 9 | 
             
            <link rel="prev" href="gtk-migrating-GtkAction.html" title="Migrating from old menu and toolbar systems to GtkAction">
         | 
| 10 10 | 
             
            <link rel="next" href="migrating-gnomeuiinfo.html" title="Migrating from GnomeUIInfo">
         | 
| 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">
         | 
| @@ -16,10 +16,10 @@ | |
| 16 16 | 
             
            <td><a accesskey="p" href="gtk-migrating-GtkAction.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
         | 
| 17 17 | 
             
            <td><a accesskey="u" href="gtk-migrating-GtkAction.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
         | 
| 18 18 | 
             
            <td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
         | 
| 19 | 
            -
            <th width="100%" align="center">GTK+ Reference Manual</th>
         | 
| 19 | 
            +
            <th width="100%" align="center">GTK+ 2 Reference Manual</th>
         | 
| 20 20 | 
             
            <td><a accesskey="n" href="migrating-gnomeuiinfo.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
         | 
| 21 21 | 
             
            </tr></table>
         | 
| 22 | 
            -
            <div class="section" | 
| 22 | 
            +
            <div class="section">
         | 
| 23 23 | 
             
            <div class="titlepage"><div><div><h2 class="title" style="clear: both">
         | 
| 24 24 | 
             
            <a name="ui-manager"></a>User Interface Manager Object</h2></div></div></div>
         | 
| 25 25 | 
             
            <p>
         | 
| @@ -40,6 +40,6 @@ | |
| 40 40 | 
             
            </div>
         | 
| 41 41 | 
             
            <div class="footer">
         | 
| 42 42 | 
             
            <hr>
         | 
| 43 | 
            -
                      Generated by GTK-Doc V1. | 
| 43 | 
            +
                      Generated by GTK-Doc V1.17</div>
         | 
| 44 44 | 
             
            </body>
         | 
| 45 45 | 
             
            </html>
         | 
| @@ -0,0 +1,1662 @@ | |
| 1 | 
            +
            [Icon Theme]
         | 
| 2 | 
            +
            Name=Hicolor
         | 
| 3 | 
            +
            Comment=Fallback icon theme
         | 
| 4 | 
            +
            Hidden=true
         | 
| 5 | 
            +
            Directories=16x16/actions,16x16/animations,16x16/apps,16x16/categories,16x16/devices,16x16/emblems,16x16/emotes,16x16/filesystems,16x16/intl,16x16/mimetypes,16x16/places,16x16/status,16x16/stock/chart,16x16/stock/code,16x16/stock/data,16x16/stock/form,16x16/stock/image,16x16/stock/io,16x16/stock/media,16x16/stock/navigation,16x16/stock/net,16x16/stock/object,16x16/stock/table,16x16/stock/text,22x22/actions,22x22/animations,22x22/apps,22x22/categories,22x22/devices,22x22/emblems,22x22/emotes,22x22/filesystems,22x22/intl,22x22/mimetypes,22x22/places,22x22/status,22x22/stock/chart,22x22/stock/code,22x22/stock/data,22x22/stock/form,22x22/stock/image,22x22/stock/io,22x22/stock/media,22x22/stock/navigation,22x22/stock/net,22x22/stock/object,22x22/stock/table,22x22/stock/text,24x24/actions,24x24/animations,24x24/apps,24x24/categories,24x24/devices,24x24/emblems,24x24/emotes,24x24/filesystems,24x24/intl,24x24/mimetypes,24x24/places,24x24/status,24x24/stock/chart,24x24/stock/code,24x24/stock/data,24x24/stock/form,24x24/stock/image,24x24/stock/io,24x24/stock/media,24x24/stock/navigation,24x24/stock/net,24x24/stock/object,24x24/stock/table,24x24/stock/text,32x32/actions,32x32/animations,32x32/apps,32x32/categories,32x32/devices,32x32/emblems,32x32/emotes,32x32/filesystems,32x32/intl,32x32/mimetypes,32x32/places,32x32/status,32x32/stock/chart,32x32/stock/code,32x32/stock/data,32x32/stock/form,32x32/stock/image,32x32/stock/io,32x32/stock/media,32x32/stock/navigation,32x32/stock/net,32x32/stock/object,32x32/stock/table,32x32/stock/text,36x36/actions,36x36/animations,36x36/apps,36x36/categories,36x36/devices,36x36/emblems,36x36/emotes,36x36/filesystems,36x36/intl,36x36/mimetypes,36x36/places,36x36/status,36x36/stock/chart,36x36/stock/code,36x36/stock/data,36x36/stock/form,36x36/stock/image,36x36/stock/io,36x36/stock/media,36x36/stock/navigation,36x36/stock/net,36x36/stock/object,36x36/stock/table,36x36/stock/text,48x48/actions,48x48/animations,48x48/apps,48x48/categories,48x48/devices,48x48/emblems,48x48/emotes,48x48/filesystems,48x48/intl,48x48/mimetypes,48x48/places,48x48/status,48x48/stock/chart,48x48/stock/code,48x48/stock/data,48x48/stock/form,48x48/stock/image,48x48/stock/io,48x48/stock/media,48x48/stock/navigation,48x48/stock/net,48x48/stock/object,48x48/stock/table,48x48/stock/text,64x64/actions,64x64/animations,64x64/apps,64x64/categories,64x64/devices,64x64/emblems,64x64/emotes,64x64/filesystems,64x64/intl,64x64/mimetypes,64x64/places,64x64/status,64x64/stock/chart,64x64/stock/code,64x64/stock/data,64x64/stock/form,64x64/stock/image,64x64/stock/io,64x64/stock/media,64x64/stock/navigation,64x64/stock/net,64x64/stock/object,64x64/stock/table,64x64/stock/text,72x72/actions,72x72/animations,72x72/apps,72x72/categories,72x72/devices,72x72/emblems,72x72/emotes,72x72/filesystems,72x72/intl,72x72/mimetypes,72x72/places,72x72/status,72x72/stock/chart,72x72/stock/code,72x72/stock/data,72x72/stock/form,72x72/stock/image,72x72/stock/io,72x72/stock/media,72x72/stock/navigation,72x72/stock/net,72x72/stock/object,72x72/stock/table,72x72/stock/text,96x96/actions,96x96/animations,96x96/apps,96x96/categories,96x96/devices,96x96/emblems,96x96/emotes,96x96/filesystems,96x96/intl,96x96/mimetypes,96x96/places,96x96/status,96x96/stock/chart,96x96/stock/code,96x96/stock/data,96x96/stock/form,96x96/stock/image,96x96/stock/io,96x96/stock/media,96x96/stock/navigation,96x96/stock/net,96x96/stock/object,96x96/stock/table,96x96/stock/text,128x128/actions,128x128/animations,128x128/apps,128x128/categories,128x128/devices,128x128/emblems,128x128/emotes,128x128/filesystems,128x128/intl,128x128/mimetypes,128x128/places,128x128/status,128x128/stock/chart,128x128/stock/code,128x128/stock/data,128x128/stock/form,128x128/stock/image,128x128/stock/io,128x128/stock/media,128x128/stock/navigation,128x128/stock/net,128x128/stock/object,128x128/stock/table,128x128/stock/text,192x192/actions,192x192/animations,192x192/apps,192x192/categories,192x192/devices,192x192/emblems,192x192/emotes,192x192/filesystems,192x192/intl,192x192/mimetypes,192x192/places,192x192/status,192x192/stock/chart,192x192/stock/code,192x192/stock/data,192x192/stock/form,192x192/stock/image,192x192/stock/io,192x192/stock/media,192x192/stock/navigation,192x192/stock/net,192x192/stock/object,192x192/stock/table,192x192/stock/text,256x256/actions,256x256/animations,256x256/apps,256x256/categories,256x256/devices,256x256/emblems,256x256/emotes,256x256/filesystems,256x256/intl,256x256/mimetypes,256x256/places,256x256/status,256x256/stock/chart,256x256/stock/code,256x256/stock/data,256x256/stock/form,256x256/stock/image,256x256/stock/io,256x256/stock/media,256x256/stock/navigation,256x256/stock/net,256x256/stock/object,256x256/stock/table,256x256/stock/text,scalable/actions,scalable/animations,scalable/apps,scalable/categories,scalable/devices,scalable/emblems,scalable/emotes,scalable/filesystems,scalable/intl,scalable/mimetypes,scalable/places,scalable/status,scalable/stock/chart,scalable/stock/code,scalable/stock/data,scalable/stock/form,scalable/stock/image,scalable/stock/io,scalable/stock/media,scalable/stock/navigation,scalable/stock/net,scalable/stock/object,scalable/stock/table,scalable/stock/text
         | 
| 6 | 
            +
             | 
| 7 | 
            +
             | 
| 8 | 
            +
            [16x16/actions]
         | 
| 9 | 
            +
            Size=16
         | 
| 10 | 
            +
            Context=Actions
         | 
| 11 | 
            +
            Type=Threshold
         | 
| 12 | 
            +
             | 
| 13 | 
            +
            [16x16/animations]
         | 
| 14 | 
            +
            Size=16
         | 
| 15 | 
            +
            Context=Animations
         | 
| 16 | 
            +
            Type=Threshold
         | 
| 17 | 
            +
             | 
| 18 | 
            +
            [16x16/apps]
         | 
| 19 | 
            +
            Size=16
         | 
| 20 | 
            +
            Context=Applications
         | 
| 21 | 
            +
            Type=Threshold
         | 
| 22 | 
            +
             | 
| 23 | 
            +
            [16x16/categories]
         | 
| 24 | 
            +
            Size=16
         | 
| 25 | 
            +
            Context=Categories
         | 
| 26 | 
            +
            Type=Threshold
         | 
| 27 | 
            +
             | 
| 28 | 
            +
            [16x16/devices]
         | 
| 29 | 
            +
            Size=16
         | 
| 30 | 
            +
            Context=Devices
         | 
| 31 | 
            +
            Type=Threshold
         | 
| 32 | 
            +
             | 
| 33 | 
            +
            [16x16/emblems]
         | 
| 34 | 
            +
            Size=16
         | 
| 35 | 
            +
            Context=Emblems
         | 
| 36 | 
            +
            Type=Threshold
         | 
| 37 | 
            +
             | 
| 38 | 
            +
            [16x16/emotes]
         | 
| 39 | 
            +
            Size=16
         | 
| 40 | 
            +
            Context=Emotes
         | 
| 41 | 
            +
            Type=Threshold
         | 
| 42 | 
            +
             | 
| 43 | 
            +
            [16x16/filesystems]
         | 
| 44 | 
            +
            Size=16
         | 
| 45 | 
            +
            Context=FileSystems
         | 
| 46 | 
            +
            Type=Threshold
         | 
| 47 | 
            +
             | 
| 48 | 
            +
            [16x16/intl]
         | 
| 49 | 
            +
            Size=16
         | 
| 50 | 
            +
            Context=International
         | 
| 51 | 
            +
            Type=Threshold
         | 
| 52 | 
            +
             | 
| 53 | 
            +
            [16x16/mimetypes]
         | 
| 54 | 
            +
            Size=16
         | 
| 55 | 
            +
            Context=MimeTypes
         | 
| 56 | 
            +
            Type=Threshold
         | 
| 57 | 
            +
             | 
| 58 | 
            +
            [16x16/places]
         | 
| 59 | 
            +
            Size=16
         | 
| 60 | 
            +
            Context=Places
         | 
| 61 | 
            +
            Type=Threshold
         | 
| 62 | 
            +
             | 
| 63 | 
            +
            [16x16/status]
         | 
| 64 | 
            +
            Size=16
         | 
| 65 | 
            +
            Context=Status
         | 
| 66 | 
            +
            Type=Threshold
         | 
| 67 | 
            +
             | 
| 68 | 
            +
            [16x16/stock/chart]
         | 
| 69 | 
            +
            Size=16
         | 
| 70 | 
            +
            Context=Stock
         | 
| 71 | 
            +
            Type=Threshold
         | 
| 72 | 
            +
             | 
| 73 | 
            +
            [16x16/stock/code]
         | 
| 74 | 
            +
            Size=16
         | 
| 75 | 
            +
            Context=Stock
         | 
| 76 | 
            +
            Type=Threshold
         | 
| 77 | 
            +
             | 
| 78 | 
            +
            [16x16/stock/data]
         | 
| 79 | 
            +
            Size=16
         | 
| 80 | 
            +
            Context=Stock
         | 
| 81 | 
            +
            Type=Threshold
         | 
| 82 | 
            +
             | 
| 83 | 
            +
            [16x16/stock/form]
         | 
| 84 | 
            +
            Size=16
         | 
| 85 | 
            +
            Context=Stock
         | 
| 86 | 
            +
            Type=Threshold
         | 
| 87 | 
            +
             | 
| 88 | 
            +
            [16x16/stock/image]
         | 
| 89 | 
            +
            Size=16
         | 
| 90 | 
            +
            Context=Stock
         | 
| 91 | 
            +
            Type=Threshold
         | 
| 92 | 
            +
             | 
| 93 | 
            +
            [16x16/stock/io]
         | 
| 94 | 
            +
            Size=16
         | 
| 95 | 
            +
            Context=Stock
         | 
| 96 | 
            +
            Type=Threshold
         | 
| 97 | 
            +
             | 
| 98 | 
            +
            [16x16/stock/media]
         | 
| 99 | 
            +
            Size=16
         | 
| 100 | 
            +
            Context=Stock
         | 
| 101 | 
            +
            Type=Threshold
         | 
| 102 | 
            +
             | 
| 103 | 
            +
            [16x16/stock/navigation]
         | 
| 104 | 
            +
            Size=16
         | 
| 105 | 
            +
            Context=Stock
         | 
| 106 | 
            +
            Type=Threshold
         | 
| 107 | 
            +
             | 
| 108 | 
            +
            [16x16/stock/net]
         | 
| 109 | 
            +
            Size=16
         | 
| 110 | 
            +
            Context=Stock
         | 
| 111 | 
            +
            Type=Threshold
         | 
| 112 | 
            +
             | 
| 113 | 
            +
            [16x16/stock/object]
         | 
| 114 | 
            +
            Size=16
         | 
| 115 | 
            +
            Context=Stock
         | 
| 116 | 
            +
            Type=Threshold
         | 
| 117 | 
            +
             | 
| 118 | 
            +
            [16x16/stock/table]
         | 
| 119 | 
            +
            Size=16
         | 
| 120 | 
            +
            Context=Stock
         | 
| 121 | 
            +
            Type=Threshold
         | 
| 122 | 
            +
             | 
| 123 | 
            +
            [16x16/stock/text]
         | 
| 124 | 
            +
            Size=16
         | 
| 125 | 
            +
            Context=Stock
         | 
| 126 | 
            +
            Type=Threshold
         | 
| 127 | 
            +
             | 
| 128 | 
            +
            [22x22/actions]
         | 
| 129 | 
            +
            Size=22
         | 
| 130 | 
            +
            Context=Actions
         | 
| 131 | 
            +
            Type=Threshold
         | 
| 132 | 
            +
             | 
| 133 | 
            +
            [22x22/animations]
         | 
| 134 | 
            +
            Size=22
         | 
| 135 | 
            +
            Context=Animations
         | 
| 136 | 
            +
            Type=Threshold
         | 
| 137 | 
            +
             | 
| 138 | 
            +
            [22x22/apps]
         | 
| 139 | 
            +
            Size=22
         | 
| 140 | 
            +
            Context=Applications
         | 
| 141 | 
            +
            Type=Threshold
         | 
| 142 | 
            +
             | 
| 143 | 
            +
            [22x22/categories]
         | 
| 144 | 
            +
            Size=22
         | 
| 145 | 
            +
            Context=Categories
         | 
| 146 | 
            +
            Type=Threshold
         | 
| 147 | 
            +
             | 
| 148 | 
            +
            [22x22/devices]
         | 
| 149 | 
            +
            Size=22
         | 
| 150 | 
            +
            Context=Devices
         | 
| 151 | 
            +
            Type=Threshold
         | 
| 152 | 
            +
             | 
| 153 | 
            +
            [22x22/emblems]
         | 
| 154 | 
            +
            Size=22
         | 
| 155 | 
            +
            Context=Emblems
         | 
| 156 | 
            +
            Type=Threshold
         | 
| 157 | 
            +
             | 
| 158 | 
            +
            [22x22/emotes]
         | 
| 159 | 
            +
            Size=22
         | 
| 160 | 
            +
            Context=Emotes
         | 
| 161 | 
            +
            Type=Threshold
         | 
| 162 | 
            +
             | 
| 163 | 
            +
            [22x22/filesystems]
         | 
| 164 | 
            +
            Size=22
         | 
| 165 | 
            +
            Context=FileSystems
         | 
| 166 | 
            +
            Type=Threshold
         | 
| 167 | 
            +
             | 
| 168 | 
            +
            [22x22/intl]
         | 
| 169 | 
            +
            Size=22
         | 
| 170 | 
            +
            Context=International
         | 
| 171 | 
            +
            Type=Threshold
         | 
| 172 | 
            +
             | 
| 173 | 
            +
            [22x22/mimetypes]
         | 
| 174 | 
            +
            Size=22
         | 
| 175 | 
            +
            Context=MimeTypes
         | 
| 176 | 
            +
            Type=Threshold
         | 
| 177 | 
            +
             | 
| 178 | 
            +
            [22x22/places]
         | 
| 179 | 
            +
            Size=22
         | 
| 180 | 
            +
            Context=Places
         | 
| 181 | 
            +
            Type=Threshold
         | 
| 182 | 
            +
             | 
| 183 | 
            +
            [22x22/status]
         | 
| 184 | 
            +
            Size=22
         | 
| 185 | 
            +
            Context=Status
         | 
| 186 | 
            +
            Type=Threshold
         | 
| 187 | 
            +
             | 
| 188 | 
            +
            [22x22/stock/chart]
         | 
| 189 | 
            +
            Size=22
         | 
| 190 | 
            +
            Context=Stock
         | 
| 191 | 
            +
            Type=Threshold
         | 
| 192 | 
            +
             | 
| 193 | 
            +
            [22x22/stock/code]
         | 
| 194 | 
            +
            Size=22
         | 
| 195 | 
            +
            Context=Stock
         | 
| 196 | 
            +
            Type=Threshold
         | 
| 197 | 
            +
             | 
| 198 | 
            +
            [22x22/stock/data]
         | 
| 199 | 
            +
            Size=22
         | 
| 200 | 
            +
            Context=Stock
         | 
| 201 | 
            +
            Type=Threshold
         | 
| 202 | 
            +
             | 
| 203 | 
            +
            [22x22/stock/form]
         | 
| 204 | 
            +
            Size=22
         | 
| 205 | 
            +
            Context=Stock
         | 
| 206 | 
            +
            Type=Threshold
         | 
| 207 | 
            +
             | 
| 208 | 
            +
            [22x22/stock/image]
         | 
| 209 | 
            +
            Size=22
         | 
| 210 | 
            +
            Context=Stock
         | 
| 211 | 
            +
            Type=Threshold
         | 
| 212 | 
            +
             | 
| 213 | 
            +
            [22x22/stock/io]
         | 
| 214 | 
            +
            Size=22
         | 
| 215 | 
            +
            Context=Stock
         | 
| 216 | 
            +
            Type=Threshold
         | 
| 217 | 
            +
             | 
| 218 | 
            +
            [22x22/stock/media]
         | 
| 219 | 
            +
            Size=22
         | 
| 220 | 
            +
            Context=Stock
         | 
| 221 | 
            +
            Type=Threshold
         | 
| 222 | 
            +
             | 
| 223 | 
            +
            [22x22/stock/navigation]
         | 
| 224 | 
            +
            Size=22
         | 
| 225 | 
            +
            Context=Stock
         | 
| 226 | 
            +
            Type=Threshold
         | 
| 227 | 
            +
             | 
| 228 | 
            +
            [22x22/stock/net]
         | 
| 229 | 
            +
            Size=22
         | 
| 230 | 
            +
            Context=Stock
         | 
| 231 | 
            +
            Type=Threshold
         | 
| 232 | 
            +
             | 
| 233 | 
            +
            [22x22/stock/object]
         | 
| 234 | 
            +
            Size=22
         | 
| 235 | 
            +
            Context=Stock
         | 
| 236 | 
            +
            Type=Threshold
         | 
| 237 | 
            +
             | 
| 238 | 
            +
            [22x22/stock/table]
         | 
| 239 | 
            +
            Size=22
         | 
| 240 | 
            +
            Context=Stock
         | 
| 241 | 
            +
            Type=Threshold
         | 
| 242 | 
            +
             | 
| 243 | 
            +
            [22x22/stock/text]
         | 
| 244 | 
            +
            Size=22
         | 
| 245 | 
            +
            Context=Stock
         | 
| 246 | 
            +
            Type=Threshold
         | 
| 247 | 
            +
             | 
| 248 | 
            +
            [24x24/actions]
         | 
| 249 | 
            +
            Size=24
         | 
| 250 | 
            +
            Context=Actions
         | 
| 251 | 
            +
            Type=Threshold
         | 
| 252 | 
            +
             | 
| 253 | 
            +
            [24x24/animations]
         | 
| 254 | 
            +
            Size=24
         | 
| 255 | 
            +
            Context=Animations
         | 
| 256 | 
            +
            Type=Threshold
         | 
| 257 | 
            +
             | 
| 258 | 
            +
            [24x24/apps]
         | 
| 259 | 
            +
            Size=24
         | 
| 260 | 
            +
            Context=Applications
         | 
| 261 | 
            +
            Type=Threshold
         | 
| 262 | 
            +
             | 
| 263 | 
            +
            [24x24/categories]
         | 
| 264 | 
            +
            Size=24
         | 
| 265 | 
            +
            Context=Categories
         | 
| 266 | 
            +
            Type=Threshold
         | 
| 267 | 
            +
             | 
| 268 | 
            +
            [24x24/devices]
         | 
| 269 | 
            +
            Size=24
         | 
| 270 | 
            +
            Context=Devices
         | 
| 271 | 
            +
            Type=Threshold
         | 
| 272 | 
            +
             | 
| 273 | 
            +
            [24x24/emblems]
         | 
| 274 | 
            +
            Size=24
         | 
| 275 | 
            +
            Context=Emblems
         | 
| 276 | 
            +
            Type=Threshold
         | 
| 277 | 
            +
             | 
| 278 | 
            +
            [24x24/emotes]
         | 
| 279 | 
            +
            Size=24
         | 
| 280 | 
            +
            Context=Emotes
         | 
| 281 | 
            +
            Type=Threshold
         | 
| 282 | 
            +
             | 
| 283 | 
            +
            [24x24/filesystems]
         | 
| 284 | 
            +
            Size=24
         | 
| 285 | 
            +
            Context=FileSystems
         | 
| 286 | 
            +
            Type=Threshold
         | 
| 287 | 
            +
             | 
| 288 | 
            +
            [24x24/intl]
         | 
| 289 | 
            +
            Size=24
         | 
| 290 | 
            +
            Context=International
         | 
| 291 | 
            +
            Type=Threshold
         | 
| 292 | 
            +
             | 
| 293 | 
            +
            [24x24/mimetypes]
         | 
| 294 | 
            +
            Size=24
         | 
| 295 | 
            +
            Context=MimeTypes
         | 
| 296 | 
            +
            Type=Threshold
         | 
| 297 | 
            +
             | 
| 298 | 
            +
            [24x24/places]
         | 
| 299 | 
            +
            Size=24
         | 
| 300 | 
            +
            Context=Places
         | 
| 301 | 
            +
            Type=Threshold
         | 
| 302 | 
            +
             | 
| 303 | 
            +
            [24x24/status]
         | 
| 304 | 
            +
            Size=24
         | 
| 305 | 
            +
            Context=Status
         | 
| 306 | 
            +
            Type=Threshold
         | 
| 307 | 
            +
             | 
| 308 | 
            +
            [24x24/stock/chart]
         | 
| 309 | 
            +
            Size=24
         | 
| 310 | 
            +
            Context=Stock
         | 
| 311 | 
            +
            Type=Threshold
         | 
| 312 | 
            +
             | 
| 313 | 
            +
            [24x24/stock/code]
         | 
| 314 | 
            +
            Size=24
         | 
| 315 | 
            +
            Context=Stock
         | 
| 316 | 
            +
            Type=Threshold
         | 
| 317 | 
            +
             | 
| 318 | 
            +
            [24x24/stock/data]
         | 
| 319 | 
            +
            Size=24
         | 
| 320 | 
            +
            Context=Stock
         | 
| 321 | 
            +
            Type=Threshold
         | 
| 322 | 
            +
             | 
| 323 | 
            +
            [24x24/stock/form]
         | 
| 324 | 
            +
            Size=24
         | 
| 325 | 
            +
            Context=Stock
         | 
| 326 | 
            +
            Type=Threshold
         | 
| 327 | 
            +
             | 
| 328 | 
            +
            [24x24/stock/image]
         | 
| 329 | 
            +
            Size=24
         | 
| 330 | 
            +
            Context=Stock
         | 
| 331 | 
            +
            Type=Threshold
         | 
| 332 | 
            +
             | 
| 333 | 
            +
            [24x24/stock/io]
         | 
| 334 | 
            +
            Size=24
         | 
| 335 | 
            +
            Context=Stock
         | 
| 336 | 
            +
            Type=Threshold
         | 
| 337 | 
            +
             | 
| 338 | 
            +
            [24x24/stock/media]
         | 
| 339 | 
            +
            Size=24
         | 
| 340 | 
            +
            Context=Stock
         | 
| 341 | 
            +
            Type=Threshold
         | 
| 342 | 
            +
             | 
| 343 | 
            +
            [24x24/stock/navigation]
         | 
| 344 | 
            +
            Size=24
         | 
| 345 | 
            +
            Context=Stock
         | 
| 346 | 
            +
            Type=Threshold
         | 
| 347 | 
            +
             | 
| 348 | 
            +
            [24x24/stock/net]
         | 
| 349 | 
            +
            Size=24
         | 
| 350 | 
            +
            Context=Stock
         | 
| 351 | 
            +
            Type=Threshold
         | 
| 352 | 
            +
             | 
| 353 | 
            +
            [24x24/stock/object]
         | 
| 354 | 
            +
            Size=24
         | 
| 355 | 
            +
            Context=Stock
         | 
| 356 | 
            +
            Type=Threshold
         | 
| 357 | 
            +
             | 
| 358 | 
            +
            [24x24/stock/table]
         | 
| 359 | 
            +
            Size=24
         | 
| 360 | 
            +
            Context=Stock
         | 
| 361 | 
            +
            Type=Threshold
         | 
| 362 | 
            +
             | 
| 363 | 
            +
            [24x24/stock/text]
         | 
| 364 | 
            +
            Size=24
         | 
| 365 | 
            +
            Context=Stock
         | 
| 366 | 
            +
            Type=Threshold
         | 
| 367 | 
            +
             | 
| 368 | 
            +
            [32x32/actions]
         | 
| 369 | 
            +
            Size=32
         | 
| 370 | 
            +
            Context=Actions
         | 
| 371 | 
            +
            Type=Threshold
         | 
| 372 | 
            +
             | 
| 373 | 
            +
            [32x32/animations]
         | 
| 374 | 
            +
            Size=32
         | 
| 375 | 
            +
            Context=Animations
         | 
| 376 | 
            +
            Type=Threshold
         | 
| 377 | 
            +
             | 
| 378 | 
            +
            [32x32/apps]
         | 
| 379 | 
            +
            Size=32
         | 
| 380 | 
            +
            Context=Applications
         | 
| 381 | 
            +
            Type=Threshold
         | 
| 382 | 
            +
             | 
| 383 | 
            +
            [32x32/categories]
         | 
| 384 | 
            +
            Size=32
         | 
| 385 | 
            +
            Context=Categories
         | 
| 386 | 
            +
            Type=Threshold
         | 
| 387 | 
            +
             | 
| 388 | 
            +
            [32x32/devices]
         | 
| 389 | 
            +
            Size=32
         | 
| 390 | 
            +
            Context=Devices
         | 
| 391 | 
            +
            Type=Threshold
         | 
| 392 | 
            +
             | 
| 393 | 
            +
            [32x32/emblems]
         | 
| 394 | 
            +
            Size=32
         | 
| 395 | 
            +
            Context=Emblems
         | 
| 396 | 
            +
            Type=Threshold
         | 
| 397 | 
            +
             | 
| 398 | 
            +
            [32x32/emotes]
         | 
| 399 | 
            +
            Size=32
         | 
| 400 | 
            +
            Context=Emotes
         | 
| 401 | 
            +
            Type=Threshold
         | 
| 402 | 
            +
             | 
| 403 | 
            +
            [32x32/filesystems]
         | 
| 404 | 
            +
            Size=32
         | 
| 405 | 
            +
            Context=FileSystems
         | 
| 406 | 
            +
            Type=Threshold
         | 
| 407 | 
            +
             | 
| 408 | 
            +
            [32x32/intl]
         | 
| 409 | 
            +
            Size=32
         | 
| 410 | 
            +
            Context=International
         | 
| 411 | 
            +
            Type=Threshold
         | 
| 412 | 
            +
             | 
| 413 | 
            +
            [32x32/mimetypes]
         | 
| 414 | 
            +
            Size=32
         | 
| 415 | 
            +
            Context=MimeTypes
         | 
| 416 | 
            +
            Type=Threshold
         | 
| 417 | 
            +
             | 
| 418 | 
            +
            [32x32/places]
         | 
| 419 | 
            +
            Size=32
         | 
| 420 | 
            +
            Context=Places
         | 
| 421 | 
            +
            Type=Threshold
         | 
| 422 | 
            +
             | 
| 423 | 
            +
            [32x32/status]
         | 
| 424 | 
            +
            Size=32
         | 
| 425 | 
            +
            Context=Status
         | 
| 426 | 
            +
            Type=Threshold
         | 
| 427 | 
            +
             | 
| 428 | 
            +
            [32x32/stock/chart]
         | 
| 429 | 
            +
            Size=32
         | 
| 430 | 
            +
            Context=Stock
         | 
| 431 | 
            +
            Type=Threshold
         | 
| 432 | 
            +
             | 
| 433 | 
            +
            [32x32/stock/code]
         | 
| 434 | 
            +
            Size=32
         | 
| 435 | 
            +
            Context=Stock
         | 
| 436 | 
            +
            Type=Threshold
         | 
| 437 | 
            +
             | 
| 438 | 
            +
            [32x32/stock/data]
         | 
| 439 | 
            +
            Size=32
         | 
| 440 | 
            +
            Context=Stock
         | 
| 441 | 
            +
            Type=Threshold
         | 
| 442 | 
            +
             | 
| 443 | 
            +
            [32x32/stock/form]
         | 
| 444 | 
            +
            Size=32
         | 
| 445 | 
            +
            Context=Stock
         | 
| 446 | 
            +
            Type=Threshold
         | 
| 447 | 
            +
             | 
| 448 | 
            +
            [32x32/stock/image]
         | 
| 449 | 
            +
            Size=32
         | 
| 450 | 
            +
            Context=Stock
         | 
| 451 | 
            +
            Type=Threshold
         | 
| 452 | 
            +
             | 
| 453 | 
            +
            [32x32/stock/io]
         | 
| 454 | 
            +
            Size=32
         | 
| 455 | 
            +
            Context=Stock
         | 
| 456 | 
            +
            Type=Threshold
         | 
| 457 | 
            +
             | 
| 458 | 
            +
            [32x32/stock/media]
         | 
| 459 | 
            +
            Size=32
         | 
| 460 | 
            +
            Context=Stock
         | 
| 461 | 
            +
            Type=Threshold
         | 
| 462 | 
            +
             | 
| 463 | 
            +
            [32x32/stock/navigation]
         | 
| 464 | 
            +
            Size=32
         | 
| 465 | 
            +
            Context=Stock
         | 
| 466 | 
            +
            Type=Threshold
         | 
| 467 | 
            +
             | 
| 468 | 
            +
            [32x32/stock/net]
         | 
| 469 | 
            +
            Size=32
         | 
| 470 | 
            +
            Context=Stock
         | 
| 471 | 
            +
            Type=Threshold
         | 
| 472 | 
            +
             | 
| 473 | 
            +
            [32x32/stock/object]
         | 
| 474 | 
            +
            Size=32
         | 
| 475 | 
            +
            Context=Stock
         | 
| 476 | 
            +
            Type=Threshold
         | 
| 477 | 
            +
             | 
| 478 | 
            +
            [32x32/stock/table]
         | 
| 479 | 
            +
            Size=32
         | 
| 480 | 
            +
            Context=Stock
         | 
| 481 | 
            +
            Type=Threshold
         | 
| 482 | 
            +
             | 
| 483 | 
            +
            [32x32/stock/text]
         | 
| 484 | 
            +
            Size=32
         | 
| 485 | 
            +
            Context=Stock
         | 
| 486 | 
            +
            Type=Threshold
         | 
| 487 | 
            +
             | 
| 488 | 
            +
            [36x36/actions]
         | 
| 489 | 
            +
            Size=36
         | 
| 490 | 
            +
            Context=Actions
         | 
| 491 | 
            +
            Type=Threshold
         | 
| 492 | 
            +
             | 
| 493 | 
            +
            [36x36/animations]
         | 
| 494 | 
            +
            Size=36
         | 
| 495 | 
            +
            Context=Animations
         | 
| 496 | 
            +
            Type=Threshold
         | 
| 497 | 
            +
             | 
| 498 | 
            +
            [36x36/apps]
         | 
| 499 | 
            +
            Size=36
         | 
| 500 | 
            +
            Context=Applications
         | 
| 501 | 
            +
            Type=Threshold
         | 
| 502 | 
            +
             | 
| 503 | 
            +
            [36x36/categories]
         | 
| 504 | 
            +
            Size=36
         | 
| 505 | 
            +
            Context=Categories
         | 
| 506 | 
            +
            Type=Threshold
         | 
| 507 | 
            +
             | 
| 508 | 
            +
            [36x36/devices]
         | 
| 509 | 
            +
            Size=36
         | 
| 510 | 
            +
            Context=Devices
         | 
| 511 | 
            +
            Type=Threshold
         | 
| 512 | 
            +
             | 
| 513 | 
            +
            [36x36/emblems]
         | 
| 514 | 
            +
            Size=36
         | 
| 515 | 
            +
            Context=Emblems
         | 
| 516 | 
            +
            Type=Threshold
         | 
| 517 | 
            +
             | 
| 518 | 
            +
            [36x36/emotes]
         | 
| 519 | 
            +
            Size=36
         | 
| 520 | 
            +
            Context=Emotes
         | 
| 521 | 
            +
            Type=Threshold
         | 
| 522 | 
            +
             | 
| 523 | 
            +
            [36x36/filesystems]
         | 
| 524 | 
            +
            Size=36
         | 
| 525 | 
            +
            Context=FileSystems
         | 
| 526 | 
            +
            Type=Threshold
         | 
| 527 | 
            +
             | 
| 528 | 
            +
            [36x36/intl]
         | 
| 529 | 
            +
            Size=36
         | 
| 530 | 
            +
            Context=International
         | 
| 531 | 
            +
            Type=Threshold
         | 
| 532 | 
            +
             | 
| 533 | 
            +
            [36x36/mimetypes]
         | 
| 534 | 
            +
            Size=36
         | 
| 535 | 
            +
            Context=MimeTypes
         | 
| 536 | 
            +
            Type=Threshold
         | 
| 537 | 
            +
             | 
| 538 | 
            +
            [36x36/places]
         | 
| 539 | 
            +
            Size=36
         | 
| 540 | 
            +
            Context=Places
         | 
| 541 | 
            +
            Type=Threshold
         | 
| 542 | 
            +
             | 
| 543 | 
            +
            [36x36/status]
         | 
| 544 | 
            +
            Size=36
         | 
| 545 | 
            +
            Context=Status
         | 
| 546 | 
            +
            Type=Threshold
         | 
| 547 | 
            +
             | 
| 548 | 
            +
            [36x36/stock/chart]
         | 
| 549 | 
            +
            Size=36
         | 
| 550 | 
            +
            Context=Stock
         | 
| 551 | 
            +
            Type=Threshold
         | 
| 552 | 
            +
             | 
| 553 | 
            +
            [36x36/stock/code]
         | 
| 554 | 
            +
            Size=36
         | 
| 555 | 
            +
            Context=Stock
         | 
| 556 | 
            +
            Type=Threshold
         | 
| 557 | 
            +
             | 
| 558 | 
            +
            [36x36/stock/data]
         | 
| 559 | 
            +
            Size=36
         | 
| 560 | 
            +
            Context=Stock
         | 
| 561 | 
            +
            Type=Threshold
         | 
| 562 | 
            +
             | 
| 563 | 
            +
            [36x36/stock/form]
         | 
| 564 | 
            +
            Size=36
         | 
| 565 | 
            +
            Context=Stock
         | 
| 566 | 
            +
            Type=Threshold
         | 
| 567 | 
            +
             | 
| 568 | 
            +
            [36x36/stock/image]
         | 
| 569 | 
            +
            Size=36
         | 
| 570 | 
            +
            Context=Stock
         | 
| 571 | 
            +
            Type=Threshold
         | 
| 572 | 
            +
             | 
| 573 | 
            +
            [36x36/stock/io]
         | 
| 574 | 
            +
            Size=36
         | 
| 575 | 
            +
            Context=Stock
         | 
| 576 | 
            +
            Type=Threshold
         | 
| 577 | 
            +
             | 
| 578 | 
            +
            [36x36/stock/media]
         | 
| 579 | 
            +
            Size=36
         | 
| 580 | 
            +
            Context=Stock
         | 
| 581 | 
            +
            Type=Threshold
         | 
| 582 | 
            +
             | 
| 583 | 
            +
            [36x36/stock/navigation]
         | 
| 584 | 
            +
            Size=36
         | 
| 585 | 
            +
            Context=Stock
         | 
| 586 | 
            +
            Type=Threshold
         | 
| 587 | 
            +
             | 
| 588 | 
            +
            [36x36/stock/net]
         | 
| 589 | 
            +
            Size=36
         | 
| 590 | 
            +
            Context=Stock
         | 
| 591 | 
            +
            Type=Threshold
         | 
| 592 | 
            +
             | 
| 593 | 
            +
            [36x36/stock/object]
         | 
| 594 | 
            +
            Size=36
         | 
| 595 | 
            +
            Context=Stock
         | 
| 596 | 
            +
            Type=Threshold
         | 
| 597 | 
            +
             | 
| 598 | 
            +
            [36x36/stock/table]
         | 
| 599 | 
            +
            Size=36
         | 
| 600 | 
            +
            Context=Stock
         | 
| 601 | 
            +
            Type=Threshold
         | 
| 602 | 
            +
             | 
| 603 | 
            +
            [36x36/stock/text]
         | 
| 604 | 
            +
            Size=36
         | 
| 605 | 
            +
            Context=Stock
         | 
| 606 | 
            +
            Type=Threshold
         | 
| 607 | 
            +
             | 
| 608 | 
            +
            [48x48/actions]
         | 
| 609 | 
            +
            Size=48
         | 
| 610 | 
            +
            Context=Actions
         | 
| 611 | 
            +
            Type=Threshold
         | 
| 612 | 
            +
             | 
| 613 | 
            +
            [48x48/animations]
         | 
| 614 | 
            +
            Size=48
         | 
| 615 | 
            +
            Context=Animations
         | 
| 616 | 
            +
            Type=Threshold
         | 
| 617 | 
            +
             | 
| 618 | 
            +
            [48x48/apps]
         | 
| 619 | 
            +
            Size=48
         | 
| 620 | 
            +
            Context=Applications
         | 
| 621 | 
            +
            Type=Threshold
         | 
| 622 | 
            +
             | 
| 623 | 
            +
            [48x48/categories]
         | 
| 624 | 
            +
            Size=48
         | 
| 625 | 
            +
            Context=Categories
         | 
| 626 | 
            +
            Type=Threshold
         | 
| 627 | 
            +
             | 
| 628 | 
            +
            [48x48/devices]
         | 
| 629 | 
            +
            Size=48
         | 
| 630 | 
            +
            Context=Devices
         | 
| 631 | 
            +
            Type=Threshold
         | 
| 632 | 
            +
             | 
| 633 | 
            +
            [48x48/emblems]
         | 
| 634 | 
            +
            Size=48
         | 
| 635 | 
            +
            Context=Emblems
         | 
| 636 | 
            +
            Type=Threshold
         | 
| 637 | 
            +
             | 
| 638 | 
            +
            [48x48/emotes]
         | 
| 639 | 
            +
            Size=48
         | 
| 640 | 
            +
            Context=Emotes
         | 
| 641 | 
            +
            Type=Threshold
         | 
| 642 | 
            +
             | 
| 643 | 
            +
            [48x48/filesystems]
         | 
| 644 | 
            +
            Size=48
         | 
| 645 | 
            +
            Context=FileSystems
         | 
| 646 | 
            +
            Type=Threshold
         | 
| 647 | 
            +
             | 
| 648 | 
            +
            [48x48/intl]
         | 
| 649 | 
            +
            Size=48
         | 
| 650 | 
            +
            Context=International
         | 
| 651 | 
            +
            Type=Threshold
         | 
| 652 | 
            +
             | 
| 653 | 
            +
            [48x48/mimetypes]
         | 
| 654 | 
            +
            Size=48
         | 
| 655 | 
            +
            Context=MimeTypes
         | 
| 656 | 
            +
            Type=Threshold
         | 
| 657 | 
            +
             | 
| 658 | 
            +
            [48x48/places]
         | 
| 659 | 
            +
            Size=48
         | 
| 660 | 
            +
            Context=Places
         | 
| 661 | 
            +
            Type=Threshold
         | 
| 662 | 
            +
             | 
| 663 | 
            +
            [48x48/status]
         | 
| 664 | 
            +
            Size=48
         | 
| 665 | 
            +
            Context=Status
         | 
| 666 | 
            +
            Type=Threshold
         | 
| 667 | 
            +
             | 
| 668 | 
            +
            [48x48/stock/chart]
         | 
| 669 | 
            +
            Size=48
         | 
| 670 | 
            +
            Context=Stock
         | 
| 671 | 
            +
            Type=Threshold
         | 
| 672 | 
            +
             | 
| 673 | 
            +
            [48x48/stock/code]
         | 
| 674 | 
            +
            Size=48
         | 
| 675 | 
            +
            Context=Stock
         | 
| 676 | 
            +
            Type=Threshold
         | 
| 677 | 
            +
             | 
| 678 | 
            +
            [48x48/stock/data]
         | 
| 679 | 
            +
            Size=48
         | 
| 680 | 
            +
            Context=Stock
         | 
| 681 | 
            +
            Type=Threshold
         | 
| 682 | 
            +
             | 
| 683 | 
            +
            [48x48/stock/form]
         | 
| 684 | 
            +
            Size=48
         | 
| 685 | 
            +
            Context=Stock
         | 
| 686 | 
            +
            Type=Threshold
         | 
| 687 | 
            +
             | 
| 688 | 
            +
            [48x48/stock/image]
         | 
| 689 | 
            +
            Size=48
         | 
| 690 | 
            +
            Context=Stock
         | 
| 691 | 
            +
            Type=Threshold
         | 
| 692 | 
            +
             | 
| 693 | 
            +
            [48x48/stock/io]
         | 
| 694 | 
            +
            Size=48
         | 
| 695 | 
            +
            Context=Stock
         | 
| 696 | 
            +
            Type=Threshold
         | 
| 697 | 
            +
             | 
| 698 | 
            +
            [48x48/stock/media]
         | 
| 699 | 
            +
            Size=48
         | 
| 700 | 
            +
            Context=Stock
         | 
| 701 | 
            +
            Type=Threshold
         | 
| 702 | 
            +
             | 
| 703 | 
            +
            [48x48/stock/navigation]
         | 
| 704 | 
            +
            Size=48
         | 
| 705 | 
            +
            Context=Stock
         | 
| 706 | 
            +
            Type=Threshold
         | 
| 707 | 
            +
             | 
| 708 | 
            +
            [48x48/stock/net]
         | 
| 709 | 
            +
            Size=48
         | 
| 710 | 
            +
            Context=Stock
         | 
| 711 | 
            +
            Type=Threshold
         | 
| 712 | 
            +
             | 
| 713 | 
            +
            [48x48/stock/object]
         | 
| 714 | 
            +
            Size=48
         | 
| 715 | 
            +
            Context=Stock
         | 
| 716 | 
            +
            Type=Threshold
         | 
| 717 | 
            +
             | 
| 718 | 
            +
            [48x48/stock/table]
         | 
| 719 | 
            +
            Size=48
         | 
| 720 | 
            +
            Context=Stock
         | 
| 721 | 
            +
            Type=Threshold
         | 
| 722 | 
            +
             | 
| 723 | 
            +
            [48x48/stock/text]
         | 
| 724 | 
            +
            Size=48
         | 
| 725 | 
            +
            Context=Stock
         | 
| 726 | 
            +
            Type=Threshold
         | 
| 727 | 
            +
             | 
| 728 | 
            +
            [64x64/actions]
         | 
| 729 | 
            +
            Size=64
         | 
| 730 | 
            +
            Context=Actions
         | 
| 731 | 
            +
            Type=Threshold
         | 
| 732 | 
            +
             | 
| 733 | 
            +
            [64x64/animations]
         | 
| 734 | 
            +
            Size=64
         | 
| 735 | 
            +
            Context=Animations
         | 
| 736 | 
            +
            Type=Threshold
         | 
| 737 | 
            +
             | 
| 738 | 
            +
            [64x64/apps]
         | 
| 739 | 
            +
            Size=64
         | 
| 740 | 
            +
            Context=Applications
         | 
| 741 | 
            +
            Type=Threshold
         | 
| 742 | 
            +
             | 
| 743 | 
            +
            [64x64/categories]
         | 
| 744 | 
            +
            Size=64
         | 
| 745 | 
            +
            Context=Categories
         | 
| 746 | 
            +
            Type=Threshold
         | 
| 747 | 
            +
             | 
| 748 | 
            +
            [64x64/devices]
         | 
| 749 | 
            +
            Size=64
         | 
| 750 | 
            +
            Context=Devices
         | 
| 751 | 
            +
            Type=Threshold
         | 
| 752 | 
            +
             | 
| 753 | 
            +
            [64x64/emblems]
         | 
| 754 | 
            +
            Size=64
         | 
| 755 | 
            +
            Context=Emblems
         | 
| 756 | 
            +
            Type=Threshold
         | 
| 757 | 
            +
             | 
| 758 | 
            +
            [64x64/emotes]
         | 
| 759 | 
            +
            Size=64
         | 
| 760 | 
            +
            Context=Emotes
         | 
| 761 | 
            +
            Type=Threshold
         | 
| 762 | 
            +
             | 
| 763 | 
            +
            [64x64/filesystems]
         | 
| 764 | 
            +
            Size=64
         | 
| 765 | 
            +
            Context=FileSystems
         | 
| 766 | 
            +
            Type=Threshold
         | 
| 767 | 
            +
             | 
| 768 | 
            +
            [64x64/intl]
         | 
| 769 | 
            +
            Size=64
         | 
| 770 | 
            +
            Context=International
         | 
| 771 | 
            +
            Type=Threshold
         | 
| 772 | 
            +
             | 
| 773 | 
            +
            [64x64/mimetypes]
         | 
| 774 | 
            +
            Size=64
         | 
| 775 | 
            +
            Context=MimeTypes
         | 
| 776 | 
            +
            Type=Threshold
         | 
| 777 | 
            +
             | 
| 778 | 
            +
            [64x64/places]
         | 
| 779 | 
            +
            Size=64
         | 
| 780 | 
            +
            Context=Places
         | 
| 781 | 
            +
            Type=Threshold
         | 
| 782 | 
            +
             | 
| 783 | 
            +
            [64x64/status]
         | 
| 784 | 
            +
            Size=64
         | 
| 785 | 
            +
            Context=Status
         | 
| 786 | 
            +
            Type=Threshold
         | 
| 787 | 
            +
             | 
| 788 | 
            +
            [64x64/stock/chart]
         | 
| 789 | 
            +
            Size=64
         | 
| 790 | 
            +
            Context=Stock
         | 
| 791 | 
            +
            Type=Threshold
         | 
| 792 | 
            +
             | 
| 793 | 
            +
            [64x64/stock/code]
         | 
| 794 | 
            +
            Size=64
         | 
| 795 | 
            +
            Context=Stock
         | 
| 796 | 
            +
            Type=Threshold
         | 
| 797 | 
            +
             | 
| 798 | 
            +
            [64x64/stock/data]
         | 
| 799 | 
            +
            Size=64
         | 
| 800 | 
            +
            Context=Stock
         | 
| 801 | 
            +
            Type=Threshold
         | 
| 802 | 
            +
             | 
| 803 | 
            +
            [64x64/stock/form]
         | 
| 804 | 
            +
            Size=64
         | 
| 805 | 
            +
            Context=Stock
         | 
| 806 | 
            +
            Type=Threshold
         | 
| 807 | 
            +
             | 
| 808 | 
            +
            [64x64/stock/image]
         | 
| 809 | 
            +
            Size=64
         | 
| 810 | 
            +
            Context=Stock
         | 
| 811 | 
            +
            Type=Threshold
         | 
| 812 | 
            +
             | 
| 813 | 
            +
            [64x64/stock/io]
         | 
| 814 | 
            +
            Size=64
         | 
| 815 | 
            +
            Context=Stock
         | 
| 816 | 
            +
            Type=Threshold
         | 
| 817 | 
            +
             | 
| 818 | 
            +
            [64x64/stock/media]
         | 
| 819 | 
            +
            Size=64
         | 
| 820 | 
            +
            Context=Stock
         | 
| 821 | 
            +
            Type=Threshold
         | 
| 822 | 
            +
             | 
| 823 | 
            +
            [64x64/stock/navigation]
         | 
| 824 | 
            +
            Size=64
         | 
| 825 | 
            +
            Context=Stock
         | 
| 826 | 
            +
            Type=Threshold
         | 
| 827 | 
            +
             | 
| 828 | 
            +
            [64x64/stock/net]
         | 
| 829 | 
            +
            Size=64
         | 
| 830 | 
            +
            Context=Stock
         | 
| 831 | 
            +
            Type=Threshold
         | 
| 832 | 
            +
             | 
| 833 | 
            +
            [64x64/stock/object]
         | 
| 834 | 
            +
            Size=64
         | 
| 835 | 
            +
            Context=Stock
         | 
| 836 | 
            +
            Type=Threshold
         | 
| 837 | 
            +
             | 
| 838 | 
            +
            [64x64/stock/table]
         | 
| 839 | 
            +
            Size=64
         | 
| 840 | 
            +
            Context=Stock
         | 
| 841 | 
            +
            Type=Threshold
         | 
| 842 | 
            +
             | 
| 843 | 
            +
            [64x64/stock/text]
         | 
| 844 | 
            +
            Size=64
         | 
| 845 | 
            +
            Context=Stock
         | 
| 846 | 
            +
            Type=Threshold
         | 
| 847 | 
            +
            [72x72/actions]
         | 
| 848 | 
            +
            Size=72
         | 
| 849 | 
            +
            Context=Actions
         | 
| 850 | 
            +
            Type=Threshold
         | 
| 851 | 
            +
             | 
| 852 | 
            +
            [72x72/animations]
         | 
| 853 | 
            +
            Size=72
         | 
| 854 | 
            +
            Context=Animations
         | 
| 855 | 
            +
            Type=Threshold
         | 
| 856 | 
            +
             | 
| 857 | 
            +
            [72x72/apps]
         | 
| 858 | 
            +
            Size=72
         | 
| 859 | 
            +
            Context=Applications
         | 
| 860 | 
            +
            Type=Threshold
         | 
| 861 | 
            +
             | 
| 862 | 
            +
            [72x72/categories]
         | 
| 863 | 
            +
            Size=72
         | 
| 864 | 
            +
            Context=Categories
         | 
| 865 | 
            +
            Type=Threshold
         | 
| 866 | 
            +
             | 
| 867 | 
            +
            [72x72/devices]
         | 
| 868 | 
            +
            Size=72
         | 
| 869 | 
            +
            Context=Devices
         | 
| 870 | 
            +
            Type=Threshold
         | 
| 871 | 
            +
             | 
| 872 | 
            +
            [72x72/emblems]
         | 
| 873 | 
            +
            Size=72
         | 
| 874 | 
            +
            Context=Emblems
         | 
| 875 | 
            +
            Type=Threshold
         | 
| 876 | 
            +
             | 
| 877 | 
            +
            [72x72/emotes]
         | 
| 878 | 
            +
            Size=72
         | 
| 879 | 
            +
            Context=Emotes
         | 
| 880 | 
            +
            Type=Threshold
         | 
| 881 | 
            +
             | 
| 882 | 
            +
            [72x72/filesystems]
         | 
| 883 | 
            +
            Size=72
         | 
| 884 | 
            +
            Context=FileSystems
         | 
| 885 | 
            +
            Type=Threshold
         | 
| 886 | 
            +
             | 
| 887 | 
            +
            [72x72/intl]
         | 
| 888 | 
            +
            Size=72
         | 
| 889 | 
            +
            Context=International
         | 
| 890 | 
            +
            Type=Threshold
         | 
| 891 | 
            +
             | 
| 892 | 
            +
            [72x72/mimetypes]
         | 
| 893 | 
            +
            Size=72
         | 
| 894 | 
            +
            Context=MimeTypes
         | 
| 895 | 
            +
            Type=Threshold
         | 
| 896 | 
            +
             | 
| 897 | 
            +
            [72x72/places]
         | 
| 898 | 
            +
            Size=72
         | 
| 899 | 
            +
            Context=Places
         | 
| 900 | 
            +
            Type=Threshold
         | 
| 901 | 
            +
             | 
| 902 | 
            +
            [72x72/status]
         | 
| 903 | 
            +
            Size=72
         | 
| 904 | 
            +
            Context=Status
         | 
| 905 | 
            +
            Type=Threshold
         | 
| 906 | 
            +
             | 
| 907 | 
            +
            [72x72/stock/chart]
         | 
| 908 | 
            +
            Size=72
         | 
| 909 | 
            +
            Context=Stock
         | 
| 910 | 
            +
            Type=Threshold
         | 
| 911 | 
            +
             | 
| 912 | 
            +
            [72x72/stock/code]
         | 
| 913 | 
            +
            Size=72
         | 
| 914 | 
            +
            Context=Stock
         | 
| 915 | 
            +
            Type=Threshold
         | 
| 916 | 
            +
             | 
| 917 | 
            +
            [72x72/stock/data]
         | 
| 918 | 
            +
            Size=72
         | 
| 919 | 
            +
            Context=Stock
         | 
| 920 | 
            +
            Type=Threshold
         | 
| 921 | 
            +
             | 
| 922 | 
            +
            [72x72/stock/form]
         | 
| 923 | 
            +
            Size=72
         | 
| 924 | 
            +
            Context=Stock
         | 
| 925 | 
            +
            Type=Threshold
         | 
| 926 | 
            +
             | 
| 927 | 
            +
            [72x72/stock/image]
         | 
| 928 | 
            +
            Size=72
         | 
| 929 | 
            +
            Context=Stock
         | 
| 930 | 
            +
            Type=Threshold
         | 
| 931 | 
            +
             | 
| 932 | 
            +
            [72x72/stock/io]
         | 
| 933 | 
            +
            Size=72
         | 
| 934 | 
            +
            Context=Stock
         | 
| 935 | 
            +
            Type=Threshold
         | 
| 936 | 
            +
             | 
| 937 | 
            +
            [72x72/stock/media]
         | 
| 938 | 
            +
            Size=72
         | 
| 939 | 
            +
            Context=Stock
         | 
| 940 | 
            +
            Type=Threshold
         | 
| 941 | 
            +
             | 
| 942 | 
            +
            [72x72/stock/navigation]
         | 
| 943 | 
            +
            Size=72
         | 
| 944 | 
            +
            Context=Stock
         | 
| 945 | 
            +
            Type=Threshold
         | 
| 946 | 
            +
             | 
| 947 | 
            +
            [72x72/stock/net]
         | 
| 948 | 
            +
            Size=72
         | 
| 949 | 
            +
            Context=Stock
         | 
| 950 | 
            +
            Type=Threshold
         | 
| 951 | 
            +
             | 
| 952 | 
            +
            [72x72/stock/object]
         | 
| 953 | 
            +
            Size=72
         | 
| 954 | 
            +
            Context=Stock
         | 
| 955 | 
            +
            Type=Threshold
         | 
| 956 | 
            +
             | 
| 957 | 
            +
            [72x72/stock/table]
         | 
| 958 | 
            +
            Size=72
         | 
| 959 | 
            +
            Context=Stock
         | 
| 960 | 
            +
            Type=Threshold
         | 
| 961 | 
            +
             | 
| 962 | 
            +
            [72x72/stock/text]
         | 
| 963 | 
            +
            Size=72
         | 
| 964 | 
            +
            Context=Stock
         | 
| 965 | 
            +
            Type=Threshold
         | 
| 966 | 
            +
             | 
| 967 | 
            +
            [96x96/actions]
         | 
| 968 | 
            +
            Size=96
         | 
| 969 | 
            +
            Context=Actions
         | 
| 970 | 
            +
            Type=Threshold
         | 
| 971 | 
            +
             | 
| 972 | 
            +
            [96x96/animations]
         | 
| 973 | 
            +
            Size=96
         | 
| 974 | 
            +
            Context=Animations
         | 
| 975 | 
            +
            Type=Threshold
         | 
| 976 | 
            +
             | 
| 977 | 
            +
            [96x96/apps]
         | 
| 978 | 
            +
            Size=96
         | 
| 979 | 
            +
            Context=Applications
         | 
| 980 | 
            +
            Type=Threshold
         | 
| 981 | 
            +
             | 
| 982 | 
            +
            [96x96/categories]
         | 
| 983 | 
            +
            Size=96
         | 
| 984 | 
            +
            Context=Categories
         | 
| 985 | 
            +
            Type=Threshold
         | 
| 986 | 
            +
             | 
| 987 | 
            +
            [96x96/devices]
         | 
| 988 | 
            +
            Size=96
         | 
| 989 | 
            +
            Context=Devices
         | 
| 990 | 
            +
            Type=Threshold
         | 
| 991 | 
            +
             | 
| 992 | 
            +
            [96x96/emblems]
         | 
| 993 | 
            +
            Size=96
         | 
| 994 | 
            +
            Context=Emblems
         | 
| 995 | 
            +
            Type=Threshold
         | 
| 996 | 
            +
             | 
| 997 | 
            +
            [96x96/emotes]
         | 
| 998 | 
            +
            Size=96
         | 
| 999 | 
            +
            Context=Emotes
         | 
| 1000 | 
            +
            Type=Threshold
         | 
| 1001 | 
            +
             | 
| 1002 | 
            +
            [96x96/filesystems]
         | 
| 1003 | 
            +
            Size=96
         | 
| 1004 | 
            +
            Context=FileSystems
         | 
| 1005 | 
            +
            Type=Threshold
         | 
| 1006 | 
            +
             | 
| 1007 | 
            +
            [96x96/intl]
         | 
| 1008 | 
            +
            Size=96
         | 
| 1009 | 
            +
            Context=International
         | 
| 1010 | 
            +
            Type=Threshold
         | 
| 1011 | 
            +
             | 
| 1012 | 
            +
            [96x96/mimetypes]
         | 
| 1013 | 
            +
            Size=96
         | 
| 1014 | 
            +
            Context=MimeTypes
         | 
| 1015 | 
            +
            Type=Threshold
         | 
| 1016 | 
            +
             | 
| 1017 | 
            +
            [96x96/places]
         | 
| 1018 | 
            +
            Size=96
         | 
| 1019 | 
            +
            Context=Places
         | 
| 1020 | 
            +
            Type=Threshold
         | 
| 1021 | 
            +
             | 
| 1022 | 
            +
            [96x96/status]
         | 
| 1023 | 
            +
            Size=96
         | 
| 1024 | 
            +
            Context=Status
         | 
| 1025 | 
            +
            Type=Threshold
         | 
| 1026 | 
            +
             | 
| 1027 | 
            +
            [96x96/stock/chart]
         | 
| 1028 | 
            +
            Size=96
         | 
| 1029 | 
            +
            Context=Stock
         | 
| 1030 | 
            +
            Type=Threshold
         | 
| 1031 | 
            +
             | 
| 1032 | 
            +
            [96x96/stock/code]
         | 
| 1033 | 
            +
            Size=96
         | 
| 1034 | 
            +
            Context=Stock
         | 
| 1035 | 
            +
            Type=Threshold
         | 
| 1036 | 
            +
             | 
| 1037 | 
            +
            [96x96/stock/data]
         | 
| 1038 | 
            +
            Size=96
         | 
| 1039 | 
            +
            Context=Stock
         | 
| 1040 | 
            +
            Type=Threshold
         | 
| 1041 | 
            +
             | 
| 1042 | 
            +
            [96x96/stock/form]
         | 
| 1043 | 
            +
            Size=96
         | 
| 1044 | 
            +
            Context=Stock
         | 
| 1045 | 
            +
            Type=Threshold
         | 
| 1046 | 
            +
             | 
| 1047 | 
            +
            [96x96/stock/image]
         | 
| 1048 | 
            +
            Size=96
         | 
| 1049 | 
            +
            Context=Stock
         | 
| 1050 | 
            +
            Type=Threshold
         | 
| 1051 | 
            +
             | 
| 1052 | 
            +
            [96x96/stock/io]
         | 
| 1053 | 
            +
            Size=96
         | 
| 1054 | 
            +
            Context=Stock
         | 
| 1055 | 
            +
            Type=Threshold
         | 
| 1056 | 
            +
             | 
| 1057 | 
            +
            [96x96/stock/media]
         | 
| 1058 | 
            +
            Size=96
         | 
| 1059 | 
            +
            Context=Stock
         | 
| 1060 | 
            +
            Type=Threshold
         | 
| 1061 | 
            +
             | 
| 1062 | 
            +
            [96x96/stock/navigation]
         | 
| 1063 | 
            +
            Size=96
         | 
| 1064 | 
            +
            Context=Stock
         | 
| 1065 | 
            +
            Type=Threshold
         | 
| 1066 | 
            +
             | 
| 1067 | 
            +
            [96x96/stock/net]
         | 
| 1068 | 
            +
            Size=96
         | 
| 1069 | 
            +
            Context=Stock
         | 
| 1070 | 
            +
            Type=Threshold
         | 
| 1071 | 
            +
             | 
| 1072 | 
            +
            [96x96/stock/object]
         | 
| 1073 | 
            +
            Size=96
         | 
| 1074 | 
            +
            Context=Stock
         | 
| 1075 | 
            +
            Type=Threshold
         | 
| 1076 | 
            +
             | 
| 1077 | 
            +
            [96x96/stock/table]
         | 
| 1078 | 
            +
            Size=96
         | 
| 1079 | 
            +
            Context=Stock
         | 
| 1080 | 
            +
            Type=Threshold
         | 
| 1081 | 
            +
             | 
| 1082 | 
            +
            [96x96/stock/text]
         | 
| 1083 | 
            +
            Size=96
         | 
| 1084 | 
            +
            Context=Stock
         | 
| 1085 | 
            +
            Type=Threshold
         | 
| 1086 | 
            +
             | 
| 1087 | 
            +
            [128x128/actions]
         | 
| 1088 | 
            +
            Size=128
         | 
| 1089 | 
            +
            Context=Actions
         | 
| 1090 | 
            +
            Type=Threshold
         | 
| 1091 | 
            +
             | 
| 1092 | 
            +
            [128x128/animations]
         | 
| 1093 | 
            +
            Size=128
         | 
| 1094 | 
            +
            Context=Animations
         | 
| 1095 | 
            +
            Type=Threshold
         | 
| 1096 | 
            +
             | 
| 1097 | 
            +
            [128x128/apps]
         | 
| 1098 | 
            +
            Size=128
         | 
| 1099 | 
            +
            Context=Applications
         | 
| 1100 | 
            +
            Type=Threshold
         | 
| 1101 | 
            +
             | 
| 1102 | 
            +
            [128x128/categories]
         | 
| 1103 | 
            +
            Size=128
         | 
| 1104 | 
            +
            Context=Categories
         | 
| 1105 | 
            +
            Type=Threshold
         | 
| 1106 | 
            +
             | 
| 1107 | 
            +
            [128x128/devices]
         | 
| 1108 | 
            +
            Size=128
         | 
| 1109 | 
            +
            Context=Devices
         | 
| 1110 | 
            +
            Type=Threshold
         | 
| 1111 | 
            +
             | 
| 1112 | 
            +
            [128x128/emblems]
         | 
| 1113 | 
            +
            Size=128
         | 
| 1114 | 
            +
            Context=Emblems
         | 
| 1115 | 
            +
            Type=Threshold
         | 
| 1116 | 
            +
             | 
| 1117 | 
            +
            [128x128/emotes]
         | 
| 1118 | 
            +
            Size=128
         | 
| 1119 | 
            +
            Context=Emotes
         | 
| 1120 | 
            +
            Type=Threshold
         | 
| 1121 | 
            +
             | 
| 1122 | 
            +
            [128x128/filesystems]
         | 
| 1123 | 
            +
            Size=128
         | 
| 1124 | 
            +
            Context=FileSystems
         | 
| 1125 | 
            +
            Type=Threshold
         | 
| 1126 | 
            +
             | 
| 1127 | 
            +
            [128x128/intl]
         | 
| 1128 | 
            +
            Size=128
         | 
| 1129 | 
            +
            Context=International
         | 
| 1130 | 
            +
            Type=Threshold
         | 
| 1131 | 
            +
             | 
| 1132 | 
            +
            [128x128/mimetypes]
         | 
| 1133 | 
            +
            Size=128
         | 
| 1134 | 
            +
            Context=MimeTypes
         | 
| 1135 | 
            +
            Type=Threshold
         | 
| 1136 | 
            +
             | 
| 1137 | 
            +
            [128x128/places]
         | 
| 1138 | 
            +
            Size=128
         | 
| 1139 | 
            +
            Context=Places
         | 
| 1140 | 
            +
            Type=Threshold
         | 
| 1141 | 
            +
             | 
| 1142 | 
            +
            [128x128/status]
         | 
| 1143 | 
            +
            Size=128
         | 
| 1144 | 
            +
            Context=Status
         | 
| 1145 | 
            +
            Type=Threshold
         | 
| 1146 | 
            +
             | 
| 1147 | 
            +
            [128x128/stock/chart]
         | 
| 1148 | 
            +
            Size=128
         | 
| 1149 | 
            +
            Context=Stock
         | 
| 1150 | 
            +
            Type=Threshold
         | 
| 1151 | 
            +
             | 
| 1152 | 
            +
            [128x128/stock/code]
         | 
| 1153 | 
            +
            Size=128
         | 
| 1154 | 
            +
            Context=Stock
         | 
| 1155 | 
            +
            Type=Threshold
         | 
| 1156 | 
            +
             | 
| 1157 | 
            +
            [128x128/stock/data]
         | 
| 1158 | 
            +
            Size=128
         | 
| 1159 | 
            +
            Context=Stock
         | 
| 1160 | 
            +
            Type=Threshold
         | 
| 1161 | 
            +
             | 
| 1162 | 
            +
            [128x128/stock/form]
         | 
| 1163 | 
            +
            Size=128
         | 
| 1164 | 
            +
            Context=Stock
         | 
| 1165 | 
            +
            Type=Threshold
         | 
| 1166 | 
            +
             | 
| 1167 | 
            +
            [128x128/stock/image]
         | 
| 1168 | 
            +
            Size=128
         | 
| 1169 | 
            +
            Context=Stock
         | 
| 1170 | 
            +
            Type=Threshold
         | 
| 1171 | 
            +
             | 
| 1172 | 
            +
            [128x128/stock/io]
         | 
| 1173 | 
            +
            Size=128
         | 
| 1174 | 
            +
            Context=Stock
         | 
| 1175 | 
            +
            Type=Threshold
         | 
| 1176 | 
            +
             | 
| 1177 | 
            +
            [128x128/stock/media]
         | 
| 1178 | 
            +
            Size=128
         | 
| 1179 | 
            +
            Context=Stock
         | 
| 1180 | 
            +
            Type=Threshold
         | 
| 1181 | 
            +
             | 
| 1182 | 
            +
            [128x128/stock/navigation]
         | 
| 1183 | 
            +
            Size=128
         | 
| 1184 | 
            +
            Context=Stock
         | 
| 1185 | 
            +
            Type=Threshold
         | 
| 1186 | 
            +
             | 
| 1187 | 
            +
            [128x128/stock/net]
         | 
| 1188 | 
            +
            Size=128
         | 
| 1189 | 
            +
            Context=Stock
         | 
| 1190 | 
            +
            Type=Threshold
         | 
| 1191 | 
            +
             | 
| 1192 | 
            +
            [128x128/stock/object]
         | 
| 1193 | 
            +
            Size=128
         | 
| 1194 | 
            +
            Context=Stock
         | 
| 1195 | 
            +
            Type=Threshold
         | 
| 1196 | 
            +
             | 
| 1197 | 
            +
            [128x128/stock/table]
         | 
| 1198 | 
            +
            Size=128
         | 
| 1199 | 
            +
            Context=Stock
         | 
| 1200 | 
            +
            Type=Threshold
         | 
| 1201 | 
            +
             | 
| 1202 | 
            +
            [128x128/stock/text]
         | 
| 1203 | 
            +
            Size=128
         | 
| 1204 | 
            +
            Context=Stock
         | 
| 1205 | 
            +
            Type=Threshold
         | 
| 1206 | 
            +
             | 
| 1207 | 
            +
            [192x192/actions]
         | 
| 1208 | 
            +
            Size=192
         | 
| 1209 | 
            +
            Context=Actions
         | 
| 1210 | 
            +
            Type=Threshold
         | 
| 1211 | 
            +
             | 
| 1212 | 
            +
            [192x192/animations]
         | 
| 1213 | 
            +
            Size=192
         | 
| 1214 | 
            +
            Context=Animations
         | 
| 1215 | 
            +
            Type=Threshold
         | 
| 1216 | 
            +
             | 
| 1217 | 
            +
            [192x192/apps]
         | 
| 1218 | 
            +
            Size=192
         | 
| 1219 | 
            +
            Context=Applications
         | 
| 1220 | 
            +
            Type=Threshold
         | 
| 1221 | 
            +
             | 
| 1222 | 
            +
            [192x192/categories]
         | 
| 1223 | 
            +
            Size=192
         | 
| 1224 | 
            +
            Context=Categories
         | 
| 1225 | 
            +
            Type=Threshold
         | 
| 1226 | 
            +
             | 
| 1227 | 
            +
            [192x192/devices]
         | 
| 1228 | 
            +
            Size=192
         | 
| 1229 | 
            +
            Context=Devices
         | 
| 1230 | 
            +
            Type=Threshold
         | 
| 1231 | 
            +
             | 
| 1232 | 
            +
            [192x192/emblems]
         | 
| 1233 | 
            +
            Size=192
         | 
| 1234 | 
            +
            Context=Emblems
         | 
| 1235 | 
            +
            Type=Threshold
         | 
| 1236 | 
            +
             | 
| 1237 | 
            +
            [192x192/emotes]
         | 
| 1238 | 
            +
            Size=192
         | 
| 1239 | 
            +
            Context=Emotes
         | 
| 1240 | 
            +
            Type=Threshold
         | 
| 1241 | 
            +
             | 
| 1242 | 
            +
            [192x192/filesystems]
         | 
| 1243 | 
            +
            Size=192
         | 
| 1244 | 
            +
            Context=FileSystems
         | 
| 1245 | 
            +
            Type=Threshold
         | 
| 1246 | 
            +
             | 
| 1247 | 
            +
            [192x192/intl]
         | 
| 1248 | 
            +
            Size=192
         | 
| 1249 | 
            +
            Context=International
         | 
| 1250 | 
            +
            Type=Threshold
         | 
| 1251 | 
            +
             | 
| 1252 | 
            +
            [192x192/mimetypes]
         | 
| 1253 | 
            +
            Size=192
         | 
| 1254 | 
            +
            Context=MimeTypes
         | 
| 1255 | 
            +
            Type=Threshold
         | 
| 1256 | 
            +
             | 
| 1257 | 
            +
            [192x192/places]
         | 
| 1258 | 
            +
            Size=192
         | 
| 1259 | 
            +
            Context=Places
         | 
| 1260 | 
            +
            Type=Threshold
         | 
| 1261 | 
            +
             | 
| 1262 | 
            +
            [192x192/status]
         | 
| 1263 | 
            +
            Size=192
         | 
| 1264 | 
            +
            Context=Status
         | 
| 1265 | 
            +
            Type=Threshold
         | 
| 1266 | 
            +
             | 
| 1267 | 
            +
            [192x192/stock/chart]
         | 
| 1268 | 
            +
            Size=192
         | 
| 1269 | 
            +
            Context=Stock
         | 
| 1270 | 
            +
            Type=Threshold
         | 
| 1271 | 
            +
             | 
| 1272 | 
            +
            [192x192/stock/code]
         | 
| 1273 | 
            +
            Size=192
         | 
| 1274 | 
            +
            Context=Stock
         | 
| 1275 | 
            +
            Type=Threshold
         | 
| 1276 | 
            +
             | 
| 1277 | 
            +
            [192x192/stock/data]
         | 
| 1278 | 
            +
            Size=192
         | 
| 1279 | 
            +
            Context=Stock
         | 
| 1280 | 
            +
            Type=Threshold
         | 
| 1281 | 
            +
             | 
| 1282 | 
            +
            [192x192/stock/form]
         | 
| 1283 | 
            +
            Size=192
         | 
| 1284 | 
            +
            Context=Stock
         | 
| 1285 | 
            +
            Type=Threshold
         | 
| 1286 | 
            +
             | 
| 1287 | 
            +
            [192x192/stock/image]
         | 
| 1288 | 
            +
            Size=192
         | 
| 1289 | 
            +
            Context=Stock
         | 
| 1290 | 
            +
            Type=Threshold
         | 
| 1291 | 
            +
             | 
| 1292 | 
            +
            [192x192/stock/io]
         | 
| 1293 | 
            +
            Size=192
         | 
| 1294 | 
            +
            Context=Stock
         | 
| 1295 | 
            +
            Type=Threshold
         | 
| 1296 | 
            +
             | 
| 1297 | 
            +
            [192x192/stock/media]
         | 
| 1298 | 
            +
            Size=192
         | 
| 1299 | 
            +
            Context=Stock
         | 
| 1300 | 
            +
            Type=Threshold
         | 
| 1301 | 
            +
             | 
| 1302 | 
            +
            [192x192/stock/navigation]
         | 
| 1303 | 
            +
            Size=192
         | 
| 1304 | 
            +
            Context=Stock
         | 
| 1305 | 
            +
            Type=Threshold
         | 
| 1306 | 
            +
             | 
| 1307 | 
            +
            [192x192/stock/net]
         | 
| 1308 | 
            +
            Size=192
         | 
| 1309 | 
            +
            Context=Stock
         | 
| 1310 | 
            +
            Type=Threshold
         | 
| 1311 | 
            +
             | 
| 1312 | 
            +
            [192x192/stock/object]
         | 
| 1313 | 
            +
            Size=192
         | 
| 1314 | 
            +
            Context=Stock
         | 
| 1315 | 
            +
            Type=Threshold
         | 
| 1316 | 
            +
             | 
| 1317 | 
            +
            [192x192/stock/table]
         | 
| 1318 | 
            +
            Size=192
         | 
| 1319 | 
            +
            Context=Stock
         | 
| 1320 | 
            +
            Type=Threshold
         | 
| 1321 | 
            +
             | 
| 1322 | 
            +
            [192x192/stock/text]
         | 
| 1323 | 
            +
            Size=192
         | 
| 1324 | 
            +
            Context=Stock
         | 
| 1325 | 
            +
            Type=Threshold
         | 
| 1326 | 
            +
             | 
| 1327 | 
            +
            [256x256/actions]
         | 
| 1328 | 
            +
            MinSize=64
         | 
| 1329 | 
            +
            Size=256
         | 
| 1330 | 
            +
            MaxSize=256
         | 
| 1331 | 
            +
            Context=Actions
         | 
| 1332 | 
            +
            Type=Scalable
         | 
| 1333 | 
            +
             | 
| 1334 | 
            +
            [256x256/animations]
         | 
| 1335 | 
            +
            MinSize=64
         | 
| 1336 | 
            +
            Size=256
         | 
| 1337 | 
            +
            MaxSize=256
         | 
| 1338 | 
            +
            Context=Animations
         | 
| 1339 | 
            +
            Type=Scalable
         | 
| 1340 | 
            +
             | 
| 1341 | 
            +
            [256x256/apps]
         | 
| 1342 | 
            +
            MinSize=64
         | 
| 1343 | 
            +
            Size=256
         | 
| 1344 | 
            +
            MaxSize=256
         | 
| 1345 | 
            +
            Context=Applications
         | 
| 1346 | 
            +
            Type=Scalable
         | 
| 1347 | 
            +
             | 
| 1348 | 
            +
            [256x256/categories]
         | 
| 1349 | 
            +
            MinSize=64
         | 
| 1350 | 
            +
            Size=256
         | 
| 1351 | 
            +
            MaxSize=256
         | 
| 1352 | 
            +
            Context=Categories
         | 
| 1353 | 
            +
            Type=Scalable
         | 
| 1354 | 
            +
             | 
| 1355 | 
            +
            [256x256/devices]
         | 
| 1356 | 
            +
            MinSize=64
         | 
| 1357 | 
            +
            Size=256
         | 
| 1358 | 
            +
            MaxSize=256
         | 
| 1359 | 
            +
            Context=Devices
         | 
| 1360 | 
            +
            Type=Scalable
         | 
| 1361 | 
            +
             | 
| 1362 | 
            +
            [256x256/emblems]
         | 
| 1363 | 
            +
            MinSize=64
         | 
| 1364 | 
            +
            Size=256
         | 
| 1365 | 
            +
            MaxSize=256
         | 
| 1366 | 
            +
            Context=Emblems
         | 
| 1367 | 
            +
            Type=Scalable
         | 
| 1368 | 
            +
             | 
| 1369 | 
            +
            [256x256/emotes]
         | 
| 1370 | 
            +
            MinSize=64
         | 
| 1371 | 
            +
            Size=256
         | 
| 1372 | 
            +
            MaxSize=256
         | 
| 1373 | 
            +
            Context=Emotes
         | 
| 1374 | 
            +
            Type=Scalable
         | 
| 1375 | 
            +
             | 
| 1376 | 
            +
            [256x256/filesystems]
         | 
| 1377 | 
            +
            MinSize=64
         | 
| 1378 | 
            +
            Size=256
         | 
| 1379 | 
            +
            MaxSize=256
         | 
| 1380 | 
            +
            Context=FileSystems
         | 
| 1381 | 
            +
            Type=Scalable
         | 
| 1382 | 
            +
             | 
| 1383 | 
            +
            [256x256/intl]
         | 
| 1384 | 
            +
            MinSize=64
         | 
| 1385 | 
            +
            Size=256
         | 
| 1386 | 
            +
            MaxSize=256
         | 
| 1387 | 
            +
            Context=International
         | 
| 1388 | 
            +
            Type=Scalable
         | 
| 1389 | 
            +
             | 
| 1390 | 
            +
            [256x256/mimetypes]
         | 
| 1391 | 
            +
            MinSize=64
         | 
| 1392 | 
            +
            Size=256
         | 
| 1393 | 
            +
            MaxSize=256
         | 
| 1394 | 
            +
            Context=MimeTypes
         | 
| 1395 | 
            +
            Type=Scalable
         | 
| 1396 | 
            +
             | 
| 1397 | 
            +
            [256x256/places]
         | 
| 1398 | 
            +
            MinSize=64
         | 
| 1399 | 
            +
            Size=256
         | 
| 1400 | 
            +
            MaxSize=256
         | 
| 1401 | 
            +
            Context=Places
         | 
| 1402 | 
            +
            Type=Scalable
         | 
| 1403 | 
            +
             | 
| 1404 | 
            +
            [256x256/status]
         | 
| 1405 | 
            +
            MinSize=64
         | 
| 1406 | 
            +
            Size=256
         | 
| 1407 | 
            +
            MaxSize=256
         | 
| 1408 | 
            +
            Context=Status
         | 
| 1409 | 
            +
            Type=Scalable
         | 
| 1410 | 
            +
             | 
| 1411 | 
            +
            [256x256/stock/chart]
         | 
| 1412 | 
            +
            MinSize=64
         | 
| 1413 | 
            +
            Size=256
         | 
| 1414 | 
            +
            MaxSize=256
         | 
| 1415 | 
            +
            Context=Stock
         | 
| 1416 | 
            +
            Type=Scalable
         | 
| 1417 | 
            +
             | 
| 1418 | 
            +
            [256x256/stock/code]
         | 
| 1419 | 
            +
            MinSize=64
         | 
| 1420 | 
            +
            Size=256
         | 
| 1421 | 
            +
            MaxSize=256
         | 
| 1422 | 
            +
            Context=Stock
         | 
| 1423 | 
            +
            Type=Scalable
         | 
| 1424 | 
            +
             | 
| 1425 | 
            +
            [256x256/stock/data]
         | 
| 1426 | 
            +
            MinSize=64
         | 
| 1427 | 
            +
            Size=256
         | 
| 1428 | 
            +
            MaxSize=256
         | 
| 1429 | 
            +
            Context=Stock
         | 
| 1430 | 
            +
            Type=Scalable
         | 
| 1431 | 
            +
             | 
| 1432 | 
            +
            [256x256/stock/form]
         | 
| 1433 | 
            +
            MinSize=64
         | 
| 1434 | 
            +
            Size=256
         | 
| 1435 | 
            +
            MaxSize=256
         | 
| 1436 | 
            +
            Context=Stock
         | 
| 1437 | 
            +
            Type=Scalable
         | 
| 1438 | 
            +
             | 
| 1439 | 
            +
            [256x256/stock/image]
         | 
| 1440 | 
            +
            MinSize=64
         | 
| 1441 | 
            +
            Size=256
         | 
| 1442 | 
            +
            MaxSize=256
         | 
| 1443 | 
            +
            Context=Stock
         | 
| 1444 | 
            +
            Type=Scalable
         | 
| 1445 | 
            +
             | 
| 1446 | 
            +
            [256x256/stock/io]
         | 
| 1447 | 
            +
            MinSize=64
         | 
| 1448 | 
            +
            Size=256
         | 
| 1449 | 
            +
            MaxSize=256
         | 
| 1450 | 
            +
            Context=Stock
         | 
| 1451 | 
            +
            Type=Scalable
         | 
| 1452 | 
            +
             | 
| 1453 | 
            +
            [256x256/stock/media]
         | 
| 1454 | 
            +
            MinSize=64
         | 
| 1455 | 
            +
            Size=256
         | 
| 1456 | 
            +
            MaxSize=256
         | 
| 1457 | 
            +
            Context=Stock
         | 
| 1458 | 
            +
            Type=Scalable
         | 
| 1459 | 
            +
             | 
| 1460 | 
            +
            [256x256/stock/navigation]
         | 
| 1461 | 
            +
            MinSize=64
         | 
| 1462 | 
            +
            Size=256
         | 
| 1463 | 
            +
            MaxSize=256
         | 
| 1464 | 
            +
            Context=Stock
         | 
| 1465 | 
            +
            Type=Scalable
         | 
| 1466 | 
            +
             | 
| 1467 | 
            +
            [256x256/stock/net]
         | 
| 1468 | 
            +
            MinSize=64
         | 
| 1469 | 
            +
            Size=256
         | 
| 1470 | 
            +
            MaxSize=256
         | 
| 1471 | 
            +
            Context=Stock
         | 
| 1472 | 
            +
            Type=Scalable
         | 
| 1473 | 
            +
             | 
| 1474 | 
            +
            [256x256/stock/object]
         | 
| 1475 | 
            +
            MinSize=64
         | 
| 1476 | 
            +
            Size=256
         | 
| 1477 | 
            +
            MaxSize=256
         | 
| 1478 | 
            +
            Context=Stock
         | 
| 1479 | 
            +
            Type=Scalable
         | 
| 1480 | 
            +
             | 
| 1481 | 
            +
            [256x256/stock/table]
         | 
| 1482 | 
            +
            MinSize=64
         | 
| 1483 | 
            +
            Size=256
         | 
| 1484 | 
            +
            MaxSize=256
         | 
| 1485 | 
            +
            Context=Stock
         | 
| 1486 | 
            +
            Type=Scalable
         | 
| 1487 | 
            +
             | 
| 1488 | 
            +
            [256x256/stock/text]
         | 
| 1489 | 
            +
            MinSize=64
         | 
| 1490 | 
            +
            Size=256
         | 
| 1491 | 
            +
            MaxSize=256
         | 
| 1492 | 
            +
            Context=Stock
         | 
| 1493 | 
            +
            Type=Scalable
         | 
| 1494 | 
            +
             | 
| 1495 | 
            +
            [scalable/actions]
         | 
| 1496 | 
            +
            MinSize=1
         | 
| 1497 | 
            +
            Size=128
         | 
| 1498 | 
            +
            MaxSize=256
         | 
| 1499 | 
            +
            Context=Actions
         | 
| 1500 | 
            +
            Type=Scalable
         | 
| 1501 | 
            +
             | 
| 1502 | 
            +
            [scalable/animations]
         | 
| 1503 | 
            +
            MinSize=1
         | 
| 1504 | 
            +
            Size=128
         | 
| 1505 | 
            +
            MaxSize=256
         | 
| 1506 | 
            +
            Context=Animations
         | 
| 1507 | 
            +
            Type=Scalable
         | 
| 1508 | 
            +
             | 
| 1509 | 
            +
            [scalable/apps]
         | 
| 1510 | 
            +
            MinSize=1
         | 
| 1511 | 
            +
            Size=128
         | 
| 1512 | 
            +
            MaxSize=256
         | 
| 1513 | 
            +
            Context=Applications
         | 
| 1514 | 
            +
            Type=Scalable
         | 
| 1515 | 
            +
             | 
| 1516 | 
            +
            [scalable/categories]
         | 
| 1517 | 
            +
            MinSize=1
         | 
| 1518 | 
            +
            Size=128
         | 
| 1519 | 
            +
            MaxSize=256
         | 
| 1520 | 
            +
            Context=Categories
         | 
| 1521 | 
            +
            Type=Scalable
         | 
| 1522 | 
            +
             | 
| 1523 | 
            +
            [scalable/devices]
         | 
| 1524 | 
            +
            MinSize=1
         | 
| 1525 | 
            +
            Size=128
         | 
| 1526 | 
            +
            MaxSize=256
         | 
| 1527 | 
            +
            Context=Devices
         | 
| 1528 | 
            +
            Type=Scalable
         | 
| 1529 | 
            +
             | 
| 1530 | 
            +
            [scalable/emblems]
         | 
| 1531 | 
            +
            MinSize=1
         | 
| 1532 | 
            +
            Size=128
         | 
| 1533 | 
            +
            MaxSize=256
         | 
| 1534 | 
            +
            Context=Emblems
         | 
| 1535 | 
            +
            Type=Scalable
         | 
| 1536 | 
            +
             | 
| 1537 | 
            +
            [scalable/emotes]
         | 
| 1538 | 
            +
            MinSize=1
         | 
| 1539 | 
            +
            Size=128
         | 
| 1540 | 
            +
            MaxSize=256
         | 
| 1541 | 
            +
            Context=Emotes
         | 
| 1542 | 
            +
            Type=Scalable
         | 
| 1543 | 
            +
             | 
| 1544 | 
            +
            [scalable/filesystems]
         | 
| 1545 | 
            +
            MinSize=1
         | 
| 1546 | 
            +
            Size=128
         | 
| 1547 | 
            +
            MaxSize=256
         | 
| 1548 | 
            +
            Context=FileSystems
         | 
| 1549 | 
            +
            Type=Scalable
         | 
| 1550 | 
            +
             | 
| 1551 | 
            +
            [scalable/intl]
         | 
| 1552 | 
            +
            MinSize=1
         | 
| 1553 | 
            +
            Size=128
         | 
| 1554 | 
            +
            MaxSize=256
         | 
| 1555 | 
            +
            Context=International
         | 
| 1556 | 
            +
            Type=Scalable
         | 
| 1557 | 
            +
             | 
| 1558 | 
            +
            [scalable/mimetypes]
         | 
| 1559 | 
            +
            MinSize=1
         | 
| 1560 | 
            +
            Size=128
         | 
| 1561 | 
            +
            MaxSize=256
         | 
| 1562 | 
            +
            Context=MimeTypes
         | 
| 1563 | 
            +
            Type=Scalable
         | 
| 1564 | 
            +
             | 
| 1565 | 
            +
            [scalable/places]
         | 
| 1566 | 
            +
            MinSize=1
         | 
| 1567 | 
            +
            Size=128
         | 
| 1568 | 
            +
            MaxSize=256
         | 
| 1569 | 
            +
            Context=Places
         | 
| 1570 | 
            +
            Type=Scalable
         | 
| 1571 | 
            +
             | 
| 1572 | 
            +
            [scalable/status]
         | 
| 1573 | 
            +
            MinSize=1
         | 
| 1574 | 
            +
            Size=128
         | 
| 1575 | 
            +
            MaxSize=256
         | 
| 1576 | 
            +
            Context=Status
         | 
| 1577 | 
            +
            Type=Scalable
         | 
| 1578 | 
            +
             | 
| 1579 | 
            +
            [scalable/stock/chart]
         | 
| 1580 | 
            +
            MinSize=1
         | 
| 1581 | 
            +
            Size=128
         | 
| 1582 | 
            +
            MaxSize=256
         | 
| 1583 | 
            +
            Context=Stock
         | 
| 1584 | 
            +
            Type=Scalable
         | 
| 1585 | 
            +
             | 
| 1586 | 
            +
            [scalable/stock/code]
         | 
| 1587 | 
            +
            MinSize=1
         | 
| 1588 | 
            +
            Size=128
         | 
| 1589 | 
            +
            MaxSize=256
         | 
| 1590 | 
            +
            Context=Stock
         | 
| 1591 | 
            +
            Type=Scalable
         | 
| 1592 | 
            +
             | 
| 1593 | 
            +
            [scalable/stock/data]
         | 
| 1594 | 
            +
            MinSize=1
         | 
| 1595 | 
            +
            Size=128
         | 
| 1596 | 
            +
            MaxSize=256
         | 
| 1597 | 
            +
            Context=Stock
         | 
| 1598 | 
            +
            Type=Scalable
         | 
| 1599 | 
            +
             | 
| 1600 | 
            +
            [scalable/stock/form]
         | 
| 1601 | 
            +
            MinSize=1
         | 
| 1602 | 
            +
            Size=128
         | 
| 1603 | 
            +
            MaxSize=256
         | 
| 1604 | 
            +
            Context=Stock
         | 
| 1605 | 
            +
            Type=Scalable
         | 
| 1606 | 
            +
             | 
| 1607 | 
            +
            [scalable/stock/image]
         | 
| 1608 | 
            +
            MinSize=1
         | 
| 1609 | 
            +
            Size=128
         | 
| 1610 | 
            +
            MaxSize=256
         | 
| 1611 | 
            +
            Context=Stock
         | 
| 1612 | 
            +
            Type=Scalable
         | 
| 1613 | 
            +
             | 
| 1614 | 
            +
            [scalable/stock/io]
         | 
| 1615 | 
            +
            MinSize=1
         | 
| 1616 | 
            +
            Size=128
         | 
| 1617 | 
            +
            MaxSize=256
         | 
| 1618 | 
            +
            Context=Stock
         | 
| 1619 | 
            +
            Type=Scalable
         | 
| 1620 | 
            +
             | 
| 1621 | 
            +
            [scalable/stock/media]
         | 
| 1622 | 
            +
            MinSize=1
         | 
| 1623 | 
            +
            Size=128
         | 
| 1624 | 
            +
            MaxSize=256
         | 
| 1625 | 
            +
            Context=Stock
         | 
| 1626 | 
            +
            Type=Scalable
         | 
| 1627 | 
            +
             | 
| 1628 | 
            +
            [scalable/stock/navigation]
         | 
| 1629 | 
            +
            MinSize=1
         | 
| 1630 | 
            +
            Size=128
         | 
| 1631 | 
            +
            MaxSize=256
         | 
| 1632 | 
            +
            Context=Stock
         | 
| 1633 | 
            +
            Type=Scalable
         | 
| 1634 | 
            +
             | 
| 1635 | 
            +
            [scalable/stock/net]
         | 
| 1636 | 
            +
            MinSize=1
         | 
| 1637 | 
            +
            Size=128
         | 
| 1638 | 
            +
            MaxSize=256
         | 
| 1639 | 
            +
            Context=Stock
         | 
| 1640 | 
            +
            Type=Scalable
         | 
| 1641 | 
            +
             | 
| 1642 | 
            +
            [scalable/stock/object]
         | 
| 1643 | 
            +
            MinSize=1
         | 
| 1644 | 
            +
            Size=128
         | 
| 1645 | 
            +
            MaxSize=256
         | 
| 1646 | 
            +
            Context=Stock
         | 
| 1647 | 
            +
            Type=Scalable
         | 
| 1648 | 
            +
             | 
| 1649 | 
            +
            [scalable/stock/table]
         | 
| 1650 | 
            +
            MinSize=1
         | 
| 1651 | 
            +
            Size=128
         | 
| 1652 | 
            +
            MaxSize=256
         | 
| 1653 | 
            +
            Context=Stock
         | 
| 1654 | 
            +
            Type=Scalable
         | 
| 1655 | 
            +
             | 
| 1656 | 
            +
            [scalable/stock/text]
         | 
| 1657 | 
            +
            MinSize=1
         | 
| 1658 | 
            +
            Size=128
         | 
| 1659 | 
            +
            MaxSize=256
         | 
| 1660 | 
            +
            Context=Stock
         | 
| 1661 | 
            +
            Type=Scalable
         | 
| 1662 | 
            +
             |