gtk2 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +33 -0
- data/Rakefile +62 -0
- data/ext/gtk2/depend +14 -0
- data/ext/gtk2/extconf.rb +129 -0
- data/ext/gtk2/global.h +295 -0
- data/ext/gtk2/gtk2.def +29 -0
- data/ext/gtk2/init.c +284 -0
- data/ext/gtk2/rbgdk.c +505 -0
- data/ext/gtk2/rbgdk.h +79 -0
- data/ext/gtk2/rbgdkatom.c +124 -0
- data/ext/gtk2/rbgdkcairo.c +89 -0
- data/ext/gtk2/rbgdkcolor.c +146 -0
- data/ext/gtk2/rbgdkcolormap.c +135 -0
- data/ext/gtk2/rbgdkconst.c +39 -0
- data/ext/gtk2/rbgdkconversions.h +31 -0
- data/ext/gtk2/rbgdkcursor.c +102 -0
- data/ext/gtk2/rbgdkdevice.c +229 -0
- data/ext/gtk2/rbgdkdisplay.c +553 -0
- data/ext/gtk2/rbgdkdisplaymanager.c +54 -0
- data/ext/gtk2/rbgdkdragcontext.c +291 -0
- data/ext/gtk2/rbgdkdraw.c +522 -0
- data/ext/gtk2/rbgdkevent.c +1291 -0
- data/ext/gtk2/rbgdkgc.c +423 -0
- data/ext/gtk2/rbgdkgeometry.c +256 -0
- data/ext/gtk2/rbgdkimage.c +152 -0
- data/ext/gtk2/rbgdkinput.c +72 -0
- data/ext/gtk2/rbgdkkeymap.c +155 -0
- data/ext/gtk2/rbgdkkeyval.c +108 -0
- data/ext/gtk2/rbgdkpango.c +183 -0
- data/ext/gtk2/rbgdkpangorenderer.c +143 -0
- data/ext/gtk2/rbgdkpixbuf.c +171 -0
- data/ext/gtk2/rbgdkpixmap.c +236 -0
- data/ext/gtk2/rbgdkproperty.c +288 -0
- data/ext/gtk2/rbgdkrectangle.c +142 -0
- data/ext/gtk2/rbgdkregion.c +289 -0
- data/ext/gtk2/rbgdkrgb.c +198 -0
- data/ext/gtk2/rbgdkscreen.c +422 -0
- data/ext/gtk2/rbgdkselection.c +147 -0
- data/ext/gtk2/rbgdkthreads.c +77 -0
- data/ext/gtk2/rbgdktimecoord.c +135 -0
- data/ext/gtk2/rbgdkvisual.c +252 -0
- data/ext/gtk2/rbgdkwindow.c +1113 -0
- data/ext/gtk2/rbgdkwindowattr.c +208 -0
- data/ext/gtk2/rbgdkx11.c +257 -0
- data/ext/gtk2/rbgtk.c +594 -0
- data/ext/gtk2/rbgtk.h +132 -0
- data/ext/gtk2/rbgtkaboutdialog.c +136 -0
- data/ext/gtk2/rbgtkaccelerator.c +81 -0
- data/ext/gtk2/rbgtkaccelgroup.c +200 -0
- data/ext/gtk2/rbgtkaccelgroupentry.c +94 -0
- data/ext/gtk2/rbgtkaccelkey.c +122 -0
- data/ext/gtk2/rbgtkaccellabel.c +55 -0
- data/ext/gtk2/rbgtkaccelmap.c +144 -0
- data/ext/gtk2/rbgtkaccessible.c +39 -0
- data/ext/gtk2/rbgtkaction.c +223 -0
- data/ext/gtk2/rbgtkactiongroup.c +468 -0
- data/ext/gtk2/rbgtkadjustment.c +72 -0
- data/ext/gtk2/rbgtkalignment.c +75 -0
- data/ext/gtk2/rbgtkallocation.c +168 -0
- data/ext/gtk2/rbgtkarrow.c +57 -0
- data/ext/gtk2/rbgtkaspectframe.c +56 -0
- data/ext/gtk2/rbgtkassistant.c +220 -0
- data/ext/gtk2/rbgtkbbox.c +53 -0
- data/ext/gtk2/rbgtkbin.c +42 -0
- data/ext/gtk2/rbgtkbindingset.c +189 -0
- data/ext/gtk2/rbgtkborder.c +87 -0
- data/ext/gtk2/rbgtkbox.c +138 -0
- data/ext/gtk2/rbgtkbuildable.c +127 -0
- data/ext/gtk2/rbgtkbuilder.c +170 -0
- data/ext/gtk2/rbgtkbutton.c +115 -0
- data/ext/gtk2/rbgtkcalendar.c +149 -0
- data/ext/gtk2/rbgtkcelleditable.c +57 -0
- data/ext/gtk2/rbgtkcelllayout.c +137 -0
- data/ext/gtk2/rbgtkcellrenderer.c +131 -0
- data/ext/gtk2/rbgtkcellrendereraccel.c +43 -0
- data/ext/gtk2/rbgtkcellrenderercombo.c +38 -0
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +39 -0
- data/ext/gtk2/rbgtkcellrendererprogress.c +38 -0
- data/ext/gtk2/rbgtkcellrendererspin.c +39 -0
- data/ext/gtk2/rbgtkcellrendererspinner.c +44 -0
- data/ext/gtk2/rbgtkcellrenderertext.c +49 -0
- data/ext/gtk2/rbgtkcellrenderertoggle.c +39 -0
- data/ext/gtk2/rbgtkcellview.c +117 -0
- data/ext/gtk2/rbgtkcheckbutton.c +64 -0
- data/ext/gtk2/rbgtkcheckmenuitem.c +64 -0
- data/ext/gtk2/rbgtkclipboard.c +425 -0
- data/ext/gtk2/rbgtkcolorbutton.c +49 -0
- data/ext/gtk2/rbgtkcolorsel.c +211 -0
- data/ext/gtk2/rbgtkcolorselectiondialog.c +50 -0
- data/ext/gtk2/rbgtkcombo.c +119 -0
- data/ext/gtk2/rbgtkcombobox.c +151 -0
- data/ext/gtk2/rbgtkcomboboxentry.c +56 -0
- data/ext/gtk2/rbgtkconst.c +179 -0
- data/ext/gtk2/rbgtkcontainer.c +783 -0
- data/ext/gtk2/rbgtkconversions.h +39 -0
- data/ext/gtk2/rbgtkcurve.c +111 -0
- data/ext/gtk2/rbgtkdialog.c +268 -0
- data/ext/gtk2/rbgtkdrag.c +427 -0
- data/ext/gtk2/rbgtkdrawingarea.c +42 -0
- data/ext/gtk2/rbgtkeditable.c +151 -0
- data/ext/gtk2/rbgtkentry.c +113 -0
- data/ext/gtk2/rbgtkentrycompletion.c +128 -0
- data/ext/gtk2/rbgtkeventbox.c +42 -0
- data/ext/gtk2/rbgtkexpander.c +49 -0
- data/ext/gtk2/rbgtkfilechooser.c +311 -0
- data/ext/gtk2/rbgtkfilechooserbutton.c +57 -0
- data/ext/gtk2/rbgtkfilechooserdialog.c +59 -0
- data/ext/gtk2/rbgtkfilechooserwidget.c +52 -0
- data/ext/gtk2/rbgtkfilefilter.c +131 -0
- data/ext/gtk2/rbgtkfilesel.c +150 -0
- data/ext/gtk2/rbgtkfilesystemerror.c +49 -0
- data/ext/gtk2/rbgtkfixed.c +78 -0
- data/ext/gtk2/rbgtkfontbutton.c +49 -0
- data/ext/gtk2/rbgtkfontselection.c +41 -0
- data/ext/gtk2/rbgtkfontselectiondialog.c +106 -0
- data/ext/gtk2/rbgtkframe.c +69 -0
- data/ext/gtk2/rbgtkgamma.c +56 -0
- data/ext/gtk2/rbgtkhandlebox.c +45 -0
- data/ext/gtk2/rbgtkhbbox.c +42 -0
- data/ext/gtk2/rbgtkhbox.c +47 -0
- data/ext/gtk2/rbgtkhpaned.c +42 -0
- data/ext/gtk2/rbgtkhruler.c +42 -0
- data/ext/gtk2/rbgtkhscale.c +54 -0
- data/ext/gtk2/rbgtkhscrollbar.c +47 -0
- data/ext/gtk2/rbgtkhseparator.c +41 -0
- data/ext/gtk2/rbgtkiconfactory.c +86 -0
- data/ext/gtk2/rbgtkiconinfo.c +117 -0
- data/ext/gtk2/rbgtkiconset.c +91 -0
- data/ext/gtk2/rbgtkiconsize.c +93 -0
- data/ext/gtk2/rbgtkiconsource.c +171 -0
- data/ext/gtk2/rbgtkicontheme.c +273 -0
- data/ext/gtk2/rbgtkiconview.c +270 -0
- data/ext/gtk2/rbgtkimage.c +128 -0
- data/ext/gtk2/rbgtkimagemenuitem.c +61 -0
- data/ext/gtk2/rbgtkimcontext.c +135 -0
- data/ext/gtk2/rbgtkimcontextsimple.c +69 -0
- data/ext/gtk2/rbgtkimmulticontext.c +48 -0
- data/ext/gtk2/rbgtkinfobar.c +127 -0
- data/ext/gtk2/rbgtkinputdialog.c +41 -0
- data/ext/gtk2/rbgtkinvisible.c +49 -0
- data/ext/gtk2/rbgtkitem.c +60 -0
- data/ext/gtk2/rbgtkitemfactory.c +299 -0
- data/ext/gtk2/rbgtklabel.c +139 -0
- data/ext/gtk2/rbgtklayout.c +94 -0
- data/ext/gtk2/rbgtklinkbutton.c +65 -0
- data/ext/gtk2/rbgtkliststore.c +411 -0
- data/ext/gtk2/rbgtkmacros.h +39 -0
- data/ext/gtk2/rbgtkmenu.c +171 -0
- data/ext/gtk2/rbgtkmenubar.c +45 -0
- data/ext/gtk2/rbgtkmenuitem.c +111 -0
- data/ext/gtk2/rbgtkmenushell.c +108 -0
- data/ext/gtk2/rbgtkmenutoolbutton.c +74 -0
- data/ext/gtk2/rbgtkmessagedialog.c +89 -0
- data/ext/gtk2/rbgtkmisc.c +70 -0
- data/ext/gtk2/rbgtknotebook.c +412 -0
- data/ext/gtk2/rbgtkobject.c +144 -0
- data/ext/gtk2/rbgtkoptionmenu.c +72 -0
- data/ext/gtk2/rbgtkpagesetup.c +201 -0
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +87 -0
- data/ext/gtk2/rbgtkpaned.c +114 -0
- data/ext/gtk2/rbgtkpapersize.c +186 -0
- data/ext/gtk2/rbgtkplug.c +91 -0
- data/ext/gtk2/rbgtkprintcontext.c +127 -0
- data/ext/gtk2/rbgtkprinter.c +154 -0
- data/ext/gtk2/rbgtkprintjob.c +149 -0
- data/ext/gtk2/rbgtkprintoperation.c +156 -0
- data/ext/gtk2/rbgtkprintoperationpreview.c +61 -0
- data/ext/gtk2/rbgtkprintsettings.c +842 -0
- data/ext/gtk2/rbgtkprintunixdialog.c +86 -0
- data/ext/gtk2/rbgtkprogress.c +31 -0
- data/ext/gtk2/rbgtkprogressbar.c +71 -0
- data/ext/gtk2/rbgtkradioaction.c +120 -0
- data/ext/gtk2/rbgtkradiobutton.c +90 -0
- data/ext/gtk2/rbgtkradiomenuitem.c +148 -0
- data/ext/gtk2/rbgtkradiotoolbutton.c +132 -0
- data/ext/gtk2/rbgtkrange.c +71 -0
- data/ext/gtk2/rbgtkrc.c +217 -0
- data/ext/gtk2/rbgtkrcstyle.c +182 -0
- data/ext/gtk2/rbgtkrecentaction.c +60 -0
- data/ext/gtk2/rbgtkrecentchooser.c +216 -0
- data/ext/gtk2/rbgtkrecentchooserdialog.c +62 -0
- data/ext/gtk2/rbgtkrecentchoosermenu.c +50 -0
- data/ext/gtk2/rbgtkrecentchooserwidget.c +48 -0
- data/ext/gtk2/rbgtkrecentdata.c +144 -0
- data/ext/gtk2/rbgtkrecentfilter.c +170 -0
- data/ext/gtk2/rbgtkrecentfilterinfo.c +181 -0
- data/ext/gtk2/rbgtkrecentinfo.c +216 -0
- data/ext/gtk2/rbgtkrecentmanager.c +149 -0
- data/ext/gtk2/rbgtkruler.c +71 -0
- data/ext/gtk2/rbgtkscale.c +50 -0
- data/ext/gtk2/rbgtkscalebutton.c +75 -0
- data/ext/gtk2/rbgtkscrollbar.c +31 -0
- data/ext/gtk2/rbgtkscrolledwindow.c +124 -0
- data/ext/gtk2/rbgtkselection.c +171 -0
- data/ext/gtk2/rbgtkselectiondata.c +284 -0
- data/ext/gtk2/rbgtkseparator.c +31 -0
- data/ext/gtk2/rbgtkseparatormenuitem.c +39 -0
- data/ext/gtk2/rbgtkseparatortoolitem.c +38 -0
- data/ext/gtk2/rbgtksettings.c +229 -0
- data/ext/gtk2/rbgtksizegroup.c +68 -0
- data/ext/gtk2/rbgtksocket.c +80 -0
- data/ext/gtk2/rbgtkspinbutton.c +137 -0
- data/ext/gtk2/rbgtkspinner.c +61 -0
- data/ext/gtk2/rbgtkstatusbar.c +77 -0
- data/ext/gtk2/rbgtkstatusicon.c +90 -0
- data/ext/gtk2/rbgtkstock.c +230 -0
- data/ext/gtk2/rbgtkstyle.c +642 -0
- data/ext/gtk2/rbgtktable.c +177 -0
- data/ext/gtk2/rbgtktargetlist.c +125 -0
- data/ext/gtk2/rbgtktearoffmenuitem.c +41 -0
- data/ext/gtk2/rbgtktextappearance.c +172 -0
- data/ext/gtk2/rbgtktextattributes.c +203 -0
- data/ext/gtk2/rbgtktextbuffer.c +886 -0
- data/ext/gtk2/rbgtktextchild.c +55 -0
- data/ext/gtk2/rbgtktextiter.c +506 -0
- data/ext/gtk2/rbgtktextmark.c +76 -0
- data/ext/gtk2/rbgtktexttag.c +71 -0
- data/ext/gtk2/rbgtktexttagtable.c +97 -0
- data/ext/gtk2/rbgtktextview.c +326 -0
- data/ext/gtk2/rbgtktoggleaction.c +59 -0
- data/ext/gtk2/rbgtktogglebutton.c +88 -0
- data/ext/gtk2/rbgtktoggletoolbutton.c +54 -0
- data/ext/gtk2/rbgtktoolbar.c +315 -0
- data/ext/gtk2/rbgtktoolbutton.c +53 -0
- data/ext/gtk2/rbgtktoolitem.c +157 -0
- data/ext/gtk2/rbgtktooltip.c +82 -0
- data/ext/gtk2/rbgtktooltips.c +104 -0
- data/ext/gtk2/rbgtktreedragdest.c +28 -0
- data/ext/gtk2/rbgtktreedragsource.c +28 -0
- data/ext/gtk2/rbgtktreeiter.c +251 -0
- data/ext/gtk2/rbgtktreemodel.c +282 -0
- data/ext/gtk2/rbgtktreemodelfilter.c +198 -0
- data/ext/gtk2/rbgtktreemodelsort.c +112 -0
- data/ext/gtk2/rbgtktreepath.c +191 -0
- data/ext/gtk2/rbgtktreerowreference.c +171 -0
- data/ext/gtk2/rbgtktreeselection.c +213 -0
- data/ext/gtk2/rbgtktreesortable.c +123 -0
- data/ext/gtk2/rbgtktreestore.c +362 -0
- data/ext/gtk2/rbgtktreeview.c +746 -0
- data/ext/gtk2/rbgtktreeviewcolumn.c +289 -0
- data/ext/gtk2/rbgtkuimanager.c +189 -0
- data/ext/gtk2/rbgtkvbbox.c +42 -0
- data/ext/gtk2/rbgtkvbox.c +47 -0
- data/ext/gtk2/rbgtkviewport.c +44 -0
- data/ext/gtk2/rbgtkvolumebutton.c +47 -0
- data/ext/gtk2/rbgtkvpaned.c +42 -0
- data/ext/gtk2/rbgtkvruler.c +41 -0
- data/ext/gtk2/rbgtkvscale.c +54 -0
- data/ext/gtk2/rbgtkvscrollbar.c +47 -0
- data/ext/gtk2/rbgtkvseparator.c +41 -0
- data/ext/gtk2/rbgtkwidget.c +1223 -0
- data/ext/gtk2/rbgtkwindow.c +588 -0
- data/ext/gtk2/rbgtkwindowgroup.c +56 -0
- data/extconf.rb +49 -0
- data/lib/2.0/gtk2.so +0 -0
- data/lib/2.1/gtk2.so +0 -0
- data/lib/2.2/gtk2.so +0 -0
- data/lib/gtk2.rb +13 -0
- data/lib/gtk2/base.rb +105 -0
- data/sample/gtk-demo/README +7 -0
- data/sample/gtk-demo/alphatest.png +0 -0
- data/sample/gtk-demo/apple-red.png +0 -0
- data/sample/gtk-demo/appwindow.rb +233 -0
- data/sample/gtk-demo/background.jpg +0 -0
- data/sample/gtk-demo/builder.rb +51 -0
- data/sample/gtk-demo/button_box.rb +84 -0
- data/sample/gtk-demo/cairo-arc-negative.rb +41 -0
- data/sample/gtk-demo/cairo-arc.rb +41 -0
- data/sample/gtk-demo/cairo-clip-image.rb +51 -0
- data/sample/gtk-demo/cairo-clip-rectangle.rb +35 -0
- data/sample/gtk-demo/cairo-clip.rb +35 -0
- data/sample/gtk-demo/cairo-curve-rectangle.rb +76 -0
- data/sample/gtk-demo/cairo-curve-to.rb +43 -0
- data/sample/gtk-demo/cairo-dash.rb +39 -0
- data/sample/gtk-demo/cairo-fill-and-stroke.rb +32 -0
- data/sample/gtk-demo/cairo-fill-and-stroke2.rb +38 -0
- data/sample/gtk-demo/cairo-gradient.rb +35 -0
- data/sample/gtk-demo/cairo-image-pattern.rb +39 -0
- data/sample/gtk-demo/cairo-image.rb +49 -0
- data/sample/gtk-demo/cairo-line-cap.rb +53 -0
- data/sample/gtk-demo/cairo-line-join.rb +41 -0
- data/sample/gtk-demo/cairo-long-lines.rb +41 -0
- data/sample/gtk-demo/cairo-operator.rb +83 -0
- data/sample/gtk-demo/cairo-path.rb +28 -0
- data/sample/gtk-demo/cairo-pattern-fill.rb +88 -0
- data/sample/gtk-demo/cairo-self-intersect.rb +32 -0
- data/sample/gtk-demo/cairo-text-align-center.rb +45 -0
- data/sample/gtk-demo/cairo-text-extents.rb +46 -0
- data/sample/gtk-demo/cairo-text.rb +43 -0
- data/sample/gtk-demo/changedisplay.rb +408 -0
- data/sample/gtk-demo/clipboard.rb +72 -0
- data/sample/gtk-demo/colorsel.rb +84 -0
- data/sample/gtk-demo/common.rb +93 -0
- data/sample/gtk-demo/demo.ui +258 -0
- data/sample/gtk-demo/dialog.rb +137 -0
- data/sample/gtk-demo/drawingarea.rb +226 -0
- data/sample/gtk-demo/editable_cells.rb +172 -0
- data/sample/gtk-demo/entry_completion.rb +63 -0
- data/sample/gtk-demo/expander.rb +40 -0
- data/sample/gtk-demo/floppybuddy.gif +0 -0
- data/sample/gtk-demo/gnome-applets.png +0 -0
- data/sample/gtk-demo/gnome-calendar.png +0 -0
- data/sample/gtk-demo/gnome-foot.png +0 -0
- data/sample/gtk-demo/gnome-fs-directory.png +0 -0
- data/sample/gtk-demo/gnome-fs-regular.png +0 -0
- data/sample/gtk-demo/gnome-gimp.png +0 -0
- data/sample/gtk-demo/gnome-gmush.png +0 -0
- data/sample/gtk-demo/gnome-gsame.png +0 -0
- data/sample/gtk-demo/gnu-keys.png +0 -0
- data/sample/gtk-demo/gtk-logo-rgb.gif +0 -0
- data/sample/gtk-demo/hypertext.rb +211 -0
- data/sample/gtk-demo/iconview.rb +109 -0
- data/sample/gtk-demo/images.rb +197 -0
- data/sample/gtk-demo/item_factory.rb +94 -0
- data/sample/gtk-demo/list_store.rb +138 -0
- data/sample/gtk-demo/main.rb +386 -0
- data/sample/gtk-demo/menus.rb +172 -0
- data/sample/gtk-demo/panes.rb +156 -0
- data/sample/gtk-demo/pixbufs.rb +176 -0
- data/sample/gtk-demo/printing.rb +128 -0
- data/sample/gtk-demo/rotated_text.rb +84 -0
- data/sample/gtk-demo/ruby-gnome2-logo.png +0 -0
- data/sample/gtk-demo/sizegroup.rb +118 -0
- data/sample/gtk-demo/stock_browser.rb +235 -0
- data/sample/gtk-demo/textview.rb +436 -0
- data/sample/gtk-demo/tree_store.rb +270 -0
- data/sample/misc/aboutdialog.rb +42 -0
- data/sample/misc/aboutdialog2.rb +42 -0
- data/sample/misc/alpha-demo.rb +70 -0
- data/sample/misc/assistant.rb +347 -0
- data/sample/misc/bindings.rb +107 -0
- data/sample/misc/button.rb +69 -0
- data/sample/misc/button2.rb +28 -0
- data/sample/misc/buttonbox.rb +93 -0
- data/sample/misc/cairo-pong.rb +215 -0
- data/sample/misc/calendar.rb +62 -0
- data/sample/misc/checkbutton.rb +46 -0
- data/sample/misc/colorselection.rb +25 -0
- data/sample/misc/combo_check.rb +71 -0
- data/sample/misc/combobox.rb +86 -0
- data/sample/misc/composited-windows.rb +113 -0
- data/sample/misc/cursor.rb +32 -0
- data/sample/misc/dialog.rb +44 -0
- data/sample/misc/dialog2.rb +39 -0
- data/sample/misc/dnd.rb +65 -0
- data/sample/misc/dndtreeview.rb +56 -0
- data/sample/misc/drag-move.rb +131 -0
- data/sample/misc/drawing.rb +90 -0
- data/sample/misc/entry.rb +34 -0
- data/sample/misc/entrycompletion.rb +39 -0
- data/sample/misc/expander.rb +27 -0
- data/sample/misc/filechooser.rb +49 -0
- data/sample/misc/fileselection.rb +26 -0
- data/sample/misc/frame.rb +69 -0
- data/sample/misc/gc.rb +59 -0
- data/sample/misc/gdkscreen.rb +32 -0
- data/sample/misc/gnome-logo-icon.png +0 -0
- data/sample/misc/helloworld.rb +35 -0
- data/sample/misc/iconview.rb +38 -0
- data/sample/misc/image.rb +42 -0
- data/sample/misc/infobar.rb +24 -0
- data/sample/misc/itemfactory.rb +73 -0
- data/sample/misc/itemfactory2.rb +74 -0
- data/sample/misc/keyboard_grab.rb +29 -0
- data/sample/misc/label.rb +33 -0
- data/sample/misc/linkbutton.rb +42 -0
- data/sample/misc/listview.rb +92 -0
- data/sample/misc/menu.rb +81 -0
- data/sample/misc/misc_button.rb +59 -0
- data/sample/misc/mouse-gesture.rb +465 -0
- data/sample/misc/pangorenderer.rb +66 -0
- data/sample/misc/pointer_grab.rb +34 -0
- data/sample/misc/print.rb +247 -0
- data/sample/misc/properties.rb +85 -0
- data/sample/misc/radiobutton.rb +47 -0
- data/sample/misc/recentchooserdialog.rb +59 -0
- data/sample/misc/rgtk+cairo.rb +44 -0
- data/sample/misc/scalebutton.rb +25 -0
- data/sample/misc/settings.rb +41 -0
- data/sample/misc/statusicon.rb +123 -0
- data/sample/misc/stock.rb +36 -0
- data/sample/misc/style_property.rb +67 -0
- data/sample/misc/style_property.rc +19 -0
- data/sample/misc/t-gtkplug.rb +58 -0
- data/sample/misc/t-gtksocket.rb +65 -0
- data/sample/misc/test.xpm +92 -0
- data/sample/misc/textbuffer_serialize.rb +130 -0
- data/sample/misc/threads.rb +72 -0
- data/sample/misc/to_drawable.rb +42 -0
- data/sample/misc/togglebutton.rb +34 -0
- data/sample/misc/toolbar.rb +55 -0
- data/sample/misc/tooltips.rb +204 -0
- data/sample/misc/tree_combo.rb +85 -0
- data/sample/misc/tree_progress.rb +69 -0
- data/sample/misc/treemodelfilter.rb +55 -0
- data/sample/misc/treeview.rb +71 -0
- data/sample/misc/uimanager.rb +148 -0
- data/sample/misc/uimanager2.rb +91 -0
- data/sample/misc/uimanager2.xml +36 -0
- data/sample/misc/window.rb +24 -0
- data/sample/misc/xbm_cursor.rb +43 -0
- data/sample/testgtk/3DRings.xpm +116 -0
- data/sample/testgtk/FilesQueue.xpm +98 -0
- data/sample/testgtk/Modeller.xpm +117 -0
- data/sample/testgtk/README +14 -0
- data/sample/testgtk/button.rb +133 -0
- data/sample/testgtk/buttonbox.rb +108 -0
- data/sample/testgtk/check-n.xpm +21 -0
- data/sample/testgtk/check-y.xpm +21 -0
- data/sample/testgtk/checkbutton.rb +67 -0
- data/sample/testgtk/circles.xbm +46 -0
- data/sample/testgtk/colorselect.rb +33 -0
- data/sample/testgtk/dialog.rb +47 -0
- data/sample/testgtk/entry.rb +73 -0
- data/sample/testgtk/filesel.rb +67 -0
- data/sample/testgtk/fontselection.rb +56 -0
- data/sample/testgtk/gammacurve.rb +70 -0
- data/sample/testgtk/labels.rb +74 -0
- data/sample/testgtk/layout.rb +108 -0
- data/sample/testgtk/marble.xpm +408 -0
- data/sample/testgtk/menu.rb +79 -0
- data/sample/testgtk/notebook.rb +281 -0
- data/sample/testgtk/pixmap.rb +58 -0
- data/sample/testgtk/progressbar.rb +181 -0
- data/sample/testgtk/radiobutton.rb +61 -0
- data/sample/testgtk/range.rb +65 -0
- data/sample/testgtk/reparent.rb +91 -0
- data/sample/testgtk/rulers.rb +46 -0
- data/sample/testgtk/sample.rb +80 -0
- data/sample/testgtk/savedposition.rb +87 -0
- data/sample/testgtk/scrolledwindow.rb +67 -0
- data/sample/testgtk/shapedwindow.rb +99 -0
- data/sample/testgtk/spinbutton.rb +181 -0
- data/sample/testgtk/statusbar.rb +89 -0
- data/sample/testgtk/test.xpm +92 -0
- data/sample/testgtk/testgtk.rb +181 -0
- data/sample/testgtk/testgtkrc +146 -0
- data/sample/testgtk/testgtkrc2 +21 -0
- data/sample/testgtk/togglebutton.rb +53 -0
- data/sample/testgtk/toolbar.rb +82 -0
- data/sample/testgtk/tooltips.rb +41 -0
- data/sample/testgtk/wmhints.rb +40 -0
- data/test/gtk-test-utils.rb +15 -0
- data/test/run-test.rb +32 -0
- data/test/test_gc.rb +25 -0
- data/test/test_gdk.rb +18 -0
- data/test/test_gdk_color.rb +10 -0
- data/test/test_gdk_display.rb +37 -0
- data/test/test_gdk_event.rb +23 -0
- data/test/test_gdk_gc.rb +7 -0
- data/test/test_gdk_geometry.rb +24 -0
- data/test/test_gdk_keymap.rb +8 -0
- data/test/test_gdk_pango.rb +9 -0
- data/test/test_gdk_pixbuf.rb +34 -0
- data/test/test_gdk_rectangle.rb +24 -0
- data/test/test_gdk_selection_data.rb +17 -0
- data/test/test_gdk_window.rb +37 -0
- data/test/test_gdk_window_attribute.rb +9 -0
- data/test/test_gtk_about_dialog.rb +14 -0
- data/test/test_gtk_accel_group_entry.rb +24 -0
- data/test/test_gtk_accel_key.rb +24 -0
- data/test/test_gtk_allocation.rb +24 -0
- data/test/test_gtk_border.rb +24 -0
- data/test/test_gtk_buildable.rb +66 -0
- data/test/test_gtk_builder.rb +188 -0
- data/test/test_gtk_entry.rb +18 -0
- data/test/test_gtk_icon_theme.rb +35 -0
- data/test/test_gtk_image.rb +8 -0
- data/test/test_gtk_infobar.rb +29 -0
- data/test/test_gtk_list_store.rb +92 -0
- data/test/test_gtk_menu_item.rb +13 -0
- data/test/test_gtk_rc_style.rb +14 -0
- data/test/test_gtk_recent_data.rb +24 -0
- data/test/test_gtk_recent_filter_info.rb +26 -0
- data/test/test_gtk_tree_path.rb +20 -0
- data/test/test_gtk_unix_print.rb +14 -0
- data/test/test_gtk_widget.rb +32 -0
- data/vendor/local/bin/gtk-builder-convert +799 -0
- 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/gtkrc +1 -0
- data/vendor/local/etc/gtk-2.0/im-multipress.conf +22 -0
- data/vendor/local/include/gail-1.0/gail/gailwidget.h +65 -0
- data/vendor/local/include/gail-1.0/libgail-util/gail-util.h +2 -0
- data/vendor/local/include/gail-1.0/libgail-util/gailmisc.h +82 -0
- data/vendor/local/include/gail-1.0/libgail-util/gailtextutil.h +87 -0
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +241 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkapplaunchcontext.h +76 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +59 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcolor.h +176 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkcursor.h +168 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +229 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplaymanager.h +67 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +186 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +436 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkenumtypes.h +137 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkevents.h +566 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +138 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkgc.h +298 -0
- data/vendor/local/include/gtk-2.0/gdk/gdki18n.h +59 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkimage.h +145 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +192 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeys.h +134 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms-compat.h +2208 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkkeysyms.h +2221 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpango.h +166 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpixbuf.h +115 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +136 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkprivate.h +60 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +128 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkregion.h +127 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkrgb.h +149 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkscreen.h +132 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkselection.h +111 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +64 -0
- data/vendor/local/include/gtk-2.0/gdk/gdktestutils.h +49 -0
- data/vendor/local/include/gtk-2.0/gdk/gdktypes.h +226 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkvisual.h +147 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +129 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +743 -0
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +248 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccelgroup.h +216 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccellabel.h +114 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccelmap.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaccessible.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +180 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +184 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkactivatable.h +88 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkadjustment.h +121 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkalignment.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkarrow.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaspectframe.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +176 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbbox.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbin.h +70 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbindings.h +158 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbox.h +159 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbuildable.h +176 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbuilder.h +143 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +147 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcalendar.h +209 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcelleditable.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcelllayout.h +122 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderer.h +195 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendereraccel.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderercombo.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererpixbuf.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererprogress.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspin.h +57 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrendererspinner.h +67 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertext.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellrenderertoggle.h +85 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcellview.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcheckbutton.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcheckmenuitem.h +102 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkclipboard.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkclist.h +792 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +103 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorsel.h +135 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorseldialog.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcombo.h +118 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +153 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcontainer.h +229 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkctree.h +445 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcurve.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdebug.h +79 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdialog.h +186 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdnd.h +188 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkdrawingarea.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkeditable.h +117 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +334 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +133 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentrycompletion.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkenums.h +584 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkeventbox.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +98 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +264 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserdialog.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserwidget.h +67 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfixed.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +100 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +220 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +96 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkgamma.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkgc.h +49 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhandlebox.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhbbox.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhbox.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhpaned.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhscale.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhscrollbar.h +70 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhseparator.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkhsv.h +115 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +189 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +198 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconview.h +242 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +274 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimagemenuitem.h +86 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimcontext.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimcontextsimple.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimmodule.h +58 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkimmulticontext.h +78 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinfobar.h +120 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinputdialog.h +100 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkinvisible.h +78 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkitem.h +81 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +236 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +207 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklayout.h +138 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklist.h +138 -0
- data/vendor/local/include/gtk-2.0/gtk/gtklistitem.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkliststore.h +147 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +233 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmarshal.h +283 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +219 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenubar.h +92 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +145 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenushell.h +141 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmenutoolbutton.h +89 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmessagedialog.h +135 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmisc.h +85 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmodules.h +54 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkmountoperation.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +317 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkobject.h +250 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoffscreenwindow.h +60 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoldeditable.h +126 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkoptionmenu.h +88 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkorientable.h +60 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpagesetup.h +108 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpaned.h +144 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpixmap.h +83 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkplug.h +105 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkpreview.h +137 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintcontext.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +207 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperationpreview.h +80 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +234 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprogress.h +120 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +172 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradioaction.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiobutton.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiomenuitem.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkradiotoolbutton.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +215 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrc.h +271 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentaction.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooser.h +191 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserdialog.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchoosermenu.h +74 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentchooserwidget.h +64 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +94 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +216 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +136 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscale.h +111 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscalebutton.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscrollbar.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkscrolledwindow.h +136 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkselection.h +221 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparator.h +66 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparatormenuitem.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkseparatortoolitem.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksettings.h +139 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkshow.h +39 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksignal.h +151 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksizegroup.h +111 -0
- data/vendor/local/include/gtk-2.0/gtk/gtksocket.h +102 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkspinbutton.h +196 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkspinner.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusbar.h +117 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +157 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstock.h +1016 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstyle.h +945 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktable.h +151 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktearoffmenuitem.h +75 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktestutils.h +71 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktext.h +217 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextbuffer.h +409 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextbufferrichtext.h +96 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextchild.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextdisplay.h +112 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextiter.h +307 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextlayout.h +439 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktexttag.h +289 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktexttagtable.h +101 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktextview.h +376 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktipsquery.h +110 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoggleaction.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktogglebutton.h +97 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoggletoolbutton.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbar.h +288 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +99 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitem.h +142 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +99 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +144 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktoolshell.h +91 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktooltip.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktooltips.h +109 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktree.h +132 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreednd.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeitem.h +90 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodel.h +270 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodelfilter.h +109 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreemodelsort.h +106 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeselection.h +125 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreesortable.h +103 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreestore.h +159 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeview.h +431 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +245 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktypebuiltins.h +335 -0
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +264 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkuimanager.h +153 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvbbox.h +82 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvbox.h +68 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +51 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkviewport.h +93 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvolumebutton.h +72 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvpaned.h +65 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +84 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvscale.h +79 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvscrollbar.h +76 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkvseparator.h +76 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +1351 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +452 -0
- data/vendor/local/lib/gailutil.def +15 -0
- data/vendor/local/lib/gdk-win32-2.0.def +744 -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/libpixmap.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.la +41 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.la +41 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/immodules.cache +7 -0
- data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +34 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll.a +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.la +41 -0
- data/vendor/local/lib/gtk-win32-2.0.def +3833 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgailutil.la +41 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.la +41 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.la +41 -0
- data/vendor/local/lib/pkgconfig/gail.pc +11 -0
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +15 -0
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +15 -0
- data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
- data/vendor/local/share/gtk-2.0/demo/alphatest.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/apple-red.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +591 -0
- data/vendor/local/share/gtk-2.0/demo/assistant.c +216 -0
- data/vendor/local/share/gtk-2.0/demo/background.jpg +0 -0
- data/vendor/local/share/gtk-2.0/demo/builder.c +68 -0
- data/vendor/local/share/gtk-2.0/demo/button_box.c +127 -0
- data/vendor/local/share/gtk-2.0/demo/changedisplay.c +646 -0
- data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
- data/vendor/local/share/gtk-2.0/demo/colorsel.c +145 -0
- data/vendor/local/share/gtk-2.0/demo/combobox.c +454 -0
- data/vendor/local/share/gtk-2.0/demo/demo.ui +258 -0
- data/vendor/local/share/gtk-2.0/demo/dialog.c +181 -0
- data/vendor/local/share/gtk-2.0/demo/drawingarea.c +314 -0
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +393 -0
- data/vendor/local/share/gtk-2.0/demo/entry_buffer.c +65 -0
- data/vendor/local/share/gtk-2.0/demo/entry_completion.c +97 -0
- data/vendor/local/share/gtk-2.0/demo/expander.c +58 -0
- data/vendor/local/share/gtk-2.0/demo/floppybuddy.gif +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-applets.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-calendar.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-foot.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-fs-directory.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-fs-regular.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gimp.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gmush.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnome-gsame.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gnu-keys.png +0 -0
- data/vendor/local/share/gtk-2.0/demo/gtk-logo-rgb.gif +0 -0
- data/vendor/local/share/gtk-2.0/demo/hypertext.c +315 -0
- data/vendor/local/share/gtk-2.0/demo/iconview.c +372 -0
- data/vendor/local/share/gtk-2.0/demo/iconview_edit.c +159 -0
- data/vendor/local/share/gtk-2.0/demo/images.c +464 -0
- data/vendor/local/share/gtk-2.0/demo/infobar.c +104 -0
- data/vendor/local/share/gtk-2.0/demo/links.c +84 -0
- data/vendor/local/share/gtk-2.0/demo/list_store.c +295 -0
- data/vendor/local/share/gtk-2.0/demo/menus.c +210 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +587 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +510 -0
- data/vendor/local/share/gtk-2.0/demo/panes.c +197 -0
- data/vendor/local/share/gtk-2.0/demo/pickers.c +73 -0
- data/vendor/local/share/gtk-2.0/demo/pixbufs.c +270 -0
- data/vendor/local/share/gtk-2.0/demo/printing.c +212 -0
- data/vendor/local/share/gtk-2.0/demo/rotated_text.c +241 -0
- data/vendor/local/share/gtk-2.0/demo/search_entry.c +335 -0
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +167 -0
- data/vendor/local/share/gtk-2.0/demo/spinner.c +94 -0
- data/vendor/local/share/gtk-2.0/demo/stock_browser.c +546 -0
- data/vendor/local/share/gtk-2.0/demo/textscroll.c +200 -0
- data/vendor/local/share/gtk-2.0/demo/textview.c +569 -0
- data/vendor/local/share/gtk-2.0/demo/toolpalette.c +799 -0
- data/vendor/local/share/gtk-2.0/demo/tree_store.c +450 -0
- data/vendor/local/share/gtk-2.0/demo/ui_manager.c +237 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +574 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +361 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +27 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +44 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.sgml +27 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +41 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplay.html +1796 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkDisplayManager.html +355 -0
- data/vendor/local/share/gtk-doc/html/gdk2/GdkScreen.html +2067 -0
- data/vendor/local/share/gtk-doc/html/gdk2/X_cursor.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/annotation-glossary.html +62 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-10.html +118 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-12.html +119 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-14.html +119 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-16.html +39 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-18.html +104 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-2.html +510 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-20.html +46 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-22.html +219 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-4.html +118 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-6.html +123 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-2-8.html +110 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-deprecated.html +1047 -0
- data/vendor/local/share/gtk-doc/html/gdk2/api-index-full.html +3665 -0
- data/vendor/local/share/gtk-doc/html/gdk2/arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/based_arrow_up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/boat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bogosity.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/bottom_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/box_spiral.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/center_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/circle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/clock.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/coffee_mug.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/cross_reverse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/crosshair.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/diamond_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/dot.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/dotbox.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draft_large.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draft_small.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/draped_box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/exchange.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/fleur.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Application-launching.html +412 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Bitmaps-and-Pixmaps.html +753 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cairo-Interaction.html +541 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Colormaps-and-Colors.html +1295 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Cursors.html +1290 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drag-and-Drop.html +1217 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Drawing-Primitives.html +2611 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Event-Structures.html +2095 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Events.html +1650 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Fonts.html +1781 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-GdkRGB.html +1435 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-General.html +1169 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Graphics-Contexts.html +2201 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Images.html +1090 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input-Devices.html +1288 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Input.html +401 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Keyboard-Handling.html +1362 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pango-Interaction.html +1074 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Pixbufs.html +744 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Points-Rectangles-and-Regions.html +1367 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Properties-and-Atoms.html +1314 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Selections.html +845 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Testing.html +276 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Threads.html +1053 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Visuals.html +1085 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-Windows.html +8583 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2-X-Window-System-Interaction.html +3528 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gdk2.devhelp2 +949 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gobbler.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/gumby.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/hand1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/hand2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/heart.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/icon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/index.html +143 -0
- data/vendor/local/share/gtk-doc/html/gdk2/index.sgml +1151 -0
- data/vendor/local/share/gtk-doc/html/gdk2/iron_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/left_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/leftbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ll_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/lr_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/man.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/middlebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/mouse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/multihead.html +204 -0
- data/vendor/local/share/gtk-doc/html/gdk2/pencil.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/pirate.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/plus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/question_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/reference.html +131 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/right_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rightbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/rtl_logo.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sailboat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_down_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_h_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_right_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_up_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sb_v_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/shuttle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/sizing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/spider.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/spraycan.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/star.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gdk2/target.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/tcross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/top_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/trek.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ul_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/umbrella.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/ur_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/watch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk2/xterm.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/AbstractObjects.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Actions.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Builder.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ButtonWidgets.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/DeprecatedObjects.html +83 -0
- data/vendor/local/share/gtk-doc/html/gtk2/DisplayWidgets.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAboutDialog.html +1891 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAccelLabel.html +437 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAccessible.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAction.html +2264 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkActionGroup.html +1631 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkActivatable.html +924 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAdjustment.html +1102 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAlignment.html +491 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkArrow.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAspectFrame.html +308 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkAssistant.html +1575 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBin.html +152 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBox.html +1043 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBuildable.html +801 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkBuilder.html +1339 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkButton.html +1634 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkButtonBox.html +776 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCList.html +5399 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCTree.html +3279 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCalendar.html +1463 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellEditable.html +362 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellLayout.html +702 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRenderer.html +1492 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererAccel.html +350 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererCombo.html +282 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererPixbuf.html +278 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererProgress.html +243 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpin.html +196 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererSpinner.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererText.html +868 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellRendererToggle.html +493 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCellView.html +612 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCheckButton.html +283 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorButton.html +615 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelection.html +1120 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkColorSelectionDialog.html +302 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCombo.html +678 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBox.html +2138 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxEntry.html +374 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkComboBoxText.html +414 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkContainer.html +2054 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkCurve.html +591 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkDialog.html +1627 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkDrawingArea.html +287 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEditable.html +896 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntry.html +4578 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryBuffer.html +792 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEntryCompletion.html +1574 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkEventBox.html +362 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkExpander.html +1024 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooser.html +4065 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserButton.html +666 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserDialog.html +353 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileChooserWidget.html +211 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFileSelection.html +740 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFixed.html +419 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontButton.html +804 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelection.html +728 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFontSelectionDialog.html +546 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkFrame.html +610 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkGammaCurve.html +144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHBox.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHButtonBox.html +287 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHPaned.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHRuler.html +143 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHSV.html +605 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHScale.html +210 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHScrollbar.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHSeparator.html +150 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkHandleBox.html +665 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContext.html +1204 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMContextSimple.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIMMulticontext.html +231 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIconTheme.html +1796 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkIconView.html +3740 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkImage.html +1961 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkImageMenuItem.html +613 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInfoBar.html +908 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInputDialog.html +255 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkInvisible.html +267 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkItem.html +350 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkItemFactory.html +1537 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLabel.html +2825 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLayout.html +797 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkLinkButton.html +520 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkList.html +1370 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkListItem.html +652 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkListStore.html +1361 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenu.html +1887 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuBar.html +555 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuItem.html +1279 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuShell.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMenuToolButton.html +561 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMessageDialog.html +945 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkMisc.html +411 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkNotebook.html +3748 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkObject.html +1672 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOffscreenWindow.html +221 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOldEditable.html +756 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkOptionMenu.html +477 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetup.html +1278 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPageSetupUnixDialog.html +312 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPaned.html +1032 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPaperSize.html +1172 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPixmap.html +306 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPlug.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPreview.html +822 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintContext.html +655 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintJob.html +725 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintSettings.html +3872 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrintUnixDialog.html +1143 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkPrinter.html +1321 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkProgress.html +766 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkProgressBar.html +1179 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioAction.html +480 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioButton.html +681 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioMenuItem.html +609 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRadioToolButton.html +432 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRange.html +1913 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentAction.html +338 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooser.html +1919 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserDialog.html +260 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserMenu.html +313 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentChooserWidget.html +182 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentFilter.html +823 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRecentManager.html +2084 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkRuler.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScale.html +724 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScaleButton.html +783 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScrollbar.html +232 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkScrolledWindow.html +1035 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparator.html +96 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorMenuItem.html +130 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSeparatorToolItem.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSettings.html +1679 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSizeGroup.html +579 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSocket.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinButton.html +1793 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkSpinner.html +265 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusIcon.html +2339 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStatusbar.html +662 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkStyle.html +5004 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTable.html +1081 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTearoffMenuItem.html +158 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkText.html +900 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextBuffer.html +4895 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextIter.html +4244 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextMark.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTag.html +1680 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextTagTable.html +516 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTextView.html +4124 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTipsQuery.html +625 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleAction.html +440 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleButton.html +698 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToggleToolButton.html +359 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolButton.html +929 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItem.html +1599 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolItemGroup.html +1025 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolPalette.html +1314 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolShell.html +532 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkToolbar.html +2507 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltip.html +554 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTooltips.html +548 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTree.html +1060 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeItem.html +361 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModel.html +3330 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelFilter.html +885 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeModelSort.html +697 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSelection.html +1144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeSortable.html +595 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeStore.html +1384 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeView.html +6534 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkTreeViewColumn.html +2679 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkUIManager.html +1631 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVBox.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVButtonBox.html +259 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVPaned.html +123 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVRuler.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVScale.html +202 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVScrollbar.html +144 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVSeparator.html +125 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkViewport.html +564 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkVolumeButton.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWidget.html +13779 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWindow.html +5354 -0
- data/vendor/local/share/gtk-doc/html/gtk2/GtkWindowGroup.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk2/LayoutContainers.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk2/MenusAndCombos.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk2/MiscObjects.html +68 -0
- data/vendor/local/share/gtk-doc/html/gtk2/NumericEntry.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Ornaments.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/PlugSocket.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk2/Printing.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk2/RecentDocuments.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ScrollingWidgets.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/SelectorWidgets.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtk2/SpecialObjects.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TextWidget.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TextWidgetObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TreeWidget.html +556 -0
- data/vendor/local/share/gtk-doc/html/gtk2/TreeWidgetObjects.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk2/WindowWidgets.html +57 -0
- data/vendor/local/share/gtk-doc/html/gtk2/aboutdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/accel-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/annotation-glossary.html +69 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-10.html +2090 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-12.html +785 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-14.html +781 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-16.html +597 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-18.html +513 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-2.html +286 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-20.html +460 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-22.html +176 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-24.html +131 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-4.html +1853 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-6.html +1085 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-2-8.html +381 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-deprecated.html +3531 -0
- data/vendor/local/share/gtk-doc/html/gtk2/api-index-full.html +22945 -0
- data/vendor/local/share/gtk-doc/html/gtk2/application-exit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/assistant.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ch01.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ch02.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk2/chap-drawing-model.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk2/check-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-gdkeventexpose-region.html +84 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-modifiers.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/checklist-named-icons.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/color-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/colorsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/combo-box-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/combo-box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/decorating-the-assistant-pages.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-information.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-password.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-question.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/dialog-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-new.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-open.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-print-preview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-print.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-properties.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-revert-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-revert-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-save-as.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/document-save.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/drive-harddisk.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-clear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-copy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-cut.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-delete.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-find-replace.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-find.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-paste.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-redo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-select-all.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/edit-undo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/figure-hierarchical-drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/figure-windowed-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/file-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/filechooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/folder.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/font-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/fontsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-less-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-indent-more-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-fill.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-justify-right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-bold.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-italic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-strikethrough.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/format-text-underline.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/frame.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/glossary.html +335 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-bottom.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-first-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-first-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-jump-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-jump-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-last-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-last-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-next-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-next-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-previous-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-previous-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-top.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/go-up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-apply.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-builder-convert.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-building.html +441 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-cancel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-caps-lock-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-1-2.html +568 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-changes-2-0.html +1175 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-color-picker.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-compiling.html +111 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-connect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-convert.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-directfb.html +60 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-disconnect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd-multiple.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-dnd.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-edit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-font.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-index.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-ClientSideWindows.html +85 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAboutDialog.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAction.html +91 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkAssistant.html +102 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkBuilder.html +118 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkColorButton.html +107 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkComboBox.html +256 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkFileChooser.html +80 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkIconView.html +264 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkLinkButton.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-GtkRecentChooser.html +310 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-checklist.html +157 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-entry-icons.html +293 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-label-links.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-migrating-tooltips.html +124 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-no.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-ok.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-orientation-reverse-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-osx.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-page-setup.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-preferences.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-query-immodules-2.0.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-question-index.html +1427 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-resources.html +146 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-running.html +348 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-select-color.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-undelete-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-update-icon-cache.html +114 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-windows.html +87 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-x11.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk-yes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk.html +162 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Accelerator-Maps.html +744 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Bindings.html +1146 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Clipboards.html +2018 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Drag-and-Drop.html +1962 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Feature-Test-Macros.html +358 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Filesystem-utilities.html +454 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-General.html +2349 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Graphics-Contexts.html +165 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-GtkTreeView-drag-and-drop.html +566 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-High-level-Printing-API.html +3267 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Keyboard-Accelerators.html +1329 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Orientable.html +219 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Resource-Files.html +2234 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Selections.html +2236 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Signals.html +1991 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Standard-Enumerations.html +2183 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Stock-Items.html +1724 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Testing.html +833 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Themeable-Stock-Images.html +1998 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-Types.html +2138 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkcheckmenuitem.html +693 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2-gtkfilefilter.html +671 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtk2.devhelp2 +6133 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkbase.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-extra-widgets.html +40 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-installing-preview.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-new-features.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkfilechooser-selection-modes.html +51 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkobjects.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-advanced.html +206 -0
- data/vendor/local/share/gtk-doc/html/gtk2/gtkrecent-chooser.html +97 -0
- data/vendor/local/share/gtk-doc/html/gtk2/help-about.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/help-contents.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/icon-view.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/image-missing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/image.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/index.html +875 -0
- data/vendor/local/share/gtk-doc/html/gtk2/index.sgml +8276 -0
- data/vendor/local/share/gtk-doc/html/gtk2/label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-btlr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-btrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-lrbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-lrtb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-rlbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-rltb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-tblr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/layout-tbrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/link-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-add.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-and-tree.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/list-remove.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-floppy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-optical.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-pause.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-start-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-playback-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-record.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-seek-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/media-skip-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/menubar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/messagedialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating-GtkCombo.html +94 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating-gnomeuiinfo.html +351 -0
- data/vendor/local/share/gtk-doc/html/gtk2/migrating.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk2/multiline-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/network-idle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/new-features-GtkComboBox.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk2/notebook.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/pagesetupdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/panes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-info.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-paused.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/printer-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/process-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/progressbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/pt05.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk2/radio-group.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/recentchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/scales.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/scrolledwindow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/separator.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/setting-the-page-flow.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk2/spinbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/spinner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/statusbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gtk2/system-run.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/text-x-generic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toggle-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toolbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/toolpalette.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/tools-check-spelling.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/tree-view-coordinates.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/ui-manager.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk2/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-fullscreen.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-refresh.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-restore.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-sort-ascending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/view-sort-descending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/volumebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/window-close.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/window.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-fit-best.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-original.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk2/zoom-out.png +0 -0
- data/vendor/local/share/icons/hicolor/index.theme +1830 -0
- data/vendor/local/share/license/gtk+/AUTHORS +65 -0
- data/vendor/local/share/license/gtk+/COPYING +482 -0
- data/vendor/local/share/license/hicolor-icon-theme/COPYING +345 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ang/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/az_IR/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/be@latin/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/bn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/br/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bs/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/crh/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/crh/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/gtk20.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/eo/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20-properties.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/et/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hr/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/hy/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/io/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/is/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/ja/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/li/LC_MESSAGES/gtk20.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/lv/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/my/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/nso/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pa/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/ps/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ro/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/rw/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ur/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uz/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/uz@cyrillic/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20-properties.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-properties.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/themes/Default/gtk-2.0-key/gtkrc +3 -0
- data/vendor/local/share/themes/Emacs/gtk-2.0-key/gtkrc +113 -0
- data/vendor/local/share/themes/MS-Windows/gtk-2.0/gtkrc +66 -0
- data/vendor/local/share/themes/Raleigh/gtk-2.0/gtkrc +3 -0
- metadata +1750 -0
@@ -0,0 +1,2825 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
|
+
<title>GTK+ 2 Reference Manual: GtkLabel</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
|
8
|
+
<link rel="up" href="DisplayWidgets.html" title="Display Widgets">
|
9
|
+
<link rel="prev" href="GtkImage.html" title="GtkImage">
|
10
|
+
<link rel="next" href="GtkProgressBar.html" title="GtkProgressBar">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.21.1 (XML mode)">
|
12
|
+
<link rel="stylesheet" href="style.css" type="text/css">
|
13
|
+
</head>
|
14
|
+
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
|
+
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="5"><tr valign="middle">
|
16
|
+
<td width="100%" align="left" class="shortcuts">
|
17
|
+
<a href="#" class="shortcut">Top</a><span id="nav_description"> <span class="dim">|</span>
|
18
|
+
<a href="#GtkLabel.description" class="shortcut">Description</a></span><span id="nav_hierarchy"> <span class="dim">|</span>
|
19
|
+
<a href="#GtkLabel.object-hierarchy" class="shortcut">Object Hierarchy</a></span><span id="nav_interfaces"> <span class="dim">|</span>
|
20
|
+
<a href="#GtkLabel.implemented-interfaces" class="shortcut">Implemented Interfaces</a></span><span id="nav_properties"> <span class="dim">|</span>
|
21
|
+
<a href="#GtkLabel.properties" class="shortcut">Properties</a></span><span id="nav_signals"> <span class="dim">|</span>
|
22
|
+
<a href="#GtkLabel.signals" class="shortcut">Signals</a></span>
|
23
|
+
</td>
|
24
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="16" height="16" border="0" alt="Home"></a></td>
|
25
|
+
<td><a accesskey="u" href="DisplayWidgets.html"><img src="up.png" width="16" height="16" border="0" alt="Up"></a></td>
|
26
|
+
<td><a accesskey="p" href="GtkImage.html"><img src="left.png" width="16" height="16" border="0" alt="Prev"></a></td>
|
27
|
+
<td><a accesskey="n" href="GtkProgressBar.html"><img src="right.png" width="16" height="16" border="0" alt="Next"></a></td>
|
28
|
+
</tr></table>
|
29
|
+
<div class="refentry">
|
30
|
+
<a name="GtkLabel"></a><div class="titlepage"></div>
|
31
|
+
<div class="refnamediv"><table width="100%"><tr>
|
32
|
+
<td valign="top">
|
33
|
+
<h2><span class="refentrytitle"><a name="GtkLabel.top_of_page"></a>GtkLabel</span></h2>
|
34
|
+
<p>GtkLabel — A widget that displays a small to medium amount of text</p>
|
35
|
+
</td>
|
36
|
+
<td class="gallery_image" valign="top" align="right"><img src="label.png"></td>
|
37
|
+
</tr></table></div>
|
38
|
+
<div class="refsect1">
|
39
|
+
<a name="GtkLabel.functions"></a><h2>Functions</h2>
|
40
|
+
<div class="informaltable"><table width="100%" border="0">
|
41
|
+
<colgroup>
|
42
|
+
<col width="150px" class="functions_return">
|
43
|
+
<col class="functions_name">
|
44
|
+
</colgroup>
|
45
|
+
<tbody>
|
46
|
+
<tr>
|
47
|
+
<td class="function_type">
|
48
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
49
|
+
</td>
|
50
|
+
<td class="function_name">
|
51
|
+
<a class="link" href="GtkLabel.html#gtk-label-new" title="gtk_label_new ()">gtk_label_new</a> <span class="c_punctuation">()</span>
|
52
|
+
</td>
|
53
|
+
</tr>
|
54
|
+
<tr>
|
55
|
+
<td class="function_type">
|
56
|
+
<span class="returnvalue">void</span>
|
57
|
+
</td>
|
58
|
+
<td class="function_name">
|
59
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-text" title="gtk_label_set_text ()">gtk_label_set_text</a> <span class="c_punctuation">()</span>
|
60
|
+
</td>
|
61
|
+
</tr>
|
62
|
+
<tr>
|
63
|
+
<td class="function_type">
|
64
|
+
<span class="returnvalue">void</span>
|
65
|
+
</td>
|
66
|
+
<td class="function_name">
|
67
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-attributes" title="gtk_label_set_attributes ()">gtk_label_set_attributes</a> <span class="c_punctuation">()</span>
|
68
|
+
</td>
|
69
|
+
</tr>
|
70
|
+
<tr>
|
71
|
+
<td class="function_type">
|
72
|
+
<span class="returnvalue">void</span>
|
73
|
+
</td>
|
74
|
+
<td class="function_name">
|
75
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-markup" title="gtk_label_set_markup ()">gtk_label_set_markup</a> <span class="c_punctuation">()</span>
|
76
|
+
</td>
|
77
|
+
</tr>
|
78
|
+
<tr>
|
79
|
+
<td class="function_type">
|
80
|
+
<span class="returnvalue">void</span>
|
81
|
+
</td>
|
82
|
+
<td class="function_name">
|
83
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-markup-with-mnemonic" title="gtk_label_set_markup_with_mnemonic ()">gtk_label_set_markup_with_mnemonic</a> <span class="c_punctuation">()</span>
|
84
|
+
</td>
|
85
|
+
</tr>
|
86
|
+
<tr>
|
87
|
+
<td class="function_type">
|
88
|
+
<span class="returnvalue">void</span>
|
89
|
+
</td>
|
90
|
+
<td class="function_name">
|
91
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-pattern" title="gtk_label_set_pattern ()">gtk_label_set_pattern</a> <span class="c_punctuation">()</span>
|
92
|
+
</td>
|
93
|
+
</tr>
|
94
|
+
<tr>
|
95
|
+
<td class="function_type">
|
96
|
+
<span class="returnvalue">void</span>
|
97
|
+
</td>
|
98
|
+
<td class="function_name">
|
99
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-justify" title="gtk_label_set_justify ()">gtk_label_set_justify</a> <span class="c_punctuation">()</span>
|
100
|
+
</td>
|
101
|
+
</tr>
|
102
|
+
<tr>
|
103
|
+
<td class="function_type">
|
104
|
+
<span class="returnvalue">void</span>
|
105
|
+
</td>
|
106
|
+
<td class="function_name">
|
107
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-ellipsize" title="gtk_label_set_ellipsize ()">gtk_label_set_ellipsize</a> <span class="c_punctuation">()</span>
|
108
|
+
</td>
|
109
|
+
</tr>
|
110
|
+
<tr>
|
111
|
+
<td class="function_type">
|
112
|
+
<span class="returnvalue">void</span>
|
113
|
+
</td>
|
114
|
+
<td class="function_name">
|
115
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-width-chars" title="gtk_label_set_width_chars ()">gtk_label_set_width_chars</a> <span class="c_punctuation">()</span>
|
116
|
+
</td>
|
117
|
+
</tr>
|
118
|
+
<tr>
|
119
|
+
<td class="function_type">
|
120
|
+
<span class="returnvalue">void</span>
|
121
|
+
</td>
|
122
|
+
<td class="function_name">
|
123
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-max-width-chars" title="gtk_label_set_max_width_chars ()">gtk_label_set_max_width_chars</a> <span class="c_punctuation">()</span>
|
124
|
+
</td>
|
125
|
+
</tr>
|
126
|
+
<tr>
|
127
|
+
<td class="function_type">
|
128
|
+
<span class="returnvalue">void</span>
|
129
|
+
</td>
|
130
|
+
<td class="function_name">
|
131
|
+
<a class="link" href="GtkLabel.html#gtk-label-get" title="gtk_label_get ()">gtk_label_get</a> <span class="c_punctuation">()</span>
|
132
|
+
</td>
|
133
|
+
</tr>
|
134
|
+
<tr>
|
135
|
+
<td class="function_type">
|
136
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
137
|
+
</td>
|
138
|
+
<td class="function_name">
|
139
|
+
<a class="link" href="GtkLabel.html#gtk-label-parse-uline" title="gtk_label_parse_uline ()">gtk_label_parse_uline</a> <span class="c_punctuation">()</span>
|
140
|
+
</td>
|
141
|
+
</tr>
|
142
|
+
<tr>
|
143
|
+
<td class="function_type">
|
144
|
+
<span class="returnvalue">void</span>
|
145
|
+
</td>
|
146
|
+
<td class="function_name">
|
147
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-line-wrap" title="gtk_label_set_line_wrap ()">gtk_label_set_line_wrap</a> <span class="c_punctuation">()</span>
|
148
|
+
</td>
|
149
|
+
</tr>
|
150
|
+
<tr>
|
151
|
+
<td class="function_type">
|
152
|
+
<span class="returnvalue">void</span>
|
153
|
+
</td>
|
154
|
+
<td class="function_name">
|
155
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-line-wrap-mode" title="gtk_label_set_line_wrap_mode ()">gtk_label_set_line_wrap_mode</a> <span class="c_punctuation">()</span>
|
156
|
+
</td>
|
157
|
+
</tr>
|
158
|
+
<tr>
|
159
|
+
<td class="function_type">
|
160
|
+
<span class="returnvalue">void</span>
|
161
|
+
</td>
|
162
|
+
<td class="function_name">
|
163
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-layout-offsets" title="gtk_label_get_layout_offsets ()">gtk_label_get_layout_offsets</a> <span class="c_punctuation">()</span>
|
164
|
+
</td>
|
165
|
+
</tr>
|
166
|
+
<tr>
|
167
|
+
<td class="function_type">
|
168
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
169
|
+
</td>
|
170
|
+
<td class="function_name">
|
171
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-mnemonic-keyval" title="gtk_label_get_mnemonic_keyval ()">gtk_label_get_mnemonic_keyval</a> <span class="c_punctuation">()</span>
|
172
|
+
</td>
|
173
|
+
</tr>
|
174
|
+
<tr>
|
175
|
+
<td class="function_type">
|
176
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
177
|
+
</td>
|
178
|
+
<td class="function_name">
|
179
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-selectable" title="gtk_label_get_selectable ()">gtk_label_get_selectable</a> <span class="c_punctuation">()</span>
|
180
|
+
</td>
|
181
|
+
</tr>
|
182
|
+
<tr>
|
183
|
+
<td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
184
|
+
</td>
|
185
|
+
<td class="function_name">
|
186
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-text" title="gtk_label_get_text ()">gtk_label_get_text</a> <span class="c_punctuation">()</span>
|
187
|
+
</td>
|
188
|
+
</tr>
|
189
|
+
<tr>
|
190
|
+
<td class="function_type">
|
191
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
192
|
+
</td>
|
193
|
+
<td class="function_name">
|
194
|
+
<a class="link" href="GtkLabel.html#gtk-label-new-with-mnemonic" title="gtk_label_new_with_mnemonic ()">gtk_label_new_with_mnemonic</a> <span class="c_punctuation">()</span>
|
195
|
+
</td>
|
196
|
+
</tr>
|
197
|
+
<tr>
|
198
|
+
<td class="function_type">
|
199
|
+
<span class="returnvalue">void</span>
|
200
|
+
</td>
|
201
|
+
<td class="function_name">
|
202
|
+
<a class="link" href="GtkLabel.html#gtk-label-select-region" title="gtk_label_select_region ()">gtk_label_select_region</a> <span class="c_punctuation">()</span>
|
203
|
+
</td>
|
204
|
+
</tr>
|
205
|
+
<tr>
|
206
|
+
<td class="function_type">
|
207
|
+
<span class="returnvalue">void</span>
|
208
|
+
</td>
|
209
|
+
<td class="function_name">
|
210
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()">gtk_label_set_mnemonic_widget</a> <span class="c_punctuation">()</span>
|
211
|
+
</td>
|
212
|
+
</tr>
|
213
|
+
<tr>
|
214
|
+
<td class="function_type">
|
215
|
+
<span class="returnvalue">void</span>
|
216
|
+
</td>
|
217
|
+
<td class="function_name">
|
218
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-selectable" title="gtk_label_set_selectable ()">gtk_label_set_selectable</a> <span class="c_punctuation">()</span>
|
219
|
+
</td>
|
220
|
+
</tr>
|
221
|
+
<tr>
|
222
|
+
<td class="function_type">
|
223
|
+
<span class="returnvalue">void</span>
|
224
|
+
</td>
|
225
|
+
<td class="function_name">
|
226
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-text-with-mnemonic" title="gtk_label_set_text_with_mnemonic ()">gtk_label_set_text_with_mnemonic</a> <span class="c_punctuation">()</span>
|
227
|
+
</td>
|
228
|
+
</tr>
|
229
|
+
<tr>
|
230
|
+
<td class="function_type">
|
231
|
+
<a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *
|
232
|
+
</td>
|
233
|
+
<td class="function_name">
|
234
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-attributes" title="gtk_label_get_attributes ()">gtk_label_get_attributes</a> <span class="c_punctuation">()</span>
|
235
|
+
</td>
|
236
|
+
</tr>
|
237
|
+
<tr>
|
238
|
+
<td class="function_type">
|
239
|
+
<a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a>
|
240
|
+
</td>
|
241
|
+
<td class="function_name">
|
242
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-justify" title="gtk_label_get_justify ()">gtk_label_get_justify</a> <span class="c_punctuation">()</span>
|
243
|
+
</td>
|
244
|
+
</tr>
|
245
|
+
<tr>
|
246
|
+
<td class="function_type">
|
247
|
+
<a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="returnvalue">PangoEllipsizeMode</span></a>
|
248
|
+
</td>
|
249
|
+
<td class="function_name">
|
250
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-ellipsize" title="gtk_label_get_ellipsize ()">gtk_label_get_ellipsize</a> <span class="c_punctuation">()</span>
|
251
|
+
</td>
|
252
|
+
</tr>
|
253
|
+
<tr>
|
254
|
+
<td class="function_type">
|
255
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
256
|
+
</td>
|
257
|
+
<td class="function_name">
|
258
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-width-chars" title="gtk_label_get_width_chars ()">gtk_label_get_width_chars</a> <span class="c_punctuation">()</span>
|
259
|
+
</td>
|
260
|
+
</tr>
|
261
|
+
<tr>
|
262
|
+
<td class="function_type">
|
263
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
264
|
+
</td>
|
265
|
+
<td class="function_name">
|
266
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-max-width-chars" title="gtk_label_get_max_width_chars ()">gtk_label_get_max_width_chars</a> <span class="c_punctuation">()</span>
|
267
|
+
</td>
|
268
|
+
</tr>
|
269
|
+
<tr>
|
270
|
+
<td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
271
|
+
</td>
|
272
|
+
<td class="function_name">
|
273
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-label" title="gtk_label_get_label ()">gtk_label_get_label</a> <span class="c_punctuation">()</span>
|
274
|
+
</td>
|
275
|
+
</tr>
|
276
|
+
<tr>
|
277
|
+
<td class="function_type">
|
278
|
+
<a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="returnvalue">PangoLayout</span></a> *
|
279
|
+
</td>
|
280
|
+
<td class="function_name">
|
281
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-layout" title="gtk_label_get_layout ()">gtk_label_get_layout</a> <span class="c_punctuation">()</span>
|
282
|
+
</td>
|
283
|
+
</tr>
|
284
|
+
<tr>
|
285
|
+
<td class="function_type">
|
286
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
287
|
+
</td>
|
288
|
+
<td class="function_name">
|
289
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-line-wrap" title="gtk_label_get_line_wrap ()">gtk_label_get_line_wrap</a> <span class="c_punctuation">()</span>
|
290
|
+
</td>
|
291
|
+
</tr>
|
292
|
+
<tr>
|
293
|
+
<td class="function_type">
|
294
|
+
<a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="returnvalue">PangoWrapMode</span></a>
|
295
|
+
</td>
|
296
|
+
<td class="function_name">
|
297
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-line-wrap-mode" title="gtk_label_get_line_wrap_mode ()">gtk_label_get_line_wrap_mode</a> <span class="c_punctuation">()</span>
|
298
|
+
</td>
|
299
|
+
</tr>
|
300
|
+
<tr>
|
301
|
+
<td class="function_type">
|
302
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
303
|
+
</td>
|
304
|
+
<td class="function_name">
|
305
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-mnemonic-widget" title="gtk_label_get_mnemonic_widget ()">gtk_label_get_mnemonic_widget</a> <span class="c_punctuation">()</span>
|
306
|
+
</td>
|
307
|
+
</tr>
|
308
|
+
<tr>
|
309
|
+
<td class="function_type">
|
310
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
311
|
+
</td>
|
312
|
+
<td class="function_name">
|
313
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-selection-bounds" title="gtk_label_get_selection_bounds ()">gtk_label_get_selection_bounds</a> <span class="c_punctuation">()</span>
|
314
|
+
</td>
|
315
|
+
</tr>
|
316
|
+
<tr>
|
317
|
+
<td class="function_type">
|
318
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
319
|
+
</td>
|
320
|
+
<td class="function_name">
|
321
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-use-markup" title="gtk_label_get_use_markup ()">gtk_label_get_use_markup</a> <span class="c_punctuation">()</span>
|
322
|
+
</td>
|
323
|
+
</tr>
|
324
|
+
<tr>
|
325
|
+
<td class="function_type">
|
326
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
327
|
+
</td>
|
328
|
+
<td class="function_name">
|
329
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-use-underline" title="gtk_label_get_use_underline ()">gtk_label_get_use_underline</a> <span class="c_punctuation">()</span>
|
330
|
+
</td>
|
331
|
+
</tr>
|
332
|
+
<tr>
|
333
|
+
<td class="function_type">
|
334
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
335
|
+
</td>
|
336
|
+
<td class="function_name">
|
337
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-single-line-mode" title="gtk_label_get_single_line_mode ()">gtk_label_get_single_line_mode</a> <span class="c_punctuation">()</span>
|
338
|
+
</td>
|
339
|
+
</tr>
|
340
|
+
<tr>
|
341
|
+
<td class="function_type">
|
342
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
343
|
+
</td>
|
344
|
+
<td class="function_name">
|
345
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-angle" title="gtk_label_get_angle ()">gtk_label_get_angle</a> <span class="c_punctuation">()</span>
|
346
|
+
</td>
|
347
|
+
</tr>
|
348
|
+
<tr>
|
349
|
+
<td class="function_type">
|
350
|
+
<span class="returnvalue">void</span>
|
351
|
+
</td>
|
352
|
+
<td class="function_name">
|
353
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-label" title="gtk_label_set_label ()">gtk_label_set_label</a> <span class="c_punctuation">()</span>
|
354
|
+
</td>
|
355
|
+
</tr>
|
356
|
+
<tr>
|
357
|
+
<td class="function_type">
|
358
|
+
<span class="returnvalue">void</span>
|
359
|
+
</td>
|
360
|
+
<td class="function_name">
|
361
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-use-markup" title="gtk_label_set_use_markup ()">gtk_label_set_use_markup</a> <span class="c_punctuation">()</span>
|
362
|
+
</td>
|
363
|
+
</tr>
|
364
|
+
<tr>
|
365
|
+
<td class="function_type">
|
366
|
+
<span class="returnvalue">void</span>
|
367
|
+
</td>
|
368
|
+
<td class="function_name">
|
369
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-use-underline" title="gtk_label_set_use_underline ()">gtk_label_set_use_underline</a> <span class="c_punctuation">()</span>
|
370
|
+
</td>
|
371
|
+
</tr>
|
372
|
+
<tr>
|
373
|
+
<td class="function_type">
|
374
|
+
<span class="returnvalue">void</span>
|
375
|
+
</td>
|
376
|
+
<td class="function_name">
|
377
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-single-line-mode" title="gtk_label_set_single_line_mode ()">gtk_label_set_single_line_mode</a> <span class="c_punctuation">()</span>
|
378
|
+
</td>
|
379
|
+
</tr>
|
380
|
+
<tr>
|
381
|
+
<td class="function_type">
|
382
|
+
<span class="returnvalue">void</span>
|
383
|
+
</td>
|
384
|
+
<td class="function_name">
|
385
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-angle" title="gtk_label_set_angle ()">gtk_label_set_angle</a> <span class="c_punctuation">()</span>
|
386
|
+
</td>
|
387
|
+
</tr>
|
388
|
+
<tr>
|
389
|
+
<td class="function_type">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
390
|
+
</td>
|
391
|
+
<td class="function_name">
|
392
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-current-uri" title="gtk_label_get_current_uri ()">gtk_label_get_current_uri</a> <span class="c_punctuation">()</span>
|
393
|
+
</td>
|
394
|
+
</tr>
|
395
|
+
<tr>
|
396
|
+
<td class="function_type">
|
397
|
+
<span class="returnvalue">void</span>
|
398
|
+
</td>
|
399
|
+
<td class="function_name">
|
400
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-track-visited-links" title="gtk_label_set_track_visited_links ()">gtk_label_set_track_visited_links</a> <span class="c_punctuation">()</span>
|
401
|
+
</td>
|
402
|
+
</tr>
|
403
|
+
<tr>
|
404
|
+
<td class="function_type">
|
405
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
406
|
+
</td>
|
407
|
+
<td class="function_name">
|
408
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-track-visited-links" title="gtk_label_get_track_visited_links ()">gtk_label_get_track_visited_links</a> <span class="c_punctuation">()</span>
|
409
|
+
</td>
|
410
|
+
</tr>
|
411
|
+
</tbody>
|
412
|
+
</table></div>
|
413
|
+
</div>
|
414
|
+
<div class="refsect1">
|
415
|
+
<a name="GtkLabel.properties"></a><h2>Properties</h2>
|
416
|
+
<div class="informaltable"><table border="0">
|
417
|
+
<colgroup>
|
418
|
+
<col width="150px" class="properties_type">
|
419
|
+
<col width="300px" class="properties_name">
|
420
|
+
<col width="200px" class="properties_flags">
|
421
|
+
</colgroup>
|
422
|
+
<tbody>
|
423
|
+
<tr>
|
424
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a></td>
|
425
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--angle" title="The “angle” property">angle</a></td>
|
426
|
+
<td class="property_flags">Read / Write</td>
|
427
|
+
</tr>
|
428
|
+
<tr>
|
429
|
+
<td class="property_type">
|
430
|
+
<a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a> *</td>
|
431
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--attributes" title="The “attributes” property">attributes</a></td>
|
432
|
+
<td class="property_flags">Read / Write</td>
|
433
|
+
</tr>
|
434
|
+
<tr>
|
435
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
|
436
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--cursor-position" title="The “cursor-position” property">cursor-position</a></td>
|
437
|
+
<td class="property_flags">Read</td>
|
438
|
+
</tr>
|
439
|
+
<tr>
|
440
|
+
<td class="property_type"><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a></td>
|
441
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--ellipsize" title="The “ellipsize” property">ellipsize</a></td>
|
442
|
+
<td class="property_flags">Read / Write</td>
|
443
|
+
</tr>
|
444
|
+
<tr>
|
445
|
+
<td class="property_type"><a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a></td>
|
446
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--justify" title="The “justify” property">justify</a></td>
|
447
|
+
<td class="property_flags">Read / Write</td>
|
448
|
+
</tr>
|
449
|
+
<tr>
|
450
|
+
<td class="property_type">
|
451
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
452
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--label" title="The “label” property">label</a></td>
|
453
|
+
<td class="property_flags">Read / Write</td>
|
454
|
+
</tr>
|
455
|
+
<tr>
|
456
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
|
457
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--max-width-chars" title="The “max-width-chars” property">max-width-chars</a></td>
|
458
|
+
<td class="property_flags">Read / Write</td>
|
459
|
+
</tr>
|
460
|
+
<tr>
|
461
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></td>
|
462
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--mnemonic-keyval" title="The “mnemonic-keyval” property">mnemonic-keyval</a></td>
|
463
|
+
<td class="property_flags">Read</td>
|
464
|
+
</tr>
|
465
|
+
<tr>
|
466
|
+
<td class="property_type">
|
467
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *</td>
|
468
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--mnemonic-widget" title="The “mnemonic-widget” property">mnemonic-widget</a></td>
|
469
|
+
<td class="property_flags">Read / Write</td>
|
470
|
+
</tr>
|
471
|
+
<tr>
|
472
|
+
<td class="property_type">
|
473
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</td>
|
474
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--pattern" title="The “pattern” property">pattern</a></td>
|
475
|
+
<td class="property_flags">Write</td>
|
476
|
+
</tr>
|
477
|
+
<tr>
|
478
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
|
479
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--selectable" title="The “selectable” property">selectable</a></td>
|
480
|
+
<td class="property_flags">Read / Write</td>
|
481
|
+
</tr>
|
482
|
+
<tr>
|
483
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
|
484
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--selection-bound" title="The “selection-bound” property">selection-bound</a></td>
|
485
|
+
<td class="property_flags">Read</td>
|
486
|
+
</tr>
|
487
|
+
<tr>
|
488
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
|
489
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--single-line-mode" title="The “single-line-mode” property">single-line-mode</a></td>
|
490
|
+
<td class="property_flags">Read / Write</td>
|
491
|
+
</tr>
|
492
|
+
<tr>
|
493
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
|
494
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--track-visited-links" title="The “track-visited-links” property">track-visited-links</a></td>
|
495
|
+
<td class="property_flags">Read / Write</td>
|
496
|
+
</tr>
|
497
|
+
<tr>
|
498
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
|
499
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--use-markup" title="The “use-markup” property">use-markup</a></td>
|
500
|
+
<td class="property_flags">Read / Write</td>
|
501
|
+
</tr>
|
502
|
+
<tr>
|
503
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
|
504
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--use-underline" title="The “use-underline” property">use-underline</a></td>
|
505
|
+
<td class="property_flags">Read / Write</td>
|
506
|
+
</tr>
|
507
|
+
<tr>
|
508
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></td>
|
509
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--width-chars" title="The “width-chars” property">width-chars</a></td>
|
510
|
+
<td class="property_flags">Read / Write</td>
|
511
|
+
</tr>
|
512
|
+
<tr>
|
513
|
+
<td class="property_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></td>
|
514
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--wrap" title="The “wrap” property">wrap</a></td>
|
515
|
+
<td class="property_flags">Read / Write</td>
|
516
|
+
</tr>
|
517
|
+
<tr>
|
518
|
+
<td class="property_type"><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="type">PangoWrapMode</span></a></td>
|
519
|
+
<td class="property_name"><a class="link" href="GtkLabel.html#GtkLabel--wrap-mode" title="The “wrap-mode” property">wrap-mode</a></td>
|
520
|
+
<td class="property_flags">Read / Write</td>
|
521
|
+
</tr>
|
522
|
+
</tbody>
|
523
|
+
</table></div>
|
524
|
+
</div>
|
525
|
+
<div class="refsect1">
|
526
|
+
<a name="GtkLabel.signals"></a><h2>Signals</h2>
|
527
|
+
<div class="informaltable"><table border="0">
|
528
|
+
<colgroup>
|
529
|
+
<col width="150px" class="signals_return">
|
530
|
+
<col width="300px" class="signals_name">
|
531
|
+
<col width="200px" class="signals_flags">
|
532
|
+
</colgroup>
|
533
|
+
<tbody>
|
534
|
+
<tr>
|
535
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
536
|
+
<td class="signal_name"><a class="link" href="GtkLabel.html#GtkLabel-activate-current-link" title="The “activate-current-link” signal">activate-current-link</a></td>
|
537
|
+
<td class="signal_flags">Action</td>
|
538
|
+
</tr>
|
539
|
+
<tr>
|
540
|
+
<td class="signal_type"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a></td>
|
541
|
+
<td class="signal_name"><a class="link" href="GtkLabel.html#GtkLabel-activate-link" title="The “activate-link” signal">activate-link</a></td>
|
542
|
+
<td class="signal_flags">Run Last</td>
|
543
|
+
</tr>
|
544
|
+
<tr>
|
545
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
546
|
+
<td class="signal_name"><a class="link" href="GtkLabel.html#GtkLabel-copy-clipboard" title="The “copy-clipboard” signal">copy-clipboard</a></td>
|
547
|
+
<td class="signal_flags">Action</td>
|
548
|
+
</tr>
|
549
|
+
<tr>
|
550
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
551
|
+
<td class="signal_name"><a class="link" href="GtkLabel.html#GtkLabel-move-cursor" title="The “move-cursor” signal">move-cursor</a></td>
|
552
|
+
<td class="signal_flags">Action</td>
|
553
|
+
</tr>
|
554
|
+
<tr>
|
555
|
+
<td class="signal_type"><span class="returnvalue">void</span></td>
|
556
|
+
<td class="signal_name"><a class="link" href="GtkLabel.html#GtkLabel-populate-popup" title="The “populate-popup” signal">populate-popup</a></td>
|
557
|
+
<td class="signal_flags">Run Last</td>
|
558
|
+
</tr>
|
559
|
+
</tbody>
|
560
|
+
</table></div>
|
561
|
+
</div>
|
562
|
+
<div class="refsect1">
|
563
|
+
<a name="GtkLabel.other"></a><h2>Types and Values</h2>
|
564
|
+
<div class="informaltable"><table width="100%" border="0">
|
565
|
+
<colgroup>
|
566
|
+
<col width="150px" class="name">
|
567
|
+
<col class="description">
|
568
|
+
</colgroup>
|
569
|
+
<tbody>
|
570
|
+
<tr>
|
571
|
+
<td class="datatype_keyword">struct</td>
|
572
|
+
<td class="function_name"><a class="link" href="GtkLabel.html#GtkLabel-struct" title="struct GtkLabel">GtkLabel</a></td>
|
573
|
+
</tr>
|
574
|
+
<tr>
|
575
|
+
<td class="define_keyword">#define</td>
|
576
|
+
<td class="function_name"><a class="link" href="GtkLabel.html#gtk-label-set" title="gtk_label_set">gtk_label_set</a></td>
|
577
|
+
</tr>
|
578
|
+
</tbody>
|
579
|
+
</table></div>
|
580
|
+
</div>
|
581
|
+
<div class="refsect1">
|
582
|
+
<a name="GtkLabel.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
583
|
+
<pre class="screen"> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
584
|
+
<span class="lineart">╰──</span> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
|
585
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
|
586
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
|
587
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkMisc.html" title="GtkMisc">GtkMisc</a>
|
588
|
+
<span class="lineart">╰──</span> GtkLabel
|
589
|
+
<span class="lineart">├──</span> <a class="link" href="GtkAccelLabel.html" title="GtkAccelLabel">GtkAccelLabel</a>
|
590
|
+
<span class="lineart">╰──</span> <a class="link" href="GtkTipsQuery.html" title="GtkTipsQuery">GtkTipsQuery</a>
|
591
|
+
</pre>
|
592
|
+
</div>
|
593
|
+
<div class="refsect1">
|
594
|
+
<a name="GtkLabel.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
595
|
+
<p>
|
596
|
+
GtkLabel implements
|
597
|
+
AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
598
|
+
</div>
|
599
|
+
<div class="refsect1">
|
600
|
+
<a name="GtkLabel.includes"></a><h2>Includes</h2>
|
601
|
+
<pre class="synopsis">#include <gtk/gtk.h>
|
602
|
+
</pre>
|
603
|
+
</div>
|
604
|
+
<div class="refsect1">
|
605
|
+
<a name="GtkLabel.description"></a><h2>Description</h2>
|
606
|
+
<p>
|
607
|
+
The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget displays a small amount of text. As the name
|
608
|
+
implies, most labels are used to label another widget such as a
|
609
|
+
<a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>, a <a class="link" href="GtkMenuItem.html" title="GtkMenuItem"><span class="type">GtkMenuItem</span></a>, or a <a class="link" href="GtkOptionMenu.html" title="GtkOptionMenu"><span class="type">GtkOptionMenu</span></a>.
|
610
|
+
</p>
|
611
|
+
<div class="refsect2">
|
612
|
+
<a name="GtkLabel-BUILDER-UI"></a><h3>GtkLabel as GtkBuildable</h3>
|
613
|
+
<p>
|
614
|
+
The GtkLabel implementation of the GtkBuildable interface supports a
|
615
|
+
custom <attributes> element, which supports any number of <attribute>
|
616
|
+
elements. the <attribute> element has attributes named name, value,
|
617
|
+
start and end and allows you to specify <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttribute"><span class="type">PangoAttribute</span></a> values for this label.
|
618
|
+
</p>
|
619
|
+
<div class="example">
|
620
|
+
<a name="id-1.4.5.4.10.3.3"></a><p class="title"><b>Example 13. A UI definition fragment specifying Pango attributes</b></p>
|
621
|
+
<div class="example-contents">
|
622
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
623
|
+
<tbody>
|
624
|
+
<tr>
|
625
|
+
<td class="listing_lines" align="right"><pre>1
|
626
|
+
2
|
627
|
+
3
|
628
|
+
4
|
629
|
+
5
|
630
|
+
6</pre></td>
|
631
|
+
<td class="listing_code"><pre class="programlisting"><span class="symbol"><</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkLabel"</span><span class="symbol">></span>
|
632
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="normal">attributes</span><span class="symbol">></span>
|
633
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">attribute</span><span class="normal"> name</span><span class="symbol">=</span><span class="string">"weight"</span><span class="normal"> value</span><span class="symbol">=</span><span class="string">"PANGO_WEIGHT_BOLD"</span><span class="symbol">/></span>
|
634
|
+
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">attribute</span><span class="normal"> name</span><span class="symbol">=</span><span class="string">"background"</span><span class="normal"> value</span><span class="symbol">=</span><span class="string">"red"</span><span class="normal"> start</span><span class="symbol">=</span><span class="string">"5"</span><span class="normal"> end</span><span class="symbol">=</span><span class="string">"10"</span><span class="symbol">/></span><span class="string">"</span>
|
635
|
+
<span class="string"> </attributes></span>
|
636
|
+
<span class="string"></object></span></pre></td>
|
637
|
+
</tr>
|
638
|
+
</tbody>
|
639
|
+
</table>
|
640
|
+
</div>
|
641
|
+
|
642
|
+
</div>
|
643
|
+
<br class="example-break"><p>
|
644
|
+
The start and end attributes specify the range of characters to which the
|
645
|
+
Pango attribute applies. If start and end are not specified, the attribute is
|
646
|
+
applied to the whole text. Note that specifying ranges does not make much
|
647
|
+
sense with translatable attributes. Use markup embedded in the translatable
|
648
|
+
content instead.
|
649
|
+
</p>
|
650
|
+
</div>
|
651
|
+
<hr>
|
652
|
+
<div class="refsect2">
|
653
|
+
<a name="id-1.4.5.4.10.4"></a><h3>Mnemonics</h3>
|
654
|
+
<p>
|
655
|
+
Labels may contain <em class="firstterm">mnemonics</em>. Mnemonics are
|
656
|
+
underlined characters in the label, used for keyboard navigation.
|
657
|
+
Mnemonics are created by providing a string with an underscore before
|
658
|
+
the mnemonic character, such as <code class="literal">"_File"</code>, to the
|
659
|
+
functions <a class="link" href="GtkLabel.html#gtk-label-new-with-mnemonic" title="gtk_label_new_with_mnemonic ()"><code class="function">gtk_label_new_with_mnemonic()</code></a> or
|
660
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-text-with-mnemonic" title="gtk_label_set_text_with_mnemonic ()"><code class="function">gtk_label_set_text_with_mnemonic()</code></a>.
|
661
|
+
</p>
|
662
|
+
<p>
|
663
|
+
Mnemonics automatically activate any activatable widget the label is
|
664
|
+
inside, such as a <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a>; if the label is not inside the
|
665
|
+
mnemonic's target widget, you have to tell the label about the target
|
666
|
+
using <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>. Here's a simple example where
|
667
|
+
the label is inside a button:
|
668
|
+
</p>
|
669
|
+
<div class="informalexample">
|
670
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
671
|
+
<tbody>
|
672
|
+
<tr>
|
673
|
+
<td class="listing_lines" align="right"><pre>1
|
674
|
+
2
|
675
|
+
3
|
676
|
+
4</pre></td>
|
677
|
+
<td class="listing_code"><pre class="programlisting"><span class="comment">/* Pressing Alt+H will activate this button */</span>
|
678
|
+
<span class="normal">button </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkButton.html#gtk-button-new">gtk_button_new</a></span><span class="normal"> </span><span class="symbol">();</span>
|
679
|
+
<span class="normal">label </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkLabel.html#gtk-label-new-with-mnemonic">gtk_label_new_with_mnemonic</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"_Hello"</span><span class="symbol">);</span>
|
680
|
+
<span class="function"><a href="GtkContainer.html#gtk-container-add">gtk_container_add</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_CONTAINER</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">button</span><span class="symbol">),</span><span class="normal"> label</span><span class="symbol">);</span></pre></td>
|
681
|
+
</tr>
|
682
|
+
</tbody>
|
683
|
+
</table>
|
684
|
+
</div>
|
685
|
+
|
686
|
+
<p>
|
687
|
+
There's a convenience function to create buttons with a mnemonic label
|
688
|
+
already inside:
|
689
|
+
</p>
|
690
|
+
<div class="informalexample">
|
691
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
692
|
+
<tbody>
|
693
|
+
<tr>
|
694
|
+
<td class="listing_lines" align="right"><pre>1
|
695
|
+
2</pre></td>
|
696
|
+
<td class="listing_code"><pre class="programlisting"><span class="comment">/* Pressing Alt+H will activate this button */</span>
|
697
|
+
<span class="normal">button </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkButton.html#gtk-button-new-with-mnemonic">gtk_button_new_with_mnemonic</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"_Hello"</span><span class="symbol">);</span></pre></td>
|
698
|
+
</tr>
|
699
|
+
</tbody>
|
700
|
+
</table>
|
701
|
+
</div>
|
702
|
+
|
703
|
+
<p>
|
704
|
+
To create a mnemonic for a widget alongside the label, such as a
|
705
|
+
<a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a>, you have to point the label at the entry with
|
706
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>:
|
707
|
+
</p>
|
708
|
+
<div class="informalexample">
|
709
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
710
|
+
<tbody>
|
711
|
+
<tr>
|
712
|
+
<td class="listing_lines" align="right"><pre>1
|
713
|
+
2
|
714
|
+
3
|
715
|
+
4</pre></td>
|
716
|
+
<td class="listing_code"><pre class="programlisting"><span class="comment">/* Pressing Alt+H will focus the entry */</span>
|
717
|
+
<span class="normal">entry </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkEntry.html#gtk-entry-new">gtk_entry_new</a></span><span class="normal"> </span><span class="symbol">();</span>
|
718
|
+
<span class="normal">label </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkLabel.html#gtk-label-new-with-mnemonic">gtk_label_new_with_mnemonic</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"_Hello"</span><span class="symbol">);</span>
|
719
|
+
<span class="function"><a href="GtkLabel.html#gtk-label-set-mnemonic-widget">gtk_label_set_mnemonic_widget</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_LABEL</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">label</span><span class="symbol">),</span><span class="normal"> entry</span><span class="symbol">);</span></pre></td>
|
720
|
+
</tr>
|
721
|
+
</tbody>
|
722
|
+
</table>
|
723
|
+
</div>
|
724
|
+
|
725
|
+
<p>
|
726
|
+
</p>
|
727
|
+
</div>
|
728
|
+
<hr>
|
729
|
+
<div class="refsect2">
|
730
|
+
<a name="id-1.4.5.4.10.5"></a><h3>Markup (styled text)</h3>
|
731
|
+
<p>
|
732
|
+
To make it easy to format text in a label (changing colors, fonts,
|
733
|
+
etc.), label text can be provided in a simple <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/PangoMarkupFormat.html">markup format</a>.
|
734
|
+
Here's how to create a label with a small font:
|
735
|
+
</p>
|
736
|
+
<div class="informalexample">
|
737
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
738
|
+
<tbody>
|
739
|
+
<tr>
|
740
|
+
<td class="listing_lines" align="right"><pre>1
|
741
|
+
2</pre></td>
|
742
|
+
<td class="listing_code"><pre class="programlisting"><span class="normal">label </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="GtkLabel.html#gtk-label-new">gtk_label_new</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS">NULL</a></span><span class="symbol">);</span>
|
743
|
+
<span class="function"><a href="GtkLabel.html#gtk-label-set-markup">gtk_label_set_markup</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_LABEL</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">label</span><span class="symbol">),</span><span class="normal"> </span><span class="string">"<small>Small text</small>"</span><span class="symbol">);</span></pre></td>
|
744
|
+
</tr>
|
745
|
+
</tbody>
|
746
|
+
</table>
|
747
|
+
</div>
|
748
|
+
|
749
|
+
<p>
|
750
|
+
(See <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/PangoMarkupFormat.html">complete documentation</a> of available
|
751
|
+
tags in the Pango manual.)
|
752
|
+
</p>
|
753
|
+
<p>
|
754
|
+
The markup passed to <a class="link" href="GtkLabel.html#gtk-label-set-markup" title="gtk_label_set_markup ()"><code class="function">gtk_label_set_markup()</code></a> must be valid; for example,
|
755
|
+
literal </>/& characters must be escaped as &lt;,
|
756
|
+
&gt;, and &amp;. If you pass text obtained from the user, file,
|
757
|
+
or a network to <a class="link" href="GtkLabel.html#gtk-label-set-markup" title="gtk_label_set_markup ()"><code class="function">gtk_label_set_markup()</code></a>, you'll want to escape it with
|
758
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html#g-markup-escape-text"><code class="function">g_markup_escape_text()</code></a> or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html#g-markup-printf-escaped"><code class="function">g_markup_printf_escaped()</code></a>.
|
759
|
+
</p>
|
760
|
+
<p>
|
761
|
+
Markup strings are just a convenient way to set the <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a> on
|
762
|
+
a label; <a class="link" href="GtkLabel.html#gtk-label-set-attributes" title="gtk_label_set_attributes ()"><code class="function">gtk_label_set_attributes()</code></a> may be a simpler way to set
|
763
|
+
attributes in some cases. Be careful though; <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a> tends to
|
764
|
+
cause internationalization problems, unless you're applying attributes
|
765
|
+
to the entire string (i.e. unless you set the range of each attribute
|
766
|
+
to [0, G_MAXINT)). The reason is that specifying the start_index and
|
767
|
+
end_index for a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttribute"><span class="type">PangoAttribute</span></a> requires knowledge of the exact string
|
768
|
+
being displayed, so translations will cause problems.
|
769
|
+
</p>
|
770
|
+
</div>
|
771
|
+
<hr>
|
772
|
+
<div class="refsect2">
|
773
|
+
<a name="id-1.4.5.4.10.6"></a><h3>Selectable labels</h3>
|
774
|
+
<p>
|
775
|
+
Labels can be made selectable with <a class="link" href="GtkLabel.html#gtk-label-set-selectable" title="gtk_label_set_selectable ()"><code class="function">gtk_label_set_selectable()</code></a>.
|
776
|
+
Selectable labels allow the user to copy the label contents to
|
777
|
+
the clipboard. Only labels that contain useful-to-copy information
|
778
|
+
— such as error messages — should be made selectable.
|
779
|
+
</p>
|
780
|
+
</div>
|
781
|
+
<hr>
|
782
|
+
<div class="refsect2">
|
783
|
+
<a name="id-1.4.5.4.10.7"></a><h3>Text layout</h3>
|
784
|
+
<p>
|
785
|
+
A label can contain any number of paragraphs, but will have
|
786
|
+
performance problems if it contains more than a small number.
|
787
|
+
Paragraphs are separated by newlines or other paragraph separators
|
788
|
+
understood by Pango.
|
789
|
+
</p>
|
790
|
+
<p>
|
791
|
+
Labels can automatically wrap text if you call
|
792
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-line-wrap" title="gtk_label_set_line_wrap ()"><code class="function">gtk_label_set_line_wrap()</code></a>.
|
793
|
+
</p>
|
794
|
+
<p>
|
795
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-justify" title="gtk_label_set_justify ()"><code class="function">gtk_label_set_justify()</code></a> sets how the lines in a label align
|
796
|
+
with one another. If you want to set how the label as a whole
|
797
|
+
aligns in its available space, see <a class="link" href="GtkMisc.html#gtk-misc-set-alignment" title="gtk_misc_set_alignment ()"><code class="function">gtk_misc_set_alignment()</code></a>.
|
798
|
+
</p>
|
799
|
+
</div>
|
800
|
+
<hr>
|
801
|
+
<div class="refsect2">
|
802
|
+
<a name="id-1.4.5.4.10.8"></a><h3>Links</h3>
|
803
|
+
<p>
|
804
|
+
Since 2.18, GTK+ supports markup for clickable hyperlinks in addition
|
805
|
+
to regular Pango markup. The markup for links is borrowed from HTML, using the
|
806
|
+
<code class="sgmltag-element">a</code> with href and title attributes. GTK+ renders links similar to the
|
807
|
+
way they appear in web browsers, with colored, underlined text. The title
|
808
|
+
attribute is displayed as a tooltip on the link. An example looks like this:
|
809
|
+
</p>
|
810
|
+
<div class="informalexample">
|
811
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
812
|
+
<tbody>
|
813
|
+
<tr>
|
814
|
+
<td class="listing_lines" align="right"><pre>1</pre></td>
|
815
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="GtkLabel.html#gtk-label-set-markup">gtk_label_set_markup</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">label</span><span class="symbol">,</span><span class="normal"> </span><span class="string">"Go to the <a href=</span><span class="specialchar">\"</span><span class="string">http://www.gtk.org</span><span class="specialchar">\"</span><span class="string"> title=</span><span class="specialchar">\"</span><span class="string">&lt;i&gt;Our&lt;/i&gt; website</span><span class="specialchar">\"</span><span class="string">>GTK+ website</a> for more..."</span><span class="symbol">);</span></pre></td>
|
816
|
+
</tr>
|
817
|
+
</tbody>
|
818
|
+
</table>
|
819
|
+
</div>
|
820
|
+
|
821
|
+
<p>
|
822
|
+
It is possible to implement custom handling for links and their tooltips with
|
823
|
+
the <a class="link" href="GtkLabel.html#GtkLabel-activate-link" title="The “activate-link” signal"><span class="type">“activate-link”</span></a> signal and the <a class="link" href="GtkLabel.html#gtk-label-get-current-uri" title="gtk_label_get_current_uri ()"><code class="function">gtk_label_get_current_uri()</code></a> function.
|
824
|
+
</p>
|
825
|
+
</div>
|
826
|
+
</div>
|
827
|
+
<div class="refsect1">
|
828
|
+
<a name="GtkLabel.functions_details"></a><h2>Functions</h2>
|
829
|
+
<div class="refsect2">
|
830
|
+
<a name="gtk-label-new"></a><h3>gtk_label_new ()</h3>
|
831
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
832
|
+
gtk_label_new (<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);</pre>
|
833
|
+
<p>Creates a new label with the given text inside it. You can
|
834
|
+
pass <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to get an empty label widget.</p>
|
835
|
+
<div class="refsect3">
|
836
|
+
<a name="id-1.4.5.4.11.2.5"></a><h4>Parameters</h4>
|
837
|
+
<div class="informaltable"><table width="100%" border="0">
|
838
|
+
<colgroup>
|
839
|
+
<col width="150px" class="parameters_name">
|
840
|
+
<col class="parameters_description">
|
841
|
+
<col width="200px" class="parameters_annotations">
|
842
|
+
</colgroup>
|
843
|
+
<tbody><tr>
|
844
|
+
<td class="parameter_name"><p>str</p></td>
|
845
|
+
<td class="parameter_description"><p>The text of the label</p></td>
|
846
|
+
<td class="parameter_annotations"> </td>
|
847
|
+
</tr></tbody>
|
848
|
+
</table></div>
|
849
|
+
</div>
|
850
|
+
<div class="refsect3">
|
851
|
+
<a name="id-1.4.5.4.11.2.6"></a><h4>Returns</h4>
|
852
|
+
<p> the new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p>
|
853
|
+
<p></p>
|
854
|
+
</div>
|
855
|
+
</div>
|
856
|
+
<hr>
|
857
|
+
<div class="refsect2">
|
858
|
+
<a name="gtk-label-set-text"></a><h3>gtk_label_set_text ()</h3>
|
859
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
860
|
+
gtk_label_set_text (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
861
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);</pre>
|
862
|
+
<p>Sets the text within the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget. It overwrites any text that
|
863
|
+
was there before. </p>
|
864
|
+
<p>This will also clear any previously set mnemonic accelerators.</p>
|
865
|
+
<div class="refsect3">
|
866
|
+
<a name="id-1.4.5.4.11.3.6"></a><h4>Parameters</h4>
|
867
|
+
<div class="informaltable"><table width="100%" border="0">
|
868
|
+
<colgroup>
|
869
|
+
<col width="150px" class="parameters_name">
|
870
|
+
<col class="parameters_description">
|
871
|
+
<col width="200px" class="parameters_annotations">
|
872
|
+
</colgroup>
|
873
|
+
<tbody>
|
874
|
+
<tr>
|
875
|
+
<td class="parameter_name"><p>label</p></td>
|
876
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
877
|
+
<td class="parameter_annotations"> </td>
|
878
|
+
</tr>
|
879
|
+
<tr>
|
880
|
+
<td class="parameter_name"><p>str</p></td>
|
881
|
+
<td class="parameter_description"><p>The text you want to set</p></td>
|
882
|
+
<td class="parameter_annotations"> </td>
|
883
|
+
</tr>
|
884
|
+
</tbody>
|
885
|
+
</table></div>
|
886
|
+
</div>
|
887
|
+
</div>
|
888
|
+
<hr>
|
889
|
+
<div class="refsect2">
|
890
|
+
<a name="gtk-label-set-attributes"></a><h3>gtk_label_set_attributes ()</h3>
|
891
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
892
|
+
gtk_label_set_attributes (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
893
|
+
<em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a> *attrs</code></em>);</pre>
|
894
|
+
<p>Sets a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a>; the attributes in the list are applied to the
|
895
|
+
label text. </p>
|
896
|
+
<div class="note"><p>The attributes set with this function will be applied
|
897
|
+
and merged with any other attributes previously effected by way
|
898
|
+
of the <a class="link" href="GtkLabel.html#GtkLabel--use-underline" title="The “use-underline” property"><span class="type">“use-underline”</span></a> or <a class="link" href="GtkLabel.html#GtkLabel--use-markup" title="The “use-markup” property"><span class="type">“use-markup”</span></a> properties.
|
899
|
+
While it is not recommended to mix markup strings with manually set
|
900
|
+
attributes, if you must; know that the attributes will be applied
|
901
|
+
to the label after the markup string is parsed.</p></div>
|
902
|
+
<div class="refsect3">
|
903
|
+
<a name="id-1.4.5.4.11.4.6"></a><h4>Parameters</h4>
|
904
|
+
<div class="informaltable"><table width="100%" border="0">
|
905
|
+
<colgroup>
|
906
|
+
<col width="150px" class="parameters_name">
|
907
|
+
<col class="parameters_description">
|
908
|
+
<col width="200px" class="parameters_annotations">
|
909
|
+
</colgroup>
|
910
|
+
<tbody>
|
911
|
+
<tr>
|
912
|
+
<td class="parameter_name"><p>label</p></td>
|
913
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
914
|
+
<td class="parameter_annotations"> </td>
|
915
|
+
</tr>
|
916
|
+
<tr>
|
917
|
+
<td class="parameter_name"><p>attrs</p></td>
|
918
|
+
<td class="parameter_description"><p>a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a></p></td>
|
919
|
+
<td class="parameter_annotations"> </td>
|
920
|
+
</tr>
|
921
|
+
</tbody>
|
922
|
+
</table></div>
|
923
|
+
</div>
|
924
|
+
</div>
|
925
|
+
<hr>
|
926
|
+
<div class="refsect2">
|
927
|
+
<a name="gtk-label-set-markup"></a><h3>gtk_label_set_markup ()</h3>
|
928
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
929
|
+
gtk_label_set_markup (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
930
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);</pre>
|
931
|
+
<p>Parses <em class="parameter"><code>str</code></em>
|
932
|
+
which is marked up with the <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango text markup language</a>, setting the
|
933
|
+
label's text and attribute list based on the parse results. If the <em class="parameter"><code>str</code></em>
|
934
|
+
is
|
935
|
+
external data, you may need to escape it with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html#g-markup-escape-text"><code class="function">g_markup_escape_text()</code></a> or
|
936
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html#g-markup-printf-escaped"><code class="function">g_markup_printf_escaped()</code></a>:</p>
|
937
|
+
<div class="informalexample">
|
938
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
939
|
+
<tbody>
|
940
|
+
<tr>
|
941
|
+
<td class="listing_lines" align="right"><pre>1
|
942
|
+
2
|
943
|
+
3
|
944
|
+
4
|
945
|
+
5</pre></td>
|
946
|
+
<td class="listing_code"><pre class="programlisting"><span class="type">char</span><span class="normal"> </span><span class="symbol">*</span><span class="normal">markup</span><span class="symbol">;</span>
|
947
|
+
<span class="normal"> </span>
|
948
|
+
<span class="normal">markup </span><span class="symbol">=</span><span class="normal"> </span><span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html#g-markup-printf-escaped">g_markup_printf_escaped</a></span><span class="normal"> </span><span class="symbol">(</span><span class="string">"<span style=</span><span class="specialchar">\"</span><span class="string">italic</span><span class="specialchar">\"</span><span class="string">>%s</span>"</span><span class="symbol">,</span><span class="normal"> str</span><span class="symbol">);</span>
|
949
|
+
<span class="function"><a href="GtkLabel.html#gtk-label-set-markup">gtk_label_set_markup</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function">GTK_LABEL</span><span class="normal"> </span><span class="symbol">(</span><span class="normal">label</span><span class="symbol">),</span><span class="normal"> markup</span><span class="symbol">);</span>
|
950
|
+
<span class="function"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html#g-free">g_free</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">markup</span><span class="symbol">);</span></pre></td>
|
951
|
+
</tr>
|
952
|
+
</tbody>
|
953
|
+
</table>
|
954
|
+
</div>
|
955
|
+
|
956
|
+
<p></p>
|
957
|
+
<div class="refsect3">
|
958
|
+
<a name="id-1.4.5.4.11.5.7"></a><h4>Parameters</h4>
|
959
|
+
<div class="informaltable"><table width="100%" border="0">
|
960
|
+
<colgroup>
|
961
|
+
<col width="150px" class="parameters_name">
|
962
|
+
<col class="parameters_description">
|
963
|
+
<col width="200px" class="parameters_annotations">
|
964
|
+
</colgroup>
|
965
|
+
<tbody>
|
966
|
+
<tr>
|
967
|
+
<td class="parameter_name"><p>label</p></td>
|
968
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
969
|
+
<td class="parameter_annotations"> </td>
|
970
|
+
</tr>
|
971
|
+
<tr>
|
972
|
+
<td class="parameter_name"><p>str</p></td>
|
973
|
+
<td class="parameter_description"><p>a markup string (see <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup format</a>)</p></td>
|
974
|
+
<td class="parameter_annotations"> </td>
|
975
|
+
</tr>
|
976
|
+
</tbody>
|
977
|
+
</table></div>
|
978
|
+
</div>
|
979
|
+
</div>
|
980
|
+
<hr>
|
981
|
+
<div class="refsect2">
|
982
|
+
<a name="gtk-label-set-markup-with-mnemonic"></a><h3>gtk_label_set_markup_with_mnemonic ()</h3>
|
983
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
984
|
+
gtk_label_set_markup_with_mnemonic (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
985
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);</pre>
|
986
|
+
<p>Parses <em class="parameter"><code>str</code></em>
|
987
|
+
which is marked up with the <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango text markup language</a>,
|
988
|
+
setting the label's text and attribute list based on the parse results.
|
989
|
+
If characters in <em class="parameter"><code>str</code></em>
|
990
|
+
are preceded by an underscore, they are underlined
|
991
|
+
indicating that they represent a keyboard accelerator called a mnemonic.</p>
|
992
|
+
<p>The mnemonic key can be used to activate another widget, chosen
|
993
|
+
automatically, or explicitly using <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>.</p>
|
994
|
+
<div class="refsect3">
|
995
|
+
<a name="id-1.4.5.4.11.6.6"></a><h4>Parameters</h4>
|
996
|
+
<div class="informaltable"><table width="100%" border="0">
|
997
|
+
<colgroup>
|
998
|
+
<col width="150px" class="parameters_name">
|
999
|
+
<col class="parameters_description">
|
1000
|
+
<col width="200px" class="parameters_annotations">
|
1001
|
+
</colgroup>
|
1002
|
+
<tbody>
|
1003
|
+
<tr>
|
1004
|
+
<td class="parameter_name"><p>label</p></td>
|
1005
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1006
|
+
<td class="parameter_annotations"> </td>
|
1007
|
+
</tr>
|
1008
|
+
<tr>
|
1009
|
+
<td class="parameter_name"><p>str</p></td>
|
1010
|
+
<td class="parameter_description"><p>a markup string (see <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/PangoMarkupFormat.html">Pango markup format</a>)</p></td>
|
1011
|
+
<td class="parameter_annotations"> </td>
|
1012
|
+
</tr>
|
1013
|
+
</tbody>
|
1014
|
+
</table></div>
|
1015
|
+
</div>
|
1016
|
+
</div>
|
1017
|
+
<hr>
|
1018
|
+
<div class="refsect2">
|
1019
|
+
<a name="gtk-label-set-pattern"></a><h3>gtk_label_set_pattern ()</h3>
|
1020
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1021
|
+
gtk_label_set_pattern (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1022
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *pattern</code></em>);</pre>
|
1023
|
+
<p>
|
1024
|
+
The pattern of underlines you want under the existing text within the
|
1025
|
+
<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget. For example if the current text of the label says
|
1026
|
+
"FooBarBaz" passing a pattern of "___ ___" will underline
|
1027
|
+
"Foo" and "Baz" but not "Bar".
|
1028
|
+
</p>
|
1029
|
+
<div class="refsect3">
|
1030
|
+
<a name="id-1.4.5.4.11.7.5"></a><h4>Parameters</h4>
|
1031
|
+
<div class="informaltable"><table width="100%" border="0">
|
1032
|
+
<colgroup>
|
1033
|
+
<col width="150px" class="parameters_name">
|
1034
|
+
<col class="parameters_description">
|
1035
|
+
<col width="200px" class="parameters_annotations">
|
1036
|
+
</colgroup>
|
1037
|
+
<tbody>
|
1038
|
+
<tr>
|
1039
|
+
<td class="parameter_name"><p>label</p></td>
|
1040
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to set the pattern to.</p></td>
|
1041
|
+
<td class="parameter_annotations"> </td>
|
1042
|
+
</tr>
|
1043
|
+
<tr>
|
1044
|
+
<td class="parameter_name"><p>pattern</p></td>
|
1045
|
+
<td class="parameter_description"><p>The pattern as described above.</p></td>
|
1046
|
+
<td class="parameter_annotations"> </td>
|
1047
|
+
</tr>
|
1048
|
+
</tbody>
|
1049
|
+
</table></div>
|
1050
|
+
</div>
|
1051
|
+
</div>
|
1052
|
+
<hr>
|
1053
|
+
<div class="refsect2">
|
1054
|
+
<a name="gtk-label-set-justify"></a><h3>gtk_label_set_justify ()</h3>
|
1055
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1056
|
+
gtk_label_set_justify (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1057
|
+
<em class="parameter"><code><a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> jtype</code></em>);</pre>
|
1058
|
+
<p>Sets the alignment of the lines in the text of the label relative to
|
1059
|
+
each other. <a class="link" href="gtk2-Standard-Enumerations.html#GTK-JUSTIFY-LEFT:CAPS"><code class="literal">GTK_JUSTIFY_LEFT</code></a> is the default value when the
|
1060
|
+
widget is first created with <a class="link" href="GtkLabel.html#gtk-label-new" title="gtk_label_new ()"><code class="function">gtk_label_new()</code></a>. If you instead want
|
1061
|
+
to set the alignment of the label as a whole, use
|
1062
|
+
<a class="link" href="GtkMisc.html#gtk-misc-set-alignment" title="gtk_misc_set_alignment ()"><code class="function">gtk_misc_set_alignment()</code></a> instead. <a class="link" href="GtkLabel.html#gtk-label-set-justify" title="gtk_label_set_justify ()"><code class="function">gtk_label_set_justify()</code></a> has no
|
1063
|
+
effect on labels containing only a single line.</p>
|
1064
|
+
<div class="refsect3">
|
1065
|
+
<a name="id-1.4.5.4.11.8.5"></a><h4>Parameters</h4>
|
1066
|
+
<div class="informaltable"><table width="100%" border="0">
|
1067
|
+
<colgroup>
|
1068
|
+
<col width="150px" class="parameters_name">
|
1069
|
+
<col class="parameters_description">
|
1070
|
+
<col width="200px" class="parameters_annotations">
|
1071
|
+
</colgroup>
|
1072
|
+
<tbody>
|
1073
|
+
<tr>
|
1074
|
+
<td class="parameter_name"><p>label</p></td>
|
1075
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1076
|
+
<td class="parameter_annotations"> </td>
|
1077
|
+
</tr>
|
1078
|
+
<tr>
|
1079
|
+
<td class="parameter_name"><p>jtype</p></td>
|
1080
|
+
<td class="parameter_description"><p>a <a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a></p></td>
|
1081
|
+
<td class="parameter_annotations"> </td>
|
1082
|
+
</tr>
|
1083
|
+
</tbody>
|
1084
|
+
</table></div>
|
1085
|
+
</div>
|
1086
|
+
</div>
|
1087
|
+
<hr>
|
1088
|
+
<div class="refsect2">
|
1089
|
+
<a name="gtk-label-set-ellipsize"></a><h3>gtk_label_set_ellipsize ()</h3>
|
1090
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1091
|
+
gtk_label_set_ellipsize (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1092
|
+
<em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a> mode</code></em>);</pre>
|
1093
|
+
<p>Sets the mode used to ellipsize (add an ellipsis: "...") to the text
|
1094
|
+
if there is not enough space to render the entire string.</p>
|
1095
|
+
<div class="refsect3">
|
1096
|
+
<a name="id-1.4.5.4.11.9.5"></a><h4>Parameters</h4>
|
1097
|
+
<div class="informaltable"><table width="100%" border="0">
|
1098
|
+
<colgroup>
|
1099
|
+
<col width="150px" class="parameters_name">
|
1100
|
+
<col class="parameters_description">
|
1101
|
+
<col width="200px" class="parameters_annotations">
|
1102
|
+
</colgroup>
|
1103
|
+
<tbody>
|
1104
|
+
<tr>
|
1105
|
+
<td class="parameter_name"><p>label</p></td>
|
1106
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1107
|
+
<td class="parameter_annotations"> </td>
|
1108
|
+
</tr>
|
1109
|
+
<tr>
|
1110
|
+
<td class="parameter_name"><p>mode</p></td>
|
1111
|
+
<td class="parameter_description"><p>a <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a></p></td>
|
1112
|
+
<td class="parameter_annotations"> </td>
|
1113
|
+
</tr>
|
1114
|
+
</tbody>
|
1115
|
+
</table></div>
|
1116
|
+
</div>
|
1117
|
+
<p class="since">Since 2.6</p>
|
1118
|
+
</div>
|
1119
|
+
<hr>
|
1120
|
+
<div class="refsect2">
|
1121
|
+
<a name="gtk-label-set-width-chars"></a><h3>gtk_label_set_width_chars ()</h3>
|
1122
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1123
|
+
gtk_label_set_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1124
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_chars</code></em>);</pre>
|
1125
|
+
<p>Sets the desired width in characters of <em class="parameter"><code>label</code></em>
|
1126
|
+
to <em class="parameter"><code>n_chars</code></em>
|
1127
|
+
.</p>
|
1128
|
+
<div class="refsect3">
|
1129
|
+
<a name="id-1.4.5.4.11.10.5"></a><h4>Parameters</h4>
|
1130
|
+
<div class="informaltable"><table width="100%" border="0">
|
1131
|
+
<colgroup>
|
1132
|
+
<col width="150px" class="parameters_name">
|
1133
|
+
<col class="parameters_description">
|
1134
|
+
<col width="200px" class="parameters_annotations">
|
1135
|
+
</colgroup>
|
1136
|
+
<tbody>
|
1137
|
+
<tr>
|
1138
|
+
<td class="parameter_name"><p>label</p></td>
|
1139
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1140
|
+
<td class="parameter_annotations"> </td>
|
1141
|
+
</tr>
|
1142
|
+
<tr>
|
1143
|
+
<td class="parameter_name"><p>n_chars</p></td>
|
1144
|
+
<td class="parameter_description"><p>the new desired width, in characters.</p></td>
|
1145
|
+
<td class="parameter_annotations"> </td>
|
1146
|
+
</tr>
|
1147
|
+
</tbody>
|
1148
|
+
</table></div>
|
1149
|
+
</div>
|
1150
|
+
<p class="since">Since 2.6</p>
|
1151
|
+
</div>
|
1152
|
+
<hr>
|
1153
|
+
<div class="refsect2">
|
1154
|
+
<a name="gtk-label-set-max-width-chars"></a><h3>gtk_label_set_max_width_chars ()</h3>
|
1155
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1156
|
+
gtk_label_set_max_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1157
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n_chars</code></em>);</pre>
|
1158
|
+
<p>Sets the desired maximum width in characters of <em class="parameter"><code>label</code></em>
|
1159
|
+
to <em class="parameter"><code>n_chars</code></em>
|
1160
|
+
.</p>
|
1161
|
+
<div class="refsect3">
|
1162
|
+
<a name="id-1.4.5.4.11.11.5"></a><h4>Parameters</h4>
|
1163
|
+
<div class="informaltable"><table width="100%" border="0">
|
1164
|
+
<colgroup>
|
1165
|
+
<col width="150px" class="parameters_name">
|
1166
|
+
<col class="parameters_description">
|
1167
|
+
<col width="200px" class="parameters_annotations">
|
1168
|
+
</colgroup>
|
1169
|
+
<tbody>
|
1170
|
+
<tr>
|
1171
|
+
<td class="parameter_name"><p>label</p></td>
|
1172
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1173
|
+
<td class="parameter_annotations"> </td>
|
1174
|
+
</tr>
|
1175
|
+
<tr>
|
1176
|
+
<td class="parameter_name"><p>n_chars</p></td>
|
1177
|
+
<td class="parameter_description"><p>the new desired maximum width, in characters.</p></td>
|
1178
|
+
<td class="parameter_annotations"> </td>
|
1179
|
+
</tr>
|
1180
|
+
</tbody>
|
1181
|
+
</table></div>
|
1182
|
+
</div>
|
1183
|
+
<p class="since">Since 2.6</p>
|
1184
|
+
</div>
|
1185
|
+
<hr>
|
1186
|
+
<div class="refsect2">
|
1187
|
+
<a name="gtk-label-get"></a><h3>gtk_label_get ()</h3>
|
1188
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1189
|
+
gtk_label_get (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1190
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **str</code></em>);</pre>
|
1191
|
+
<div class="warning">
|
1192
|
+
<p><code class="literal">gtk_label_get</code> is deprecated and should not be used in newly-written code.</p>
|
1193
|
+
<p>Use <a class="link" href="GtkLabel.html#gtk-label-get-text" title="gtk_label_get_text ()"><code class="function">gtk_label_get_text()</code></a> instead.</p>
|
1194
|
+
</div>
|
1195
|
+
<p>
|
1196
|
+
Gets the current string of text within the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> and writes it to
|
1197
|
+
the given <em class="parameter"><code>str</code></em> argument. It does not make a copy of this string so you
|
1198
|
+
must not write to it.
|
1199
|
+
</p>
|
1200
|
+
<div class="refsect3">
|
1201
|
+
<a name="id-1.4.5.4.11.12.6"></a><h4>Parameters</h4>
|
1202
|
+
<div class="informaltable"><table width="100%" border="0">
|
1203
|
+
<colgroup>
|
1204
|
+
<col width="150px" class="parameters_name">
|
1205
|
+
<col class="parameters_description">
|
1206
|
+
<col width="200px" class="parameters_annotations">
|
1207
|
+
</colgroup>
|
1208
|
+
<tbody>
|
1209
|
+
<tr>
|
1210
|
+
<td class="parameter_name"><p>label</p></td>
|
1211
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget you want to get the text from.</p></td>
|
1212
|
+
<td class="parameter_annotations"> </td>
|
1213
|
+
</tr>
|
1214
|
+
<tr>
|
1215
|
+
<td class="parameter_name"><p>str</p></td>
|
1216
|
+
<td class="parameter_description"><p>The reference to the pointer you want to point to the text.</p></td>
|
1217
|
+
<td class="parameter_annotations"> </td>
|
1218
|
+
</tr>
|
1219
|
+
</tbody>
|
1220
|
+
</table></div>
|
1221
|
+
</div>
|
1222
|
+
</div>
|
1223
|
+
<hr>
|
1224
|
+
<div class="refsect2">
|
1225
|
+
<a name="gtk-label-parse-uline"></a><h3>gtk_label_parse_uline ()</h3>
|
1226
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1227
|
+
gtk_label_parse_uline (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1228
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *string</code></em>);</pre>
|
1229
|
+
<div class="warning">
|
1230
|
+
<p><code class="literal">gtk_label_parse_uline</code> is deprecated and should not be used in newly-written code.</p>
|
1231
|
+
<p>Use <a class="link" href="GtkLabel.html#gtk-label-set-use-underline" title="gtk_label_set_use_underline ()"><code class="function">gtk_label_set_use_underline()</code></a> instead.</p>
|
1232
|
+
</div>
|
1233
|
+
<p>
|
1234
|
+
Parses the given string for underscores and converts the next
|
1235
|
+
character to an underlined character. The last character that
|
1236
|
+
was underlined will have its lower-cased accelerator keyval returned (i.e.
|
1237
|
+
"_File" would return the keyval for "f". This is
|
1238
|
+
probably only used within the GTK+ library itself for menu items and such.
|
1239
|
+
</p>
|
1240
|
+
<div class="refsect3">
|
1241
|
+
<a name="id-1.4.5.4.11.13.6"></a><h4>Parameters</h4>
|
1242
|
+
<div class="informaltable"><table width="100%" border="0">
|
1243
|
+
<colgroup>
|
1244
|
+
<col width="150px" class="parameters_name">
|
1245
|
+
<col class="parameters_description">
|
1246
|
+
<col width="200px" class="parameters_annotations">
|
1247
|
+
</colgroup>
|
1248
|
+
<tbody>
|
1249
|
+
<tr>
|
1250
|
+
<td class="parameter_name"><p>label</p></td>
|
1251
|
+
<td class="parameter_description"><p>The <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> you want to affect.</p></td>
|
1252
|
+
<td class="parameter_annotations"> </td>
|
1253
|
+
</tr>
|
1254
|
+
<tr>
|
1255
|
+
<td class="parameter_name"><p>string</p></td>
|
1256
|
+
<td class="parameter_description"><p>The string you want to parse for underlines.</p></td>
|
1257
|
+
<td class="parameter_annotations"> </td>
|
1258
|
+
</tr>
|
1259
|
+
</tbody>
|
1260
|
+
</table></div>
|
1261
|
+
</div>
|
1262
|
+
<div class="refsect3">
|
1263
|
+
<a name="id-1.4.5.4.11.13.7"></a><h4>Returns</h4>
|
1264
|
+
<p>The lowercase keyval of the last character underlined.</p>
|
1265
|
+
<p></p>
|
1266
|
+
</div>
|
1267
|
+
</div>
|
1268
|
+
<hr>
|
1269
|
+
<div class="refsect2">
|
1270
|
+
<a name="gtk-label-set-line-wrap"></a><h3>gtk_label_set_line_wrap ()</h3>
|
1271
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1272
|
+
gtk_label_set_line_wrap (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1273
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> wrap</code></em>);</pre>
|
1274
|
+
<p>Toggles line wrapping within the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> widget. <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> makes it break
|
1275
|
+
lines if text exceeds the widget's size. <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> lets the text get cut off
|
1276
|
+
by the edge of the widget if it exceeds the widget size.</p>
|
1277
|
+
<p>Note that setting line wrapping to <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> does not make the label
|
1278
|
+
wrap at its parent container's width, because GTK+ widgets
|
1279
|
+
conceptually can't make their requisition depend on the parent
|
1280
|
+
container's size. For a label that wraps at a specific position,
|
1281
|
+
set the label's width using <a class="link" href="GtkWidget.html#gtk-widget-set-size-request" title="gtk_widget_set_size_request ()"><code class="function">gtk_widget_set_size_request()</code></a>.</p>
|
1282
|
+
<div class="refsect3">
|
1283
|
+
<a name="id-1.4.5.4.11.14.6"></a><h4>Parameters</h4>
|
1284
|
+
<div class="informaltable"><table width="100%" border="0">
|
1285
|
+
<colgroup>
|
1286
|
+
<col width="150px" class="parameters_name">
|
1287
|
+
<col class="parameters_description">
|
1288
|
+
<col width="200px" class="parameters_annotations">
|
1289
|
+
</colgroup>
|
1290
|
+
<tbody>
|
1291
|
+
<tr>
|
1292
|
+
<td class="parameter_name"><p>label</p></td>
|
1293
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1294
|
+
<td class="parameter_annotations"> </td>
|
1295
|
+
</tr>
|
1296
|
+
<tr>
|
1297
|
+
<td class="parameter_name"><p>wrap</p></td>
|
1298
|
+
<td class="parameter_description"><p>the setting</p></td>
|
1299
|
+
<td class="parameter_annotations"> </td>
|
1300
|
+
</tr>
|
1301
|
+
</tbody>
|
1302
|
+
</table></div>
|
1303
|
+
</div>
|
1304
|
+
</div>
|
1305
|
+
<hr>
|
1306
|
+
<div class="refsect2">
|
1307
|
+
<a name="gtk-label-set-line-wrap-mode"></a><h3>gtk_label_set_line_wrap_mode ()</h3>
|
1308
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1309
|
+
gtk_label_set_line_wrap_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1310
|
+
<em class="parameter"><code><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="type">PangoWrapMode</span></a> wrap_mode</code></em>);</pre>
|
1311
|
+
<p>If line wrapping is on (see <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap" title="gtk_label_set_line_wrap ()"><code class="function">gtk_label_set_line_wrap()</code></a>) this controls how
|
1312
|
+
the line wrapping is done. The default is <code class="literal">PANGO_WRAP_WORD</code> which means
|
1313
|
+
wrap on word boundaries.</p>
|
1314
|
+
<div class="refsect3">
|
1315
|
+
<a name="id-1.4.5.4.11.15.5"></a><h4>Parameters</h4>
|
1316
|
+
<div class="informaltable"><table width="100%" border="0">
|
1317
|
+
<colgroup>
|
1318
|
+
<col width="150px" class="parameters_name">
|
1319
|
+
<col class="parameters_description">
|
1320
|
+
<col width="200px" class="parameters_annotations">
|
1321
|
+
</colgroup>
|
1322
|
+
<tbody>
|
1323
|
+
<tr>
|
1324
|
+
<td class="parameter_name"><p>label</p></td>
|
1325
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1326
|
+
<td class="parameter_annotations"> </td>
|
1327
|
+
</tr>
|
1328
|
+
<tr>
|
1329
|
+
<td class="parameter_name"><p>wrap_mode</p></td>
|
1330
|
+
<td class="parameter_description"><p>the line wrapping mode</p></td>
|
1331
|
+
<td class="parameter_annotations"> </td>
|
1332
|
+
</tr>
|
1333
|
+
</tbody>
|
1334
|
+
</table></div>
|
1335
|
+
</div>
|
1336
|
+
<p class="since">Since 2.10</p>
|
1337
|
+
</div>
|
1338
|
+
<hr>
|
1339
|
+
<div class="refsect2">
|
1340
|
+
<a name="gtk-label-get-layout-offsets"></a><h3>gtk_label_get_layout_offsets ()</h3>
|
1341
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1342
|
+
gtk_label_get_layout_offsets (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1343
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *x</code></em>,
|
1344
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *y</code></em>);</pre>
|
1345
|
+
<p>Obtains the coordinates where the label will draw the <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a>
|
1346
|
+
representing the text in the label; useful to convert mouse events
|
1347
|
+
into coordinates inside the <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a>, e.g. to take some action
|
1348
|
+
if some part of the label is clicked. Of course you will need to
|
1349
|
+
create a <a class="link" href="GtkEventBox.html" title="GtkEventBox"><span class="type">GtkEventBox</span></a> to receive the events, and pack the label
|
1350
|
+
inside it, since labels are a <a class="link" href="GtkWidget.html#GTK-NO-WINDOW:CAPS"><span class="type">GTK_NO_WINDOW</span></a> widget. Remember
|
1351
|
+
when using the <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> functions you need to convert to
|
1352
|
+
and from pixels using <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Glyph-Storage.html#PANGO-PIXELS:CAPS"><code class="function">PANGO_PIXELS()</code></a> or <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Glyph-Storage.html#PANGO-SCALE:CAPS"><span class="type">PANGO_SCALE</span></a>.</p>
|
1353
|
+
<div class="refsect3">
|
1354
|
+
<a name="id-1.4.5.4.11.16.5"></a><h4>Parameters</h4>
|
1355
|
+
<div class="informaltable"><table width="100%" border="0">
|
1356
|
+
<colgroup>
|
1357
|
+
<col width="150px" class="parameters_name">
|
1358
|
+
<col class="parameters_description">
|
1359
|
+
<col width="200px" class="parameters_annotations">
|
1360
|
+
</colgroup>
|
1361
|
+
<tbody>
|
1362
|
+
<tr>
|
1363
|
+
<td class="parameter_name"><p>label</p></td>
|
1364
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1365
|
+
<td class="parameter_annotations"> </td>
|
1366
|
+
</tr>
|
1367
|
+
<tr>
|
1368
|
+
<td class="parameter_name"><p>x</p></td>
|
1369
|
+
<td class="parameter_description"><p> location to store X offset of layout, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
1370
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1371
|
+
</tr>
|
1372
|
+
<tr>
|
1373
|
+
<td class="parameter_name"><p>y</p></td>
|
1374
|
+
<td class="parameter_description"><p> location to store Y offset of layout, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. </p></td>
|
1375
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>][<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1376
|
+
</tr>
|
1377
|
+
</tbody>
|
1378
|
+
</table></div>
|
1379
|
+
</div>
|
1380
|
+
</div>
|
1381
|
+
<hr>
|
1382
|
+
<div class="refsect2">
|
1383
|
+
<a name="gtk-label-get-mnemonic-keyval"></a><h3>gtk_label_get_mnemonic_keyval ()</h3>
|
1384
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="returnvalue">guint</span></a>
|
1385
|
+
gtk_label_get_mnemonic_keyval (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1386
|
+
<p>If the label has been set so that it has an mnemonic key this function
|
1387
|
+
returns the keyval used for the mnemonic accelerator. If there is no
|
1388
|
+
mnemonic set up it returns <span class="type">GDK_VoidSymbol</span>.</p>
|
1389
|
+
<div class="refsect3">
|
1390
|
+
<a name="id-1.4.5.4.11.17.5"></a><h4>Parameters</h4>
|
1391
|
+
<div class="informaltable"><table width="100%" border="0">
|
1392
|
+
<colgroup>
|
1393
|
+
<col width="150px" class="parameters_name">
|
1394
|
+
<col class="parameters_description">
|
1395
|
+
<col width="200px" class="parameters_annotations">
|
1396
|
+
</colgroup>
|
1397
|
+
<tbody><tr>
|
1398
|
+
<td class="parameter_name"><p>label</p></td>
|
1399
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1400
|
+
<td class="parameter_annotations"> </td>
|
1401
|
+
</tr></tbody>
|
1402
|
+
</table></div>
|
1403
|
+
</div>
|
1404
|
+
<div class="refsect3">
|
1405
|
+
<a name="id-1.4.5.4.11.17.6"></a><h4>Returns</h4>
|
1406
|
+
<p> GDK keyval usable for accelerators, or <span class="type">GDK_VoidSymbol</span></p>
|
1407
|
+
<p></p>
|
1408
|
+
</div>
|
1409
|
+
</div>
|
1410
|
+
<hr>
|
1411
|
+
<div class="refsect2">
|
1412
|
+
<a name="gtk-label-get-selectable"></a><h3>gtk_label_get_selectable ()</h3>
|
1413
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1414
|
+
gtk_label_get_selectable (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1415
|
+
<p>Gets the value set by <a class="link" href="GtkLabel.html#gtk-label-set-selectable" title="gtk_label_set_selectable ()"><code class="function">gtk_label_set_selectable()</code></a>.</p>
|
1416
|
+
<div class="refsect3">
|
1417
|
+
<a name="id-1.4.5.4.11.18.5"></a><h4>Parameters</h4>
|
1418
|
+
<div class="informaltable"><table width="100%" border="0">
|
1419
|
+
<colgroup>
|
1420
|
+
<col width="150px" class="parameters_name">
|
1421
|
+
<col class="parameters_description">
|
1422
|
+
<col width="200px" class="parameters_annotations">
|
1423
|
+
</colgroup>
|
1424
|
+
<tbody><tr>
|
1425
|
+
<td class="parameter_name"><p>label</p></td>
|
1426
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1427
|
+
<td class="parameter_annotations"> </td>
|
1428
|
+
</tr></tbody>
|
1429
|
+
</table></div>
|
1430
|
+
</div>
|
1431
|
+
<div class="refsect3">
|
1432
|
+
<a name="id-1.4.5.4.11.18.6"></a><h4>Returns</h4>
|
1433
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the user can copy text from the label</p>
|
1434
|
+
<p></p>
|
1435
|
+
</div>
|
1436
|
+
</div>
|
1437
|
+
<hr>
|
1438
|
+
<div class="refsect2">
|
1439
|
+
<a name="gtk-label-get-text"></a><h3>gtk_label_get_text ()</h3>
|
1440
|
+
<pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1441
|
+
gtk_label_get_text (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1442
|
+
<p>Fetches the text from a label widget, as displayed on the
|
1443
|
+
screen. This does not include any embedded underlines
|
1444
|
+
indicating mnemonics or Pango markup. (See <a class="link" href="GtkLabel.html#gtk-label-get-label" title="gtk_label_get_label ()"><code class="function">gtk_label_get_label()</code></a>)</p>
|
1445
|
+
<div class="refsect3">
|
1446
|
+
<a name="id-1.4.5.4.11.19.5"></a><h4>Parameters</h4>
|
1447
|
+
<div class="informaltable"><table width="100%" border="0">
|
1448
|
+
<colgroup>
|
1449
|
+
<col width="150px" class="parameters_name">
|
1450
|
+
<col class="parameters_description">
|
1451
|
+
<col width="200px" class="parameters_annotations">
|
1452
|
+
</colgroup>
|
1453
|
+
<tbody><tr>
|
1454
|
+
<td class="parameter_name"><p>label</p></td>
|
1455
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1456
|
+
<td class="parameter_annotations"> </td>
|
1457
|
+
</tr></tbody>
|
1458
|
+
</table></div>
|
1459
|
+
</div>
|
1460
|
+
<div class="refsect3">
|
1461
|
+
<a name="id-1.4.5.4.11.19.6"></a><h4>Returns</h4>
|
1462
|
+
<p> the text in the label widget. This is the internal
|
1463
|
+
string used by the label, and must not be modified.</p>
|
1464
|
+
<p></p>
|
1465
|
+
</div>
|
1466
|
+
</div>
|
1467
|
+
<hr>
|
1468
|
+
<div class="refsect2">
|
1469
|
+
<a name="gtk-label-new-with-mnemonic"></a><h3>gtk_label_new_with_mnemonic ()</h3>
|
1470
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
1471
|
+
gtk_label_new_with_mnemonic (<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);</pre>
|
1472
|
+
<p>Creates a new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a>, containing the text in <em class="parameter"><code>str</code></em>
|
1473
|
+
.</p>
|
1474
|
+
<p>If characters in <em class="parameter"><code>str</code></em>
|
1475
|
+
are preceded by an underscore, they are
|
1476
|
+
underlined. If you need a literal underscore character in a label, use
|
1477
|
+
'__' (two underscores). The first underlined character represents a
|
1478
|
+
keyboard accelerator called a mnemonic. The mnemonic key can be used
|
1479
|
+
to activate another widget, chosen automatically, or explicitly using
|
1480
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>.</p>
|
1481
|
+
<p>If <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a> is not called, then the first
|
1482
|
+
activatable ancestor of the <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> will be chosen as the mnemonic
|
1483
|
+
widget. For instance, if the label is inside a button or menu item,
|
1484
|
+
the button or menu item will automatically become the mnemonic widget
|
1485
|
+
and be activated by the mnemonic.</p>
|
1486
|
+
<div class="refsect3">
|
1487
|
+
<a name="id-1.4.5.4.11.20.7"></a><h4>Parameters</h4>
|
1488
|
+
<div class="informaltable"><table width="100%" border="0">
|
1489
|
+
<colgroup>
|
1490
|
+
<col width="150px" class="parameters_name">
|
1491
|
+
<col class="parameters_description">
|
1492
|
+
<col width="200px" class="parameters_annotations">
|
1493
|
+
</colgroup>
|
1494
|
+
<tbody><tr>
|
1495
|
+
<td class="parameter_name"><p>str</p></td>
|
1496
|
+
<td class="parameter_description"><p>The text of the label, with an underscore in front of the
|
1497
|
+
mnemonic character</p></td>
|
1498
|
+
<td class="parameter_annotations"> </td>
|
1499
|
+
</tr></tbody>
|
1500
|
+
</table></div>
|
1501
|
+
</div>
|
1502
|
+
<div class="refsect3">
|
1503
|
+
<a name="id-1.4.5.4.11.20.8"></a><h4>Returns</h4>
|
1504
|
+
<p> the new <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p>
|
1505
|
+
<p></p>
|
1506
|
+
</div>
|
1507
|
+
</div>
|
1508
|
+
<hr>
|
1509
|
+
<div class="refsect2">
|
1510
|
+
<a name="gtk-label-select-region"></a><h3>gtk_label_select_region ()</h3>
|
1511
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1512
|
+
gtk_label_select_region (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1513
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> start_offset</code></em>,
|
1514
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> end_offset</code></em>);</pre>
|
1515
|
+
<p>Selects a range of characters in the label, if the label is selectable.
|
1516
|
+
See <a class="link" href="GtkLabel.html#gtk-label-set-selectable" title="gtk_label_set_selectable ()"><code class="function">gtk_label_set_selectable()</code></a>. If the label is not selectable,
|
1517
|
+
this function has no effect. If <em class="parameter"><code>start_offset</code></em>
|
1518
|
+
or
|
1519
|
+
<em class="parameter"><code>end_offset</code></em>
|
1520
|
+
are -1, then the end of the label will be substituted.</p>
|
1521
|
+
<div class="refsect3">
|
1522
|
+
<a name="id-1.4.5.4.11.21.5"></a><h4>Parameters</h4>
|
1523
|
+
<div class="informaltable"><table width="100%" border="0">
|
1524
|
+
<colgroup>
|
1525
|
+
<col width="150px" class="parameters_name">
|
1526
|
+
<col class="parameters_description">
|
1527
|
+
<col width="200px" class="parameters_annotations">
|
1528
|
+
</colgroup>
|
1529
|
+
<tbody>
|
1530
|
+
<tr>
|
1531
|
+
<td class="parameter_name"><p>label</p></td>
|
1532
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1533
|
+
<td class="parameter_annotations"> </td>
|
1534
|
+
</tr>
|
1535
|
+
<tr>
|
1536
|
+
<td class="parameter_name"><p>start_offset</p></td>
|
1537
|
+
<td class="parameter_description"><p>start offset (in characters not bytes)</p></td>
|
1538
|
+
<td class="parameter_annotations"> </td>
|
1539
|
+
</tr>
|
1540
|
+
<tr>
|
1541
|
+
<td class="parameter_name"><p>end_offset</p></td>
|
1542
|
+
<td class="parameter_description"><p>end offset (in characters not bytes)</p></td>
|
1543
|
+
<td class="parameter_annotations"> </td>
|
1544
|
+
</tr>
|
1545
|
+
</tbody>
|
1546
|
+
</table></div>
|
1547
|
+
</div>
|
1548
|
+
</div>
|
1549
|
+
<hr>
|
1550
|
+
<div class="refsect2">
|
1551
|
+
<a name="gtk-label-set-mnemonic-widget"></a><h3>gtk_label_set_mnemonic_widget ()</h3>
|
1552
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1553
|
+
gtk_label_set_mnemonic_widget (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1554
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
|
1555
|
+
<p>If the label has been set so that it has an mnemonic key (using
|
1556
|
+
i.e. <a class="link" href="GtkLabel.html#gtk-label-set-markup-with-mnemonic" title="gtk_label_set_markup_with_mnemonic ()"><code class="function">gtk_label_set_markup_with_mnemonic()</code></a>,
|
1557
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-text-with-mnemonic" title="gtk_label_set_text_with_mnemonic ()"><code class="function">gtk_label_set_text_with_mnemonic()</code></a>, <a class="link" href="GtkLabel.html#gtk-label-new-with-mnemonic" title="gtk_label_new_with_mnemonic ()"><code class="function">gtk_label_new_with_mnemonic()</code></a>
|
1558
|
+
or the "use_underline" property) the label can be associated with a
|
1559
|
+
widget that is the target of the mnemonic. When the label is inside
|
1560
|
+
a widget (like a <a class="link" href="GtkButton.html" title="GtkButton"><span class="type">GtkButton</span></a> or a <a class="link" href="GtkNotebook.html" title="GtkNotebook"><span class="type">GtkNotebook</span></a> tab) it is
|
1561
|
+
automatically associated with the correct widget, but sometimes
|
1562
|
+
(i.e. when the target is a <a class="link" href="GtkEntry.html" title="GtkEntry"><span class="type">GtkEntry</span></a> next to the label) you need to
|
1563
|
+
set it explicitly using this function.</p>
|
1564
|
+
<p>The target widget will be accelerated by emitting the
|
1565
|
+
GtkWidget::mnemonic-activate signal on it. The default handler for
|
1566
|
+
this signal will activate the widget if there are no mnemonic collisions
|
1567
|
+
and toggle focus between the colliding widgets otherwise.</p>
|
1568
|
+
<div class="refsect3">
|
1569
|
+
<a name="id-1.4.5.4.11.22.6"></a><h4>Parameters</h4>
|
1570
|
+
<div class="informaltable"><table width="100%" border="0">
|
1571
|
+
<colgroup>
|
1572
|
+
<col width="150px" class="parameters_name">
|
1573
|
+
<col class="parameters_description">
|
1574
|
+
<col width="200px" class="parameters_annotations">
|
1575
|
+
</colgroup>
|
1576
|
+
<tbody>
|
1577
|
+
<tr>
|
1578
|
+
<td class="parameter_name"><p>label</p></td>
|
1579
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1580
|
+
<td class="parameter_annotations"> </td>
|
1581
|
+
</tr>
|
1582
|
+
<tr>
|
1583
|
+
<td class="parameter_name"><p>widget</p></td>
|
1584
|
+
<td class="parameter_description"><p> the target <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a>. </p></td>
|
1585
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="NULL is OK, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span></td>
|
1586
|
+
</tr>
|
1587
|
+
</tbody>
|
1588
|
+
</table></div>
|
1589
|
+
</div>
|
1590
|
+
</div>
|
1591
|
+
<hr>
|
1592
|
+
<div class="refsect2">
|
1593
|
+
<a name="gtk-label-set-selectable"></a><h3>gtk_label_set_selectable ()</h3>
|
1594
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1595
|
+
gtk_label_set_selectable (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1596
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
|
1597
|
+
<p>Selectable labels allow the user to select text from the label, for
|
1598
|
+
copy-and-paste.</p>
|
1599
|
+
<div class="refsect3">
|
1600
|
+
<a name="id-1.4.5.4.11.23.5"></a><h4>Parameters</h4>
|
1601
|
+
<div class="informaltable"><table width="100%" border="0">
|
1602
|
+
<colgroup>
|
1603
|
+
<col width="150px" class="parameters_name">
|
1604
|
+
<col class="parameters_description">
|
1605
|
+
<col width="200px" class="parameters_annotations">
|
1606
|
+
</colgroup>
|
1607
|
+
<tbody>
|
1608
|
+
<tr>
|
1609
|
+
<td class="parameter_name"><p>label</p></td>
|
1610
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1611
|
+
<td class="parameter_annotations"> </td>
|
1612
|
+
</tr>
|
1613
|
+
<tr>
|
1614
|
+
<td class="parameter_name"><p>setting</p></td>
|
1615
|
+
<td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to allow selecting text in the label</p></td>
|
1616
|
+
<td class="parameter_annotations"> </td>
|
1617
|
+
</tr>
|
1618
|
+
</tbody>
|
1619
|
+
</table></div>
|
1620
|
+
</div>
|
1621
|
+
</div>
|
1622
|
+
<hr>
|
1623
|
+
<div class="refsect2">
|
1624
|
+
<a name="gtk-label-set-text-with-mnemonic"></a><h3>gtk_label_set_text_with_mnemonic ()</h3>
|
1625
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
1626
|
+
gtk_label_set_text_with_mnemonic (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1627
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);</pre>
|
1628
|
+
<p>Sets the label's text from the string <em class="parameter"><code>str</code></em>
|
1629
|
+
.
|
1630
|
+
If characters in <em class="parameter"><code>str</code></em>
|
1631
|
+
are preceded by an underscore, they are underlined
|
1632
|
+
indicating that they represent a keyboard accelerator called a mnemonic.
|
1633
|
+
The mnemonic key can be used to activate another widget, chosen
|
1634
|
+
automatically, or explicitly using <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>.</p>
|
1635
|
+
<div class="refsect3">
|
1636
|
+
<a name="id-1.4.5.4.11.24.5"></a><h4>Parameters</h4>
|
1637
|
+
<div class="informaltable"><table width="100%" border="0">
|
1638
|
+
<colgroup>
|
1639
|
+
<col width="150px" class="parameters_name">
|
1640
|
+
<col class="parameters_description">
|
1641
|
+
<col width="200px" class="parameters_annotations">
|
1642
|
+
</colgroup>
|
1643
|
+
<tbody>
|
1644
|
+
<tr>
|
1645
|
+
<td class="parameter_name"><p>label</p></td>
|
1646
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1647
|
+
<td class="parameter_annotations"> </td>
|
1648
|
+
</tr>
|
1649
|
+
<tr>
|
1650
|
+
<td class="parameter_name"><p>str</p></td>
|
1651
|
+
<td class="parameter_description"><p>a string</p></td>
|
1652
|
+
<td class="parameter_annotations"> </td>
|
1653
|
+
</tr>
|
1654
|
+
</tbody>
|
1655
|
+
</table></div>
|
1656
|
+
</div>
|
1657
|
+
</div>
|
1658
|
+
<hr>
|
1659
|
+
<div class="refsect2">
|
1660
|
+
<a name="gtk-label-get-attributes"></a><h3>gtk_label_get_attributes ()</h3>
|
1661
|
+
<pre class="programlisting"><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="returnvalue">PangoAttrList</span></a> *
|
1662
|
+
gtk_label_get_attributes (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1663
|
+
<p>Gets the attribute list that was set on the label using
|
1664
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-attributes" title="gtk_label_set_attributes ()"><code class="function">gtk_label_set_attributes()</code></a>, if any. This function does
|
1665
|
+
not reflect attributes that come from the labels markup
|
1666
|
+
(see <a class="link" href="GtkLabel.html#gtk-label-set-markup" title="gtk_label_set_markup ()"><code class="function">gtk_label_set_markup()</code></a>). If you want to get the
|
1667
|
+
effective attributes for the label, use
|
1668
|
+
pango_layout_get_attribute (gtk_label_get_layout (label)).</p>
|
1669
|
+
<div class="refsect3">
|
1670
|
+
<a name="id-1.4.5.4.11.25.5"></a><h4>Parameters</h4>
|
1671
|
+
<div class="informaltable"><table width="100%" border="0">
|
1672
|
+
<colgroup>
|
1673
|
+
<col width="150px" class="parameters_name">
|
1674
|
+
<col class="parameters_description">
|
1675
|
+
<col width="200px" class="parameters_annotations">
|
1676
|
+
</colgroup>
|
1677
|
+
<tbody><tr>
|
1678
|
+
<td class="parameter_name"><p>label</p></td>
|
1679
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1680
|
+
<td class="parameter_annotations"> </td>
|
1681
|
+
</tr></tbody>
|
1682
|
+
</table></div>
|
1683
|
+
</div>
|
1684
|
+
<div class="refsect3">
|
1685
|
+
<a name="id-1.4.5.4.11.25.6"></a><h4>Returns</h4>
|
1686
|
+
<p> the attribute list, or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>
|
1687
|
+
if none was set. </p>
|
1688
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1689
|
+
</div>
|
1690
|
+
</div>
|
1691
|
+
<hr>
|
1692
|
+
<div class="refsect2">
|
1693
|
+
<a name="gtk-label-get-justify"></a><h3>gtk_label_get_justify ()</h3>
|
1694
|
+
<pre class="programlisting"><a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="returnvalue">GtkJustification</span></a>
|
1695
|
+
gtk_label_get_justify (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1696
|
+
<p>Returns the justification of the label. See <a class="link" href="GtkLabel.html#gtk-label-set-justify" title="gtk_label_set_justify ()"><code class="function">gtk_label_set_justify()</code></a>.</p>
|
1697
|
+
<div class="refsect3">
|
1698
|
+
<a name="id-1.4.5.4.11.26.5"></a><h4>Parameters</h4>
|
1699
|
+
<div class="informaltable"><table width="100%" border="0">
|
1700
|
+
<colgroup>
|
1701
|
+
<col width="150px" class="parameters_name">
|
1702
|
+
<col class="parameters_description">
|
1703
|
+
<col width="200px" class="parameters_annotations">
|
1704
|
+
</colgroup>
|
1705
|
+
<tbody><tr>
|
1706
|
+
<td class="parameter_name"><p>label</p></td>
|
1707
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1708
|
+
<td class="parameter_annotations"> </td>
|
1709
|
+
</tr></tbody>
|
1710
|
+
</table></div>
|
1711
|
+
</div>
|
1712
|
+
<div class="refsect3">
|
1713
|
+
<a name="id-1.4.5.4.11.26.6"></a><h4>Returns</h4>
|
1714
|
+
<p> <a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a></p>
|
1715
|
+
<p></p>
|
1716
|
+
</div>
|
1717
|
+
</div>
|
1718
|
+
<hr>
|
1719
|
+
<div class="refsect2">
|
1720
|
+
<a name="gtk-label-get-ellipsize"></a><h3>gtk_label_get_ellipsize ()</h3>
|
1721
|
+
<pre class="programlisting"><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="returnvalue">PangoEllipsizeMode</span></a>
|
1722
|
+
gtk_label_get_ellipsize (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1723
|
+
<p>Returns the ellipsizing position of the label. See <a class="link" href="GtkLabel.html#gtk-label-set-ellipsize" title="gtk_label_set_ellipsize ()"><code class="function">gtk_label_set_ellipsize()</code></a>.</p>
|
1724
|
+
<div class="refsect3">
|
1725
|
+
<a name="id-1.4.5.4.11.27.5"></a><h4>Parameters</h4>
|
1726
|
+
<div class="informaltable"><table width="100%" border="0">
|
1727
|
+
<colgroup>
|
1728
|
+
<col width="150px" class="parameters_name">
|
1729
|
+
<col class="parameters_description">
|
1730
|
+
<col width="200px" class="parameters_annotations">
|
1731
|
+
</colgroup>
|
1732
|
+
<tbody><tr>
|
1733
|
+
<td class="parameter_name"><p>label</p></td>
|
1734
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1735
|
+
<td class="parameter_annotations"> </td>
|
1736
|
+
</tr></tbody>
|
1737
|
+
</table></div>
|
1738
|
+
</div>
|
1739
|
+
<div class="refsect3">
|
1740
|
+
<a name="id-1.4.5.4.11.27.6"></a><h4>Returns</h4>
|
1741
|
+
<p> <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a></p>
|
1742
|
+
<p></p>
|
1743
|
+
</div>
|
1744
|
+
<p class="since">Since 2.6</p>
|
1745
|
+
</div>
|
1746
|
+
<hr>
|
1747
|
+
<div class="refsect2">
|
1748
|
+
<a name="gtk-label-get-width-chars"></a><h3>gtk_label_get_width_chars ()</h3>
|
1749
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
1750
|
+
gtk_label_get_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1751
|
+
<p>Retrieves the desired width of <em class="parameter"><code>label</code></em>
|
1752
|
+
, in characters. See
|
1753
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-width-chars" title="gtk_label_set_width_chars ()"><code class="function">gtk_label_set_width_chars()</code></a>.</p>
|
1754
|
+
<div class="refsect3">
|
1755
|
+
<a name="id-1.4.5.4.11.28.5"></a><h4>Parameters</h4>
|
1756
|
+
<div class="informaltable"><table width="100%" border="0">
|
1757
|
+
<colgroup>
|
1758
|
+
<col width="150px" class="parameters_name">
|
1759
|
+
<col class="parameters_description">
|
1760
|
+
<col width="200px" class="parameters_annotations">
|
1761
|
+
</colgroup>
|
1762
|
+
<tbody><tr>
|
1763
|
+
<td class="parameter_name"><p>label</p></td>
|
1764
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1765
|
+
<td class="parameter_annotations"> </td>
|
1766
|
+
</tr></tbody>
|
1767
|
+
</table></div>
|
1768
|
+
</div>
|
1769
|
+
<div class="refsect3">
|
1770
|
+
<a name="id-1.4.5.4.11.28.6"></a><h4>Returns</h4>
|
1771
|
+
<p> the width of the label in characters.</p>
|
1772
|
+
<p></p>
|
1773
|
+
</div>
|
1774
|
+
<p class="since">Since 2.6</p>
|
1775
|
+
</div>
|
1776
|
+
<hr>
|
1777
|
+
<div class="refsect2">
|
1778
|
+
<a name="gtk-label-get-max-width-chars"></a><h3>gtk_label_get_max_width_chars ()</h3>
|
1779
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a>
|
1780
|
+
gtk_label_get_max_width_chars (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1781
|
+
<p>Retrieves the desired maximum width of <em class="parameter"><code>label</code></em>
|
1782
|
+
, in characters. See
|
1783
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-width-chars" title="gtk_label_set_width_chars ()"><code class="function">gtk_label_set_width_chars()</code></a>.</p>
|
1784
|
+
<div class="refsect3">
|
1785
|
+
<a name="id-1.4.5.4.11.29.5"></a><h4>Parameters</h4>
|
1786
|
+
<div class="informaltable"><table width="100%" border="0">
|
1787
|
+
<colgroup>
|
1788
|
+
<col width="150px" class="parameters_name">
|
1789
|
+
<col class="parameters_description">
|
1790
|
+
<col width="200px" class="parameters_annotations">
|
1791
|
+
</colgroup>
|
1792
|
+
<tbody><tr>
|
1793
|
+
<td class="parameter_name"><p>label</p></td>
|
1794
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1795
|
+
<td class="parameter_annotations"> </td>
|
1796
|
+
</tr></tbody>
|
1797
|
+
</table></div>
|
1798
|
+
</div>
|
1799
|
+
<div class="refsect3">
|
1800
|
+
<a name="id-1.4.5.4.11.29.6"></a><h4>Returns</h4>
|
1801
|
+
<p> the maximum width of the label in characters.</p>
|
1802
|
+
<p></p>
|
1803
|
+
</div>
|
1804
|
+
<p class="since">Since 2.6</p>
|
1805
|
+
</div>
|
1806
|
+
<hr>
|
1807
|
+
<div class="refsect2">
|
1808
|
+
<a name="gtk-label-get-label"></a><h3>gtk_label_get_label ()</h3>
|
1809
|
+
<pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
1810
|
+
gtk_label_get_label (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1811
|
+
<p>Fetches the text from a label widget including any embedded
|
1812
|
+
underlines indicating mnemonics and Pango markup. (See
|
1813
|
+
<a class="link" href="GtkLabel.html#gtk-label-get-text" title="gtk_label_get_text ()"><code class="function">gtk_label_get_text()</code></a>).</p>
|
1814
|
+
<div class="refsect3">
|
1815
|
+
<a name="id-1.4.5.4.11.30.5"></a><h4>Parameters</h4>
|
1816
|
+
<div class="informaltable"><table width="100%" border="0">
|
1817
|
+
<colgroup>
|
1818
|
+
<col width="150px" class="parameters_name">
|
1819
|
+
<col class="parameters_description">
|
1820
|
+
<col width="200px" class="parameters_annotations">
|
1821
|
+
</colgroup>
|
1822
|
+
<tbody><tr>
|
1823
|
+
<td class="parameter_name"><p>label</p></td>
|
1824
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1825
|
+
<td class="parameter_annotations"> </td>
|
1826
|
+
</tr></tbody>
|
1827
|
+
</table></div>
|
1828
|
+
</div>
|
1829
|
+
<div class="refsect3">
|
1830
|
+
<a name="id-1.4.5.4.11.30.6"></a><h4>Returns</h4>
|
1831
|
+
<p> the text of the label widget. This string is
|
1832
|
+
owned by the widget and must not be modified or freed.</p>
|
1833
|
+
<p></p>
|
1834
|
+
</div>
|
1835
|
+
</div>
|
1836
|
+
<hr>
|
1837
|
+
<div class="refsect2">
|
1838
|
+
<a name="gtk-label-get-layout"></a><h3>gtk_label_get_layout ()</h3>
|
1839
|
+
<pre class="programlisting"><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="returnvalue">PangoLayout</span></a> *
|
1840
|
+
gtk_label_get_layout (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1841
|
+
<p>Gets the <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> used to display the label.
|
1842
|
+
The layout is useful to e.g. convert text positions to
|
1843
|
+
pixel positions, in combination with <a class="link" href="GtkLabel.html#gtk-label-get-layout-offsets" title="gtk_label_get_layout_offsets ()"><code class="function">gtk_label_get_layout_offsets()</code></a>.
|
1844
|
+
The returned layout is owned by the label so need not be
|
1845
|
+
freed by the caller.</p>
|
1846
|
+
<div class="refsect3">
|
1847
|
+
<a name="id-1.4.5.4.11.31.5"></a><h4>Parameters</h4>
|
1848
|
+
<div class="informaltable"><table width="100%" border="0">
|
1849
|
+
<colgroup>
|
1850
|
+
<col width="150px" class="parameters_name">
|
1851
|
+
<col class="parameters_description">
|
1852
|
+
<col width="200px" class="parameters_annotations">
|
1853
|
+
</colgroup>
|
1854
|
+
<tbody><tr>
|
1855
|
+
<td class="parameter_name"><p>label</p></td>
|
1856
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1857
|
+
<td class="parameter_annotations"> </td>
|
1858
|
+
</tr></tbody>
|
1859
|
+
</table></div>
|
1860
|
+
</div>
|
1861
|
+
<div class="refsect3">
|
1862
|
+
<a name="id-1.4.5.4.11.31.6"></a><h4>Returns</h4>
|
1863
|
+
<p> the <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoLayout"><span class="type">PangoLayout</span></a> for this label. </p>
|
1864
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1865
|
+
</div>
|
1866
|
+
</div>
|
1867
|
+
<hr>
|
1868
|
+
<div class="refsect2">
|
1869
|
+
<a name="gtk-label-get-line-wrap"></a><h3>gtk_label_get_line_wrap ()</h3>
|
1870
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1871
|
+
gtk_label_get_line_wrap (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1872
|
+
<p>Returns whether lines in the label are automatically wrapped.
|
1873
|
+
See <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap" title="gtk_label_set_line_wrap ()"><code class="function">gtk_label_set_line_wrap()</code></a>.</p>
|
1874
|
+
<div class="refsect3">
|
1875
|
+
<a name="id-1.4.5.4.11.32.5"></a><h4>Parameters</h4>
|
1876
|
+
<div class="informaltable"><table width="100%" border="0">
|
1877
|
+
<colgroup>
|
1878
|
+
<col width="150px" class="parameters_name">
|
1879
|
+
<col class="parameters_description">
|
1880
|
+
<col width="200px" class="parameters_annotations">
|
1881
|
+
</colgroup>
|
1882
|
+
<tbody><tr>
|
1883
|
+
<td class="parameter_name"><p>label</p></td>
|
1884
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1885
|
+
<td class="parameter_annotations"> </td>
|
1886
|
+
</tr></tbody>
|
1887
|
+
</table></div>
|
1888
|
+
</div>
|
1889
|
+
<div class="refsect3">
|
1890
|
+
<a name="id-1.4.5.4.11.32.6"></a><h4>Returns</h4>
|
1891
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the lines of the label are automatically wrapped.</p>
|
1892
|
+
<p></p>
|
1893
|
+
</div>
|
1894
|
+
</div>
|
1895
|
+
<hr>
|
1896
|
+
<div class="refsect2">
|
1897
|
+
<a name="gtk-label-get-line-wrap-mode"></a><h3>gtk_label_get_line_wrap_mode ()</h3>
|
1898
|
+
<pre class="programlisting"><a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="returnvalue">PangoWrapMode</span></a>
|
1899
|
+
gtk_label_get_line_wrap_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1900
|
+
<p>Returns line wrap mode used by the label. See <a class="link" href="GtkLabel.html#gtk-label-set-line-wrap-mode" title="gtk_label_set_line_wrap_mode ()"><code class="function">gtk_label_set_line_wrap_mode()</code></a>.</p>
|
1901
|
+
<div class="refsect3">
|
1902
|
+
<a name="id-1.4.5.4.11.33.5"></a><h4>Parameters</h4>
|
1903
|
+
<div class="informaltable"><table width="100%" border="0">
|
1904
|
+
<colgroup>
|
1905
|
+
<col width="150px" class="parameters_name">
|
1906
|
+
<col class="parameters_description">
|
1907
|
+
<col width="200px" class="parameters_annotations">
|
1908
|
+
</colgroup>
|
1909
|
+
<tbody><tr>
|
1910
|
+
<td class="parameter_name"><p>label</p></td>
|
1911
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1912
|
+
<td class="parameter_annotations"> </td>
|
1913
|
+
</tr></tbody>
|
1914
|
+
</table></div>
|
1915
|
+
</div>
|
1916
|
+
<div class="refsect3">
|
1917
|
+
<a name="id-1.4.5.4.11.33.6"></a><h4>Returns</h4>
|
1918
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the lines of the label are automatically wrapped.</p>
|
1919
|
+
<p></p>
|
1920
|
+
</div>
|
1921
|
+
<p class="since">Since 2.10</p>
|
1922
|
+
</div>
|
1923
|
+
<hr>
|
1924
|
+
<div class="refsect2">
|
1925
|
+
<a name="gtk-label-get-mnemonic-widget"></a><h3>gtk_label_get_mnemonic_widget ()</h3>
|
1926
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> *
|
1927
|
+
gtk_label_get_mnemonic_widget (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1928
|
+
<p>Retrieves the target of the mnemonic (keyboard shortcut) of this
|
1929
|
+
label. See <a class="link" href="GtkLabel.html#gtk-label-set-mnemonic-widget" title="gtk_label_set_mnemonic_widget ()"><code class="function">gtk_label_set_mnemonic_widget()</code></a>.</p>
|
1930
|
+
<div class="refsect3">
|
1931
|
+
<a name="id-1.4.5.4.11.34.5"></a><h4>Parameters</h4>
|
1932
|
+
<div class="informaltable"><table width="100%" border="0">
|
1933
|
+
<colgroup>
|
1934
|
+
<col width="150px" class="parameters_name">
|
1935
|
+
<col class="parameters_description">
|
1936
|
+
<col width="200px" class="parameters_annotations">
|
1937
|
+
</colgroup>
|
1938
|
+
<tbody><tr>
|
1939
|
+
<td class="parameter_name"><p>label</p></td>
|
1940
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1941
|
+
<td class="parameter_annotations"> </td>
|
1942
|
+
</tr></tbody>
|
1943
|
+
</table></div>
|
1944
|
+
</div>
|
1945
|
+
<div class="refsect3">
|
1946
|
+
<a name="id-1.4.5.4.11.34.6"></a><h4>Returns</h4>
|
1947
|
+
<p> the target of the label's mnemonic,
|
1948
|
+
or <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if none has been set and the default algorithm will be used. </p>
|
1949
|
+
<p><span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span></p>
|
1950
|
+
</div>
|
1951
|
+
</div>
|
1952
|
+
<hr>
|
1953
|
+
<div class="refsect2">
|
1954
|
+
<a name="gtk-label-get-selection-bounds"></a><h3>gtk_label_get_selection_bounds ()</h3>
|
1955
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1956
|
+
gtk_label_get_selection_bounds (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
1957
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *start</code></em>,
|
1958
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *end</code></em>);</pre>
|
1959
|
+
<p>Gets the selected range of characters in the label, returning <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>
|
1960
|
+
if there's a selection.</p>
|
1961
|
+
<div class="refsect3">
|
1962
|
+
<a name="id-1.4.5.4.11.35.5"></a><h4>Parameters</h4>
|
1963
|
+
<div class="informaltable"><table width="100%" border="0">
|
1964
|
+
<colgroup>
|
1965
|
+
<col width="150px" class="parameters_name">
|
1966
|
+
<col class="parameters_description">
|
1967
|
+
<col width="200px" class="parameters_annotations">
|
1968
|
+
</colgroup>
|
1969
|
+
<tbody>
|
1970
|
+
<tr>
|
1971
|
+
<td class="parameter_name"><p>label</p></td>
|
1972
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
1973
|
+
<td class="parameter_annotations"> </td>
|
1974
|
+
</tr>
|
1975
|
+
<tr>
|
1976
|
+
<td class="parameter_name"><p>start</p></td>
|
1977
|
+
<td class="parameter_description"><p> return location for start of selection, as a character offset. </p></td>
|
1978
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
1979
|
+
</tr>
|
1980
|
+
<tr>
|
1981
|
+
<td class="parameter_name"><p>end</p></td>
|
1982
|
+
<td class="parameter_description"><p> return location for end of selection, as a character offset. </p></td>
|
1983
|
+
<td class="parameter_annotations"><span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span></td>
|
1984
|
+
</tr>
|
1985
|
+
</tbody>
|
1986
|
+
</table></div>
|
1987
|
+
</div>
|
1988
|
+
<div class="refsect3">
|
1989
|
+
<a name="id-1.4.5.4.11.35.6"></a><h4>Returns</h4>
|
1990
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if selection is non-empty</p>
|
1991
|
+
<p></p>
|
1992
|
+
</div>
|
1993
|
+
</div>
|
1994
|
+
<hr>
|
1995
|
+
<div class="refsect2">
|
1996
|
+
<a name="gtk-label-get-use-markup"></a><h3>gtk_label_get_use_markup ()</h3>
|
1997
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
1998
|
+
gtk_label_get_use_markup (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
1999
|
+
<p>Returns whether the label's text is interpreted as marked up with
|
2000
|
+
the <GTKDOCLINK HREF="PangoMarkupFormat">Pango text markup
|
2001
|
+
language</GTKDOCLINK>. See <a class="link" href="GtkLabel.html#gtk-label-set-use-markup" title="gtk_label_set_use_markup ()"><code class="function">gtk_label_set_use_markup()</code></a>.</p>
|
2002
|
+
<div class="refsect3">
|
2003
|
+
<a name="id-1.4.5.4.11.36.5"></a><h4>Parameters</h4>
|
2004
|
+
<div class="informaltable"><table width="100%" border="0">
|
2005
|
+
<colgroup>
|
2006
|
+
<col width="150px" class="parameters_name">
|
2007
|
+
<col class="parameters_description">
|
2008
|
+
<col width="200px" class="parameters_annotations">
|
2009
|
+
</colgroup>
|
2010
|
+
<tbody><tr>
|
2011
|
+
<td class="parameter_name"><p>label</p></td>
|
2012
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2013
|
+
<td class="parameter_annotations"> </td>
|
2014
|
+
</tr></tbody>
|
2015
|
+
</table></div>
|
2016
|
+
</div>
|
2017
|
+
<div class="refsect3">
|
2018
|
+
<a name="id-1.4.5.4.11.36.6"></a><h4>Returns</h4>
|
2019
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label's text will be parsed for markup.</p>
|
2020
|
+
<p></p>
|
2021
|
+
</div>
|
2022
|
+
</div>
|
2023
|
+
<hr>
|
2024
|
+
<div class="refsect2">
|
2025
|
+
<a name="gtk-label-get-use-underline"></a><h3>gtk_label_get_use_underline ()</h3>
|
2026
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2027
|
+
gtk_label_get_use_underline (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
2028
|
+
<p>Returns whether an embedded underline in the label indicates a
|
2029
|
+
mnemonic. See <a class="link" href="GtkLabel.html#gtk-label-set-use-underline" title="gtk_label_set_use_underline ()"><code class="function">gtk_label_set_use_underline()</code></a>.</p>
|
2030
|
+
<div class="refsect3">
|
2031
|
+
<a name="id-1.4.5.4.11.37.5"></a><h4>Parameters</h4>
|
2032
|
+
<div class="informaltable"><table width="100%" border="0">
|
2033
|
+
<colgroup>
|
2034
|
+
<col width="150px" class="parameters_name">
|
2035
|
+
<col class="parameters_description">
|
2036
|
+
<col width="200px" class="parameters_annotations">
|
2037
|
+
</colgroup>
|
2038
|
+
<tbody><tr>
|
2039
|
+
<td class="parameter_name"><p>label</p></td>
|
2040
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2041
|
+
<td class="parameter_annotations"> </td>
|
2042
|
+
</tr></tbody>
|
2043
|
+
</table></div>
|
2044
|
+
</div>
|
2045
|
+
<div class="refsect3">
|
2046
|
+
<a name="id-1.4.5.4.11.37.6"></a><h4>Returns</h4>
|
2047
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> whether an embedded underline in the label indicates
|
2048
|
+
the mnemonic accelerator keys.</p>
|
2049
|
+
<p></p>
|
2050
|
+
</div>
|
2051
|
+
</div>
|
2052
|
+
<hr>
|
2053
|
+
<div class="refsect2">
|
2054
|
+
<a name="gtk-label-get-single-line-mode"></a><h3>gtk_label_get_single_line_mode ()</h3>
|
2055
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2056
|
+
gtk_label_get_single_line_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
2057
|
+
<p>Returns whether the label is in single line mode.</p>
|
2058
|
+
<div class="refsect3">
|
2059
|
+
<a name="id-1.4.5.4.11.38.5"></a><h4>Parameters</h4>
|
2060
|
+
<div class="informaltable"><table width="100%" border="0">
|
2061
|
+
<colgroup>
|
2062
|
+
<col width="150px" class="parameters_name">
|
2063
|
+
<col class="parameters_description">
|
2064
|
+
<col width="200px" class="parameters_annotations">
|
2065
|
+
</colgroup>
|
2066
|
+
<tbody><tr>
|
2067
|
+
<td class="parameter_name"><p>label</p></td>
|
2068
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2069
|
+
<td class="parameter_annotations"> </td>
|
2070
|
+
</tr></tbody>
|
2071
|
+
</table></div>
|
2072
|
+
</div>
|
2073
|
+
<div class="refsect3">
|
2074
|
+
<a name="id-1.4.5.4.11.38.6"></a><h4>Returns</h4>
|
2075
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> when the label is in single line mode.</p>
|
2076
|
+
<p></p>
|
2077
|
+
</div>
|
2078
|
+
<p class="since">Since 2.6</p>
|
2079
|
+
</div>
|
2080
|
+
<hr>
|
2081
|
+
<div class="refsect2">
|
2082
|
+
<a name="gtk-label-get-angle"></a><h3>gtk_label_get_angle ()</h3>
|
2083
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="returnvalue">gdouble</span></a>
|
2084
|
+
gtk_label_get_angle (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
2085
|
+
<p>Gets the angle of rotation for the label. See
|
2086
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-angle" title="gtk_label_set_angle ()"><code class="function">gtk_label_set_angle()</code></a>.</p>
|
2087
|
+
<div class="refsect3">
|
2088
|
+
<a name="id-1.4.5.4.11.39.5"></a><h4>Parameters</h4>
|
2089
|
+
<div class="informaltable"><table width="100%" border="0">
|
2090
|
+
<colgroup>
|
2091
|
+
<col width="150px" class="parameters_name">
|
2092
|
+
<col class="parameters_description">
|
2093
|
+
<col width="200px" class="parameters_annotations">
|
2094
|
+
</colgroup>
|
2095
|
+
<tbody><tr>
|
2096
|
+
<td class="parameter_name"><p>label</p></td>
|
2097
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2098
|
+
<td class="parameter_annotations"> </td>
|
2099
|
+
</tr></tbody>
|
2100
|
+
</table></div>
|
2101
|
+
</div>
|
2102
|
+
<div class="refsect3">
|
2103
|
+
<a name="id-1.4.5.4.11.39.6"></a><h4>Returns</h4>
|
2104
|
+
<p> the angle of rotation for the label</p>
|
2105
|
+
<p></p>
|
2106
|
+
</div>
|
2107
|
+
<p class="since">Since 2.6</p>
|
2108
|
+
</div>
|
2109
|
+
<hr>
|
2110
|
+
<div class="refsect2">
|
2111
|
+
<a name="gtk-label-set-label"></a><h3>gtk_label_set_label ()</h3>
|
2112
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2113
|
+
gtk_label_set_label (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
2114
|
+
<em class="parameter"><code>const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *str</code></em>);</pre>
|
2115
|
+
<p>Sets the text of the label. The label is interpreted as
|
2116
|
+
including embedded underlines and/or Pango markup depending
|
2117
|
+
on the values of the <a class="link" href="GtkLabel.html#GtkLabel--use-underline" title="The “use-underline” property"><span class="type">“use-underline”</span></a>" and
|
2118
|
+
<a class="link" href="GtkLabel.html#GtkLabel--use-markup" title="The “use-markup” property"><span class="type">“use-markup”</span></a> properties.</p>
|
2119
|
+
<div class="refsect3">
|
2120
|
+
<a name="id-1.4.5.4.11.40.5"></a><h4>Parameters</h4>
|
2121
|
+
<div class="informaltable"><table width="100%" border="0">
|
2122
|
+
<colgroup>
|
2123
|
+
<col width="150px" class="parameters_name">
|
2124
|
+
<col class="parameters_description">
|
2125
|
+
<col width="200px" class="parameters_annotations">
|
2126
|
+
</colgroup>
|
2127
|
+
<tbody>
|
2128
|
+
<tr>
|
2129
|
+
<td class="parameter_name"><p>label</p></td>
|
2130
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2131
|
+
<td class="parameter_annotations"> </td>
|
2132
|
+
</tr>
|
2133
|
+
<tr>
|
2134
|
+
<td class="parameter_name"><p>str</p></td>
|
2135
|
+
<td class="parameter_description"><p>the new text to set for the label</p></td>
|
2136
|
+
<td class="parameter_annotations"> </td>
|
2137
|
+
</tr>
|
2138
|
+
</tbody>
|
2139
|
+
</table></div>
|
2140
|
+
</div>
|
2141
|
+
</div>
|
2142
|
+
<hr>
|
2143
|
+
<div class="refsect2">
|
2144
|
+
<a name="gtk-label-set-use-markup"></a><h3>gtk_label_set_use_markup ()</h3>
|
2145
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2146
|
+
gtk_label_set_use_markup (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
2147
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
|
2148
|
+
<p>Sets whether the text of the label contains markup in <GTKDOCLINK HREF="PangoMarkupFormat">Pango's text markup
|
2149
|
+
language</GTKDOCLINK>. See <a class="link" href="GtkLabel.html#gtk-label-set-markup" title="gtk_label_set_markup ()"><code class="function">gtk_label_set_markup()</code></a>.</p>
|
2150
|
+
<div class="refsect3">
|
2151
|
+
<a name="id-1.4.5.4.11.41.5"></a><h4>Parameters</h4>
|
2152
|
+
<div class="informaltable"><table width="100%" border="0">
|
2153
|
+
<colgroup>
|
2154
|
+
<col width="150px" class="parameters_name">
|
2155
|
+
<col class="parameters_description">
|
2156
|
+
<col width="200px" class="parameters_annotations">
|
2157
|
+
</colgroup>
|
2158
|
+
<tbody>
|
2159
|
+
<tr>
|
2160
|
+
<td class="parameter_name"><p>label</p></td>
|
2161
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2162
|
+
<td class="parameter_annotations"> </td>
|
2163
|
+
</tr>
|
2164
|
+
<tr>
|
2165
|
+
<td class="parameter_name"><p>setting</p></td>
|
2166
|
+
<td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label's text should be parsed for markup.</p></td>
|
2167
|
+
<td class="parameter_annotations"> </td>
|
2168
|
+
</tr>
|
2169
|
+
</tbody>
|
2170
|
+
</table></div>
|
2171
|
+
</div>
|
2172
|
+
</div>
|
2173
|
+
<hr>
|
2174
|
+
<div class="refsect2">
|
2175
|
+
<a name="gtk-label-set-use-underline"></a><h3>gtk_label_set_use_underline ()</h3>
|
2176
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2177
|
+
gtk_label_set_use_underline (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
2178
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
|
2179
|
+
<p>If true, an underline in the text indicates the next character should be
|
2180
|
+
used for the mnemonic accelerator key.</p>
|
2181
|
+
<div class="refsect3">
|
2182
|
+
<a name="id-1.4.5.4.11.42.5"></a><h4>Parameters</h4>
|
2183
|
+
<div class="informaltable"><table width="100%" border="0">
|
2184
|
+
<colgroup>
|
2185
|
+
<col width="150px" class="parameters_name">
|
2186
|
+
<col class="parameters_description">
|
2187
|
+
<col width="200px" class="parameters_annotations">
|
2188
|
+
</colgroup>
|
2189
|
+
<tbody>
|
2190
|
+
<tr>
|
2191
|
+
<td class="parameter_name"><p>label</p></td>
|
2192
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2193
|
+
<td class="parameter_annotations"> </td>
|
2194
|
+
</tr>
|
2195
|
+
<tr>
|
2196
|
+
<td class="parameter_name"><p>setting</p></td>
|
2197
|
+
<td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if underlines in the text indicate mnemonics</p></td>
|
2198
|
+
<td class="parameter_annotations"> </td>
|
2199
|
+
</tr>
|
2200
|
+
</tbody>
|
2201
|
+
</table></div>
|
2202
|
+
</div>
|
2203
|
+
</div>
|
2204
|
+
<hr>
|
2205
|
+
<div class="refsect2">
|
2206
|
+
<a name="gtk-label-set-single-line-mode"></a><h3>gtk_label_set_single_line_mode ()</h3>
|
2207
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2208
|
+
gtk_label_set_single_line_mode (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
2209
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> single_line_mode</code></em>);</pre>
|
2210
|
+
<p>Sets whether the label is in single line mode.</p>
|
2211
|
+
<div class="refsect3">
|
2212
|
+
<a name="id-1.4.5.4.11.43.5"></a><h4>Parameters</h4>
|
2213
|
+
<div class="informaltable"><table width="100%" border="0">
|
2214
|
+
<colgroup>
|
2215
|
+
<col width="150px" class="parameters_name">
|
2216
|
+
<col class="parameters_description">
|
2217
|
+
<col width="200px" class="parameters_annotations">
|
2218
|
+
</colgroup>
|
2219
|
+
<tbody>
|
2220
|
+
<tr>
|
2221
|
+
<td class="parameter_name"><p>label</p></td>
|
2222
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2223
|
+
<td class="parameter_annotations"> </td>
|
2224
|
+
</tr>
|
2225
|
+
<tr>
|
2226
|
+
<td class="parameter_name"><p>single_line_mode</p></td>
|
2227
|
+
<td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the label should be in single line mode</p></td>
|
2228
|
+
<td class="parameter_annotations"> </td>
|
2229
|
+
</tr>
|
2230
|
+
</tbody>
|
2231
|
+
</table></div>
|
2232
|
+
</div>
|
2233
|
+
<p class="since">Since 2.6</p>
|
2234
|
+
</div>
|
2235
|
+
<hr>
|
2236
|
+
<div class="refsect2">
|
2237
|
+
<a name="gtk-label-set-angle"></a><h3>gtk_label_set_angle ()</h3>
|
2238
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2239
|
+
gtk_label_set_angle (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
2240
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> angle</code></em>);</pre>
|
2241
|
+
<p>Sets the angle of rotation for the label. An angle of 90 reads from
|
2242
|
+
from bottom to top, an angle of 270, from top to bottom. The angle
|
2243
|
+
setting for the label is ignored if the label is selectable,
|
2244
|
+
wrapped, or ellipsized.</p>
|
2245
|
+
<div class="refsect3">
|
2246
|
+
<a name="id-1.4.5.4.11.44.5"></a><h4>Parameters</h4>
|
2247
|
+
<div class="informaltable"><table width="100%" border="0">
|
2248
|
+
<colgroup>
|
2249
|
+
<col width="150px" class="parameters_name">
|
2250
|
+
<col class="parameters_description">
|
2251
|
+
<col width="200px" class="parameters_annotations">
|
2252
|
+
</colgroup>
|
2253
|
+
<tbody>
|
2254
|
+
<tr>
|
2255
|
+
<td class="parameter_name"><p>label</p></td>
|
2256
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2257
|
+
<td class="parameter_annotations"> </td>
|
2258
|
+
</tr>
|
2259
|
+
<tr>
|
2260
|
+
<td class="parameter_name"><p>angle</p></td>
|
2261
|
+
<td class="parameter_description"><p>the angle that the baseline of the label makes with
|
2262
|
+
the horizontal, in degrees, measured counterclockwise</p></td>
|
2263
|
+
<td class="parameter_annotations"> </td>
|
2264
|
+
</tr>
|
2265
|
+
</tbody>
|
2266
|
+
</table></div>
|
2267
|
+
</div>
|
2268
|
+
<p class="since">Since 2.6</p>
|
2269
|
+
</div>
|
2270
|
+
<hr>
|
2271
|
+
<div class="refsect2">
|
2272
|
+
<a name="gtk-label-get-current-uri"></a><h3>gtk_label_get_current_uri ()</h3>
|
2273
|
+
<pre class="programlisting">const <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> *
|
2274
|
+
gtk_label_get_current_uri (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
2275
|
+
<p>Returns the URI for the currently active link in the label.
|
2276
|
+
The active link is the one under the mouse pointer or, in a
|
2277
|
+
selectable label, the link in which the text cursor is currently
|
2278
|
+
positioned.</p>
|
2279
|
+
<p>This function is intended for use in a <a class="link" href="GtkLabel.html#GtkLabel-activate-link" title="The “activate-link” signal"><span class="type">“activate-link”</span></a> handler
|
2280
|
+
or for use in a <a class="link" href="GtkWidget.html#GtkWidget-query-tooltip" title="The “query-tooltip” signal"><span class="type">“query-tooltip”</span></a> handler.</p>
|
2281
|
+
<div class="refsect3">
|
2282
|
+
<a name="id-1.4.5.4.11.45.6"></a><h4>Parameters</h4>
|
2283
|
+
<div class="informaltable"><table width="100%" border="0">
|
2284
|
+
<colgroup>
|
2285
|
+
<col width="150px" class="parameters_name">
|
2286
|
+
<col class="parameters_description">
|
2287
|
+
<col width="200px" class="parameters_annotations">
|
2288
|
+
</colgroup>
|
2289
|
+
<tbody><tr>
|
2290
|
+
<td class="parameter_name"><p>label</p></td>
|
2291
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2292
|
+
<td class="parameter_annotations"> </td>
|
2293
|
+
</tr></tbody>
|
2294
|
+
</table></div>
|
2295
|
+
</div>
|
2296
|
+
<div class="refsect3">
|
2297
|
+
<a name="id-1.4.5.4.11.45.7"></a><h4>Returns</h4>
|
2298
|
+
<p> the currently active URI. The string is owned by GTK+ and must
|
2299
|
+
not be freed or modified.</p>
|
2300
|
+
<p></p>
|
2301
|
+
</div>
|
2302
|
+
<p class="since">Since 2.18</p>
|
2303
|
+
</div>
|
2304
|
+
<hr>
|
2305
|
+
<div class="refsect2">
|
2306
|
+
<a name="gtk-label-set-track-visited-links"></a><h3>gtk_label_set_track_visited_links ()</h3>
|
2307
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2308
|
+
gtk_label_set_track_visited_links (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>,
|
2309
|
+
<em class="parameter"><code><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> track_links</code></em>);</pre>
|
2310
|
+
<p>Sets whether the label should keep track of clicked
|
2311
|
+
links (and use a different color for them).</p>
|
2312
|
+
<div class="refsect3">
|
2313
|
+
<a name="id-1.4.5.4.11.46.5"></a><h4>Parameters</h4>
|
2314
|
+
<div class="informaltable"><table width="100%" border="0">
|
2315
|
+
<colgroup>
|
2316
|
+
<col width="150px" class="parameters_name">
|
2317
|
+
<col class="parameters_description">
|
2318
|
+
<col width="200px" class="parameters_annotations">
|
2319
|
+
</colgroup>
|
2320
|
+
<tbody>
|
2321
|
+
<tr>
|
2322
|
+
<td class="parameter_name"><p>label</p></td>
|
2323
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2324
|
+
<td class="parameter_annotations"> </td>
|
2325
|
+
</tr>
|
2326
|
+
<tr>
|
2327
|
+
<td class="parameter_name"><p>track_links</p></td>
|
2328
|
+
<td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to track visited links</p></td>
|
2329
|
+
<td class="parameter_annotations"> </td>
|
2330
|
+
</tr>
|
2331
|
+
</tbody>
|
2332
|
+
</table></div>
|
2333
|
+
</div>
|
2334
|
+
<p class="since">Since 2.18</p>
|
2335
|
+
</div>
|
2336
|
+
<hr>
|
2337
|
+
<div class="refsect2">
|
2338
|
+
<a name="gtk-label-get-track-visited-links"></a><h3>gtk_label_get_track_visited_links ()</h3>
|
2339
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2340
|
+
gtk_label_get_track_visited_links (<em class="parameter"><code><a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label</code></em>);</pre>
|
2341
|
+
<p>Returns whether the label is currently keeping track
|
2342
|
+
of clicked links.</p>
|
2343
|
+
<div class="refsect3">
|
2344
|
+
<a name="id-1.4.5.4.11.47.5"></a><h4>Parameters</h4>
|
2345
|
+
<div class="informaltable"><table width="100%" border="0">
|
2346
|
+
<colgroup>
|
2347
|
+
<col width="150px" class="parameters_name">
|
2348
|
+
<col class="parameters_description">
|
2349
|
+
<col width="200px" class="parameters_annotations">
|
2350
|
+
</colgroup>
|
2351
|
+
<tbody><tr>
|
2352
|
+
<td class="parameter_name"><p>label</p></td>
|
2353
|
+
<td class="parameter_description"><p>a <a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a></p></td>
|
2354
|
+
<td class="parameter_annotations"> </td>
|
2355
|
+
</tr></tbody>
|
2356
|
+
</table></div>
|
2357
|
+
</div>
|
2358
|
+
<div class="refsect3">
|
2359
|
+
<a name="id-1.4.5.4.11.47.6"></a><h4>Returns</h4>
|
2360
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if clicked links are remembered</p>
|
2361
|
+
<p></p>
|
2362
|
+
</div>
|
2363
|
+
<p class="since">Since 2.18</p>
|
2364
|
+
</div>
|
2365
|
+
</div>
|
2366
|
+
<div class="refsect1">
|
2367
|
+
<a name="GtkLabel.other_details"></a><h2>Types and Values</h2>
|
2368
|
+
<div class="refsect2">
|
2369
|
+
<a name="GtkLabel-struct"></a><h3>struct GtkLabel</h3>
|
2370
|
+
<pre class="programlisting">struct GtkLabel;</pre>
|
2371
|
+
<p>
|
2372
|
+
This should not be accessed directly. Use the accessor functions as
|
2373
|
+
described below.
|
2374
|
+
</p>
|
2375
|
+
</div>
|
2376
|
+
<hr>
|
2377
|
+
<div class="refsect2">
|
2378
|
+
<a name="gtk-label-set"></a><h3>gtk_label_set</h3>
|
2379
|
+
<pre class="programlisting">#define gtk_label_set gtk_label_set_text
|
2380
|
+
</pre>
|
2381
|
+
<div class="warning">
|
2382
|
+
<p><code class="literal">gtk_label_set</code> is deprecated and should not be used in newly-written code.</p>
|
2383
|
+
<p>Use <a class="link" href="GtkLabel.html#gtk-label-set-text" title="gtk_label_set_text ()"><code class="function">gtk_label_set_text()</code></a> instead.</p>
|
2384
|
+
</div>
|
2385
|
+
<p>
|
2386
|
+
Sets the text within the GtkLabel widget.
|
2387
|
+
</p>
|
2388
|
+
</div>
|
2389
|
+
</div>
|
2390
|
+
<div class="refsect1">
|
2391
|
+
<a name="GtkLabel.property-details"></a><h2>Property Details</h2>
|
2392
|
+
<div class="refsect2">
|
2393
|
+
<a name="GtkLabel--angle"></a><h3>The <code class="literal">“angle”</code> property</h3>
|
2394
|
+
<pre class="programlisting"> “angle” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a></pre>
|
2395
|
+
<p>The angle that the baseline of the label makes with the horizontal,
|
2396
|
+
in degrees, measured counterclockwise. An angle of 90 reads from
|
2397
|
+
from bottom to top, an angle of 270, from top to bottom. Ignored
|
2398
|
+
if the label is selectable, wrapped, or ellipsized.</p>
|
2399
|
+
<p>Flags: Read / Write</p>
|
2400
|
+
<p>Allowed values: [0,360]</p>
|
2401
|
+
<p>Default value: 0</p>
|
2402
|
+
<p class="since">Since 2.6</p>
|
2403
|
+
</div>
|
2404
|
+
<hr>
|
2405
|
+
<div class="refsect2">
|
2406
|
+
<a name="GtkLabel--attributes"></a><h3>The <code class="literal">“attributes”</code> property</h3>
|
2407
|
+
<pre class="programlisting"> “attributes” <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoAttrList"><span class="type">PangoAttrList</span></a> *</pre>
|
2408
|
+
<p>A list of style attributes to apply to the text of the label.</p>
|
2409
|
+
<p>Flags: Read / Write</p>
|
2410
|
+
</div>
|
2411
|
+
<hr>
|
2412
|
+
<div class="refsect2">
|
2413
|
+
<a name="GtkLabel--cursor-position"></a><h3>The <code class="literal">“cursor-position”</code> property</h3>
|
2414
|
+
<pre class="programlisting"> “cursor-position” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
|
2415
|
+
<p>The current position of the insertion cursor in chars.</p>
|
2416
|
+
<p>Flags: Read</p>
|
2417
|
+
<p>Allowed values: >= 0</p>
|
2418
|
+
<p>Default value: 0</p>
|
2419
|
+
</div>
|
2420
|
+
<hr>
|
2421
|
+
<div class="refsect2">
|
2422
|
+
<a name="GtkLabel--ellipsize"></a><h3>The <code class="literal">“ellipsize”</code> property</h3>
|
2423
|
+
<pre class="programlisting"> “ellipsize” <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoEllipsizeMode"><span class="type">PangoEllipsizeMode</span></a></pre>
|
2424
|
+
<p>The preferred place to ellipsize the string, if the label does
|
2425
|
+
|
2426
|
+
not have enough room to display the entire string, specified as a
|
2427
|
+
|
2428
|
+
<span class="type">PangoEllisizeMode</span>. </p>
|
2429
|
+
<p>Note that setting this property to a value other than
|
2430
|
+
|
2431
|
+
<code class="literal">PANGO_ELLIPSIZE_NONE</code> has the side-effect that the label requests
|
2432
|
+
|
2433
|
+
only enough space to display the ellipsis "...". In particular, this
|
2434
|
+
|
2435
|
+
means that ellipsizing labels do not work well in notebook tabs, unless
|
2436
|
+
|
2437
|
+
the tab's <span class="type">“tab-expand”</span> property is set to <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>. Other ways
|
2438
|
+
to set a label's width are <a class="link" href="GtkWidget.html#gtk-widget-set-size-request" title="gtk_widget_set_size_request ()"><code class="function">gtk_widget_set_size_request()</code></a> and
|
2439
|
+
<a class="link" href="GtkLabel.html#gtk-label-set-width-chars" title="gtk_label_set_width_chars ()"><code class="function">gtk_label_set_width_chars()</code></a>.</p>
|
2440
|
+
<p>Flags: Read / Write</p>
|
2441
|
+
<p>Default value: PANGO_ELLIPSIZE_NONE</p>
|
2442
|
+
<p class="since">Since 2.6</p>
|
2443
|
+
</div>
|
2444
|
+
<hr>
|
2445
|
+
<div class="refsect2">
|
2446
|
+
<a name="GtkLabel--justify"></a><h3>The <code class="literal">“justify”</code> property</h3>
|
2447
|
+
<pre class="programlisting"> “justify” <a class="link" href="gtk2-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a></pre>
|
2448
|
+
<p>The alignment of the lines in the text of the label relative to each other. This does NOT affect the alignment of the label within its allocation. See GtkMisc::xalign for that.</p>
|
2449
|
+
<p>Flags: Read / Write</p>
|
2450
|
+
<p>Default value: GTK_JUSTIFY_LEFT</p>
|
2451
|
+
</div>
|
2452
|
+
<hr>
|
2453
|
+
<div class="refsect2">
|
2454
|
+
<a name="GtkLabel--label"></a><h3>The <code class="literal">“label”</code> property</h3>
|
2455
|
+
<pre class="programlisting"> “label” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
2456
|
+
<p>The text of the label.</p>
|
2457
|
+
<p>Flags: Read / Write</p>
|
2458
|
+
<p>Default value: ""</p>
|
2459
|
+
</div>
|
2460
|
+
<hr>
|
2461
|
+
<div class="refsect2">
|
2462
|
+
<a name="GtkLabel--max-width-chars"></a><h3>The <code class="literal">“max-width-chars”</code> property</h3>
|
2463
|
+
<pre class="programlisting"> “max-width-chars” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
|
2464
|
+
<p>The desired maximum width of the label, in characters. If this property
|
2465
|
+
|
2466
|
+
is set to -1, the width will be calculated automatically, otherwise the
|
2467
|
+
|
2468
|
+
label will request space for no more than the requested number of
|
2469
|
+
|
2470
|
+
characters. If the <a class="link" href="GtkLabel.html#GtkLabel--width-chars" title="The “width-chars” property"><span class="type">“width-chars”</span></a> property is set to a positive
|
2471
|
+
|
2472
|
+
value, then the "max-width-chars" property is ignored.</p>
|
2473
|
+
<p>Flags: Read / Write</p>
|
2474
|
+
<p>Allowed values: >= -1</p>
|
2475
|
+
<p>Default value: -1</p>
|
2476
|
+
<p class="since">Since 2.6</p>
|
2477
|
+
</div>
|
2478
|
+
<hr>
|
2479
|
+
<div class="refsect2">
|
2480
|
+
<a name="GtkLabel--mnemonic-keyval"></a><h3>The <code class="literal">“mnemonic-keyval”</code> property</h3>
|
2481
|
+
<pre class="programlisting"> “mnemonic-keyval” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#guint"><span class="type">guint</span></a></pre>
|
2482
|
+
<p>The mnemonic accelerator key for this label.</p>
|
2483
|
+
<p>Flags: Read</p>
|
2484
|
+
<p>Default value: 16777215</p>
|
2485
|
+
</div>
|
2486
|
+
<hr>
|
2487
|
+
<div class="refsect2">
|
2488
|
+
<a name="GtkLabel--mnemonic-widget"></a><h3>The <code class="literal">“mnemonic-widget”</code> property</h3>
|
2489
|
+
<pre class="programlisting"> “mnemonic-widget” <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *</pre>
|
2490
|
+
<p>The widget to be activated when the label's mnemonic key is pressed.</p>
|
2491
|
+
<p>Flags: Read / Write</p>
|
2492
|
+
</div>
|
2493
|
+
<hr>
|
2494
|
+
<div class="refsect2">
|
2495
|
+
<a name="GtkLabel--pattern"></a><h3>The <code class="literal">“pattern”</code> property</h3>
|
2496
|
+
<pre class="programlisting"> “pattern” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *</pre>
|
2497
|
+
<p>A string with _ characters in positions correspond to characters in the text to underline.</p>
|
2498
|
+
<p>Flags: Write</p>
|
2499
|
+
<p>Default value: NULL</p>
|
2500
|
+
</div>
|
2501
|
+
<hr>
|
2502
|
+
<div class="refsect2">
|
2503
|
+
<a name="GtkLabel--selectable"></a><h3>The <code class="literal">“selectable”</code> property</h3>
|
2504
|
+
<pre class="programlisting"> “selectable” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
|
2505
|
+
<p>Whether the label text can be selected with the mouse.</p>
|
2506
|
+
<p>Flags: Read / Write</p>
|
2507
|
+
<p>Default value: FALSE</p>
|
2508
|
+
</div>
|
2509
|
+
<hr>
|
2510
|
+
<div class="refsect2">
|
2511
|
+
<a name="GtkLabel--selection-bound"></a><h3>The <code class="literal">“selection-bound”</code> property</h3>
|
2512
|
+
<pre class="programlisting"> “selection-bound” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
|
2513
|
+
<p>The position of the opposite end of the selection from the cursor in chars.</p>
|
2514
|
+
<p>Flags: Read</p>
|
2515
|
+
<p>Allowed values: >= 0</p>
|
2516
|
+
<p>Default value: 0</p>
|
2517
|
+
</div>
|
2518
|
+
<hr>
|
2519
|
+
<div class="refsect2">
|
2520
|
+
<a name="GtkLabel--single-line-mode"></a><h3>The <code class="literal">“single-line-mode”</code> property</h3>
|
2521
|
+
<pre class="programlisting"> “single-line-mode” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
|
2522
|
+
<p>Whether the label is in single line mode. In single line mode,
|
2523
|
+
the height of the label does not depend on the actual text, it
|
2524
|
+
is always set to ascent + descent of the font. This can be an
|
2525
|
+
advantage in situations where resizing the label because of text
|
2526
|
+
|
2527
|
+
changes would be distracting, e.g. in a statusbar.</p>
|
2528
|
+
<p>Flags: Read / Write</p>
|
2529
|
+
<p>Default value: FALSE</p>
|
2530
|
+
<p class="since">Since 2.6</p>
|
2531
|
+
</div>
|
2532
|
+
<hr>
|
2533
|
+
<div class="refsect2">
|
2534
|
+
<a name="GtkLabel--track-visited-links"></a><h3>The <code class="literal">“track-visited-links”</code> property</h3>
|
2535
|
+
<pre class="programlisting"> “track-visited-links” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
|
2536
|
+
<p>Set this property to <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to make the label track which links
|
2537
|
+
have been clicked. It will then apply the ::visited-link-color
|
2538
|
+
color, instead of ::link-color.</p>
|
2539
|
+
<p>Flags: Read / Write</p>
|
2540
|
+
<p>Default value: TRUE</p>
|
2541
|
+
<p class="since">Since 2.18</p>
|
2542
|
+
</div>
|
2543
|
+
<hr>
|
2544
|
+
<div class="refsect2">
|
2545
|
+
<a name="GtkLabel--use-markup"></a><h3>The <code class="literal">“use-markup”</code> property</h3>
|
2546
|
+
<pre class="programlisting"> “use-markup” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
|
2547
|
+
<p>The text of the label includes XML markup. See pango_parse_markup().</p>
|
2548
|
+
<p>Flags: Read / Write</p>
|
2549
|
+
<p>Default value: FALSE</p>
|
2550
|
+
</div>
|
2551
|
+
<hr>
|
2552
|
+
<div class="refsect2">
|
2553
|
+
<a name="GtkLabel--use-underline"></a><h3>The <code class="literal">“use-underline”</code> property</h3>
|
2554
|
+
<pre class="programlisting"> “use-underline” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
|
2555
|
+
<p>If set, an underline in the text indicates the next character should be used for the mnemonic accelerator key.</p>
|
2556
|
+
<p>Flags: Read / Write</p>
|
2557
|
+
<p>Default value: FALSE</p>
|
2558
|
+
</div>
|
2559
|
+
<hr>
|
2560
|
+
<div class="refsect2">
|
2561
|
+
<a name="GtkLabel--width-chars"></a><h3>The <code class="literal">“width-chars”</code> property</h3>
|
2562
|
+
<pre class="programlisting"> “width-chars” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a></pre>
|
2563
|
+
<p>The desired width of the label, in characters. If this property is set to
|
2564
|
+
-1, the width will be calculated automatically, otherwise the label will
|
2565
|
+
request either 3 characters or the property value, whichever is greater.
|
2566
|
+
If the "width-chars" property is set to a positive value, then the
|
2567
|
+
|
2568
|
+
<a class="link" href="GtkLabel.html#GtkLabel--max-width-chars" title="The “max-width-chars” property"><span class="type">“max-width-chars”</span></a> property is ignored.</p>
|
2569
|
+
<p>Flags: Read / Write</p>
|
2570
|
+
<p>Allowed values: >= -1</p>
|
2571
|
+
<p>Default value: -1</p>
|
2572
|
+
<p class="since">Since 2.6</p>
|
2573
|
+
</div>
|
2574
|
+
<hr>
|
2575
|
+
<div class="refsect2">
|
2576
|
+
<a name="GtkLabel--wrap"></a><h3>The <code class="literal">“wrap”</code> property</h3>
|
2577
|
+
<pre class="programlisting"> “wrap” <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a></pre>
|
2578
|
+
<p>If set, wrap lines if the text becomes too wide.</p>
|
2579
|
+
<p>Flags: Read / Write</p>
|
2580
|
+
<p>Default value: FALSE</p>
|
2581
|
+
</div>
|
2582
|
+
<hr>
|
2583
|
+
<div class="refsect2">
|
2584
|
+
<a name="GtkLabel--wrap-mode"></a><h3>The <code class="literal">“wrap-mode”</code> property</h3>
|
2585
|
+
<pre class="programlisting"> “wrap-mode” <a href="/home/mclasen/gnome/share/gtk-doc/html/pango/pango-Layout-Objects.html#PangoWrapMode"><span class="type">PangoWrapMode</span></a></pre>
|
2586
|
+
<p>If line wrapping is on (see the <a class="link" href="GtkLabel.html#GtkLabel--wrap" title="The “wrap” property"><span class="type">“wrap”</span></a> property) this controls
|
2587
|
+
|
2588
|
+
how the line wrapping is done. The default is <code class="literal">PANGO_WRAP_WORD</code>, which
|
2589
|
+
|
2590
|
+
means wrap on word boundaries.</p>
|
2591
|
+
<p>Flags: Read / Write</p>
|
2592
|
+
<p>Default value: PANGO_WRAP_WORD</p>
|
2593
|
+
<p class="since">Since 2.10</p>
|
2594
|
+
</div>
|
2595
|
+
</div>
|
2596
|
+
<div class="refsect1">
|
2597
|
+
<a name="GtkLabel.signal-details"></a><h2>Signal Details</h2>
|
2598
|
+
<div class="refsect2">
|
2599
|
+
<a name="GtkLabel-activate-current-link"></a><h3>The <code class="literal">“activate-current-link”</code> signal</h3>
|
2600
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2601
|
+
user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
|
2602
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
2603
|
+
<p>A <a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a>
|
2604
|
+
which gets emitted when the user activates a link in the label.</p>
|
2605
|
+
<p>Applications may also emit the signal with <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a>
|
2606
|
+
if they need to control activation of URIs programmatically.</p>
|
2607
|
+
<p>The default bindings for this signal are all forms of the Enter key.</p>
|
2608
|
+
<div class="refsect3">
|
2609
|
+
<a name="id-1.4.5.4.14.2.7"></a><h4>Parameters</h4>
|
2610
|
+
<div class="informaltable"><table width="100%" border="0">
|
2611
|
+
<colgroup>
|
2612
|
+
<col width="150px" class="parameters_name">
|
2613
|
+
<col class="parameters_description">
|
2614
|
+
<col width="200px" class="parameters_annotations">
|
2615
|
+
</colgroup>
|
2616
|
+
<tbody>
|
2617
|
+
<tr>
|
2618
|
+
<td class="parameter_name"><p>label</p></td>
|
2619
|
+
<td class="parameter_description"><p>The label on which the signal was emitted</p></td>
|
2620
|
+
<td class="parameter_annotations"> </td>
|
2621
|
+
</tr>
|
2622
|
+
<tr>
|
2623
|
+
<td class="parameter_name"><p>user_data</p></td>
|
2624
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
2625
|
+
<td class="parameter_annotations"> </td>
|
2626
|
+
</tr>
|
2627
|
+
</tbody>
|
2628
|
+
</table></div>
|
2629
|
+
</div>
|
2630
|
+
<p>Flags: Action</p>
|
2631
|
+
<p class="since">Since 2.18</p>
|
2632
|
+
</div>
|
2633
|
+
<hr>
|
2634
|
+
<div class="refsect2">
|
2635
|
+
<a name="GtkLabel-activate-link"></a><h3>The <code class="literal">“activate-link”</code> signal</h3>
|
2636
|
+
<pre class="programlisting"><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a>
|
2637
|
+
user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
|
2638
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *uri,
|
2639
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
2640
|
+
<p>The signal which gets emitted to activate a URI.
|
2641
|
+
Applications may connect to it to override the default behaviour,
|
2642
|
+
which is to call <a class="link" href="gtk2-Filesystem-utilities.html#gtk-show-uri" title="gtk_show_uri ()"><code class="function">gtk_show_uri()</code></a>.</p>
|
2643
|
+
<div class="refsect3">
|
2644
|
+
<a name="id-1.4.5.4.14.3.5"></a><h4>Parameters</h4>
|
2645
|
+
<div class="informaltable"><table width="100%" border="0">
|
2646
|
+
<colgroup>
|
2647
|
+
<col width="150px" class="parameters_name">
|
2648
|
+
<col class="parameters_description">
|
2649
|
+
<col width="200px" class="parameters_annotations">
|
2650
|
+
</colgroup>
|
2651
|
+
<tbody>
|
2652
|
+
<tr>
|
2653
|
+
<td class="parameter_name"><p>label</p></td>
|
2654
|
+
<td class="parameter_description"><p>The label on which the signal was emitted</p></td>
|
2655
|
+
<td class="parameter_annotations"> </td>
|
2656
|
+
</tr>
|
2657
|
+
<tr>
|
2658
|
+
<td class="parameter_name"><p>uri</p></td>
|
2659
|
+
<td class="parameter_description"><p>the URI that is activated</p></td>
|
2660
|
+
<td class="parameter_annotations"> </td>
|
2661
|
+
</tr>
|
2662
|
+
<tr>
|
2663
|
+
<td class="parameter_name"><p>user_data</p></td>
|
2664
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
2665
|
+
<td class="parameter_annotations"> </td>
|
2666
|
+
</tr>
|
2667
|
+
</tbody>
|
2668
|
+
</table></div>
|
2669
|
+
</div>
|
2670
|
+
<div class="refsect3">
|
2671
|
+
<a name="id-1.4.5.4.14.3.6"></a><h4>Returns</h4>
|
2672
|
+
<p> <a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the link has been activated</p>
|
2673
|
+
<p></p>
|
2674
|
+
</div>
|
2675
|
+
<p>Flags: Run Last</p>
|
2676
|
+
<p class="since">Since 2.18</p>
|
2677
|
+
</div>
|
2678
|
+
<hr>
|
2679
|
+
<div class="refsect2">
|
2680
|
+
<a name="GtkLabel-copy-clipboard"></a><h3>The <code class="literal">“copy-clipboard”</code> signal</h3>
|
2681
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2682
|
+
user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
|
2683
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
2684
|
+
<p>The ::copy-clipboard signal is a</p>
|
2685
|
+
<a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted to copy the selection to the clipboard.</p>
|
2686
|
+
<p>The default binding for this signal is Ctrl-c.</p>
|
2687
|
+
<div class="refsect3">
|
2688
|
+
<a name="id-1.4.5.4.14.4.8"></a><h4>Parameters</h4>
|
2689
|
+
<div class="informaltable"><table width="100%" border="0">
|
2690
|
+
<colgroup>
|
2691
|
+
<col width="150px" class="parameters_name">
|
2692
|
+
<col class="parameters_description">
|
2693
|
+
<col width="200px" class="parameters_annotations">
|
2694
|
+
</colgroup>
|
2695
|
+
<tbody>
|
2696
|
+
<tr>
|
2697
|
+
<td class="parameter_name"><p>label</p></td>
|
2698
|
+
<td class="parameter_description"><p>the object which received the signal</p></td>
|
2699
|
+
<td class="parameter_annotations"> </td>
|
2700
|
+
</tr>
|
2701
|
+
<tr>
|
2702
|
+
<td class="parameter_name"><p>user_data</p></td>
|
2703
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
2704
|
+
<td class="parameter_annotations"> </td>
|
2705
|
+
</tr>
|
2706
|
+
</tbody>
|
2707
|
+
</table></div>
|
2708
|
+
</div>
|
2709
|
+
<p>Flags: Action</p>
|
2710
|
+
</div>
|
2711
|
+
<hr>
|
2712
|
+
<div class="refsect2">
|
2713
|
+
<a name="GtkLabel-move-cursor"></a><h3>The <code class="literal">“move-cursor”</code> signal</h3>
|
2714
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2715
|
+
user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *entry,
|
2716
|
+
<a class="link" href="gtk2-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a> step,
|
2717
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gint"><span class="type">gint</span></a> count,
|
2718
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> extend_selection,
|
2719
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
2720
|
+
<p>The ::move-cursor signal is a</p>
|
2721
|
+
<a class="link" href="gtk2-Bindings.html#keybinding-signals">keybinding signal</a><p>which gets emitted when the user initiates a cursor movement.
|
2722
|
+
If the cursor is not visible in <em class="parameter"><code>entry</code></em>
|
2723
|
+
, this signal causes
|
2724
|
+
the viewport to be moved instead.</p>
|
2725
|
+
<p>Applications should not connect to it, but may emit it with
|
2726
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html#g-signal-emit-by-name"><code class="function">g_signal_emit_by_name()</code></a> if they need to control the cursor
|
2727
|
+
programmatically.</p>
|
2728
|
+
<p>The default bindings for this signal come in two variants,
|
2729
|
+
the variant with the Shift modifier extends the selection,
|
2730
|
+
the variant without the Shift modifer does not.
|
2731
|
+
There are too many key combinations to list them all here.</p>
|
2732
|
+
<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; ">
|
2733
|
+
<li class="listitem">Arrow keys move by individual characters/lines</li>
|
2734
|
+
<li class="listitem">Ctrl-arrow key combinations move by words/paragraphs</li>
|
2735
|
+
<li class="listitem">Home/End keys move to the ends of the buffer</li>
|
2736
|
+
</ul></div>
|
2737
|
+
<div class="refsect3">
|
2738
|
+
<a name="id-1.4.5.4.14.5.10"></a><h4>Parameters</h4>
|
2739
|
+
<div class="informaltable"><table width="100%" border="0">
|
2740
|
+
<colgroup>
|
2741
|
+
<col width="150px" class="parameters_name">
|
2742
|
+
<col class="parameters_description">
|
2743
|
+
<col width="200px" class="parameters_annotations">
|
2744
|
+
</colgroup>
|
2745
|
+
<tbody>
|
2746
|
+
<tr>
|
2747
|
+
<td class="parameter_name"><p>entry</p></td>
|
2748
|
+
<td class="parameter_description"><p>the object which received the signal</p></td>
|
2749
|
+
<td class="parameter_annotations"> </td>
|
2750
|
+
</tr>
|
2751
|
+
<tr>
|
2752
|
+
<td class="parameter_name"><p>step</p></td>
|
2753
|
+
<td class="parameter_description"><p>the granularity of the move, as a <a class="link" href="gtk2-Standard-Enumerations.html#GtkMovementStep" title="enum GtkMovementStep"><span class="type">GtkMovementStep</span></a></p></td>
|
2754
|
+
<td class="parameter_annotations"> </td>
|
2755
|
+
</tr>
|
2756
|
+
<tr>
|
2757
|
+
<td class="parameter_name"><p>count</p></td>
|
2758
|
+
<td class="parameter_description"><p>the number of <em class="parameter"><code>step</code></em>
|
2759
|
+
units to move</p></td>
|
2760
|
+
<td class="parameter_annotations"> </td>
|
2761
|
+
</tr>
|
2762
|
+
<tr>
|
2763
|
+
<td class="parameter_name"><p>extend_selection</p></td>
|
2764
|
+
<td class="parameter_description"><p><a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the move should extend the selection</p></td>
|
2765
|
+
<td class="parameter_annotations"> </td>
|
2766
|
+
</tr>
|
2767
|
+
<tr>
|
2768
|
+
<td class="parameter_name"><p>user_data</p></td>
|
2769
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
2770
|
+
<td class="parameter_annotations"> </td>
|
2771
|
+
</tr>
|
2772
|
+
</tbody>
|
2773
|
+
</table></div>
|
2774
|
+
</div>
|
2775
|
+
<p>Flags: Action</p>
|
2776
|
+
</div>
|
2777
|
+
<hr>
|
2778
|
+
<div class="refsect2">
|
2779
|
+
<a name="GtkLabel-populate-popup"></a><h3>The <code class="literal">“populate-popup”</code> signal</h3>
|
2780
|
+
<pre class="programlisting"><span class="returnvalue">void</span>
|
2781
|
+
user_function (<a class="link" href="GtkLabel.html" title="GtkLabel"><span class="type">GtkLabel</span></a> *label,
|
2782
|
+
<a class="link" href="GtkMenu.html" title="GtkMenu"><span class="type">GtkMenu</span></a> *menu,
|
2783
|
+
<a href="/home/vagrant/ruby-gnome2.win64/glib2/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data)</pre>
|
2784
|
+
<p>The ::populate-popup signal gets emitted before showing the
|
2785
|
+
context menu of the label. Note that only selectable labels
|
2786
|
+
have context menus.</p>
|
2787
|
+
<p>If you need to add items to the context menu, connect
|
2788
|
+
to this signal and append your menuitems to the <em class="parameter"><code>menu</code></em>
|
2789
|
+
.</p>
|
2790
|
+
<div class="refsect3">
|
2791
|
+
<a name="id-1.4.5.4.14.6.6"></a><h4>Parameters</h4>
|
2792
|
+
<div class="informaltable"><table width="100%" border="0">
|
2793
|
+
<colgroup>
|
2794
|
+
<col width="150px" class="parameters_name">
|
2795
|
+
<col class="parameters_description">
|
2796
|
+
<col width="200px" class="parameters_annotations">
|
2797
|
+
</colgroup>
|
2798
|
+
<tbody>
|
2799
|
+
<tr>
|
2800
|
+
<td class="parameter_name"><p>label</p></td>
|
2801
|
+
<td class="parameter_description"><p>The label on which the signal is emitted</p></td>
|
2802
|
+
<td class="parameter_annotations"> </td>
|
2803
|
+
</tr>
|
2804
|
+
<tr>
|
2805
|
+
<td class="parameter_name"><p>menu</p></td>
|
2806
|
+
<td class="parameter_description"><p>the menu that is being populated</p></td>
|
2807
|
+
<td class="parameter_annotations"> </td>
|
2808
|
+
</tr>
|
2809
|
+
<tr>
|
2810
|
+
<td class="parameter_name"><p>user_data</p></td>
|
2811
|
+
<td class="parameter_description"><p>user data set when the signal handler was connected.</p></td>
|
2812
|
+
<td class="parameter_annotations"> </td>
|
2813
|
+
</tr>
|
2814
|
+
</tbody>
|
2815
|
+
</table></div>
|
2816
|
+
</div>
|
2817
|
+
<p>Flags: Run Last</p>
|
2818
|
+
</div>
|
2819
|
+
</div>
|
2820
|
+
</div>
|
2821
|
+
<div class="footer">
|
2822
|
+
<hr>
|
2823
|
+
Generated by GTK-Doc V1.21.1</div>
|
2824
|
+
</body>
|
2825
|
+
</html>
|