gtk3 1.2.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +32 -0
- data/ext/gtk3/conversions.c +34 -0
- data/ext/gtk3/depend +11 -0
- data/ext/gtk3/extconf.rb +108 -0
- data/ext/gtk3/gtk3.def +10 -0
- data/ext/gtk3/init.c +38 -0
- data/ext/gtk3/rbgdkdisplay.c +39 -0
- data/ext/gtk3/rbgdkdragcontext.c +108 -0
- data/ext/gtk3/rbgdkevent.c +38 -0
- data/ext/gtk3/rbgdkscreen.c +61 -0
- data/ext/gtk3/rbgtk.c +625 -0
- data/ext/gtk3/rbgtk3.h +57 -0
- data/ext/gtk3/rbgtk3conversions.h +347 -0
- data/ext/gtk3/rbgtk3private.h +282 -0
- data/ext/gtk3/rbgtk3util.c +67 -0
- data/ext/gtk3/rbgtk3util.h +32 -0
- data/ext/gtk3/rbgtkaboutdialog.c +117 -0
- data/ext/gtk3/rbgtkaccelerator.c +78 -0
- data/ext/gtk3/rbgtkaccelgroup.c +199 -0
- data/ext/gtk3/rbgtkaccelgroupentry.c +93 -0
- data/ext/gtk3/rbgtkaccelkey.c +119 -0
- data/ext/gtk3/rbgtkaccellabel.c +55 -0
- data/ext/gtk3/rbgtkaccelmap.c +135 -0
- data/ext/gtk3/rbgtkaccessible.c +56 -0
- data/ext/gtk3/rbgtkaction.c +205 -0
- data/ext/gtk3/rbgtkactiongroup.c +466 -0
- data/ext/gtk3/rbgtkactivatable.c +30 -0
- data/ext/gtk3/rbgtkadjustment.c +98 -0
- data/ext/gtk3/rbgtkalignment.c +75 -0
- data/ext/gtk3/rbgtkallocation.c +166 -0
- data/ext/gtk3/rbgtkappchooser.c +47 -0
- data/ext/gtk3/rbgtkappchooserbutton.c +70 -0
- data/ext/gtk3/rbgtkappchooserdialog.c +68 -0
- data/ext/gtk3/rbgtkappchooserwidget.c +40 -0
- data/ext/gtk3/rbgtkapplication.c +69 -0
- data/ext/gtk3/rbgtkarrow.c +56 -0
- data/ext/gtk3/rbgtkaspectframe.c +56 -0
- data/ext/gtk3/rbgtkassistant.c +218 -0
- data/ext/gtk3/rbgtkbin.c +42 -0
- data/ext/gtk3/rbgtkbindingset.c +164 -0
- data/ext/gtk3/rbgtkborder.c +119 -0
- data/ext/gtk3/rbgtkbox.c +146 -0
- data/ext/gtk3/rbgtkbuildable.c +96 -0
- data/ext/gtk3/rbgtkbuilder.c +166 -0
- data/ext/gtk3/rbgtkbutton.c +93 -0
- data/ext/gtk3/rbgtkbuttonbox.c +87 -0
- data/ext/gtk3/rbgtkcalendar.c +118 -0
- data/ext/gtk3/rbgtkcelleditable.c +57 -0
- data/ext/gtk3/rbgtkcelllayout.c +144 -0
- data/ext/gtk3/rbgtkcellrenderer.c +116 -0
- data/ext/gtk3/rbgtkcellrendereraccel.c +41 -0
- data/ext/gtk3/rbgtkcellrenderercombo.c +38 -0
- data/ext/gtk3/rbgtkcellrendererpixbuf.c +41 -0
- data/ext/gtk3/rbgtkcellrendererprogress.c +38 -0
- data/ext/gtk3/rbgtkcellrendererspin.c +39 -0
- data/ext/gtk3/rbgtkcellrendererspinner.c +38 -0
- data/ext/gtk3/rbgtkcellrenderertext.c +48 -0
- data/ext/gtk3/rbgtkcellrenderertoggle.c +39 -0
- data/ext/gtk3/rbgtkcellview.c +109 -0
- data/ext/gtk3/rbgtkcheckbutton.c +64 -0
- data/ext/gtk3/rbgtkcheckmenuitem.c +64 -0
- data/ext/gtk3/rbgtkclipboard.c +389 -0
- data/ext/gtk3/rbgtkcolorbutton.c +49 -0
- data/ext/gtk3/rbgtkcolorselection.c +219 -0
- data/ext/gtk3/rbgtkcolorselectiondialog.c +56 -0
- data/ext/gtk3/rbgtkcombobox.c +147 -0
- data/ext/gtk3/rbgtkcomboboxtext.c +138 -0
- data/ext/gtk3/rbgtkconst.c +79 -0
- data/ext/gtk3/rbgtkcontainer.c +784 -0
- data/ext/gtk3/rbgtkcssprovider.c +110 -0
- data/ext/gtk3/rbgtkdialog.c +186 -0
- data/ext/gtk3/rbgtkdrag.c +93 -0
- data/ext/gtk3/rbgtkdrawingarea.c +42 -0
- data/ext/gtk3/rbgtkeditable.c +149 -0
- data/ext/gtk3/rbgtkentry.c +198 -0
- data/ext/gtk3/rbgtkentrybuffer.c +87 -0
- data/ext/gtk3/rbgtkentrycompletion.c +122 -0
- data/ext/gtk3/rbgtkeventbox.c +42 -0
- data/ext/gtk3/rbgtkexpander.c +49 -0
- data/ext/gtk3/rbgtkfilechooser.c +384 -0
- data/ext/gtk3/rbgtkfilechooserbutton.c +50 -0
- data/ext/gtk3/rbgtkfilechooserdialog.c +62 -0
- data/ext/gtk3/rbgtkfilechooserwidget.c +40 -0
- data/ext/gtk3/rbgtkfilefilter.c +128 -0
- data/ext/gtk3/rbgtkfilesystemerror.c +48 -0
- data/ext/gtk3/rbgtkfixed.c +61 -0
- data/ext/gtk3/rbgtkfontbutton.c +49 -0
- data/ext/gtk3/rbgtkfontchooser.c +78 -0
- data/ext/gtk3/rbgtkfontchooserdialog.c +56 -0
- data/ext/gtk3/rbgtkfontchooserwidget.c +45 -0
- data/ext/gtk3/rbgtkframe.c +69 -0
- data/ext/gtk3/rbgtkgrid.c +105 -0
- data/ext/gtk3/rbgtkhandlebox.c +45 -0
- data/ext/gtk3/rbgtkhsv.c +102 -0
- data/ext/gtk3/rbgtkiconfactory.c +85 -0
- data/ext/gtk3/rbgtkiconinfo.c +115 -0
- data/ext/gtk3/rbgtkiconset.c +84 -0
- data/ext/gtk3/rbgtkiconsize.c +91 -0
- data/ext/gtk3/rbgtkiconsource.c +184 -0
- data/ext/gtk3/rbgtkicontheme.c +268 -0
- data/ext/gtk3/rbgtkiconview.c +270 -0
- data/ext/gtk3/rbgtkimage.c +96 -0
- data/ext/gtk3/rbgtkimagemenuitem.c +67 -0
- data/ext/gtk3/rbgtkimcontext.c +133 -0
- data/ext/gtk3/rbgtkimcontextsimple.c +69 -0
- data/ext/gtk3/rbgtkimmulticontext.c +48 -0
- data/ext/gtk3/rbgtkinfobar.c +121 -0
- data/ext/gtk3/rbgtkinvisible.c +49 -0
- data/ext/gtk3/rbgtklabel.c +139 -0
- data/ext/gtk3/rbgtklayout.c +93 -0
- data/ext/gtk3/rbgtklinkbutton.c +55 -0
- data/ext/gtk3/rbgtkliststore.c +408 -0
- data/ext/gtk3/rbgtklockbutton.c +50 -0
- data/ext/gtk3/rbgtkmenu.c +168 -0
- data/ext/gtk3/rbgtkmenubar.c +43 -0
- data/ext/gtk3/rbgtkmenuitem.c +95 -0
- data/ext/gtk3/rbgtkmenushell.c +106 -0
- data/ext/gtk3/rbgtkmenutoolbutton.c +81 -0
- data/ext/gtk3/rbgtkmessagedialog.c +74 -0
- data/ext/gtk3/rbgtkmisc.c +70 -0
- data/ext/gtk3/rbgtknotebook.c +383 -0
- data/ext/gtk3/rbgtknumerableicon.c +50 -0
- data/ext/gtk3/rbgtkorientable.c +27 -0
- data/ext/gtk3/rbgtkoverlay.c +53 -0
- data/ext/gtk3/rbgtkpagesetup.c +195 -0
- data/ext/gtk3/rbgtkpagesetupunixdialog.c +94 -0
- data/ext/gtk3/rbgtkpaned.c +114 -0
- data/ext/gtk3/rbgtkpapersize.c +179 -0
- data/ext/gtk3/rbgtkplug.c +85 -0
- data/ext/gtk3/rbgtkprintcontext.c +125 -0
- data/ext/gtk3/rbgtkprinter.c +155 -0
- data/ext/gtk3/rbgtkprintjob.c +148 -0
- data/ext/gtk3/rbgtkprintoperation.c +149 -0
- data/ext/gtk3/rbgtkprintoperationpreview.c +59 -0
- data/ext/gtk3/rbgtkprintsettings.c +807 -0
- data/ext/gtk3/rbgtkprintunixdialog.c +90 -0
- data/ext/gtk3/rbgtkprogressbar.c +72 -0
- data/ext/gtk3/rbgtkradioaction.c +122 -0
- data/ext/gtk3/rbgtkradiobutton.c +89 -0
- data/ext/gtk3/rbgtkradiomenuitem.c +147 -0
- data/ext/gtk3/rbgtkradiotoolbutton.c +131 -0
- data/ext/gtk3/rbgtkrange.c +68 -0
- data/ext/gtk3/rbgtkrecentaction.c +64 -0
- data/ext/gtk3/rbgtkrecentchooser.c +198 -0
- data/ext/gtk3/rbgtkrecentchooserdialog.c +66 -0
- data/ext/gtk3/rbgtkrecentchoosermenu.c +50 -0
- data/ext/gtk3/rbgtkrecentchooserwidget.c +48 -0
- data/ext/gtk3/rbgtkrecentdata.c +187 -0
- data/ext/gtk3/rbgtkrecentfilter.c +169 -0
- data/ext/gtk3/rbgtkrecentfilterinfo.c +200 -0
- data/ext/gtk3/rbgtkrecentinfo.c +213 -0
- data/ext/gtk3/rbgtkrecentmanager.c +134 -0
- data/ext/gtk3/rbgtkscale.c +97 -0
- data/ext/gtk3/rbgtkscalebutton.c +84 -0
- data/ext/gtk3/rbgtkscrollable.c +31 -0
- data/ext/gtk3/rbgtkscrollbar.c +52 -0
- data/ext/gtk3/rbgtkscrolledwindow.c +122 -0
- data/ext/gtk3/rbgtkselection.c +168 -0
- data/ext/gtk3/rbgtkselectiondata.c +282 -0
- data/ext/gtk3/rbgtkseparator.c +44 -0
- data/ext/gtk3/rbgtkseparatormenuitem.c +39 -0
- data/ext/gtk3/rbgtkseparatortoolitem.c +38 -0
- data/ext/gtk3/rbgtksettings.c +229 -0
- data/ext/gtk3/rbgtksizegroup.c +66 -0
- data/ext/gtk3/rbgtksocket.c +82 -0
- data/ext/gtk3/rbgtkspinbutton.c +132 -0
- data/ext/gtk3/rbgtkspinner.c +55 -0
- data/ext/gtk3/rbgtkstatusbar.c +77 -0
- data/ext/gtk3/rbgtkstatusicon.c +122 -0
- data/ext/gtk3/rbgtkstock.c +213 -0
- data/ext/gtk3/rbgtkstylecontext.c +411 -0
- data/ext/gtk3/rbgtkstyleproperties.c +119 -0
- data/ext/gtk3/rbgtkstyleprovider.c +68 -0
- data/ext/gtk3/rbgtkswitch.c +40 -0
- data/ext/gtk3/rbgtktable.c +190 -0
- data/ext/gtk3/rbgtktargetlist.c +125 -0
- data/ext/gtk3/rbgtktearoffmenuitem.c +41 -0
- data/ext/gtk3/rbgtktextappearance.c +236 -0
- data/ext/gtk3/rbgtktextattributes.c +326 -0
- data/ext/gtk3/rbgtktextbuffer.c +899 -0
- data/ext/gtk3/rbgtktextchildanchor.c +56 -0
- data/ext/gtk3/rbgtktextiter.c +732 -0
- data/ext/gtk3/rbgtktextmark.c +71 -0
- data/ext/gtk3/rbgtktexttag.c +68 -0
- data/ext/gtk3/rbgtktexttagtable.c +96 -0
- data/ext/gtk3/rbgtktextview.c +336 -0
- data/ext/gtk3/rbgtkthemingengine.c +257 -0
- data/ext/gtk3/rbgtktoggleaction.c +61 -0
- data/ext/gtk3/rbgtktogglebutton.c +87 -0
- data/ext/gtk3/rbgtktoggletoolbutton.c +61 -0
- data/ext/gtk3/rbgtktoolbar.c +118 -0
- data/ext/gtk3/rbgtktoolbutton.c +66 -0
- data/ext/gtk3/rbgtktoolitem.c +200 -0
- data/ext/gtk3/rbgtktoolitemgroup.c +70 -0
- data/ext/gtk3/rbgtktoolshell.c +96 -0
- data/ext/gtk3/rbgtktooltip.c +100 -0
- data/ext/gtk3/rbgtktreedragdest.c +28 -0
- data/ext/gtk3/rbgtktreedragsource.c +28 -0
- data/ext/gtk3/rbgtktreeiter.c +258 -0
- data/ext/gtk3/rbgtktreemodel.c +236 -0
- data/ext/gtk3/rbgtktreemodelfilter.c +197 -0
- data/ext/gtk3/rbgtktreemodelsort.c +111 -0
- data/ext/gtk3/rbgtktreepath.c +191 -0
- data/ext/gtk3/rbgtktreerowreference.c +140 -0
- data/ext/gtk3/rbgtktreeselection.c +205 -0
- data/ext/gtk3/rbgtktreesortable.c +122 -0
- data/ext/gtk3/rbgtktreestore.c +330 -0
- data/ext/gtk3/rbgtktreeview.c +715 -0
- data/ext/gtk3/rbgtktreeviewcolumn.c +256 -0
- data/ext/gtk3/rbgtkuimanager.c +189 -0
- data/ext/gtk3/rbgtkviewport.c +44 -0
- data/ext/gtk3/rbgtkvolumebutton.c +41 -0
- data/ext/gtk3/rbgtkwidget.c +1564 -0
- data/ext/gtk3/rbgtkwidgetpath.c +229 -0
- data/ext/gtk3/rbgtkwindow.c +557 -0
- data/ext/gtk3/rbgtkwindowgroup.c +80 -0
- data/extconf.rb +49 -0
- data/lib/1.8/gtk3.so +0 -0
- data/lib/1.9/gtk3.so +0 -0
- data/lib/gtk3.rb +10 -0
- data/lib/gtk3/base.rb +67 -0
- data/lib/gtk3/deprecated.rb +1001 -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 +88 -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 +382 -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 +66 -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 +64 -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 +33 -0
- data/sample/misc/expander.rb +27 -0
- data/sample/misc/filechooser.rb +41 -0
- data/sample/misc/frame.rb +69 -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/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 +49 -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 +52 -0
- data/sample/misc/rgtk+cairo.rb +42 -0
- data/sample/misc/scalebutton.rb +19 -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 +79 -0
- data/sample/misc/tree_progress.rb +63 -0
- data/sample/misc/treemodelfilter.rb +49 -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 +124 -0
- data/sample/testgtk/buttonbox.rb +100 -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 +48 -0
- data/sample/testgtk/entry.rb +73 -0
- data/sample/testgtk/filesel.rb +65 -0
- data/sample/testgtk/fontselection.rb +56 -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 +280 -0
- data/sample/testgtk/pixmap.rb +58 -0
- data/sample/testgtk/progressbar.rb +173 -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/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 +176 -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 +11 -0
- data/test/test_gdk_gc.rb +7 -0
- data/test/test_gdk_keymap.rb +8 -0
- data/test/test_gdk_pango.rb +9 -0
- data/test/test_gdk_selection_data.rb +17 -0
- data/test/test_gdk_window.rb +29 -0
- data/test/test_gdk_window_attribute.rb +9 -0
- data/test/test_gtk_about_dialog.rb +14 -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 +30 -0
- data/test/test_gtk_image.rb +8 -0
- data/test/test_gtk_list_store.rb +65 -0
- data/test/test_gtk_menu_item.rb +13 -0
- data/test/test_gtk_rc_style.rb +14 -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/gtk-update-icon-cache.exe.manifest +17 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtk.immodules +4 -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 +149 -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.lib +0 -0
- data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/include/gdkconfig.h +35 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gail.pc +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/manifest/gtk+-dev_2.24.10-1_win32.mft +947 -0
- data/vendor/local/manifest/gtk+_2.24.10-1_win32.mft +225 -0
- data/vendor/local/share/aclocal/gtk-2.0.m4 +196 -0
- data/vendor/local/share/doc/gtk+-2.24.10/COPYING +482 -0
- data/vendor/local/share/doc/gtk+-dev-2.24.10/COPYING +482 -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 +643 -0
- data/vendor/local/share/gtk-2.0/demo/clipboard.c +326 -0
- data/vendor/local/share/gtk-2.0/demo/colorsel.c +142 -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 +308 -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 +579 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +500 -0
- data/vendor/local/share/gtk-2.0/demo/panes.c +194 -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 +237 -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 +795 -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 +449 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +275 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +30 -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.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.png +0 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +1283 -0
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +262 -0
- data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +1526 -0
- data/vendor/local/share/gtk-doc/html/gdk/X_cursor.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +74 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +123 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +124 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +124 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +42 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +109 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +515 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +51 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +224 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +123 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +128 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +115 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +1012 -0
- data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +3674 -0
- data/vendor/local/share/gtk-doc/html/gdk/arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/based_arrow_down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/based_arrow_up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/boat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bogosity.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/bottom_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/box_spiral.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/center_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/circle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/clock.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/coffee_mug.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/cross_reverse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/crosshair.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/diamond_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/dot.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/dotbox.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/draft_large.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/draft_small.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/draped_box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/exchange.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/fleur.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +319 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +611 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +415 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +950 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +1137 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +911 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +2088 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +1690 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +1264 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +1449 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +1182 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +902 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +1653 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +824 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +960 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +297 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +1016 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +861 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +648 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +968 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +1005 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +657 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +210 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +933 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +827 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +6581 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +2486 -0
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +1331 -0
- data/vendor/local/share/gtk-doc/html/gdk/gobbler.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/gumby.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/hand1.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/hand2.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/heart.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/icon.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/index.html +143 -0
- data/vendor/local/share/gtk-doc/html/gdk/index.sgml +1446 -0
- data/vendor/local/share/gtk-doc/html/gdk/iron_cross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/left_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/leftbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/ll_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/lr_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/man.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/middlebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/mouse.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/multihead.html +201 -0
- data/vendor/local/share/gtk-doc/html/gdk/pencil.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/pirate.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/plus.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/question_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/reference.html +131 -0
- data/vendor/local/share/gtk-doc/html/gdk/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/right_ptr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/right_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/right_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/rightbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/rotated-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/rtl_logo.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sailboat.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_down_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_h_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_right_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_up_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sb_v_double_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/shuttle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/sizing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/spider.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/spraycan.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/star.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gdk/target.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/tcross.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_left_arrow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_left_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_right_corner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_side.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/top_tee.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/trek.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/ul_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/umbrella.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/ur_angle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/watch.png +0 -0
- data/vendor/local/share/gtk-doc/html/gdk/xterm.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk/Actions.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/Builder.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +83 -0
- data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +56 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +1423 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +340 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +147 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +1582 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +1222 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +856 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +807 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +390 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +205 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +238 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +1134 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +131 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +773 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +638 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +1121 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +1110 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +555 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +3832 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +2563 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +1059 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +270 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +520 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +1132 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +254 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +227 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +206 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +199 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +161 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +157 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +582 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +351 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +433 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +214 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +436 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +786 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +231 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +507 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +1555 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +298 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +1510 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +423 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +1323 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +251 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +662 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +3428 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +590 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +1128 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +292 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +739 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +3186 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +498 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +321 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +170 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +611 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +326 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +571 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +526 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +417 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +444 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +127 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +132 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +230 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +108 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +129 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +462 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +125 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +130 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +478 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +947 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +148 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +175 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +1410 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +2689 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +1501 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +456 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +714 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +200 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +197 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +235 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +1172 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +2086 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +577 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +390 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +972 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +438 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +1056 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +1353 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +412 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +882 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +671 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +431 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +786 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +313 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +2682 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +1217 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +186 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +501 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +333 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +937 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +242 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +760 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaperSize.html +820 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +239 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +357 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +652 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +513 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +527 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +2677 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +853 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +931 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +555 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +852 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +367 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +525 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +457 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +327 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +1389 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +267 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +1376 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +228 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +259 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +620 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +1564 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +357 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +537 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +571 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +187 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +738 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +90 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +110 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +211 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +1215 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +440 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +388 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +1260 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +203 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +1716 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +491 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +4192 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +759 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +135 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +3605 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextIter.html +2871 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +325 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +1157 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +381 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +3002 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +452 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +315 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +508 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +279 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +667 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +1147 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +705 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +1007 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +394 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +1851 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +414 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +450 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +767 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +2402 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +654 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +551 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +796 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +458 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +1028 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +4656 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +1845 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +1290 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +133 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +209 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +108 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +129 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +123 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +111 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +398 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +112 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +10064 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +4007 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +175 -0
- data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +74 -0
- data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +68 -0
- data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +38 -0
- data/vendor/local/share/gtk-doc/html/gtk/Printing.html +59 -0
- data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +47 -0
- data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +266 -0
- data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +556 -0
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +57 -0
- data/vendor/local/share/gtk-doc/html/gtk/aboutdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/accel-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +2095 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +790 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +786 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +602 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +518 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +291 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +465 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +181 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +1858 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +1090 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +386 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +3401 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +22926 -0
- data/vendor/local/share/gtk-doc/html/gtk/application-exit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/assistant.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ch01.html +246 -0
- data/vendor/local/share/gtk-doc/html/gtk/ch02.html +154 -0
- data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +496 -0
- data/vendor/local/share/gtk-doc/html/gtk/check-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +84 -0
- data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +89 -0
- data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/color-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/colorsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/combo-box-entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/combo-box.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +50 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-information.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-password.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-question.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/dialog-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-new.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-open.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-print-preview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-print.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-properties.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-revert-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-revert-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-save-as.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/document-save.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/drive-harddisk.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-clear.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-copy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-cut.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-delete.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-find-replace.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-find.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-paste.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-redo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-redo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-select-all.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-undo-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/edit-undo-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/entry.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/figure-hierarchical-drawing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/figure-windowed-label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/file-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/filechooser.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/folder.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/font-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/fontsel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-less-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-indent-more-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-center.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-fill.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-justify-right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-bold.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-italic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-strikethrough.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/format-text-underline.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/frame.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/glossary.html +312 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-bottom.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-down.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-first-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-first-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-jump-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-jump-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-last-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-last-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-next-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-next-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-previous-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-previous-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-top.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/go-up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +522 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +857 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +1525 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +1419 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +285 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +346 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +1760 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +123 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +439 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +2571 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +979 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +169 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +1726 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +1601 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +1536 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +1357 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +1565 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +589 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +1497 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +1574 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-apply.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +86 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +441 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-cancel.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-caps-lock-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +568 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +1175 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-color-picker.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +111 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-connect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-convert.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +60 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-disconnect.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd-multiple.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-dnd.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-edit.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-font.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +493 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +509 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-index.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +85 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +160 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +91 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +102 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +118 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +107 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +256 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +80 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +264 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +155 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +310 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +163 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +293 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +124 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-no.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-ok.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-landscape.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-orientation-reverse-portrait.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +53 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-page-setup.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-preferences.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +68 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +1422 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +143 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +344 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-select-color.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-undelete-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +106 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +87 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +134 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk-yes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +6465 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtk.html +159 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +95 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +40 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +41 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +55 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +51 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +668 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +206 -0
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +97 -0
- data/vendor/local/share/gtk-doc/html/gtk/help-about.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/help-contents.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/icon-view.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/image-missing.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/image.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/index.html +875 -0
- data/vendor/local/share/gtk-doc/html/gtk/index.sgml +7988 -0
- data/vendor/local/share/gtk-doc/html/gtk/label.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-btlr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-btrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-lrbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-lrtb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-rlbt.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-rltb.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-tblr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/layout-tbrl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/link-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/list-add.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/list-and-tree.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/list-remove.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-floppy.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-optical.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-pause.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-start-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-playback-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-record.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-seek-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-backward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-ltr.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/media-skip-forward-rtl.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/menubar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/messagedialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +94 -0
- data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +351 -0
- data/vendor/local/share/gtk-doc/html/gtk/migrating.html +104 -0
- data/vendor/local/share/gtk-doc/html/gtk/multiline-text.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/network-idle.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +71 -0
- data/vendor/local/share/gtk-doc/html/gtk/notebook.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/pagesetupdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/panes.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-error.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-info.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-paused.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/printer-warning.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/process-stop.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/progressbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/pt05.html +44 -0
- data/vendor/local/share/gtk-doc/html/gtk/radio-group.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/recentchooserdialog.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/scales.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/scrolledwindow.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/separator.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +77 -0
- data/vendor/local/share/gtk-doc/html/gtk/spinbutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/spinner.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/statusbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/style.css +266 -0
- data/vendor/local/share/gtk-doc/html/gtk/system-run.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/text-x-generic.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/toggle-button.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/toolbar.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/toolpalette.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/tools-check-spelling.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/tree-view-coordinates.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +45 -0
- data/vendor/local/share/gtk-doc/html/gtk/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-fullscreen.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-refresh.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-restore.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-sort-ascending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/view-sort-descending.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/volumebutton.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/window-close.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/window.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-fit-best.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-in.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-original.png +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/zoom-out.png +0 -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
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.log +4954 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.10-1_win32.sh +99 -0
- metadata +1759 -0
@@ -0,0 +1,3832 @@
|
|
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>GtkCList</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
|
8
|
+
<link rel="up" href="DeprecatedObjects.html" title="Deprecated">
|
9
|
+
<link rel="prev" href="DeprecatedObjects.html" title="Deprecated">
|
10
|
+
<link rel="next" href="GtkCTree.html" title="GtkCTree">
|
11
|
+
<meta name="generator" content="GTK-Doc V1.18 (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="2">
|
16
|
+
<tr valign="middle">
|
17
|
+
<td><a accesskey="p" href="DeprecatedObjects.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="DeprecatedObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
|
+
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
+
<th width="100%" align="center">GTK+ 2 Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="GtkCTree.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
|
+
</tr>
|
23
|
+
<tr><td colspan="5" class="shortcuts">
|
24
|
+
<a href="#GtkCList.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#GtkCList.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#GtkCList.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
|
|
30
|
+
<a href="#GtkCList.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
|
31
|
+
|
|
32
|
+
<a href="#GtkCList.properties" class="shortcut">Properties</a>
|
33
|
+
|
|
34
|
+
<a href="#GtkCList.signals" class="shortcut">Signals</a>
|
35
|
+
</td></tr>
|
36
|
+
</table>
|
37
|
+
<div class="refentry">
|
38
|
+
<a name="GtkCList"></a><div class="titlepage"></div>
|
39
|
+
<div class="refnamediv"><table width="100%"><tr>
|
40
|
+
<td valign="top">
|
41
|
+
<h2><span class="refentrytitle"><a name="GtkCList.top_of_page"></a>GtkCList</span></h2>
|
42
|
+
<p>GtkCList — A multi-columned scrolling list widget</p>
|
43
|
+
</td>
|
44
|
+
<td valign="top" align="right"></td>
|
45
|
+
</tr></table></div>
|
46
|
+
<div class="refsynopsisdiv">
|
47
|
+
<a name="GtkCList.synopsis"></a><h2>Synopsis</h2>
|
48
|
+
<pre class="synopsis">
|
49
|
+
#include <gtk/gtk.h>
|
50
|
+
|
51
|
+
struct <a class="link" href="GtkCList.html#GtkCList-struct" title="struct GtkCList">GtkCList</a>;
|
52
|
+
enum <a class="link" href="GtkCList.html#GtkCellType" title="enum GtkCellType">GtkCellType</a>;
|
53
|
+
enum <a class="link" href="GtkCList.html#GtkButtonAction" title="enum GtkButtonAction">GtkButtonAction</a>;
|
54
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-FLAGS:CAPS" title="GTK_CLIST_FLAGS()">GTK_CLIST_FLAGS</a> (clist)
|
55
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-SET-FLAG:CAPS" title="GTK_CLIST_SET_FLAG()">GTK_CLIST_SET_FLAG</a> (clist,
|
56
|
+
flag)
|
57
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-UNSET-FLAG:CAPS" title="GTK_CLIST_UNSET_FLAG()">GTK_CLIST_UNSET_FLAG</a> (clist,
|
58
|
+
flag)
|
59
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-IN-DRAG:CAPS" title="GTK_CLIST_IN_DRAG()">GTK_CLIST_IN_DRAG</a> (clist)
|
60
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-ROW-HEIGHT-SET:CAPS" title="GTK_CLIST_ROW_HEIGHT_SET()">GTK_CLIST_ROW_HEIGHT_SET</a> (clist)
|
61
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-SHOW-TITLES:CAPS" title="GTK_CLIST_SHOW_TITLES()">GTK_CLIST_SHOW_TITLES</a> (clist)
|
62
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-ADD-MODE:CAPS" title="GTK_CLIST_ADD_MODE()">GTK_CLIST_ADD_MODE</a> (clist)
|
63
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-AUTO-SORT:CAPS" title="GTK_CLIST_AUTO_SORT()">GTK_CLIST_AUTO_SORT</a> (clist)
|
64
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-AUTO-RESIZE-BLOCKED:CAPS" title="GTK_CLIST_AUTO_RESIZE_BLOCKED()">GTK_CLIST_AUTO_RESIZE_BLOCKED</a> (clist)
|
65
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-REORDERABLE:CAPS" title="GTK_CLIST_REORDERABLE()">GTK_CLIST_REORDERABLE</a> (clist)
|
66
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-USE-DRAG-ICONS:CAPS" title="GTK_CLIST_USE_DRAG_ICONS()">GTK_CLIST_USE_DRAG_ICONS</a> (clist)
|
67
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-DRAW-DRAG-LINE:CAPS" title="GTK_CLIST_DRAW_DRAG_LINE()">GTK_CLIST_DRAW_DRAG_LINE</a> (clist)
|
68
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-DRAW-DRAG-RECT:CAPS" title="GTK_CLIST_DRAW_DRAG_RECT()">GTK_CLIST_DRAW_DRAG_RECT</a> (clist)
|
69
|
+
#define <a class="link" href="GtkCList.html#GTK-CLIST-ROW:CAPS" title="GTK_CLIST_ROW()">GTK_CLIST_ROW</a> (_glist_)
|
70
|
+
#define <a class="link" href="GtkCList.html#GTK-CELL-TEXT:CAPS" title="GTK_CELL_TEXT()">GTK_CELL_TEXT</a> (cell)
|
71
|
+
#define <a class="link" href="GtkCList.html#GTK-CELL-PIXMAP:CAPS" title="GTK_CELL_PIXMAP()">GTK_CELL_PIXMAP</a> (cell)
|
72
|
+
#define <a class="link" href="GtkCList.html#GTK-CELL-PIXTEXT:CAPS" title="GTK_CELL_PIXTEXT()">GTK_CELL_PIXTEXT</a> (cell)
|
73
|
+
#define <a class="link" href="GtkCList.html#GTK-CELL-WIDGET:CAPS" title="GTK_CELL_WIDGET()">GTK_CELL_WIDGET</a> (cell)
|
74
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> (<a class="link" href="GtkCList.html#GtkCListCompareFunc" title="GtkCListCompareFunc ()">*GtkCListCompareFunc</a>) (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
75
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gconstpointer"><span class="type">gconstpointer</span></a> ptr1</code></em>,
|
76
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gconstpointer"><span class="type">gconstpointer</span></a> ptr2</code></em>);
|
77
|
+
struct <a class="link" href="GtkCList.html#GtkCListColumn" title="struct GtkCListColumn">GtkCListColumn</a>;
|
78
|
+
struct <a class="link" href="GtkCList.html#GtkCListRow" title="struct GtkCListRow">GtkCListRow</a>;
|
79
|
+
struct <a class="link" href="GtkCList.html#GtkCellText" title="struct GtkCellText">GtkCellText</a>;
|
80
|
+
struct <a class="link" href="GtkCList.html#GtkCellPixmap" title="struct GtkCellPixmap">GtkCellPixmap</a>;
|
81
|
+
struct <a class="link" href="GtkCList.html#GtkCellPixText" title="struct GtkCellPixText">GtkCellPixText</a>;
|
82
|
+
struct <a class="link" href="GtkCList.html#GtkCellWidget" title="struct GtkCellWidget">GtkCellWidget</a>;
|
83
|
+
struct <a class="link" href="GtkCList.html#GtkCell" title="struct GtkCell">GtkCell</a>;
|
84
|
+
struct <a class="link" href="GtkCList.html#GtkCListCellInfo" title="struct GtkCListCellInfo">GtkCListCellInfo</a>;
|
85
|
+
struct <a class="link" href="GtkCList.html#GtkCListDestInfo" title="struct GtkCListDestInfo">GtkCListDestInfo</a>;
|
86
|
+
enum <a class="link" href="GtkCList.html#GtkCListDragPos" title="enum GtkCListDragPos">GtkCListDragPos</a>;
|
87
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkCList.html#gtk-clist-new" title="gtk_clist_new ()">gtk_clist_new</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> columns</code></em>);
|
88
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkCList.html#gtk-clist-new-with-titles" title="gtk_clist_new_with_titles ()">gtk_clist_new_with_titles</a> (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> columns</code></em>,
|
89
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *titles[]</code></em>);
|
90
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-shadow-type" title="gtk_clist_set_shadow_type ()">gtk_clist_set_shadow_type</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
91
|
+
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> type</code></em>);
|
92
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-selection-mode" title="gtk_clist_set_selection_mode ()">gtk_clist_set_selection_mode</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
93
|
+
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> mode</code></em>);
|
94
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-freeze" title="gtk_clist_freeze ()">gtk_clist_freeze</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
95
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-thaw" title="gtk_clist_thaw ()">gtk_clist_thaw</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
96
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-column-titles-show" title="gtk_clist_column_titles_show ()">gtk_clist_column_titles_show</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
97
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-column-titles-hide" title="gtk_clist_column_titles_hide ()">gtk_clist_column_titles_hide</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
98
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-column-title-active" title="gtk_clist_column_title_active ()">gtk_clist_column_title_active</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
99
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
100
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-column-title-passive" title="gtk_clist_column_title_passive ()">gtk_clist_column_title_passive</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
101
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
102
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-column-titles-active" title="gtk_clist_column_titles_active ()">gtk_clist_column_titles_active</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
103
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-column-titles-passive" title="gtk_clist_column_titles_passive ()">gtk_clist_column_titles_passive</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
104
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-column-title" title="gtk_clist_set_column_title ()">gtk_clist_set_column_title</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
105
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
106
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *title</code></em>);
|
107
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-column-widget" title="gtk_clist_set_column_widget ()">gtk_clist_set_column_widget</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
108
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
109
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);
|
110
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-column-justification" title="gtk_clist_set_column_justification ()">gtk_clist_set_column_justification</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
111
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
112
|
+
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> justification</code></em>);
|
113
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-column-visibility" title="gtk_clist_set_column_visibility ()">gtk_clist_set_column_visibility</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
114
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
115
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visible</code></em>);
|
116
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-column-resizeable" title="gtk_clist_set_column_resizeable ()">gtk_clist_set_column_resizeable</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
117
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
118
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> resizeable</code></em>);
|
119
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-column-auto-resize" title="gtk_clist_set_column_auto_resize ()">gtk_clist_set_column_auto_resize</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
120
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
121
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> auto_resize</code></em>);
|
122
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkCList.html#gtk-clist-optimal-column-width" title="gtk_clist_optimal_column_width ()">gtk_clist_optimal_column_width</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
123
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
124
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-column-width" title="gtk_clist_set_column_width ()">gtk_clist_set_column_width</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
125
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
126
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>);
|
127
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-column-min-width" title="gtk_clist_set_column_min_width ()">gtk_clist_set_column_min_width</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
128
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
129
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> min_width</code></em>);
|
130
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-column-max-width" title="gtk_clist_set_column_max_width ()">gtk_clist_set_column_max_width</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
131
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
132
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> max_width</code></em>);
|
133
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-row-height" title="gtk_clist_set_row_height ()">gtk_clist_set_row_height</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
134
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> height</code></em>);
|
135
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-moveto" title="gtk_clist_moveto ()">gtk_clist_moveto</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
136
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
137
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
138
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> row_align</code></em>,
|
139
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> col_align</code></em>);
|
140
|
+
<a class="link" href="gtk-Standard-Enumerations.html#GtkVisibility" title="enum GtkVisibility"><span class="returnvalue">GtkVisibility</span></a> <a class="link" href="GtkCList.html#gtk-clist-row-is-visible" title="gtk_clist_row_is_visible ()">gtk_clist_row_is_visible</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
141
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>);
|
142
|
+
<a class="link" href="GtkCList.html#GtkCellType" title="enum GtkCellType"><span class="returnvalue">GtkCellType</span></a> <a class="link" href="GtkCList.html#gtk-clist-get-cell-type" title="gtk_clist_get_cell_type ()">gtk_clist_get_cell_type</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
143
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
144
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
145
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-text" title="gtk_clist_set_text ()">gtk_clist_set_text</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
146
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
147
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
148
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);
|
149
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkCList.html#gtk-clist-get-text" title="gtk_clist_get_text ()">gtk_clist_get_text</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
150
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
151
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
152
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **text</code></em>);
|
153
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-pixmap" title="gtk_clist_set_pixmap ()">gtk_clist_set_pixmap</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
154
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
155
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
156
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
|
157
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);
|
158
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkCList.html#gtk-clist-get-pixmap" title="gtk_clist_get_pixmap ()">gtk_clist_get_pixmap</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
159
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
160
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
161
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> **pixmap</code></em>,
|
162
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);
|
163
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-pixtext" title="gtk_clist_set_pixtext ()">gtk_clist_set_pixtext</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
164
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
165
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
166
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
167
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> spacing</code></em>,
|
168
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
|
169
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);
|
170
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkCList.html#gtk-clist-get-pixtext" title="gtk_clist_get_pixtext ()">gtk_clist_get_pixtext</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
171
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
172
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
173
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **text</code></em>,
|
174
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *spacing</code></em>,
|
175
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> **pixmap</code></em>,
|
176
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);
|
177
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-foreground" title="gtk_clist_set_foreground ()">gtk_clist_set_foreground</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
178
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
179
|
+
<em class="parameter"><code>const <a href="../gdk/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
|
180
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-background" title="gtk_clist_set_background ()">gtk_clist_set_background</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
181
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
182
|
+
<em class="parameter"><code>const <a href="../gdk/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
|
183
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-cell-style" title="gtk_clist_set_cell_style ()">gtk_clist_set_cell_style</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
184
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
185
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
186
|
+
<em class="parameter"><code><a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> *style</code></em>);
|
187
|
+
<a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> * <a class="link" href="GtkCList.html#gtk-clist-get-cell-style" title="gtk_clist_get_cell_style ()">gtk_clist_get_cell_style</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
188
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
189
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
190
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-row-style" title="gtk_clist_set_row_style ()">gtk_clist_set_row_style</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
191
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
192
|
+
<em class="parameter"><code><a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> *style</code></em>);
|
193
|
+
<a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> * <a class="link" href="GtkCList.html#gtk-clist-get-row-style" title="gtk_clist_get_row_style ()">gtk_clist_get_row_style</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
194
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>);
|
195
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-shift" title="gtk_clist_set_shift ()">gtk_clist_set_shift</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
196
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
197
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
198
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> vertical</code></em>,
|
199
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> horizontal</code></em>);
|
200
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-selectable" title="gtk_clist_set_selectable ()">gtk_clist_set_selectable</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
201
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
202
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> selectable</code></em>);
|
203
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkCList.html#gtk-clist-get-selectable" title="gtk_clist_get_selectable ()">gtk_clist_get_selectable</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
204
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>);
|
205
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkCList.html#gtk-clist-prepend" title="gtk_clist_prepend ()">gtk_clist_prepend</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
206
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text[]</code></em>);
|
207
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkCList.html#gtk-clist-append" title="gtk_clist_append ()">gtk_clist_append</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
208
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text[]</code></em>);
|
209
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkCList.html#gtk-clist-insert" title="gtk_clist_insert ()">gtk_clist_insert</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
210
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
211
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text[]</code></em>);
|
212
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-remove" title="gtk_clist_remove ()">gtk_clist_remove</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
213
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>);
|
214
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-row-data" title="gtk_clist_set_row_data ()">gtk_clist_set_row_data</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
215
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
216
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
|
217
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-row-data-full" title="gtk_clist_set_row_data_full ()">gtk_clist_set_row_data_full</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
218
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
219
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
220
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);
|
221
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> <a class="link" href="GtkCList.html#gtk-clist-get-row-data" title="gtk_clist_get_row_data ()">gtk_clist_get_row_data</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
222
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>);
|
223
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkCList.html#gtk-clist-find-row-from-data" title="gtk_clist_find_row_from_data ()">gtk_clist_find_row_from_data</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
224
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);
|
225
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-select-row" title="gtk_clist_select_row ()">gtk_clist_select_row</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
226
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
227
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
228
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-unselect-row" title="gtk_clist_unselect_row ()">gtk_clist_unselect_row</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
229
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
230
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
231
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-undo-selection" title="gtk_clist_undo_selection ()">gtk_clist_undo_selection</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
232
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-clear" title="gtk_clist_clear ()">gtk_clist_clear</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
233
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkCList.html#gtk-clist-get-selection-info" title="gtk_clist_get_selection_info ()">gtk_clist_get_selection_info</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
234
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
235
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
|
236
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *row</code></em>,
|
237
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *column</code></em>);
|
238
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-select-all" title="gtk_clist_select_all ()">gtk_clist_select_all</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
239
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-unselect-all" title="gtk_clist_unselect_all ()">gtk_clist_unselect_all</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
240
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-swap-rows" title="gtk_clist_swap_rows ()">gtk_clist_swap_rows</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
241
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row1</code></em>,
|
242
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row2</code></em>);
|
243
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-compare-func" title="gtk_clist_set_compare_func ()">gtk_clist_set_compare_func</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
244
|
+
<em class="parameter"><code><a class="link" href="GtkCList.html#GtkCListCompareFunc" title="GtkCListCompareFunc ()"><span class="type">GtkCListCompareFunc</span></a> cmp_func</code></em>);
|
245
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-sort-column" title="gtk_clist_set_sort_column ()">gtk_clist_set_sort_column</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
246
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
247
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-sort-type" title="gtk_clist_set_sort_type ()">gtk_clist_set_sort_type</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
248
|
+
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkSortType" title="enum GtkSortType"><span class="type">GtkSortType</span></a> sort_type</code></em>);
|
249
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-sort" title="gtk_clist_sort ()">gtk_clist_sort</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
250
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-auto-sort" title="gtk_clist_set_auto_sort ()">gtk_clist_set_auto_sort</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
251
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> auto_sort</code></em>);
|
252
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkCList.html#gtk-clist-columns-autosize" title="gtk_clist_columns_autosize ()">gtk_clist_columns_autosize</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
253
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkCList.html#gtk-clist-get-column-title" title="gtk_clist_get_column_title ()">gtk_clist_get_column_title</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
254
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
255
|
+
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * <a class="link" href="GtkCList.html#gtk-clist-get-column-widget" title="gtk_clist_get_column_widget ()">gtk_clist_get_column_widget</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
256
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);
|
257
|
+
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * <a class="link" href="GtkCList.html#gtk-clist-get-hadjustment" title="gtk_clist_get_hadjustment ()">gtk_clist_get_hadjustment</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
258
|
+
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * <a class="link" href="GtkCList.html#gtk-clist-get-vadjustment" title="gtk_clist_get_vadjustment ()">gtk_clist_get_vadjustment</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);
|
259
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-row-move" title="gtk_clist_row_move ()">gtk_clist_row_move</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
260
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> source_row</code></em>,
|
261
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_row</code></em>);
|
262
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-button-actions" title="gtk_clist_set_button_actions ()">gtk_clist_set_button_actions</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
263
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> button</code></em>,
|
264
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> button_actions</code></em>);
|
265
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-hadjustment" title="gtk_clist_set_hadjustment ()">gtk_clist_set_hadjustment</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
266
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);
|
267
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-reorderable" title="gtk_clist_set_reorderable ()">gtk_clist_set_reorderable</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
268
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> reorderable</code></em>);
|
269
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-use-drag-icons" title="gtk_clist_set_use_drag_icons ()">gtk_clist_set_use_drag_icons</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
270
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_icons</code></em>);
|
271
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkCList.html#gtk-clist-set-vadjustment" title="gtk_clist_set_vadjustment ()">gtk_clist_set_vadjustment</a> (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
272
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);
|
273
|
+
</pre>
|
274
|
+
</div>
|
275
|
+
<div class="refsect1">
|
276
|
+
<a name="GtkCList.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
277
|
+
<pre class="synopsis">
|
278
|
+
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
279
|
+
+----<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GInitiallyUnowned">GInitiallyUnowned</a>
|
280
|
+
+----<a class="link" href="GtkObject.html" title="GtkObject">GtkObject</a>
|
281
|
+
+----<a class="link" href="GtkWidget.html" title="GtkWidget">GtkWidget</a>
|
282
|
+
+----<a class="link" href="GtkContainer.html" title="GtkContainer">GtkContainer</a>
|
283
|
+
+----GtkCList
|
284
|
+
+----<a class="link" href="GtkCTree.html" title="GtkCTree">GtkCTree</a>
|
285
|
+
</pre>
|
286
|
+
</div>
|
287
|
+
<div class="refsect1">
|
288
|
+
<a name="GtkCList.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
|
289
|
+
<p>
|
290
|
+
GtkCList implements
|
291
|
+
AtkImplementorIface and <a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
|
292
|
+
</div>
|
293
|
+
<div class="refsect1">
|
294
|
+
<a name="GtkCList.properties"></a><h2>Properties</h2>
|
295
|
+
<pre class="synopsis">
|
296
|
+
"<a class="link" href="GtkCList.html#GtkCList--n-columns" title='The "n-columns" property'>n-columns</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write / Construct Only
|
297
|
+
"<a class="link" href="GtkCList.html#GtkCList--reorderable" title='The "reorderable" property'>reorderable</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
298
|
+
"<a class="link" href="GtkCList.html#GtkCList--row-height" title='The "row-height" property'>row-height</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write
|
299
|
+
"<a class="link" href="GtkCList.html#GtkCList--selection-mode" title='The "selection-mode" property'>selection-mode</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> : Read / Write
|
300
|
+
"<a class="link" href="GtkCList.html#GtkCList--shadow-type" title='The "shadow-type" property'>shadow-type</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read / Write
|
301
|
+
"<a class="link" href="GtkCList.html#GtkCList--sort-type" title='The "sort-type" property'>sort-type</a>" <a class="link" href="gtk-Standard-Enumerations.html#GtkSortType" title="enum GtkSortType"><span class="type">GtkSortType</span></a> : Read / Write
|
302
|
+
"<a class="link" href="GtkCList.html#GtkCList--titles-active" title='The "titles-active" property'>titles-active</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
303
|
+
"<a class="link" href="GtkCList.html#GtkCList--use-drag-icons" title='The "use-drag-icons" property'>use-drag-icons</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
304
|
+
</pre>
|
305
|
+
</div>
|
306
|
+
<div class="refsect1">
|
307
|
+
<a name="GtkCList.signals"></a><h2>Signals</h2>
|
308
|
+
<pre class="synopsis">
|
309
|
+
"<a class="link" href="GtkCList.html#GtkCList-abort-column-resize" title='The "abort-column-resize" signal'>abort-column-resize</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
310
|
+
"<a class="link" href="GtkCList.html#GtkCList-click-column" title='The "click-column" signal'>click-column</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
|
311
|
+
"<a class="link" href="GtkCList.html#GtkCList-end-selection" title='The "end-selection" signal'>end-selection</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
312
|
+
"<a class="link" href="GtkCList.html#GtkCList-extend-selection" title='The "extend-selection" signal'>extend-selection</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
313
|
+
"<a class="link" href="GtkCList.html#GtkCList-resize-column" title='The "resize-column" signal'>resize-column</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
314
|
+
"<a class="link" href="GtkCList.html#GtkCList-row-move" title='The "row-move" signal'>row-move</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
315
|
+
"<a class="link" href="GtkCList.html#GtkCList-scroll-horizontal" title='The "scroll-horizontal" signal'>scroll-horizontal</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
316
|
+
"<a class="link" href="GtkCList.html#GtkCList-scroll-vertical" title='The "scroll-vertical" signal'>scroll-vertical</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
317
|
+
"<a class="link" href="GtkCList.html#GtkCList-select-all" title='The "select-all" signal'>select-all</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
318
|
+
"<a class="link" href="GtkCList.html#GtkCList-select-row" title='The "select-row" signal'>select-row</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
|
319
|
+
"<a class="link" href="GtkCList.html#GtkCList-set-scroll-adjustments" title='The "set-scroll-adjustments" signal'>set-scroll-adjustments</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
320
|
+
"<a class="link" href="GtkCList.html#GtkCList-start-selection" title='The "start-selection" signal'>start-selection</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
321
|
+
"<a class="link" href="GtkCList.html#GtkCList-toggle-add-mode" title='The "toggle-add-mode" signal'>toggle-add-mode</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
322
|
+
"<a class="link" href="GtkCList.html#GtkCList-toggle-focus-row" title='The "toggle-focus-row" signal'>toggle-focus-row</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
323
|
+
"<a class="link" href="GtkCList.html#GtkCList-undo-selection" title='The "undo-selection" signal'>undo-selection</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
324
|
+
"<a class="link" href="GtkCList.html#GtkCList-unselect-all" title='The "unselect-all" signal'>unselect-all</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a>
|
325
|
+
"<a class="link" href="GtkCList.html#GtkCList-unselect-row" title='The "unselect-row" signal'>unselect-row</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a>
|
326
|
+
</pre>
|
327
|
+
</div>
|
328
|
+
<div class="refsect1">
|
329
|
+
<a name="GtkCList.description"></a><h2>Description</h2>
|
330
|
+
<p>
|
331
|
+
The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget is a very useful multi-columned scrolling list.
|
332
|
+
It can display data in nicely aligned vertical columns, with titles
|
333
|
+
at the top of the list.
|
334
|
+
</p>
|
335
|
+
<p>
|
336
|
+
GtkCList has been deprecated since GTK+ 2.0 and should not be used
|
337
|
+
in newly written code. Use <a class="link" href="GtkTreeView.html" title="GtkTreeView"><span class="type">GtkTreeView</span></a> instead.
|
338
|
+
</p>
|
339
|
+
</div>
|
340
|
+
<div class="refsect1">
|
341
|
+
<a name="GtkCList.details"></a><h2>Details</h2>
|
342
|
+
<div class="refsect2">
|
343
|
+
<a name="GtkCList-struct"></a><h3>struct GtkCList</h3>
|
344
|
+
<pre class="programlisting">struct GtkCList;</pre>
|
345
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
346
|
+
<h3 class="title">Warning</h3>
|
347
|
+
<p><code class="literal">GtkCList</code> is deprecated and should not be used in newly-written code.</p>
|
348
|
+
</div>
|
349
|
+
<p>
|
350
|
+
This is the embodiment of the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget. This structure contains
|
351
|
+
only private data, and should be accessed only via the CList API.
|
352
|
+
</p>
|
353
|
+
</div>
|
354
|
+
<hr>
|
355
|
+
<div class="refsect2">
|
356
|
+
<a name="GtkCellType"></a><h3>enum GtkCellType</h3>
|
357
|
+
<pre class="programlisting">typedef enum {
|
358
|
+
GTK_CELL_EMPTY,
|
359
|
+
GTK_CELL_TEXT,
|
360
|
+
GTK_CELL_PIXMAP,
|
361
|
+
GTK_CELL_PIXTEXT,
|
362
|
+
GTK_CELL_WIDGET
|
363
|
+
} GtkCellType;
|
364
|
+
</pre>
|
365
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
366
|
+
<h3 class="title">Warning</h3>
|
367
|
+
<p><code class="literal">GtkCellType</code> is deprecated and should not be used in newly-written code.</p>
|
368
|
+
</div>
|
369
|
+
<p>
|
370
|
+
Identifies the type of element in the current cell of the CList. Cells can
|
371
|
+
contain text, pixmaps, or both. Unfortunately support for <a class="link" href="GtkCList.html#GTK-CELL-WIDGET:CAPS" title="GTK_CELL_WIDGET()"><code class="literal">GTK_CELL_WIDGET</code></a>
|
372
|
+
was never completed.
|
373
|
+
</p>
|
374
|
+
</div>
|
375
|
+
<hr>
|
376
|
+
<div class="refsect2">
|
377
|
+
<a name="GtkButtonAction"></a><h3>enum GtkButtonAction</h3>
|
378
|
+
<pre class="programlisting">typedef enum {
|
379
|
+
GTK_BUTTON_IGNORED = 0,
|
380
|
+
GTK_BUTTON_SELECTS = 1 << 0,
|
381
|
+
GTK_BUTTON_DRAGS = 1 << 1,
|
382
|
+
GTK_BUTTON_EXPANDS = 1 << 2
|
383
|
+
} GtkButtonAction;
|
384
|
+
</pre>
|
385
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
386
|
+
<h3 class="title">Warning</h3>
|
387
|
+
<p><code class="literal">GtkButtonAction</code> is deprecated and should not be used in newly-written code.</p>
|
388
|
+
</div>
|
389
|
+
<p>
|
390
|
+
Values for specifying what mouse button events a CList will
|
391
|
+
react to.
|
392
|
+
</p>
|
393
|
+
</div>
|
394
|
+
<hr>
|
395
|
+
<div class="refsect2">
|
396
|
+
<a name="GTK-CLIST-FLAGS:CAPS"></a><h3>GTK_CLIST_FLAGS()</h3>
|
397
|
+
<pre class="programlisting">#define GTK_CLIST_FLAGS(clist) (GTK_CLIST (clist)->flags)
|
398
|
+
</pre>
|
399
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
400
|
+
<h3 class="title">Warning</h3>
|
401
|
+
<p><code class="literal">GTK_CLIST_FLAGS</code> is deprecated and should not be used in newly-written code.</p>
|
402
|
+
</div>
|
403
|
+
<p>
|
404
|
+
Reads the current flags of the specified CList.
|
405
|
+
</p>
|
406
|
+
<div class="variablelist"><table border="0">
|
407
|
+
<col align="left" valign="top">
|
408
|
+
<tbody><tr>
|
409
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
410
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget from which to get the flags</td>
|
411
|
+
</tr></tbody>
|
412
|
+
</table></div>
|
413
|
+
</div>
|
414
|
+
<hr>
|
415
|
+
<div class="refsect2">
|
416
|
+
<a name="GTK-CLIST-SET-FLAG:CAPS"></a><h3>GTK_CLIST_SET_FLAG()</h3>
|
417
|
+
<pre class="programlisting">#define GTK_CLIST_SET_FLAG(clist,flag) (GTK_CLIST_FLAGS (clist) |= (GTK_ ## flag))
|
418
|
+
</pre>
|
419
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
420
|
+
<h3 class="title">Warning</h3>
|
421
|
+
<p><code class="literal">GTK_CLIST_SET_FLAG</code> is deprecated and should not be used in newly-written code.</p>
|
422
|
+
</div>
|
423
|
+
<p>
|
424
|
+
A macro to set a particular flag for the specified CList.
|
425
|
+
</p>
|
426
|
+
<div class="variablelist"><table border="0">
|
427
|
+
<col align="left" valign="top">
|
428
|
+
<tbody>
|
429
|
+
<tr>
|
430
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
431
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget to affect.</td>
|
432
|
+
</tr>
|
433
|
+
<tr>
|
434
|
+
<td><p><span class="term"><em class="parameter"><code>flag</code></em> :</span></p></td>
|
435
|
+
<td>A single <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> flag to set. NOTE: Do not add the GTK_ prefix.</td>
|
436
|
+
</tr>
|
437
|
+
</tbody>
|
438
|
+
</table></div>
|
439
|
+
</div>
|
440
|
+
<hr>
|
441
|
+
<div class="refsect2">
|
442
|
+
<a name="GTK-CLIST-UNSET-FLAG:CAPS"></a><h3>GTK_CLIST_UNSET_FLAG()</h3>
|
443
|
+
<pre class="programlisting">#define GTK_CLIST_UNSET_FLAG(clist,flag) (GTK_CLIST_FLAGS (clist) &= ~(GTK_ ## flag))
|
444
|
+
</pre>
|
445
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
446
|
+
<h3 class="title">Warning</h3>
|
447
|
+
<p><code class="literal">GTK_CLIST_UNSET_FLAG</code> is deprecated and should not be used in newly-written code.</p>
|
448
|
+
</div>
|
449
|
+
<p>
|
450
|
+
A macro to clear a particular flag for the specified CList.
|
451
|
+
</p>
|
452
|
+
<div class="variablelist"><table border="0">
|
453
|
+
<col align="left" valign="top">
|
454
|
+
<tbody>
|
455
|
+
<tr>
|
456
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
457
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget to affect.</td>
|
458
|
+
</tr>
|
459
|
+
<tr>
|
460
|
+
<td><p><span class="term"><em class="parameter"><code>flag</code></em> :</span></p></td>
|
461
|
+
<td>A single <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> flag to clear. NOTE: Do not add the GTK_ prefix.</td>
|
462
|
+
</tr>
|
463
|
+
</tbody>
|
464
|
+
</table></div>
|
465
|
+
</div>
|
466
|
+
<hr>
|
467
|
+
<div class="refsect2">
|
468
|
+
<a name="GTK-CLIST-IN-DRAG:CAPS"></a><h3>GTK_CLIST_IN_DRAG()</h3>
|
469
|
+
<pre class="programlisting">#define GTK_CLIST_IN_DRAG(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_IN_DRAG)
|
470
|
+
</pre>
|
471
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
472
|
+
<h3 class="title">Warning</h3>
|
473
|
+
<p><code class="literal">GTK_CLIST_IN_DRAG</code> is deprecated and should not be used in newly-written code.</p>
|
474
|
+
</div>
|
475
|
+
<p>
|
476
|
+
A macro to check whether the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> is in "drag mode."
|
477
|
+
</p>
|
478
|
+
<div class="variablelist"><table border="0">
|
479
|
+
<col align="left" valign="top">
|
480
|
+
<tbody><tr>
|
481
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
482
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to check.</td>
|
483
|
+
</tr></tbody>
|
484
|
+
</table></div>
|
485
|
+
</div>
|
486
|
+
<hr>
|
487
|
+
<div class="refsect2">
|
488
|
+
<a name="GTK-CLIST-ROW-HEIGHT-SET:CAPS"></a><h3>GTK_CLIST_ROW_HEIGHT_SET()</h3>
|
489
|
+
<pre class="programlisting">#define GTK_CLIST_ROW_HEIGHT_SET(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_ROW_HEIGHT_SET)
|
490
|
+
</pre>
|
491
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
492
|
+
<h3 class="title">Warning</h3>
|
493
|
+
<p><code class="literal">GTK_CLIST_ROW_HEIGHT_SET</code> is deprecated and should not be used in newly-written code.</p>
|
494
|
+
</div>
|
495
|
+
<p>
|
496
|
+
A macro to check whether the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a>'s row height is set.
|
497
|
+
</p>
|
498
|
+
<div class="variablelist"><table border="0">
|
499
|
+
<col align="left" valign="top">
|
500
|
+
<tbody><tr>
|
501
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
502
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to check.</td>
|
503
|
+
</tr></tbody>
|
504
|
+
</table></div>
|
505
|
+
</div>
|
506
|
+
<hr>
|
507
|
+
<div class="refsect2">
|
508
|
+
<a name="GTK-CLIST-SHOW-TITLES:CAPS"></a><h3>GTK_CLIST_SHOW_TITLES()</h3>
|
509
|
+
<pre class="programlisting">#define GTK_CLIST_SHOW_TITLES(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_SHOW_TITLES)
|
510
|
+
</pre>
|
511
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
512
|
+
<h3 class="title">Warning</h3>
|
513
|
+
<p><code class="literal">GTK_CLIST_SHOW_TITLES</code> is deprecated and should not be used in newly-written code.</p>
|
514
|
+
</div>
|
515
|
+
<p>
|
516
|
+
A macro to check whether the flag for showing the
|
517
|
+
widget's column titles is set.
|
518
|
+
</p>
|
519
|
+
<div class="variablelist"><table border="0">
|
520
|
+
<col align="left" valign="top">
|
521
|
+
<tbody><tr>
|
522
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
523
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget to check.</td>
|
524
|
+
</tr></tbody>
|
525
|
+
</table></div>
|
526
|
+
</div>
|
527
|
+
<hr>
|
528
|
+
<div class="refsect2">
|
529
|
+
<a name="GTK-CLIST-ADD-MODE:CAPS"></a><h3>GTK_CLIST_ADD_MODE()</h3>
|
530
|
+
<pre class="programlisting">#define GTK_CLIST_ADD_MODE(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_ADD_MODE)
|
531
|
+
</pre>
|
532
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
533
|
+
<h3 class="title">Warning</h3>
|
534
|
+
<p><code class="literal">GTK_CLIST_ADD_MODE</code> is deprecated and should not be used in newly-written code.</p>
|
535
|
+
</div>
|
536
|
+
<p>
|
537
|
+
A macro to test whether the CList is in "add mode."
|
538
|
+
</p>
|
539
|
+
<div class="variablelist"><table border="0">
|
540
|
+
<col align="left" valign="top">
|
541
|
+
<tbody><tr>
|
542
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
543
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget to check.</td>
|
544
|
+
</tr></tbody>
|
545
|
+
</table></div>
|
546
|
+
</div>
|
547
|
+
<hr>
|
548
|
+
<div class="refsect2">
|
549
|
+
<a name="GTK-CLIST-AUTO-SORT:CAPS"></a><h3>GTK_CLIST_AUTO_SORT()</h3>
|
550
|
+
<pre class="programlisting">#define GTK_CLIST_AUTO_SORT(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_AUTO_SORT)
|
551
|
+
</pre>
|
552
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
553
|
+
<h3 class="title">Warning</h3>
|
554
|
+
<p><code class="literal">GTK_CLIST_AUTO_SORT</code> is deprecated and should not be used in newly-written code.</p>
|
555
|
+
</div>
|
556
|
+
<p>
|
557
|
+
A macro to test whether the CList has automatic sorting
|
558
|
+
switched on.
|
559
|
+
</p>
|
560
|
+
<div class="variablelist"><table border="0">
|
561
|
+
<col align="left" valign="top">
|
562
|
+
<tbody><tr>
|
563
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
564
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget to check.</td>
|
565
|
+
</tr></tbody>
|
566
|
+
</table></div>
|
567
|
+
</div>
|
568
|
+
<hr>
|
569
|
+
<div class="refsect2">
|
570
|
+
<a name="GTK-CLIST-AUTO-RESIZE-BLOCKED:CAPS"></a><h3>GTK_CLIST_AUTO_RESIZE_BLOCKED()</h3>
|
571
|
+
<pre class="programlisting">#define GTK_CLIST_AUTO_RESIZE_BLOCKED(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_AUTO_RESIZE_BLOCKED)
|
572
|
+
</pre>
|
573
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
574
|
+
<h3 class="title">Warning</h3>
|
575
|
+
<p><code class="literal">GTK_CLIST_AUTO_RESIZE_BLOCKED</code> is deprecated and should not be used in newly-written code.</p>
|
576
|
+
</div>
|
577
|
+
<p>
|
578
|
+
A macro to check if automatic resizing of columns is blocked.
|
579
|
+
</p>
|
580
|
+
<div class="variablelist"><table border="0">
|
581
|
+
<col align="left" valign="top">
|
582
|
+
<tbody><tr>
|
583
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
584
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget to check.</td>
|
585
|
+
</tr></tbody>
|
586
|
+
</table></div>
|
587
|
+
</div>
|
588
|
+
<hr>
|
589
|
+
<div class="refsect2">
|
590
|
+
<a name="GTK-CLIST-REORDERABLE:CAPS"></a><h3>GTK_CLIST_REORDERABLE()</h3>
|
591
|
+
<pre class="programlisting">#define GTK_CLIST_REORDERABLE(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_REORDERABLE)
|
592
|
+
</pre>
|
593
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
594
|
+
<h3 class="title">Warning</h3>
|
595
|
+
<p><code class="literal">GTK_CLIST_REORDERABLE</code> is deprecated and should not be used in newly-written code.</p>
|
596
|
+
</div>
|
597
|
+
<p>
|
598
|
+
A macro to test if the CList's columns are re-orderable
|
599
|
+
</p>
|
600
|
+
<div class="variablelist"><table border="0">
|
601
|
+
<col align="left" valign="top">
|
602
|
+
<tbody><tr>
|
603
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
604
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget to check.</td>
|
605
|
+
</tr></tbody>
|
606
|
+
</table></div>
|
607
|
+
</div>
|
608
|
+
<hr>
|
609
|
+
<div class="refsect2">
|
610
|
+
<a name="GTK-CLIST-USE-DRAG-ICONS:CAPS"></a><h3>GTK_CLIST_USE_DRAG_ICONS()</h3>
|
611
|
+
<pre class="programlisting">#define GTK_CLIST_USE_DRAG_ICONS(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_USE_DRAG_ICONS)
|
612
|
+
</pre>
|
613
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
614
|
+
<h3 class="title">Warning</h3>
|
615
|
+
<p><code class="literal">GTK_CLIST_USE_DRAG_ICONS</code> is deprecated and should not be used in newly-written code.</p>
|
616
|
+
</div>
|
617
|
+
<p>
|
618
|
+
A macro to check if the USE_DRAG_ICONS property is enabled.
|
619
|
+
</p>
|
620
|
+
<div class="variablelist"><table border="0">
|
621
|
+
<col align="left" valign="top">
|
622
|
+
<tbody><tr>
|
623
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
624
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget to check.</td>
|
625
|
+
</tr></tbody>
|
626
|
+
</table></div>
|
627
|
+
</div>
|
628
|
+
<hr>
|
629
|
+
<div class="refsect2">
|
630
|
+
<a name="GTK-CLIST-DRAW-DRAG-LINE:CAPS"></a><h3>GTK_CLIST_DRAW_DRAG_LINE()</h3>
|
631
|
+
<pre class="programlisting">#define GTK_CLIST_DRAW_DRAG_LINE(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_DRAW_DRAG_LINE)
|
632
|
+
</pre>
|
633
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
634
|
+
<h3 class="title">Warning</h3>
|
635
|
+
<p><code class="literal">GTK_CLIST_DRAW_DRAG_LINE</code> is deprecated and should not be used in newly-written code.</p>
|
636
|
+
</div>
|
637
|
+
<p>
|
638
|
+
A macro to check if the DRAW_DRAG_LINE property is enabled.
|
639
|
+
</p>
|
640
|
+
<div class="variablelist"><table border="0">
|
641
|
+
<col align="left" valign="top">
|
642
|
+
<tbody><tr>
|
643
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
644
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget to check.</td>
|
645
|
+
</tr></tbody>
|
646
|
+
</table></div>
|
647
|
+
</div>
|
648
|
+
<hr>
|
649
|
+
<div class="refsect2">
|
650
|
+
<a name="GTK-CLIST-DRAW-DRAG-RECT:CAPS"></a><h3>GTK_CLIST_DRAW_DRAG_RECT()</h3>
|
651
|
+
<pre class="programlisting">#define GTK_CLIST_DRAW_DRAG_RECT(clist) (GTK_CLIST_FLAGS (clist) & GTK_CLIST_DRAW_DRAG_RECT)
|
652
|
+
</pre>
|
653
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
654
|
+
<h3 class="title">Warning</h3>
|
655
|
+
<p><code class="literal">GTK_CLIST_DRAW_DRAG_RECT</code> is deprecated and should not be used in newly-written code.</p>
|
656
|
+
</div>
|
657
|
+
<p>
|
658
|
+
A macro to check if the DRAW_DRAG_RECT property is enabled.
|
659
|
+
</p>
|
660
|
+
<div class="variablelist"><table border="0">
|
661
|
+
<col align="left" valign="top">
|
662
|
+
<tbody><tr>
|
663
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
664
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget to check.</td>
|
665
|
+
</tr></tbody>
|
666
|
+
</table></div>
|
667
|
+
</div>
|
668
|
+
<hr>
|
669
|
+
<div class="refsect2">
|
670
|
+
<a name="GTK-CLIST-ROW:CAPS"></a><h3>GTK_CLIST_ROW()</h3>
|
671
|
+
<pre class="programlisting">#define GTK_CLIST_ROW(_glist_) ((GtkCListRow *)((_glist_)->data))
|
672
|
+
</pre>
|
673
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
674
|
+
<h3 class="title">Warning</h3>
|
675
|
+
<p><code class="literal">GTK_CLIST_ROW</code> is deprecated and should not be used in newly-written code.</p>
|
676
|
+
</div>
|
677
|
+
<p>
|
678
|
+
A macro to cast a GList element to a CListRow pointer.
|
679
|
+
</p>
|
680
|
+
<div class="variablelist"><table border="0">
|
681
|
+
<col align="left" valign="top">
|
682
|
+
<tbody><tr>
|
683
|
+
<td><p><span class="term"><em class="parameter"><code>_glist_</code></em> :</span></p></td>
|
684
|
+
<td>The GList element to convert.</td>
|
685
|
+
</tr></tbody>
|
686
|
+
</table></div>
|
687
|
+
</div>
|
688
|
+
<hr>
|
689
|
+
<div class="refsect2">
|
690
|
+
<a name="GTK-CELL-TEXT:CAPS"></a><h3>GTK_CELL_TEXT()</h3>
|
691
|
+
<pre class="programlisting">#define GTK_CELL_TEXT(cell) (((GtkCellText *) &(cell)))
|
692
|
+
</pre>
|
693
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
694
|
+
<h3 class="title">Warning</h3>
|
695
|
+
<p><code class="literal">GTK_CELL_TEXT</code> is deprecated and should not be used in newly-written code.</p>
|
696
|
+
</div>
|
697
|
+
<p>
|
698
|
+
A macro to cast a generic <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cell item to a GtkCellText pointer.
|
699
|
+
</p>
|
700
|
+
<div class="variablelist"><table border="0">
|
701
|
+
<col align="left" valign="top">
|
702
|
+
<tbody><tr>
|
703
|
+
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
|
704
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cell item to convert.</td>
|
705
|
+
</tr></tbody>
|
706
|
+
</table></div>
|
707
|
+
</div>
|
708
|
+
<hr>
|
709
|
+
<div class="refsect2">
|
710
|
+
<a name="GTK-CELL-PIXMAP:CAPS"></a><h3>GTK_CELL_PIXMAP()</h3>
|
711
|
+
<pre class="programlisting">#define GTK_CELL_PIXMAP(cell) (((GtkCellPixmap *) &(cell)))
|
712
|
+
</pre>
|
713
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
714
|
+
<h3 class="title">Warning</h3>
|
715
|
+
<p><code class="literal">GTK_CELL_PIXMAP</code> is deprecated and should not be used in newly-written code.</p>
|
716
|
+
</div>
|
717
|
+
<p>
|
718
|
+
A macro to cast a generic <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cell item to a GtkCellPixmap pointer.
|
719
|
+
</p>
|
720
|
+
<div class="variablelist"><table border="0">
|
721
|
+
<col align="left" valign="top">
|
722
|
+
<tbody><tr>
|
723
|
+
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
|
724
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cell item to convert.</td>
|
725
|
+
</tr></tbody>
|
726
|
+
</table></div>
|
727
|
+
</div>
|
728
|
+
<hr>
|
729
|
+
<div class="refsect2">
|
730
|
+
<a name="GTK-CELL-PIXTEXT:CAPS"></a><h3>GTK_CELL_PIXTEXT()</h3>
|
731
|
+
<pre class="programlisting">#define GTK_CELL_PIXTEXT(cell) (((GtkCellPixText *) &(cell)))
|
732
|
+
</pre>
|
733
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
734
|
+
<h3 class="title">Warning</h3>
|
735
|
+
<p><code class="literal">GTK_CELL_PIXTEXT</code> is deprecated and should not be used in newly-written code.</p>
|
736
|
+
</div>
|
737
|
+
<p>
|
738
|
+
A macro to cast a generic <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cell item to a GtkCellPixText pointer.
|
739
|
+
</p>
|
740
|
+
<div class="variablelist"><table border="0">
|
741
|
+
<col align="left" valign="top">
|
742
|
+
<tbody><tr>
|
743
|
+
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
|
744
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cell item to convert.</td>
|
745
|
+
</tr></tbody>
|
746
|
+
</table></div>
|
747
|
+
</div>
|
748
|
+
<hr>
|
749
|
+
<div class="refsect2">
|
750
|
+
<a name="GTK-CELL-WIDGET:CAPS"></a><h3>GTK_CELL_WIDGET()</h3>
|
751
|
+
<pre class="programlisting">#define GTK_CELL_WIDGET(cell) (((GtkCellWidget *) &(cell)))
|
752
|
+
</pre>
|
753
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
754
|
+
<h3 class="title">Warning</h3>
|
755
|
+
<p><code class="literal">GTK_CELL_WIDGET</code> is deprecated and should not be used in newly-written code.</p>
|
756
|
+
</div>
|
757
|
+
<p>
|
758
|
+
A macro to cast a generic <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cell item to a GtkCellWidget pointer.
|
759
|
+
</p>
|
760
|
+
<div class="variablelist"><table border="0">
|
761
|
+
<col align="left" valign="top">
|
762
|
+
<tbody><tr>
|
763
|
+
<td><p><span class="term"><em class="parameter"><code>cell</code></em> :</span></p></td>
|
764
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cell item to convert.</td>
|
765
|
+
</tr></tbody>
|
766
|
+
</table></div>
|
767
|
+
</div>
|
768
|
+
<hr>
|
769
|
+
<div class="refsect2">
|
770
|
+
<a name="GtkCListCompareFunc"></a><h3>GtkCListCompareFunc ()</h3>
|
771
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> (*GtkCListCompareFunc) (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
772
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gconstpointer"><span class="type">gconstpointer</span></a> ptr1</code></em>,
|
773
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gconstpointer"><span class="type">gconstpointer</span></a> ptr2</code></em>);</pre>
|
774
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
775
|
+
<h3 class="title">Warning</h3>
|
776
|
+
<p><code class="literal">GtkCListCompareFunc</code> is deprecated and should not be used in newly-written code.</p>
|
777
|
+
</div>
|
778
|
+
<p>
|
779
|
+
Function prototype for the compare function callback.
|
780
|
+
</p>
|
781
|
+
<div class="variablelist"><table border="0">
|
782
|
+
<col align="left" valign="top">
|
783
|
+
<tbody>
|
784
|
+
<tr>
|
785
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
786
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> that is affected.</td>
|
787
|
+
</tr>
|
788
|
+
<tr>
|
789
|
+
<td><p><span class="term"><em class="parameter"><code>ptr1</code></em> :</span></p></td>
|
790
|
+
<td>A <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gconstpointer"><span class="type">gconstpointer</span></a> to the first node to compare.</td>
|
791
|
+
</tr>
|
792
|
+
<tr>
|
793
|
+
<td><p><span class="term"><em class="parameter"><code>ptr2</code></em> :</span></p></td>
|
794
|
+
<td>A <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gconstpointer"><span class="type">gconstpointer</span></a> to the second node to compare.</td>
|
795
|
+
</tr>
|
796
|
+
<tr>
|
797
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
798
|
+
<td>0 if the nodes are equal, less than 0 if the first node should
|
799
|
+
come before the second, and greater than 1 if the second come before the
|
800
|
+
first.</td>
|
801
|
+
</tr>
|
802
|
+
</tbody>
|
803
|
+
</table></div>
|
804
|
+
</div>
|
805
|
+
<hr>
|
806
|
+
<div class="refsect2">
|
807
|
+
<a name="GtkCListColumn"></a><h3>struct GtkCListColumn</h3>
|
808
|
+
<pre class="programlisting">struct GtkCListColumn {
|
809
|
+
gchar *title;
|
810
|
+
GdkRectangle area;
|
811
|
+
|
812
|
+
GtkWidget *button;
|
813
|
+
GdkWindow *window;
|
814
|
+
|
815
|
+
gint width;
|
816
|
+
gint min_width;
|
817
|
+
gint max_width;
|
818
|
+
GtkJustification justification;
|
819
|
+
|
820
|
+
guint visible : 1;
|
821
|
+
guint width_set : 1;
|
822
|
+
guint resizeable : 1;
|
823
|
+
guint auto_resize : 1;
|
824
|
+
guint button_passive : 1;
|
825
|
+
};
|
826
|
+
</pre>
|
827
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
828
|
+
<h3 class="title">Warning</h3>
|
829
|
+
<p><code class="literal">GtkCListColumn</code> is deprecated and should not be used in newly-written code.</p>
|
830
|
+
</div>
|
831
|
+
<p>
|
832
|
+
A structure that the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget uses to keep track of information
|
833
|
+
about its columns.
|
834
|
+
</p>
|
835
|
+
</div>
|
836
|
+
<hr>
|
837
|
+
<div class="refsect2">
|
838
|
+
<a name="GtkCListRow"></a><h3>struct GtkCListRow</h3>
|
839
|
+
<pre class="programlisting">struct GtkCListRow {
|
840
|
+
GtkCell *cell;
|
841
|
+
GtkStateType state;
|
842
|
+
|
843
|
+
GdkColor foreground;
|
844
|
+
GdkColor background;
|
845
|
+
|
846
|
+
GtkStyle *style;
|
847
|
+
|
848
|
+
gpointer data;
|
849
|
+
GDestroyNotify destroy;
|
850
|
+
|
851
|
+
guint fg_set : 1;
|
852
|
+
guint bg_set : 1;
|
853
|
+
guint selectable : 1;
|
854
|
+
};
|
855
|
+
</pre>
|
856
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
857
|
+
<h3 class="title">Warning</h3>
|
858
|
+
<p><code class="literal">GtkCListRow</code> is deprecated and should not be used in newly-written code.</p>
|
859
|
+
</div>
|
860
|
+
<p>
|
861
|
+
A structure that the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget uses to keep track of information
|
862
|
+
about its rows.
|
863
|
+
</p>
|
864
|
+
</div>
|
865
|
+
<hr>
|
866
|
+
<div class="refsect2">
|
867
|
+
<a name="GtkCellText"></a><h3>struct GtkCellText</h3>
|
868
|
+
<pre class="programlisting">struct GtkCellText {
|
869
|
+
GtkCellType type;
|
870
|
+
|
871
|
+
gint16 vertical;
|
872
|
+
gint16 horizontal;
|
873
|
+
|
874
|
+
GtkStyle *style;
|
875
|
+
|
876
|
+
gchar *text;
|
877
|
+
};
|
878
|
+
</pre>
|
879
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
880
|
+
<h3 class="title">Warning</h3>
|
881
|
+
<p><code class="literal">GtkCellText</code> is deprecated and should not be used in newly-written code.</p>
|
882
|
+
</div>
|
883
|
+
<p>
|
884
|
+
A structure that the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget uses to keep track of <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cells
|
885
|
+
that contain text.
|
886
|
+
</p>
|
887
|
+
</div>
|
888
|
+
<hr>
|
889
|
+
<div class="refsect2">
|
890
|
+
<a name="GtkCellPixmap"></a><h3>struct GtkCellPixmap</h3>
|
891
|
+
<pre class="programlisting">struct GtkCellPixmap {
|
892
|
+
GtkCellType type;
|
893
|
+
|
894
|
+
gint16 vertical;
|
895
|
+
gint16 horizontal;
|
896
|
+
|
897
|
+
GtkStyle *style;
|
898
|
+
|
899
|
+
GdkPixmap *pixmap;
|
900
|
+
GdkBitmap *mask;
|
901
|
+
};
|
902
|
+
</pre>
|
903
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
904
|
+
<h3 class="title">Warning</h3>
|
905
|
+
<p><code class="literal">GtkCellPixmap</code> is deprecated and should not be used in newly-written code.</p>
|
906
|
+
</div>
|
907
|
+
<p>
|
908
|
+
A structure that the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget uses to keep track of <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cells
|
909
|
+
that contain a GdkPixmap.
|
910
|
+
</p>
|
911
|
+
</div>
|
912
|
+
<hr>
|
913
|
+
<div class="refsect2">
|
914
|
+
<a name="GtkCellPixText"></a><h3>struct GtkCellPixText</h3>
|
915
|
+
<pre class="programlisting">struct GtkCellPixText {
|
916
|
+
GtkCellType type;
|
917
|
+
|
918
|
+
gint16 vertical;
|
919
|
+
gint16 horizontal;
|
920
|
+
|
921
|
+
GtkStyle *style;
|
922
|
+
|
923
|
+
gchar *text;
|
924
|
+
guint8 spacing;
|
925
|
+
GdkPixmap *pixmap;
|
926
|
+
GdkBitmap *mask;
|
927
|
+
};
|
928
|
+
</pre>
|
929
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
930
|
+
<h3 class="title">Warning</h3>
|
931
|
+
<p><code class="literal">GtkCellPixText</code> is deprecated and should not be used in newly-written code.</p>
|
932
|
+
</div>
|
933
|
+
<p>
|
934
|
+
A structure that the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget uses to keep track of <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cells
|
935
|
+
that contain a combination of text and a GdkPixmap.
|
936
|
+
</p>
|
937
|
+
</div>
|
938
|
+
<hr>
|
939
|
+
<div class="refsect2">
|
940
|
+
<a name="GtkCellWidget"></a><h3>struct GtkCellWidget</h3>
|
941
|
+
<pre class="programlisting">struct GtkCellWidget {
|
942
|
+
GtkCellType type;
|
943
|
+
|
944
|
+
gint16 vertical;
|
945
|
+
gint16 horizontal;
|
946
|
+
|
947
|
+
GtkStyle *style;
|
948
|
+
|
949
|
+
GtkWidget *widget;
|
950
|
+
};
|
951
|
+
</pre>
|
952
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
953
|
+
<h3 class="title">Warning</h3>
|
954
|
+
<p><code class="literal">GtkCellWidget</code> is deprecated and should not be used in newly-written code.</p>
|
955
|
+
</div>
|
956
|
+
<p>
|
957
|
+
A structure that the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget uses to keep track of <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> cells
|
958
|
+
that contain another widget.
|
959
|
+
</p>
|
960
|
+
</div>
|
961
|
+
<hr>
|
962
|
+
<div class="refsect2">
|
963
|
+
<a name="GtkCell"></a><h3>struct GtkCell</h3>
|
964
|
+
<pre class="programlisting">struct GtkCell {
|
965
|
+
GtkCellType type;
|
966
|
+
|
967
|
+
gint16 vertical;
|
968
|
+
gint16 horizontal;
|
969
|
+
|
970
|
+
GtkStyle *style;
|
971
|
+
|
972
|
+
union {
|
973
|
+
gchar *text;
|
974
|
+
|
975
|
+
struct {
|
976
|
+
GdkPixmap *pixmap;
|
977
|
+
GdkBitmap *mask;
|
978
|
+
} pm;
|
979
|
+
|
980
|
+
struct {
|
981
|
+
gchar *text;
|
982
|
+
guint8 spacing;
|
983
|
+
GdkPixmap *pixmap;
|
984
|
+
GdkBitmap *mask;
|
985
|
+
} pt;
|
986
|
+
|
987
|
+
GtkWidget *widget;
|
988
|
+
} u;
|
989
|
+
};
|
990
|
+
</pre>
|
991
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
992
|
+
<h3 class="title">Warning</h3>
|
993
|
+
<p><code class="literal">GtkCell</code> is deprecated and should not be used in newly-written code.</p>
|
994
|
+
</div>
|
995
|
+
<p>
|
996
|
+
A generic structure that the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget uses to keep track of the
|
997
|
+
contents of each of its cells.
|
998
|
+
</p>
|
999
|
+
</div>
|
1000
|
+
<hr>
|
1001
|
+
<div class="refsect2">
|
1002
|
+
<a name="GtkCListCellInfo"></a><h3>struct GtkCListCellInfo</h3>
|
1003
|
+
<pre class="programlisting">struct GtkCListCellInfo {
|
1004
|
+
gint row;
|
1005
|
+
gint column;
|
1006
|
+
};
|
1007
|
+
</pre>
|
1008
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1009
|
+
<h3 class="title">Warning</h3>
|
1010
|
+
<p><code class="literal">GtkCListCellInfo</code> is deprecated and should not be used in newly-written code.</p>
|
1011
|
+
</div>
|
1012
|
+
<p>
|
1013
|
+
A simple structure that the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget uses to keep track
|
1014
|
+
of the location of a cell.
|
1015
|
+
</p>
|
1016
|
+
</div>
|
1017
|
+
<hr>
|
1018
|
+
<div class="refsect2">
|
1019
|
+
<a name="GtkCListDestInfo"></a><h3>struct GtkCListDestInfo</h3>
|
1020
|
+
<pre class="programlisting">struct GtkCListDestInfo {
|
1021
|
+
GtkCListCellInfo cell;
|
1022
|
+
GtkCListDragPos insert_pos;
|
1023
|
+
};
|
1024
|
+
</pre>
|
1025
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1026
|
+
<h3 class="title">Warning</h3>
|
1027
|
+
<p><code class="literal">GtkCListDestInfo</code> is deprecated and should not be used in newly-written code.</p>
|
1028
|
+
</div>
|
1029
|
+
<p>
|
1030
|
+
A simple structure that the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget uses to track
|
1031
|
+
a cell for a drag operation.
|
1032
|
+
</p>
|
1033
|
+
</div>
|
1034
|
+
<hr>
|
1035
|
+
<div class="refsect2">
|
1036
|
+
<a name="GtkCListDragPos"></a><h3>enum GtkCListDragPos</h3>
|
1037
|
+
<pre class="programlisting">typedef enum {
|
1038
|
+
GTK_CLIST_DRAG_NONE,
|
1039
|
+
GTK_CLIST_DRAG_BEFORE,
|
1040
|
+
GTK_CLIST_DRAG_INTO,
|
1041
|
+
GTK_CLIST_DRAG_AFTER
|
1042
|
+
} GtkCListDragPos;
|
1043
|
+
</pre>
|
1044
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1045
|
+
<h3 class="title">Warning</h3>
|
1046
|
+
<p><code class="literal">GtkCListDragPos</code> is deprecated and should not be used in newly-written code.</p>
|
1047
|
+
</div>
|
1048
|
+
<p>
|
1049
|
+
An enumeration for drag operations.
|
1050
|
+
</p>
|
1051
|
+
</div>
|
1052
|
+
<hr>
|
1053
|
+
<div class="refsect2">
|
1054
|
+
<a name="gtk-clist-new"></a><h3>gtk_clist_new ()</h3>
|
1055
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_clist_new (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> columns</code></em>);</pre>
|
1056
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1057
|
+
<h3 class="title">Warning</h3>
|
1058
|
+
<p><code class="literal">gtk_clist_new</code> is deprecated and should not be used in newly-written code.</p>
|
1059
|
+
</div>
|
1060
|
+
<p>
|
1061
|
+
Creates a new <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget for use.
|
1062
|
+
</p>
|
1063
|
+
<div class="variablelist"><table border="0">
|
1064
|
+
<col align="left" valign="top">
|
1065
|
+
<tbody>
|
1066
|
+
<tr>
|
1067
|
+
<td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
|
1068
|
+
<td>The number of columns the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> should have.</td>
|
1069
|
+
</tr>
|
1070
|
+
<tr>
|
1071
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1072
|
+
<td>A pointer to a new GtkCList object.</td>
|
1073
|
+
</tr>
|
1074
|
+
</tbody>
|
1075
|
+
</table></div>
|
1076
|
+
</div>
|
1077
|
+
<hr>
|
1078
|
+
<div class="refsect2">
|
1079
|
+
<a name="gtk-clist-new-with-titles"></a><h3>gtk_clist_new_with_titles ()</h3>
|
1080
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_clist_new_with_titles (<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> columns</code></em>,
|
1081
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *titles[]</code></em>);</pre>
|
1082
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1083
|
+
<h3 class="title">Warning</h3>
|
1084
|
+
<p><code class="literal">gtk_clist_new_with_titles</code> is deprecated and should not be used in newly-written code.</p>
|
1085
|
+
</div>
|
1086
|
+
<p>
|
1087
|
+
Creates a new <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget with column titles for use.
|
1088
|
+
</p>
|
1089
|
+
<div class="variablelist"><table border="0">
|
1090
|
+
<col align="left" valign="top">
|
1091
|
+
<tbody>
|
1092
|
+
<tr>
|
1093
|
+
<td><p><span class="term"><em class="parameter"><code>columns</code></em> :</span></p></td>
|
1094
|
+
<td>The number of columns the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> should have.</td>
|
1095
|
+
</tr>
|
1096
|
+
<tr>
|
1097
|
+
<td><p><span class="term"><em class="parameter"><code>titles</code></em> :</span></p></td>
|
1098
|
+
<td>A string array of titles for the widget. There should be
|
1099
|
+
enough strings in the array for the specified number of columns.</td>
|
1100
|
+
</tr>
|
1101
|
+
<tr>
|
1102
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1103
|
+
<td>A pointer to a new GtkCList object.</td>
|
1104
|
+
</tr>
|
1105
|
+
</tbody>
|
1106
|
+
</table></div>
|
1107
|
+
</div>
|
1108
|
+
<hr>
|
1109
|
+
<div class="refsect2">
|
1110
|
+
<a name="gtk-clist-set-shadow-type"></a><h3>gtk_clist_set_shadow_type ()</h3>
|
1111
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_shadow_type (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1112
|
+
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> type</code></em>);</pre>
|
1113
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1114
|
+
<h3 class="title">Warning</h3>
|
1115
|
+
<p><code class="literal">gtk_clist_set_shadow_type</code> is deprecated and should not be used in newly-written code.</p>
|
1116
|
+
</div>
|
1117
|
+
<p>
|
1118
|
+
Sets the shadow type for the specified CList. Changing this value
|
1119
|
+
will cause the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to update its visuals.
|
1120
|
+
</p>
|
1121
|
+
<div class="variablelist"><table border="0">
|
1122
|
+
<col align="left" valign="top">
|
1123
|
+
<tbody>
|
1124
|
+
<tr>
|
1125
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1126
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1127
|
+
</tr>
|
1128
|
+
<tr>
|
1129
|
+
<td><p><span class="term"><em class="parameter"><code>type</code></em> :</span></p></td>
|
1130
|
+
<td>The GtkShadowType desired.</td>
|
1131
|
+
</tr>
|
1132
|
+
</tbody>
|
1133
|
+
</table></div>
|
1134
|
+
</div>
|
1135
|
+
<hr>
|
1136
|
+
<div class="refsect2">
|
1137
|
+
<a name="gtk-clist-set-selection-mode"></a><h3>gtk_clist_set_selection_mode ()</h3>
|
1138
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_selection_mode (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1139
|
+
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> mode</code></em>);</pre>
|
1140
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1141
|
+
<h3 class="title">Warning</h3>
|
1142
|
+
<p><code class="literal">gtk_clist_set_selection_mode</code> is deprecated and should not be used in newly-written code.</p>
|
1143
|
+
</div>
|
1144
|
+
<p>
|
1145
|
+
Sets the selection mode for the specified CList. This allows you to
|
1146
|
+
set whether only one or more than one item can be selected at a time
|
1147
|
+
in the widget. Note that setting the widget's selection mode to one
|
1148
|
+
of GTK_SELECTION_BROWSE or GTK_SELECTION_SINGLE will cause all the
|
1149
|
+
items in the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to become deselected.
|
1150
|
+
</p>
|
1151
|
+
<div class="variablelist"><table border="0">
|
1152
|
+
<col align="left" valign="top">
|
1153
|
+
<tbody>
|
1154
|
+
<tr>
|
1155
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1156
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1157
|
+
</tr>
|
1158
|
+
<tr>
|
1159
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
1160
|
+
<td>The GtkSelectionMode type to set for this CList.</td>
|
1161
|
+
</tr>
|
1162
|
+
</tbody>
|
1163
|
+
</table></div>
|
1164
|
+
</div>
|
1165
|
+
<hr>
|
1166
|
+
<div class="refsect2">
|
1167
|
+
<a name="gtk-clist-freeze"></a><h3>gtk_clist_freeze ()</h3>
|
1168
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_freeze (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
1169
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1170
|
+
<h3 class="title">Warning</h3>
|
1171
|
+
<p><code class="literal">gtk_clist_freeze</code> is deprecated and should not be used in newly-written code.</p>
|
1172
|
+
</div>
|
1173
|
+
<p>
|
1174
|
+
Causes the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to stop updating its visuals until a matching call to
|
1175
|
+
<a class="link" href="GtkCList.html#gtk-clist-thaw" title="gtk_clist_thaw ()"><code class="function">gtk_clist_thaw()</code></a> is made. This function is useful if a lot of changes
|
1176
|
+
will be made to the widget that may cause a lot of visual updating to
|
1177
|
+
occur. Note that calls to <a class="link" href="GtkCList.html#gtk-clist-freeze" title="gtk_clist_freeze ()"><code class="function">gtk_clist_freeze()</code></a> can be nested.
|
1178
|
+
</p>
|
1179
|
+
<div class="variablelist"><table border="0">
|
1180
|
+
<col align="left" valign="top">
|
1181
|
+
<tbody><tr>
|
1182
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1183
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to freeze.</td>
|
1184
|
+
</tr></tbody>
|
1185
|
+
</table></div>
|
1186
|
+
</div>
|
1187
|
+
<hr>
|
1188
|
+
<div class="refsect2">
|
1189
|
+
<a name="gtk-clist-thaw"></a><h3>gtk_clist_thaw ()</h3>
|
1190
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_thaw (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
1191
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1192
|
+
<h3 class="title">Warning</h3>
|
1193
|
+
<p><code class="literal">gtk_clist_thaw</code> is deprecated and should not be used in newly-written code.</p>
|
1194
|
+
</div>
|
1195
|
+
<p>
|
1196
|
+
Causes the specified <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to allow visual updates.
|
1197
|
+
</p>
|
1198
|
+
<div class="variablelist"><table border="0">
|
1199
|
+
<col align="left" valign="top">
|
1200
|
+
<tbody><tr>
|
1201
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1202
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to thaw.</td>
|
1203
|
+
</tr></tbody>
|
1204
|
+
</table></div>
|
1205
|
+
</div>
|
1206
|
+
<hr>
|
1207
|
+
<div class="refsect2">
|
1208
|
+
<a name="gtk-clist-column-titles-show"></a><h3>gtk_clist_column_titles_show ()</h3>
|
1209
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_column_titles_show (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
1210
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1211
|
+
<h3 class="title">Warning</h3>
|
1212
|
+
<p><code class="literal">gtk_clist_column_titles_show</code> is deprecated and should not be used in newly-written code.</p>
|
1213
|
+
</div>
|
1214
|
+
<p>
|
1215
|
+
This function causes the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to show its column titles, if
|
1216
|
+
they are not already showing.
|
1217
|
+
</p>
|
1218
|
+
<div class="variablelist"><table border="0">
|
1219
|
+
<col align="left" valign="top">
|
1220
|
+
<tbody><tr>
|
1221
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1222
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1223
|
+
</tr></tbody>
|
1224
|
+
</table></div>
|
1225
|
+
</div>
|
1226
|
+
<hr>
|
1227
|
+
<div class="refsect2">
|
1228
|
+
<a name="gtk-clist-column-titles-hide"></a><h3>gtk_clist_column_titles_hide ()</h3>
|
1229
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_column_titles_hide (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
1230
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1231
|
+
<h3 class="title">Warning</h3>
|
1232
|
+
<p><code class="literal">gtk_clist_column_titles_hide</code> is deprecated and should not be used in newly-written code.</p>
|
1233
|
+
</div>
|
1234
|
+
<p>
|
1235
|
+
Causes the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to hide its column titles, if they are currently
|
1236
|
+
showing.
|
1237
|
+
</p>
|
1238
|
+
<div class="variablelist"><table border="0">
|
1239
|
+
<col align="left" valign="top">
|
1240
|
+
<tbody><tr>
|
1241
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1242
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1243
|
+
</tr></tbody>
|
1244
|
+
</table></div>
|
1245
|
+
</div>
|
1246
|
+
<hr>
|
1247
|
+
<div class="refsect2">
|
1248
|
+
<a name="gtk-clist-column-title-active"></a><h3>gtk_clist_column_title_active ()</h3>
|
1249
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_column_title_active (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1250
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
1251
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1252
|
+
<h3 class="title">Warning</h3>
|
1253
|
+
<p><code class="literal">gtk_clist_column_title_active</code> is deprecated and should not be used in newly-written code.</p>
|
1254
|
+
</div>
|
1255
|
+
<p>
|
1256
|
+
Sets the specified column in the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to become selectable. You can
|
1257
|
+
then respond to events from the user clicking on a title button, and take
|
1258
|
+
appropriate action.
|
1259
|
+
</p>
|
1260
|
+
<div class="variablelist"><table border="0">
|
1261
|
+
<col align="left" valign="top">
|
1262
|
+
<tbody>
|
1263
|
+
<tr>
|
1264
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1265
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1266
|
+
</tr>
|
1267
|
+
<tr>
|
1268
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1269
|
+
<td>The column to make active, counting from 0.</td>
|
1270
|
+
</tr>
|
1271
|
+
</tbody>
|
1272
|
+
</table></div>
|
1273
|
+
</div>
|
1274
|
+
<hr>
|
1275
|
+
<div class="refsect2">
|
1276
|
+
<a name="gtk-clist-column-title-passive"></a><h3>gtk_clist_column_title_passive ()</h3>
|
1277
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_column_title_passive (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1278
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
1279
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1280
|
+
<h3 class="title">Warning</h3>
|
1281
|
+
<p><code class="literal">gtk_clist_column_title_passive</code> is deprecated and should not be used in newly-written code.</p>
|
1282
|
+
</div>
|
1283
|
+
<p>
|
1284
|
+
Causes the specified column title button to become passive, i.e., does
|
1285
|
+
not respond to events, such as the user clicking on it.
|
1286
|
+
</p>
|
1287
|
+
<div class="variablelist"><table border="0">
|
1288
|
+
<col align="left" valign="top">
|
1289
|
+
<tbody>
|
1290
|
+
<tr>
|
1291
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1292
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1293
|
+
</tr>
|
1294
|
+
<tr>
|
1295
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1296
|
+
<td>The column to make passive, counting from 0.</td>
|
1297
|
+
</tr>
|
1298
|
+
</tbody>
|
1299
|
+
</table></div>
|
1300
|
+
</div>
|
1301
|
+
<hr>
|
1302
|
+
<div class="refsect2">
|
1303
|
+
<a name="gtk-clist-column-titles-active"></a><h3>gtk_clist_column_titles_active ()</h3>
|
1304
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_column_titles_active (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
1305
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1306
|
+
<h3 class="title">Warning</h3>
|
1307
|
+
<p><code class="literal">gtk_clist_column_titles_active</code> is deprecated and should not be used in newly-written code.</p>
|
1308
|
+
</div>
|
1309
|
+
<p>
|
1310
|
+
Causes all column title buttons to become active. This is the same
|
1311
|
+
as calling <a class="link" href="GtkCList.html#gtk-clist-column-title-active" title="gtk_clist_column_title_active ()"><code class="function">gtk_clist_column_title_active()</code></a> for each column.
|
1312
|
+
</p>
|
1313
|
+
<div class="variablelist"><table border="0">
|
1314
|
+
<col align="left" valign="top">
|
1315
|
+
<tbody><tr>
|
1316
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1317
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1318
|
+
</tr></tbody>
|
1319
|
+
</table></div>
|
1320
|
+
</div>
|
1321
|
+
<hr>
|
1322
|
+
<div class="refsect2">
|
1323
|
+
<a name="gtk-clist-column-titles-passive"></a><h3>gtk_clist_column_titles_passive ()</h3>
|
1324
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_column_titles_passive (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
1325
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1326
|
+
<h3 class="title">Warning</h3>
|
1327
|
+
<p><code class="literal">gtk_clist_column_titles_passive</code> is deprecated and should not be used in newly-written code.</p>
|
1328
|
+
</div>
|
1329
|
+
<p>
|
1330
|
+
Causes all column title buttons to become passive. This is the same
|
1331
|
+
as calling <a class="link" href="GtkCList.html#gtk-clist-column-title-passive" title="gtk_clist_column_title_passive ()"><code class="function">gtk_clist_column_title_passive()</code></a> for each column.
|
1332
|
+
</p>
|
1333
|
+
<div class="variablelist"><table border="0">
|
1334
|
+
<col align="left" valign="top">
|
1335
|
+
<tbody><tr>
|
1336
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1337
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1338
|
+
</tr></tbody>
|
1339
|
+
</table></div>
|
1340
|
+
</div>
|
1341
|
+
<hr>
|
1342
|
+
<div class="refsect2">
|
1343
|
+
<a name="gtk-clist-set-column-title"></a><h3>gtk_clist_set_column_title ()</h3>
|
1344
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_column_title (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1345
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1346
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *title</code></em>);</pre>
|
1347
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1348
|
+
<h3 class="title">Warning</h3>
|
1349
|
+
<p><code class="literal">gtk_clist_set_column_title</code> is deprecated and should not be used in newly-written code.</p>
|
1350
|
+
</div>
|
1351
|
+
<p>
|
1352
|
+
Sets the title for the specified column.
|
1353
|
+
</p>
|
1354
|
+
<div class="variablelist"><table border="0">
|
1355
|
+
<col align="left" valign="top">
|
1356
|
+
<tbody>
|
1357
|
+
<tr>
|
1358
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1359
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1360
|
+
</tr>
|
1361
|
+
<tr>
|
1362
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1363
|
+
<td>The column whose title should be changed.</td>
|
1364
|
+
</tr>
|
1365
|
+
<tr>
|
1366
|
+
<td><p><span class="term"><em class="parameter"><code>title</code></em> :</span></p></td>
|
1367
|
+
<td>A string to be the column's title.</td>
|
1368
|
+
</tr>
|
1369
|
+
</tbody>
|
1370
|
+
</table></div>
|
1371
|
+
</div>
|
1372
|
+
<hr>
|
1373
|
+
<div class="refsect2">
|
1374
|
+
<a name="gtk-clist-set-column-widget"></a><h3>gtk_clist_set_column_widget ()</h3>
|
1375
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_column_widget (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1376
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1377
|
+
<em class="parameter"><code><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *widget</code></em>);</pre>
|
1378
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1379
|
+
<h3 class="title">Warning</h3>
|
1380
|
+
<p><code class="literal">gtk_clist_set_column_widget</code> is deprecated and should not be used in newly-written code.</p>
|
1381
|
+
</div>
|
1382
|
+
<p>
|
1383
|
+
Sets a widget to be used as the specified column's title. This
|
1384
|
+
can be used to place a pixmap or something else as the column
|
1385
|
+
title, instead of the standard text.
|
1386
|
+
</p>
|
1387
|
+
<div class="variablelist"><table border="0">
|
1388
|
+
<col align="left" valign="top">
|
1389
|
+
<tbody>
|
1390
|
+
<tr>
|
1391
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1392
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1393
|
+
</tr>
|
1394
|
+
<tr>
|
1395
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1396
|
+
<td>The column whose title should be a widget.</td>
|
1397
|
+
</tr>
|
1398
|
+
<tr>
|
1399
|
+
<td><p><span class="term"><em class="parameter"><code>widget</code></em> :</span></p></td>
|
1400
|
+
<td>A pointer to a previously create widget.</td>
|
1401
|
+
</tr>
|
1402
|
+
</tbody>
|
1403
|
+
</table></div>
|
1404
|
+
</div>
|
1405
|
+
<hr>
|
1406
|
+
<div class="refsect2">
|
1407
|
+
<a name="gtk-clist-set-column-justification"></a><h3>gtk_clist_set_column_justification ()</h3>
|
1408
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_column_justification (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1409
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1410
|
+
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> justification</code></em>);</pre>
|
1411
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1412
|
+
<h3 class="title">Warning</h3>
|
1413
|
+
<p><code class="literal">gtk_clist_set_column_justification</code> is deprecated and should not be used in newly-written code.</p>
|
1414
|
+
</div>
|
1415
|
+
<p>
|
1416
|
+
Sets the justification to be used for all text in the specified
|
1417
|
+
column.
|
1418
|
+
</p>
|
1419
|
+
<div class="variablelist"><table border="0">
|
1420
|
+
<col align="left" valign="top">
|
1421
|
+
<tbody>
|
1422
|
+
<tr>
|
1423
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1424
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1425
|
+
</tr>
|
1426
|
+
<tr>
|
1427
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1428
|
+
<td>The column which should be affected.</td>
|
1429
|
+
</tr>
|
1430
|
+
<tr>
|
1431
|
+
<td><p><span class="term"><em class="parameter"><code>justification</code></em> :</span></p></td>
|
1432
|
+
<td>A GtkJustification value for the column.</td>
|
1433
|
+
</tr>
|
1434
|
+
</tbody>
|
1435
|
+
</table></div>
|
1436
|
+
</div>
|
1437
|
+
<hr>
|
1438
|
+
<div class="refsect2">
|
1439
|
+
<a name="gtk-clist-set-column-visibility"></a><h3>gtk_clist_set_column_visibility ()</h3>
|
1440
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_column_visibility (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1441
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1442
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> visible</code></em>);</pre>
|
1443
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1444
|
+
<h3 class="title">Warning</h3>
|
1445
|
+
<p><code class="literal">gtk_clist_set_column_visibility</code> is deprecated and should not be used in newly-written code.</p>
|
1446
|
+
</div>
|
1447
|
+
<p>
|
1448
|
+
Allows you to set whether a specified column in the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> should
|
1449
|
+
be hidden or shown. Note that at least one column must always be
|
1450
|
+
showing, so attempting to hide the last visible column will be
|
1451
|
+
ignored.
|
1452
|
+
</p>
|
1453
|
+
<div class="variablelist"><table border="0">
|
1454
|
+
<col align="left" valign="top">
|
1455
|
+
<tbody>
|
1456
|
+
<tr>
|
1457
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1458
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1459
|
+
</tr>
|
1460
|
+
<tr>
|
1461
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1462
|
+
<td>The column to set visibility.</td>
|
1463
|
+
</tr>
|
1464
|
+
<tr>
|
1465
|
+
<td><p><span class="term"><em class="parameter"><code>visible</code></em> :</span></p></td>
|
1466
|
+
<td>
|
1467
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
|
1468
|
+
</tr>
|
1469
|
+
</tbody>
|
1470
|
+
</table></div>
|
1471
|
+
</div>
|
1472
|
+
<hr>
|
1473
|
+
<div class="refsect2">
|
1474
|
+
<a name="gtk-clist-set-column-resizeable"></a><h3>gtk_clist_set_column_resizeable ()</h3>
|
1475
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_column_resizeable (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1476
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1477
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> resizeable</code></em>);</pre>
|
1478
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1479
|
+
<h3 class="title">Warning</h3>
|
1480
|
+
<p><code class="literal">gtk_clist_set_column_resizeable</code> is deprecated and should not be used in newly-written code.</p>
|
1481
|
+
</div>
|
1482
|
+
<p>
|
1483
|
+
Lets you specify whether a specified column should be resizeable
|
1484
|
+
by the user. Note that turning on resizeability for the column will
|
1485
|
+
automatically shut off auto-resizing, but turning off resizeability
|
1486
|
+
will NOT turn on auto-resizing. This must be done manually via a
|
1487
|
+
call to <a class="link" href="GtkCList.html#gtk-clist-set-column-auto-resize" title="gtk_clist_set_column_auto_resize ()"><code class="function">gtk_clist_set_column_auto_resize()</code></a>.
|
1488
|
+
</p>
|
1489
|
+
<div class="variablelist"><table border="0">
|
1490
|
+
<col align="left" valign="top">
|
1491
|
+
<tbody>
|
1492
|
+
<tr>
|
1493
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1494
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1495
|
+
</tr>
|
1496
|
+
<tr>
|
1497
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1498
|
+
<td>The column on which to set resizeability.</td>
|
1499
|
+
</tr>
|
1500
|
+
<tr>
|
1501
|
+
<td><p><span class="term"><em class="parameter"><code>resizeable</code></em> :</span></p></td>
|
1502
|
+
<td>
|
1503
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
|
1504
|
+
</tr>
|
1505
|
+
</tbody>
|
1506
|
+
</table></div>
|
1507
|
+
</div>
|
1508
|
+
<hr>
|
1509
|
+
<div class="refsect2">
|
1510
|
+
<a name="gtk-clist-set-column-auto-resize"></a><h3>gtk_clist_set_column_auto_resize ()</h3>
|
1511
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_column_auto_resize (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1512
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1513
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> auto_resize</code></em>);</pre>
|
1514
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1515
|
+
<h3 class="title">Warning</h3>
|
1516
|
+
<p><code class="literal">gtk_clist_set_column_auto_resize</code> is deprecated and should not be used in newly-written code.</p>
|
1517
|
+
</div>
|
1518
|
+
<p>
|
1519
|
+
Lets you specify whether a column should be automatically resized
|
1520
|
+
by the widget when data is added or removed. Enabling auto-resize
|
1521
|
+
on a column explicity disallows user-resizing of the column.
|
1522
|
+
</p>
|
1523
|
+
<div class="variablelist"><table border="0">
|
1524
|
+
<col align="left" valign="top">
|
1525
|
+
<tbody>
|
1526
|
+
<tr>
|
1527
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1528
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1529
|
+
</tr>
|
1530
|
+
<tr>
|
1531
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1532
|
+
<td>The column on which to set auto-resizing.</td>
|
1533
|
+
</tr>
|
1534
|
+
<tr>
|
1535
|
+
<td><p><span class="term"><em class="parameter"><code>auto_resize</code></em> :</span></p></td>
|
1536
|
+
<td>
|
1537
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
|
1538
|
+
</tr>
|
1539
|
+
</tbody>
|
1540
|
+
</table></div>
|
1541
|
+
</div>
|
1542
|
+
<hr>
|
1543
|
+
<div class="refsect2">
|
1544
|
+
<a name="gtk-clist-optimal-column-width"></a><h3>gtk_clist_optimal_column_width ()</h3>
|
1545
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_clist_optimal_column_width (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1546
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
1547
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1548
|
+
<h3 class="title">Warning</h3>
|
1549
|
+
<p><code class="literal">gtk_clist_optimal_column_width</code> is deprecated and should not be used in newly-written code.</p>
|
1550
|
+
</div>
|
1551
|
+
<p>
|
1552
|
+
Gets the required width in pixels that is needed to show
|
1553
|
+
everything in the specified column.
|
1554
|
+
</p>
|
1555
|
+
<div class="variablelist"><table border="0">
|
1556
|
+
<col align="left" valign="top">
|
1557
|
+
<tbody>
|
1558
|
+
<tr>
|
1559
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1560
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to check.</td>
|
1561
|
+
</tr>
|
1562
|
+
<tr>
|
1563
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1564
|
+
<td>The column to check.</td>
|
1565
|
+
</tr>
|
1566
|
+
<tr>
|
1567
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1568
|
+
<td>The required width in pixels for the column.</td>
|
1569
|
+
</tr>
|
1570
|
+
</tbody>
|
1571
|
+
</table></div>
|
1572
|
+
</div>
|
1573
|
+
<hr>
|
1574
|
+
<div class="refsect2">
|
1575
|
+
<a name="gtk-clist-set-column-width"></a><h3>gtk_clist_set_column_width ()</h3>
|
1576
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_column_width (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1577
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1578
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> width</code></em>);</pre>
|
1579
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1580
|
+
<h3 class="title">Warning</h3>
|
1581
|
+
<p><code class="literal">gtk_clist_set_column_width</code> is deprecated and should not be used in newly-written code.</p>
|
1582
|
+
</div>
|
1583
|
+
<p>
|
1584
|
+
Causes the column specified for the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to be set to
|
1585
|
+
a specified width.
|
1586
|
+
</p>
|
1587
|
+
<div class="variablelist"><table border="0">
|
1588
|
+
<col align="left" valign="top">
|
1589
|
+
<tbody>
|
1590
|
+
<tr>
|
1591
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1592
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1593
|
+
</tr>
|
1594
|
+
<tr>
|
1595
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1596
|
+
<td>The column to set the width.</td>
|
1597
|
+
</tr>
|
1598
|
+
<tr>
|
1599
|
+
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
1600
|
+
<td>The width, in pixels.</td>
|
1601
|
+
</tr>
|
1602
|
+
</tbody>
|
1603
|
+
</table></div>
|
1604
|
+
</div>
|
1605
|
+
<hr>
|
1606
|
+
<div class="refsect2">
|
1607
|
+
<a name="gtk-clist-set-column-min-width"></a><h3>gtk_clist_set_column_min_width ()</h3>
|
1608
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_column_min_width (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1609
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1610
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> min_width</code></em>);</pre>
|
1611
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1612
|
+
<h3 class="title">Warning</h3>
|
1613
|
+
<p><code class="literal">gtk_clist_set_column_min_width</code> is deprecated and should not be used in newly-written code.</p>
|
1614
|
+
</div>
|
1615
|
+
<p>
|
1616
|
+
Causes the column specified to have a minimum width, preventing
|
1617
|
+
the user from resizing it smaller than that specified.
|
1618
|
+
</p>
|
1619
|
+
<div class="variablelist"><table border="0">
|
1620
|
+
<col align="left" valign="top">
|
1621
|
+
<tbody>
|
1622
|
+
<tr>
|
1623
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1624
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1625
|
+
</tr>
|
1626
|
+
<tr>
|
1627
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1628
|
+
<td>The column to set the minimum width.</td>
|
1629
|
+
</tr>
|
1630
|
+
<tr>
|
1631
|
+
<td><p><span class="term"><em class="parameter"><code>min_width</code></em> :</span></p></td>
|
1632
|
+
<td>The width, in pixels.</td>
|
1633
|
+
</tr>
|
1634
|
+
</tbody>
|
1635
|
+
</table></div>
|
1636
|
+
</div>
|
1637
|
+
<hr>
|
1638
|
+
<div class="refsect2">
|
1639
|
+
<a name="gtk-clist-set-column-max-width"></a><h3>gtk_clist_set_column_max_width ()</h3>
|
1640
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_column_max_width (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1641
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1642
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> max_width</code></em>);</pre>
|
1643
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1644
|
+
<h3 class="title">Warning</h3>
|
1645
|
+
<p><code class="literal">gtk_clist_set_column_max_width</code> is deprecated and should not be used in newly-written code.</p>
|
1646
|
+
</div>
|
1647
|
+
<p>
|
1648
|
+
Causes the column specified to have a maximum width, preventing
|
1649
|
+
the user from resizing it larger than that specified.
|
1650
|
+
</p>
|
1651
|
+
<div class="variablelist"><table border="0">
|
1652
|
+
<col align="left" valign="top">
|
1653
|
+
<tbody>
|
1654
|
+
<tr>
|
1655
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1656
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1657
|
+
</tr>
|
1658
|
+
<tr>
|
1659
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1660
|
+
<td>The column to set the maximum width.</td>
|
1661
|
+
</tr>
|
1662
|
+
<tr>
|
1663
|
+
<td><p><span class="term"><em class="parameter"><code>max_width</code></em> :</span></p></td>
|
1664
|
+
<td>The width, in pixels.</td>
|
1665
|
+
</tr>
|
1666
|
+
</tbody>
|
1667
|
+
</table></div>
|
1668
|
+
</div>
|
1669
|
+
<hr>
|
1670
|
+
<div class="refsect2">
|
1671
|
+
<a name="gtk-clist-set-row-height"></a><h3>gtk_clist_set_row_height ()</h3>
|
1672
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_row_height (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1673
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> height</code></em>);</pre>
|
1674
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1675
|
+
<h3 class="title">Warning</h3>
|
1676
|
+
<p><code class="literal">gtk_clist_set_row_height</code> is deprecated and should not be used in newly-written code.</p>
|
1677
|
+
</div>
|
1678
|
+
<p>
|
1679
|
+
Causes the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to have a specified height for its
|
1680
|
+
rows. Setting the row height to 0 allows the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to adjust
|
1681
|
+
automatically to data in the row.
|
1682
|
+
</p>
|
1683
|
+
<div class="variablelist"><table border="0">
|
1684
|
+
<col align="left" valign="top">
|
1685
|
+
<tbody>
|
1686
|
+
<tr>
|
1687
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1688
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1689
|
+
</tr>
|
1690
|
+
<tr>
|
1691
|
+
<td><p><span class="term"><em class="parameter"><code>height</code></em> :</span></p></td>
|
1692
|
+
<td>The height, in pixels.</td>
|
1693
|
+
</tr>
|
1694
|
+
</tbody>
|
1695
|
+
</table></div>
|
1696
|
+
</div>
|
1697
|
+
<hr>
|
1698
|
+
<div class="refsect2">
|
1699
|
+
<a name="gtk-clist-moveto"></a><h3>gtk_clist_moveto ()</h3>
|
1700
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_moveto (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1701
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
1702
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1703
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> row_align</code></em>,
|
1704
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> col_align</code></em>);</pre>
|
1705
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1706
|
+
<h3 class="title">Warning</h3>
|
1707
|
+
<p><code class="literal">gtk_clist_moveto</code> is deprecated and should not be used in newly-written code.</p>
|
1708
|
+
</div>
|
1709
|
+
<p>
|
1710
|
+
Tells the CList widget to visually move to the specified
|
1711
|
+
row and column.
|
1712
|
+
</p>
|
1713
|
+
<div class="variablelist"><table border="0">
|
1714
|
+
<col align="left" valign="top">
|
1715
|
+
<tbody>
|
1716
|
+
<tr>
|
1717
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1718
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1719
|
+
</tr>
|
1720
|
+
<tr>
|
1721
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
1722
|
+
<td>The row to which to move.</td>
|
1723
|
+
</tr>
|
1724
|
+
<tr>
|
1725
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1726
|
+
<td>The column to which to move.</td>
|
1727
|
+
</tr>
|
1728
|
+
<tr>
|
1729
|
+
<td><p><span class="term"><em class="parameter"><code>row_align</code></em> :</span></p></td>
|
1730
|
+
<td>A value between 0 and 1 that describes the positioning of
|
1731
|
+
the row in relation to the viewable area of the CList's contents.</td>
|
1732
|
+
</tr>
|
1733
|
+
<tr>
|
1734
|
+
<td><p><span class="term"><em class="parameter"><code>col_align</code></em> :</span></p></td>
|
1735
|
+
<td>A value between 0 and 1 that describes the positioning of
|
1736
|
+
the column in relation to the viewable area of the CList's contents.</td>
|
1737
|
+
</tr>
|
1738
|
+
</tbody>
|
1739
|
+
</table></div>
|
1740
|
+
</div>
|
1741
|
+
<hr>
|
1742
|
+
<div class="refsect2">
|
1743
|
+
<a name="gtk-clist-row-is-visible"></a><h3>gtk_clist_row_is_visible ()</h3>
|
1744
|
+
<pre class="programlisting"><a class="link" href="gtk-Standard-Enumerations.html#GtkVisibility" title="enum GtkVisibility"><span class="returnvalue">GtkVisibility</span></a> gtk_clist_row_is_visible (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1745
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>);</pre>
|
1746
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1747
|
+
<h3 class="title">Warning</h3>
|
1748
|
+
<p><code class="literal">gtk_clist_row_is_visible</code> is deprecated and should not be used in newly-written code.</p>
|
1749
|
+
</div>
|
1750
|
+
<p>
|
1751
|
+
Checks how the specified row is visible.
|
1752
|
+
</p>
|
1753
|
+
<div class="variablelist"><table border="0">
|
1754
|
+
<col align="left" valign="top">
|
1755
|
+
<tbody>
|
1756
|
+
<tr>
|
1757
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1758
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1759
|
+
</tr>
|
1760
|
+
<tr>
|
1761
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
1762
|
+
<td>The row to query.</td>
|
1763
|
+
</tr>
|
1764
|
+
<tr>
|
1765
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1766
|
+
<td>A <a class="link" href="gtk-Standard-Enumerations.html#GtkVisibility" title="enum GtkVisibility"><span class="type">GtkVisibility</span></a> value that tells you how the row is visible.</td>
|
1767
|
+
</tr>
|
1768
|
+
</tbody>
|
1769
|
+
</table></div>
|
1770
|
+
</div>
|
1771
|
+
<hr>
|
1772
|
+
<div class="refsect2">
|
1773
|
+
<a name="gtk-clist-get-cell-type"></a><h3>gtk_clist_get_cell_type ()</h3>
|
1774
|
+
<pre class="programlisting"><a class="link" href="GtkCList.html#GtkCellType" title="enum GtkCellType"><span class="returnvalue">GtkCellType</span></a> gtk_clist_get_cell_type (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1775
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
1776
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
1777
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1778
|
+
<h3 class="title">Warning</h3>
|
1779
|
+
<p><code class="literal">gtk_clist_get_cell_type</code> is deprecated and should not be used in newly-written code.</p>
|
1780
|
+
</div>
|
1781
|
+
<p>
|
1782
|
+
Checks the type of cell at the location specified.
|
1783
|
+
</p>
|
1784
|
+
<div class="variablelist"><table border="0">
|
1785
|
+
<col align="left" valign="top">
|
1786
|
+
<tbody>
|
1787
|
+
<tr>
|
1788
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1789
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1790
|
+
</tr>
|
1791
|
+
<tr>
|
1792
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
1793
|
+
<td>The row of the cell.</td>
|
1794
|
+
</tr>
|
1795
|
+
<tr>
|
1796
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1797
|
+
<td>The column of the cell.</td>
|
1798
|
+
</tr>
|
1799
|
+
<tr>
|
1800
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1801
|
+
<td>A <a class="link" href="GtkCList.html#GtkCellType" title="enum GtkCellType"><span class="type">GtkCellType</span></a> value describing the cell.</td>
|
1802
|
+
</tr>
|
1803
|
+
</tbody>
|
1804
|
+
</table></div>
|
1805
|
+
</div>
|
1806
|
+
<hr>
|
1807
|
+
<div class="refsect2">
|
1808
|
+
<a name="gtk-clist-set-text"></a><h3>gtk_clist_set_text ()</h3>
|
1809
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_text (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1810
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
1811
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1812
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>);</pre>
|
1813
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1814
|
+
<h3 class="title">Warning</h3>
|
1815
|
+
<p><code class="literal">gtk_clist_set_text</code> is deprecated and should not be used in newly-written code.</p>
|
1816
|
+
</div>
|
1817
|
+
<p>
|
1818
|
+
Sets the displayed text in the specified cell.
|
1819
|
+
</p>
|
1820
|
+
<div class="variablelist"><table border="0">
|
1821
|
+
<col align="left" valign="top">
|
1822
|
+
<tbody>
|
1823
|
+
<tr>
|
1824
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1825
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1826
|
+
</tr>
|
1827
|
+
<tr>
|
1828
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
1829
|
+
<td>The row of the cell.</td>
|
1830
|
+
</tr>
|
1831
|
+
<tr>
|
1832
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1833
|
+
<td>The column of the cell.</td>
|
1834
|
+
</tr>
|
1835
|
+
<tr>
|
1836
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1837
|
+
<td>The text to set in the cell.</td>
|
1838
|
+
</tr>
|
1839
|
+
</tbody>
|
1840
|
+
</table></div>
|
1841
|
+
</div>
|
1842
|
+
<hr>
|
1843
|
+
<div class="refsect2">
|
1844
|
+
<a name="gtk-clist-get-text"></a><h3>gtk_clist_get_text ()</h3>
|
1845
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_clist_get_text (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1846
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
1847
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1848
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **text</code></em>);</pre>
|
1849
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1850
|
+
<h3 class="title">Warning</h3>
|
1851
|
+
<p><code class="literal">gtk_clist_get_text</code> is deprecated and should not be used in newly-written code.</p>
|
1852
|
+
</div>
|
1853
|
+
<p>
|
1854
|
+
Gets the text for the specified cell.
|
1855
|
+
</p>
|
1856
|
+
<div class="variablelist"><table border="0">
|
1857
|
+
<col align="left" valign="top">
|
1858
|
+
<tbody>
|
1859
|
+
<tr>
|
1860
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1861
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1862
|
+
</tr>
|
1863
|
+
<tr>
|
1864
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
1865
|
+
<td>The row to query.</td>
|
1866
|
+
</tr>
|
1867
|
+
<tr>
|
1868
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1869
|
+
<td>The column to query.</td>
|
1870
|
+
</tr>
|
1871
|
+
<tr>
|
1872
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
1873
|
+
<td>A pointer to a pointer to store the text.</td>
|
1874
|
+
</tr>
|
1875
|
+
<tr>
|
1876
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1877
|
+
<td>1 if the cell's text could be retrieved, 0 otherwise.</td>
|
1878
|
+
</tr>
|
1879
|
+
</tbody>
|
1880
|
+
</table></div>
|
1881
|
+
</div>
|
1882
|
+
<hr>
|
1883
|
+
<div class="refsect2">
|
1884
|
+
<a name="gtk-clist-set-pixmap"></a><h3>gtk_clist_set_pixmap ()</h3>
|
1885
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_pixmap (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1886
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
1887
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1888
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
|
1889
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
|
1890
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1891
|
+
<h3 class="title">Warning</h3>
|
1892
|
+
<p><code class="literal">gtk_clist_set_pixmap</code> is deprecated and should not be used in newly-written code.</p>
|
1893
|
+
</div>
|
1894
|
+
<p>
|
1895
|
+
Sets a pixmap for the specified cell.
|
1896
|
+
</p>
|
1897
|
+
<div class="variablelist"><table border="0">
|
1898
|
+
<col align="left" valign="top">
|
1899
|
+
<tbody>
|
1900
|
+
<tr>
|
1901
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1902
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1903
|
+
</tr>
|
1904
|
+
<tr>
|
1905
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
1906
|
+
<td>The row of the cell.</td>
|
1907
|
+
</tr>
|
1908
|
+
<tr>
|
1909
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1910
|
+
<td>The column of the cell.</td>
|
1911
|
+
</tr>
|
1912
|
+
<tr>
|
1913
|
+
<td><p><span class="term"><em class="parameter"><code>pixmap</code></em> :</span></p></td>
|
1914
|
+
<td>A pointer to a <a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> to place in the cell.</td>
|
1915
|
+
</tr>
|
1916
|
+
<tr>
|
1917
|
+
<td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
|
1918
|
+
<td>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
1919
|
+
</td>
|
1920
|
+
</tr>
|
1921
|
+
</tbody>
|
1922
|
+
</table></div>
|
1923
|
+
</div>
|
1924
|
+
<hr>
|
1925
|
+
<div class="refsect2">
|
1926
|
+
<a name="gtk-clist-get-pixmap"></a><h3>gtk_clist_get_pixmap ()</h3>
|
1927
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_clist_get_pixmap (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1928
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
1929
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1930
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> **pixmap</code></em>,
|
1931
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);</pre>
|
1932
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1933
|
+
<h3 class="title">Warning</h3>
|
1934
|
+
<p><code class="literal">gtk_clist_get_pixmap</code> is deprecated and should not be used in newly-written code.</p>
|
1935
|
+
</div>
|
1936
|
+
<p>
|
1937
|
+
Gets the pixmap and bitmap mask of the specified cell. The returned mask value can be NULL.
|
1938
|
+
</p>
|
1939
|
+
<div class="variablelist"><table border="0">
|
1940
|
+
<col align="left" valign="top">
|
1941
|
+
<tbody>
|
1942
|
+
<tr>
|
1943
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1944
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1945
|
+
</tr>
|
1946
|
+
<tr>
|
1947
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
1948
|
+
<td>The row of the cell.</td>
|
1949
|
+
</tr>
|
1950
|
+
<tr>
|
1951
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1952
|
+
<td>The column of the cell.</td>
|
1953
|
+
</tr>
|
1954
|
+
<tr>
|
1955
|
+
<td><p><span class="term"><em class="parameter"><code>pixmap</code></em> :</span></p></td>
|
1956
|
+
<td>A pointer to a pointer to store the cell's <a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>.</td>
|
1957
|
+
</tr>
|
1958
|
+
<tr>
|
1959
|
+
<td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
|
1960
|
+
<td>A pointer to a pointer to store the cell's <a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> mask.</td>
|
1961
|
+
</tr>
|
1962
|
+
<tr>
|
1963
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1964
|
+
<td>1 if the cell's pixmap could be retrieved, 0 otherwise.</td>
|
1965
|
+
</tr>
|
1966
|
+
</tbody>
|
1967
|
+
</table></div>
|
1968
|
+
</div>
|
1969
|
+
<hr>
|
1970
|
+
<div class="refsect2">
|
1971
|
+
<a name="gtk-clist-set-pixtext"></a><h3>gtk_clist_set_pixtext ()</h3>
|
1972
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_pixtext (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
1973
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
1974
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
1975
|
+
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
1976
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> spacing</code></em>,
|
1977
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *pixmap</code></em>,
|
1978
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
|
1979
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1980
|
+
<h3 class="title">Warning</h3>
|
1981
|
+
<p><code class="literal">gtk_clist_set_pixtext</code> is deprecated and should not be used in newly-written code.</p>
|
1982
|
+
</div>
|
1983
|
+
<p>
|
1984
|
+
Sets text and a pixmap/bitmap on the specified cell.
|
1985
|
+
</p>
|
1986
|
+
<div class="variablelist"><table border="0">
|
1987
|
+
<col align="left" valign="top">
|
1988
|
+
<tbody>
|
1989
|
+
<tr>
|
1990
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
1991
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
1992
|
+
</tr>
|
1993
|
+
<tr>
|
1994
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
1995
|
+
<td>The row of the cell.</td>
|
1996
|
+
</tr>
|
1997
|
+
<tr>
|
1998
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
1999
|
+
<td>The column of the cell.</td>
|
2000
|
+
</tr>
|
2001
|
+
<tr>
|
2002
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
2003
|
+
<td>The text to set in the cell.</td>
|
2004
|
+
</tr>
|
2005
|
+
<tr>
|
2006
|
+
<td><p><span class="term"><em class="parameter"><code>spacing</code></em> :</span></p></td>
|
2007
|
+
<td>The spacing between the cell's text and pixmap.</td>
|
2008
|
+
</tr>
|
2009
|
+
<tr>
|
2010
|
+
<td><p><span class="term"><em class="parameter"><code>pixmap</code></em> :</span></p></td>
|
2011
|
+
<td>A pointer to a <a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> for the cell.</td>
|
2012
|
+
</tr>
|
2013
|
+
<tr>
|
2014
|
+
<td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
|
2015
|
+
<td>A pointer to a <a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> mask for the cell.</td>
|
2016
|
+
</tr>
|
2017
|
+
</tbody>
|
2018
|
+
</table></div>
|
2019
|
+
</div>
|
2020
|
+
<hr>
|
2021
|
+
<div class="refsect2">
|
2022
|
+
<a name="gtk-clist-get-pixtext"></a><h3>gtk_clist_get_pixtext ()</h3>
|
2023
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_clist_get_pixtext (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2024
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2025
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
2026
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> **text</code></em>,
|
2027
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *spacing</code></em>,
|
2028
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> **pixmap</code></em>,
|
2029
|
+
<em class="parameter"><code><a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> **mask</code></em>);</pre>
|
2030
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2031
|
+
<h3 class="title">Warning</h3>
|
2032
|
+
<p><code class="literal">gtk_clist_get_pixtext</code> is deprecated and should not be used in newly-written code.</p>
|
2033
|
+
</div>
|
2034
|
+
<p>
|
2035
|
+
Gets the text, pixmap and bitmap mask for the specified cell.
|
2036
|
+
</p>
|
2037
|
+
<div class="variablelist"><table border="0">
|
2038
|
+
<col align="left" valign="top">
|
2039
|
+
<tbody>
|
2040
|
+
<tr>
|
2041
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2042
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2043
|
+
</tr>
|
2044
|
+
<tr>
|
2045
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2046
|
+
<td>The row to query.</td>
|
2047
|
+
</tr>
|
2048
|
+
<tr>
|
2049
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
2050
|
+
<td>The column to query.</td>
|
2051
|
+
</tr>
|
2052
|
+
<tr>
|
2053
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
2054
|
+
<td>A pointer to a pointer to store the text.</td>
|
2055
|
+
</tr>
|
2056
|
+
<tr>
|
2057
|
+
<td><p><span class="term"><em class="parameter"><code>spacing</code></em> :</span></p></td>
|
2058
|
+
<td>A pointer to a <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> to store the spacing.</td>
|
2059
|
+
</tr>
|
2060
|
+
<tr>
|
2061
|
+
<td><p><span class="term"><em class="parameter"><code>pixmap</code></em> :</span></p></td>
|
2062
|
+
<td>A pointer to a <a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> pointer to store the cell's pixmap.</td>
|
2063
|
+
</tr>
|
2064
|
+
<tr>
|
2065
|
+
<td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
|
2066
|
+
<td>A pointer to a <a href="../gdk/gdk-Bitmaps-and-Pixmaps.html#GdkBitmap"><span class="type">GdkBitmap</span></a> pointer to store the cell's bitmap mask.</td>
|
2067
|
+
</tr>
|
2068
|
+
<tr>
|
2069
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2070
|
+
<td>1 if the retrieval was successful, 0 otherwise.</td>
|
2071
|
+
</tr>
|
2072
|
+
</tbody>
|
2073
|
+
</table></div>
|
2074
|
+
</div>
|
2075
|
+
<hr>
|
2076
|
+
<div class="refsect2">
|
2077
|
+
<a name="gtk-clist-set-foreground"></a><h3>gtk_clist_set_foreground ()</h3>
|
2078
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_foreground (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2079
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2080
|
+
<em class="parameter"><code>const <a href="../gdk/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
|
2081
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2082
|
+
<h3 class="title">Warning</h3>
|
2083
|
+
<p><code class="literal">gtk_clist_set_foreground</code> is deprecated and should not be used in newly-written code.</p>
|
2084
|
+
</div>
|
2085
|
+
<p>
|
2086
|
+
Sets the foreground color for the specified row.
|
2087
|
+
</p>
|
2088
|
+
<div class="variablelist"><table border="0">
|
2089
|
+
<col align="left" valign="top">
|
2090
|
+
<tbody>
|
2091
|
+
<tr>
|
2092
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2093
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2094
|
+
</tr>
|
2095
|
+
<tr>
|
2096
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2097
|
+
<td>The row to affect.</td>
|
2098
|
+
</tr>
|
2099
|
+
<tr>
|
2100
|
+
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
2101
|
+
<td>A pointer to a <a href="../gdk/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> structure.</td>
|
2102
|
+
</tr>
|
2103
|
+
</tbody>
|
2104
|
+
</table></div>
|
2105
|
+
</div>
|
2106
|
+
<hr>
|
2107
|
+
<div class="refsect2">
|
2108
|
+
<a name="gtk-clist-set-background"></a><h3>gtk_clist_set_background ()</h3>
|
2109
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_background (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2110
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2111
|
+
<em class="parameter"><code>const <a href="../gdk/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
|
2112
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2113
|
+
<h3 class="title">Warning</h3>
|
2114
|
+
<p><code class="literal">gtk_clist_set_background</code> is deprecated and should not be used in newly-written code.</p>
|
2115
|
+
</div>
|
2116
|
+
<p>
|
2117
|
+
Sets the background color for the specified row.
|
2118
|
+
</p>
|
2119
|
+
<div class="variablelist"><table border="0">
|
2120
|
+
<col align="left" valign="top">
|
2121
|
+
<tbody>
|
2122
|
+
<tr>
|
2123
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2124
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2125
|
+
</tr>
|
2126
|
+
<tr>
|
2127
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2128
|
+
<td>The row to affect.</td>
|
2129
|
+
</tr>
|
2130
|
+
<tr>
|
2131
|
+
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
2132
|
+
<td>A pointer to a <a href="../gdk/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a> structure.</td>
|
2133
|
+
</tr>
|
2134
|
+
</tbody>
|
2135
|
+
</table></div>
|
2136
|
+
</div>
|
2137
|
+
<hr>
|
2138
|
+
<div class="refsect2">
|
2139
|
+
<a name="gtk-clist-set-cell-style"></a><h3>gtk_clist_set_cell_style ()</h3>
|
2140
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_cell_style (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2141
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2142
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
2143
|
+
<em class="parameter"><code><a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> *style</code></em>);</pre>
|
2144
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2145
|
+
<h3 class="title">Warning</h3>
|
2146
|
+
<p><code class="literal">gtk_clist_set_cell_style</code> is deprecated and should not be used in newly-written code.</p>
|
2147
|
+
</div>
|
2148
|
+
<p>
|
2149
|
+
Sets the style for the specified cell.
|
2150
|
+
</p>
|
2151
|
+
<div class="variablelist"><table border="0">
|
2152
|
+
<col align="left" valign="top">
|
2153
|
+
<tbody>
|
2154
|
+
<tr>
|
2155
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2156
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2157
|
+
</tr>
|
2158
|
+
<tr>
|
2159
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2160
|
+
<td>The row of the cell.</td>
|
2161
|
+
</tr>
|
2162
|
+
<tr>
|
2163
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
2164
|
+
<td>The column of the cell.</td>
|
2165
|
+
</tr>
|
2166
|
+
<tr>
|
2167
|
+
<td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
|
2168
|
+
<td>A pointer to a <a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> structure.</td>
|
2169
|
+
</tr>
|
2170
|
+
</tbody>
|
2171
|
+
</table></div>
|
2172
|
+
</div>
|
2173
|
+
<hr>
|
2174
|
+
<div class="refsect2">
|
2175
|
+
<a name="gtk-clist-get-cell-style"></a><h3>gtk_clist_get_cell_style ()</h3>
|
2176
|
+
<pre class="programlisting"><a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> * gtk_clist_get_cell_style (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2177
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2178
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
2179
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2180
|
+
<h3 class="title">Warning</h3>
|
2181
|
+
<p><code class="literal">gtk_clist_get_cell_style</code> is deprecated and should not be used in newly-written code.</p>
|
2182
|
+
</div>
|
2183
|
+
<p>
|
2184
|
+
Gets the current style of the specified cell.
|
2185
|
+
</p>
|
2186
|
+
<div class="variablelist"><table border="0">
|
2187
|
+
<col align="left" valign="top">
|
2188
|
+
<tbody>
|
2189
|
+
<tr>
|
2190
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2191
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2192
|
+
</tr>
|
2193
|
+
<tr>
|
2194
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2195
|
+
<td>The row of the cell.</td>
|
2196
|
+
</tr>
|
2197
|
+
<tr>
|
2198
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
2199
|
+
<td>The column of the cell.</td>
|
2200
|
+
</tr>
|
2201
|
+
<tr>
|
2202
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2203
|
+
<td>A <a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> object.</td>
|
2204
|
+
</tr>
|
2205
|
+
</tbody>
|
2206
|
+
</table></div>
|
2207
|
+
</div>
|
2208
|
+
<hr>
|
2209
|
+
<div class="refsect2">
|
2210
|
+
<a name="gtk-clist-set-row-style"></a><h3>gtk_clist_set_row_style ()</h3>
|
2211
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_row_style (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2212
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2213
|
+
<em class="parameter"><code><a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> *style</code></em>);</pre>
|
2214
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2215
|
+
<h3 class="title">Warning</h3>
|
2216
|
+
<p><code class="literal">gtk_clist_set_row_style</code> is deprecated and should not be used in newly-written code.</p>
|
2217
|
+
</div>
|
2218
|
+
<p>
|
2219
|
+
Sets the style for all cells in the specified row.
|
2220
|
+
</p>
|
2221
|
+
<div class="variablelist"><table border="0">
|
2222
|
+
<col align="left" valign="top">
|
2223
|
+
<tbody>
|
2224
|
+
<tr>
|
2225
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2226
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2227
|
+
</tr>
|
2228
|
+
<tr>
|
2229
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2230
|
+
<td>The row to affect.</td>
|
2231
|
+
</tr>
|
2232
|
+
<tr>
|
2233
|
+
<td><p><span class="term"><em class="parameter"><code>style</code></em> :</span></p></td>
|
2234
|
+
<td>A pointer to a <a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> to set.</td>
|
2235
|
+
</tr>
|
2236
|
+
</tbody>
|
2237
|
+
</table></div>
|
2238
|
+
</div>
|
2239
|
+
<hr>
|
2240
|
+
<div class="refsect2">
|
2241
|
+
<a name="gtk-clist-get-row-style"></a><h3>gtk_clist_get_row_style ()</h3>
|
2242
|
+
<pre class="programlisting"><a class="link" href="GtkStyle.html" title="Styles"><span class="returnvalue">GtkStyle</span></a> * gtk_clist_get_row_style (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2243
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>);</pre>
|
2244
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2245
|
+
<h3 class="title">Warning</h3>
|
2246
|
+
<p><code class="literal">gtk_clist_get_row_style</code> is deprecated and should not be used in newly-written code.</p>
|
2247
|
+
</div>
|
2248
|
+
<p>
|
2249
|
+
Gets the style set for the specified row.
|
2250
|
+
</p>
|
2251
|
+
<div class="variablelist"><table border="0">
|
2252
|
+
<col align="left" valign="top">
|
2253
|
+
<tbody>
|
2254
|
+
<tr>
|
2255
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2256
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2257
|
+
</tr>
|
2258
|
+
<tr>
|
2259
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2260
|
+
<td>The row to query.</td>
|
2261
|
+
</tr>
|
2262
|
+
<tr>
|
2263
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2264
|
+
<td>The <a class="link" href="GtkStyle.html" title="Styles"><span class="type">GtkStyle</span></a> of the row.</td>
|
2265
|
+
</tr>
|
2266
|
+
</tbody>
|
2267
|
+
</table></div>
|
2268
|
+
</div>
|
2269
|
+
<hr>
|
2270
|
+
<div class="refsect2">
|
2271
|
+
<a name="gtk-clist-set-shift"></a><h3>gtk_clist_set_shift ()</h3>
|
2272
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_shift (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2273
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2274
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>,
|
2275
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> vertical</code></em>,
|
2276
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> horizontal</code></em>);</pre>
|
2277
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2278
|
+
<h3 class="title">Warning</h3>
|
2279
|
+
<p><code class="literal">gtk_clist_set_shift</code> is deprecated and should not be used in newly-written code.</p>
|
2280
|
+
</div>
|
2281
|
+
<p>
|
2282
|
+
Sets the vertical and horizontal shift of the specified cell.
|
2283
|
+
</p>
|
2284
|
+
<div class="variablelist"><table border="0">
|
2285
|
+
<col align="left" valign="top">
|
2286
|
+
<tbody>
|
2287
|
+
<tr>
|
2288
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2289
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2290
|
+
</tr>
|
2291
|
+
<tr>
|
2292
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2293
|
+
<td>The row of the cell.</td>
|
2294
|
+
</tr>
|
2295
|
+
<tr>
|
2296
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
2297
|
+
<td>The column of the cell.</td>
|
2298
|
+
</tr>
|
2299
|
+
<tr>
|
2300
|
+
<td><p><span class="term"><em class="parameter"><code>vertical</code></em> :</span></p></td>
|
2301
|
+
<td>The value to set for the vertical shift.</td>
|
2302
|
+
</tr>
|
2303
|
+
<tr>
|
2304
|
+
<td><p><span class="term"><em class="parameter"><code>horizontal</code></em> :</span></p></td>
|
2305
|
+
<td>The value to set for the vertical shift.</td>
|
2306
|
+
</tr>
|
2307
|
+
</tbody>
|
2308
|
+
</table></div>
|
2309
|
+
</div>
|
2310
|
+
<hr>
|
2311
|
+
<div class="refsect2">
|
2312
|
+
<a name="gtk-clist-set-selectable"></a><h3>gtk_clist_set_selectable ()</h3>
|
2313
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_selectable (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2314
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2315
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> selectable</code></em>);</pre>
|
2316
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2317
|
+
<h3 class="title">Warning</h3>
|
2318
|
+
<p><code class="literal">gtk_clist_set_selectable</code> is deprecated and should not be used in newly-written code.</p>
|
2319
|
+
</div>
|
2320
|
+
<p>
|
2321
|
+
Sets whether the specified row is selectable or not.
|
2322
|
+
</p>
|
2323
|
+
<div class="variablelist"><table border="0">
|
2324
|
+
<col align="left" valign="top">
|
2325
|
+
<tbody>
|
2326
|
+
<tr>
|
2327
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2328
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2329
|
+
</tr>
|
2330
|
+
<tr>
|
2331
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2332
|
+
<td>The row to affect.</td>
|
2333
|
+
</tr>
|
2334
|
+
<tr>
|
2335
|
+
<td><p><span class="term"><em class="parameter"><code>selectable</code></em> :</span></p></td>
|
2336
|
+
<td>
|
2337
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
|
2338
|
+
</tr>
|
2339
|
+
</tbody>
|
2340
|
+
</table></div>
|
2341
|
+
</div>
|
2342
|
+
<hr>
|
2343
|
+
<div class="refsect2">
|
2344
|
+
<a name="gtk-clist-get-selectable"></a><h3>gtk_clist_get_selectable ()</h3>
|
2345
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_clist_get_selectable (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2346
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>);</pre>
|
2347
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2348
|
+
<h3 class="title">Warning</h3>
|
2349
|
+
<p><code class="literal">gtk_clist_get_selectable</code> is deprecated and should not be used in newly-written code.</p>
|
2350
|
+
</div>
|
2351
|
+
<p>
|
2352
|
+
Gets whether the specified row is selectable or not.
|
2353
|
+
</p>
|
2354
|
+
<div class="variablelist"><table border="0">
|
2355
|
+
<col align="left" valign="top">
|
2356
|
+
<tbody>
|
2357
|
+
<tr>
|
2358
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2359
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2360
|
+
</tr>
|
2361
|
+
<tr>
|
2362
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2363
|
+
<td>The row to query.</td>
|
2364
|
+
</tr>
|
2365
|
+
<tr>
|
2366
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2367
|
+
<td>A <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> value.</td>
|
2368
|
+
</tr>
|
2369
|
+
</tbody>
|
2370
|
+
</table></div>
|
2371
|
+
</div>
|
2372
|
+
<hr>
|
2373
|
+
<div class="refsect2">
|
2374
|
+
<a name="gtk-clist-prepend"></a><h3>gtk_clist_prepend ()</h3>
|
2375
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_clist_prepend (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2376
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text[]</code></em>);</pre>
|
2377
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2378
|
+
<h3 class="title">Warning</h3>
|
2379
|
+
<p><code class="literal">gtk_clist_prepend</code> is deprecated and should not be used in newly-written code.</p>
|
2380
|
+
</div>
|
2381
|
+
<p>
|
2382
|
+
Adds a row to the CList at the top.
|
2383
|
+
</p>
|
2384
|
+
<div class="variablelist"><table border="0">
|
2385
|
+
<col align="left" valign="top">
|
2386
|
+
<tbody>
|
2387
|
+
<tr>
|
2388
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2389
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2390
|
+
</tr>
|
2391
|
+
<tr>
|
2392
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
2393
|
+
<td>An array of strings to add.</td>
|
2394
|
+
</tr>
|
2395
|
+
<tr>
|
2396
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2397
|
+
<td>The number of the row added.</td>
|
2398
|
+
</tr>
|
2399
|
+
</tbody>
|
2400
|
+
</table></div>
|
2401
|
+
</div>
|
2402
|
+
<hr>
|
2403
|
+
<div class="refsect2">
|
2404
|
+
<a name="gtk-clist-append"></a><h3>gtk_clist_append ()</h3>
|
2405
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_clist_append (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2406
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text[]</code></em>);</pre>
|
2407
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2408
|
+
<h3 class="title">Warning</h3>
|
2409
|
+
<p><code class="literal">gtk_clist_append</code> is deprecated and should not be used in newly-written code.</p>
|
2410
|
+
</div>
|
2411
|
+
<p>
|
2412
|
+
Adds a row to the CList at the bottom.
|
2413
|
+
</p>
|
2414
|
+
<div class="variablelist"><table border="0">
|
2415
|
+
<col align="left" valign="top">
|
2416
|
+
<tbody>
|
2417
|
+
<tr>
|
2418
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2419
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2420
|
+
</tr>
|
2421
|
+
<tr>
|
2422
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
2423
|
+
<td>An array of strings to add.</td>
|
2424
|
+
</tr>
|
2425
|
+
<tr>
|
2426
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2427
|
+
<td>The number of the row added.</td>
|
2428
|
+
</tr>
|
2429
|
+
</tbody>
|
2430
|
+
</table></div>
|
2431
|
+
</div>
|
2432
|
+
<hr>
|
2433
|
+
<div class="refsect2">
|
2434
|
+
<a name="gtk-clist-insert"></a><h3>gtk_clist_insert ()</h3>
|
2435
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_clist_insert (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2436
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2437
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text[]</code></em>);</pre>
|
2438
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2439
|
+
<h3 class="title">Warning</h3>
|
2440
|
+
<p><code class="literal">gtk_clist_insert</code> is deprecated and should not be used in newly-written code.</p>
|
2441
|
+
</div>
|
2442
|
+
<p>
|
2443
|
+
Adds a row of text to the CList at the specified position.
|
2444
|
+
</p>
|
2445
|
+
<div class="variablelist"><table border="0">
|
2446
|
+
<col align="left" valign="top">
|
2447
|
+
<tbody>
|
2448
|
+
<tr>
|
2449
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2450
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2451
|
+
</tr>
|
2452
|
+
<tr>
|
2453
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2454
|
+
<td>The row where the text should be inserted.</td>
|
2455
|
+
</tr>
|
2456
|
+
<tr>
|
2457
|
+
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
2458
|
+
<td>An array of string to add.</td>
|
2459
|
+
</tr>
|
2460
|
+
<tr>
|
2461
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2462
|
+
<td>The number of the row added.</td>
|
2463
|
+
</tr>
|
2464
|
+
</tbody>
|
2465
|
+
</table></div>
|
2466
|
+
</div>
|
2467
|
+
<hr>
|
2468
|
+
<div class="refsect2">
|
2469
|
+
<a name="gtk-clist-remove"></a><h3>gtk_clist_remove ()</h3>
|
2470
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_remove (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2471
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>);</pre>
|
2472
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2473
|
+
<h3 class="title">Warning</h3>
|
2474
|
+
<p><code class="literal">gtk_clist_remove</code> is deprecated and should not be used in newly-written code.</p>
|
2475
|
+
</div>
|
2476
|
+
<p>
|
2477
|
+
Removes the specified row from the CList.
|
2478
|
+
</p>
|
2479
|
+
<div class="variablelist"><table border="0">
|
2480
|
+
<col align="left" valign="top">
|
2481
|
+
<tbody>
|
2482
|
+
<tr>
|
2483
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2484
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2485
|
+
</tr>
|
2486
|
+
<tr>
|
2487
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2488
|
+
<td>The row to remove.</td>
|
2489
|
+
</tr>
|
2490
|
+
</tbody>
|
2491
|
+
</table></div>
|
2492
|
+
</div>
|
2493
|
+
<hr>
|
2494
|
+
<div class="refsect2">
|
2495
|
+
<a name="gtk-clist-set-row-data"></a><h3>gtk_clist_set_row_data ()</h3>
|
2496
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_row_data (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2497
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2498
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
2499
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2500
|
+
<h3 class="title">Warning</h3>
|
2501
|
+
<p><code class="literal">gtk_clist_set_row_data</code> is deprecated and should not be used in newly-written code.</p>
|
2502
|
+
</div>
|
2503
|
+
<p>
|
2504
|
+
Sets data for the specified row. This is the same as calling gtk_clist_set_row_data_full(clist, row, data, NULL).
|
2505
|
+
</p>
|
2506
|
+
<div class="variablelist"><table border="0">
|
2507
|
+
<col align="left" valign="top">
|
2508
|
+
<tbody>
|
2509
|
+
<tr>
|
2510
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2511
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2512
|
+
</tr>
|
2513
|
+
<tr>
|
2514
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2515
|
+
<td>The row to affect.</td>
|
2516
|
+
</tr>
|
2517
|
+
<tr>
|
2518
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2519
|
+
<td>The data to set for the row.</td>
|
2520
|
+
</tr>
|
2521
|
+
</tbody>
|
2522
|
+
</table></div>
|
2523
|
+
</div>
|
2524
|
+
<hr>
|
2525
|
+
<div class="refsect2">
|
2526
|
+
<a name="gtk-clist-set-row-data-full"></a><h3>gtk_clist_set_row_data_full ()</h3>
|
2527
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_row_data_full (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2528
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2529
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>,
|
2530
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> destroy</code></em>);</pre>
|
2531
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2532
|
+
<h3 class="title">Warning</h3>
|
2533
|
+
<p><code class="literal">gtk_clist_set_row_data_full</code> is deprecated and should not be used in newly-written code.</p>
|
2534
|
+
</div>
|
2535
|
+
<p>
|
2536
|
+
Sets the data for specified row, with a callback when the row is destroyed.
|
2537
|
+
</p>
|
2538
|
+
<div class="variablelist"><table border="0">
|
2539
|
+
<col align="left" valign="top">
|
2540
|
+
<tbody>
|
2541
|
+
<tr>
|
2542
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2543
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2544
|
+
</tr>
|
2545
|
+
<tr>
|
2546
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2547
|
+
<td>The row to affect.</td>
|
2548
|
+
</tr>
|
2549
|
+
<tr>
|
2550
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2551
|
+
<td>The data to set for the row.</td>
|
2552
|
+
</tr>
|
2553
|
+
<tr>
|
2554
|
+
<td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
|
2555
|
+
<td>A <a class="link" href="gtk-Types.html#GtkDestroyNotify" title="GtkDestroyNotify ()"><span class="type">GtkDestroyNotify</span></a> function to be called when the row is destroyed.</td>
|
2556
|
+
</tr>
|
2557
|
+
</tbody>
|
2558
|
+
</table></div>
|
2559
|
+
</div>
|
2560
|
+
<hr>
|
2561
|
+
<div class="refsect2">
|
2562
|
+
<a name="gtk-clist-get-row-data"></a><h3>gtk_clist_get_row_data ()</h3>
|
2563
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="returnvalue">gpointer</span></a> gtk_clist_get_row_data (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2564
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>);</pre>
|
2565
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2566
|
+
<h3 class="title">Warning</h3>
|
2567
|
+
<p><code class="literal">gtk_clist_get_row_data</code> is deprecated and should not be used in newly-written code.</p>
|
2568
|
+
</div>
|
2569
|
+
<p>
|
2570
|
+
Gets the currently set data for the specified row.
|
2571
|
+
</p>
|
2572
|
+
<div class="variablelist"><table border="0">
|
2573
|
+
<col align="left" valign="top">
|
2574
|
+
<tbody>
|
2575
|
+
<tr>
|
2576
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2577
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2578
|
+
</tr>
|
2579
|
+
<tr>
|
2580
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2581
|
+
<td>The row to query.</td>
|
2582
|
+
</tr>
|
2583
|
+
<tr>
|
2584
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2585
|
+
<td>The data set for the row.</td>
|
2586
|
+
</tr>
|
2587
|
+
</tbody>
|
2588
|
+
</table></div>
|
2589
|
+
</div>
|
2590
|
+
<hr>
|
2591
|
+
<div class="refsect2">
|
2592
|
+
<a name="gtk-clist-find-row-from-data"></a><h3>gtk_clist_find_row_from_data ()</h3>
|
2593
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_clist_find_row_from_data (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2594
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> data</code></em>);</pre>
|
2595
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2596
|
+
<h3 class="title">Warning</h3>
|
2597
|
+
<p><code class="literal">gtk_clist_find_row_from_data</code> is deprecated and should not be used in newly-written code.</p>
|
2598
|
+
</div>
|
2599
|
+
<p>
|
2600
|
+
Searches the CList for the row with the specified data.
|
2601
|
+
</p>
|
2602
|
+
<div class="variablelist"><table border="0">
|
2603
|
+
<col align="left" valign="top">
|
2604
|
+
<tbody>
|
2605
|
+
<tr>
|
2606
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2607
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to search.</td>
|
2608
|
+
</tr>
|
2609
|
+
<tr>
|
2610
|
+
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2611
|
+
<td>The data to search for a match.</td>
|
2612
|
+
</tr>
|
2613
|
+
<tr>
|
2614
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2615
|
+
<td>The number of the matching row, or -1 if no match could be found.</td>
|
2616
|
+
</tr>
|
2617
|
+
</tbody>
|
2618
|
+
</table></div>
|
2619
|
+
</div>
|
2620
|
+
<hr>
|
2621
|
+
<div class="refsect2">
|
2622
|
+
<a name="gtk-clist-select-row"></a><h3>gtk_clist_select_row ()</h3>
|
2623
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_select_row (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2624
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2625
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
2626
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2627
|
+
<h3 class="title">Warning</h3>
|
2628
|
+
<p><code class="literal">gtk_clist_select_row</code> is deprecated and should not be used in newly-written code.</p>
|
2629
|
+
</div>
|
2630
|
+
<p>
|
2631
|
+
Selects the specified row. Causes the "select-row" signal to be emitted for the specified row and column.
|
2632
|
+
</p>
|
2633
|
+
<div class="variablelist"><table border="0">
|
2634
|
+
<col align="left" valign="top">
|
2635
|
+
<tbody>
|
2636
|
+
<tr>
|
2637
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2638
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2639
|
+
</tr>
|
2640
|
+
<tr>
|
2641
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2642
|
+
<td>The row to select.</td>
|
2643
|
+
</tr>
|
2644
|
+
<tr>
|
2645
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
2646
|
+
<td>The column to select.</td>
|
2647
|
+
</tr>
|
2648
|
+
</tbody>
|
2649
|
+
</table></div>
|
2650
|
+
</div>
|
2651
|
+
<hr>
|
2652
|
+
<div class="refsect2">
|
2653
|
+
<a name="gtk-clist-unselect-row"></a><h3>gtk_clist_unselect_row ()</h3>
|
2654
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_unselect_row (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2655
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row</code></em>,
|
2656
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
2657
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2658
|
+
<h3 class="title">Warning</h3>
|
2659
|
+
<p><code class="literal">gtk_clist_unselect_row</code> is deprecated and should not be used in newly-written code.</p>
|
2660
|
+
</div>
|
2661
|
+
<p>
|
2662
|
+
Unselects the specified row. Causes the "unselect-row" signal to be emitted for the specified row and column.
|
2663
|
+
</p>
|
2664
|
+
<div class="variablelist"><table border="0">
|
2665
|
+
<col align="left" valign="top">
|
2666
|
+
<tbody>
|
2667
|
+
<tr>
|
2668
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2669
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2670
|
+
</tr>
|
2671
|
+
<tr>
|
2672
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2673
|
+
<td>The row to select.</td>
|
2674
|
+
</tr>
|
2675
|
+
<tr>
|
2676
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
2677
|
+
<td>The column to select.</td>
|
2678
|
+
</tr>
|
2679
|
+
</tbody>
|
2680
|
+
</table></div>
|
2681
|
+
</div>
|
2682
|
+
<hr>
|
2683
|
+
<div class="refsect2">
|
2684
|
+
<a name="gtk-clist-undo-selection"></a><h3>gtk_clist_undo_selection ()</h3>
|
2685
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_undo_selection (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
2686
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2687
|
+
<h3 class="title">Warning</h3>
|
2688
|
+
<p><code class="literal">gtk_clist_undo_selection</code> is deprecated and should not be used in newly-written code.</p>
|
2689
|
+
</div>
|
2690
|
+
<p>
|
2691
|
+
Undoes the last selection for an "extended selection mode" CList.
|
2692
|
+
</p>
|
2693
|
+
<div class="variablelist"><table border="0">
|
2694
|
+
<col align="left" valign="top">
|
2695
|
+
<tbody><tr>
|
2696
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2697
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2698
|
+
</tr></tbody>
|
2699
|
+
</table></div>
|
2700
|
+
</div>
|
2701
|
+
<hr>
|
2702
|
+
<div class="refsect2">
|
2703
|
+
<a name="gtk-clist-clear"></a><h3>gtk_clist_clear ()</h3>
|
2704
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_clear (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
2705
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2706
|
+
<h3 class="title">Warning</h3>
|
2707
|
+
<p><code class="literal">gtk_clist_clear</code> is deprecated and should not be used in newly-written code.</p>
|
2708
|
+
</div>
|
2709
|
+
<p>
|
2710
|
+
Removes all the CList's rows.
|
2711
|
+
</p>
|
2712
|
+
<div class="variablelist"><table border="0">
|
2713
|
+
<col align="left" valign="top">
|
2714
|
+
<tbody><tr>
|
2715
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2716
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2717
|
+
</tr></tbody>
|
2718
|
+
</table></div>
|
2719
|
+
</div>
|
2720
|
+
<hr>
|
2721
|
+
<div class="refsect2">
|
2722
|
+
<a name="gtk-clist-get-selection-info"></a><h3>gtk_clist_get_selection_info ()</h3>
|
2723
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_clist_get_selection_info (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2724
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> x</code></em>,
|
2725
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> y</code></em>,
|
2726
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *row</code></em>,
|
2727
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *column</code></em>);</pre>
|
2728
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2729
|
+
<h3 class="title">Warning</h3>
|
2730
|
+
<p><code class="literal">gtk_clist_get_selection_info</code> is deprecated and should not be used in newly-written code.</p>
|
2731
|
+
</div>
|
2732
|
+
<p>
|
2733
|
+
Gets the row and column at the specified pixel position in the CList.
|
2734
|
+
</p>
|
2735
|
+
<div class="variablelist"><table border="0">
|
2736
|
+
<col align="left" valign="top">
|
2737
|
+
<tbody>
|
2738
|
+
<tr>
|
2739
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2740
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2741
|
+
</tr>
|
2742
|
+
<tr>
|
2743
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
2744
|
+
<td>The horizontal pixel position to check.</td>
|
2745
|
+
</tr>
|
2746
|
+
<tr>
|
2747
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
2748
|
+
<td>The vertical pixel position to check..</td>
|
2749
|
+
</tr>
|
2750
|
+
<tr>
|
2751
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
2752
|
+
<td>Pointer to a <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> to store the row value.</td>
|
2753
|
+
</tr>
|
2754
|
+
<tr>
|
2755
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
2756
|
+
<td>Pointer to a <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> to store the column value.</td>
|
2757
|
+
</tr>
|
2758
|
+
<tr>
|
2759
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2760
|
+
<td>1 if row/column is returned and in range, 0 otherwise.</td>
|
2761
|
+
</tr>
|
2762
|
+
</tbody>
|
2763
|
+
</table></div>
|
2764
|
+
</div>
|
2765
|
+
<hr>
|
2766
|
+
<div class="refsect2">
|
2767
|
+
<a name="gtk-clist-select-all"></a><h3>gtk_clist_select_all ()</h3>
|
2768
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_select_all (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
2769
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2770
|
+
<h3 class="title">Warning</h3>
|
2771
|
+
<p><code class="literal">gtk_clist_select_all</code> is deprecated and should not be used in newly-written code.</p>
|
2772
|
+
</div>
|
2773
|
+
<p>
|
2774
|
+
Selects all rows in the CList. This function has no affect for a
|
2775
|
+
CList in "single" or "browse" selection mode.
|
2776
|
+
</p>
|
2777
|
+
<div class="variablelist"><table border="0">
|
2778
|
+
<col align="left" valign="top">
|
2779
|
+
<tbody><tr>
|
2780
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2781
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2782
|
+
</tr></tbody>
|
2783
|
+
</table></div>
|
2784
|
+
</div>
|
2785
|
+
<hr>
|
2786
|
+
<div class="refsect2">
|
2787
|
+
<a name="gtk-clist-unselect-all"></a><h3>gtk_clist_unselect_all ()</h3>
|
2788
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_unselect_all (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
2789
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2790
|
+
<h3 class="title">Warning</h3>
|
2791
|
+
<p><code class="literal">gtk_clist_unselect_all</code> is deprecated and should not be used in newly-written code.</p>
|
2792
|
+
</div>
|
2793
|
+
<p>
|
2794
|
+
Unselects all rows in the CList.
|
2795
|
+
</p>
|
2796
|
+
<div class="variablelist"><table border="0">
|
2797
|
+
<col align="left" valign="top">
|
2798
|
+
<tbody><tr>
|
2799
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2800
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2801
|
+
</tr></tbody>
|
2802
|
+
</table></div>
|
2803
|
+
</div>
|
2804
|
+
<hr>
|
2805
|
+
<div class="refsect2">
|
2806
|
+
<a name="gtk-clist-swap-rows"></a><h3>gtk_clist_swap_rows ()</h3>
|
2807
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_swap_rows (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2808
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row1</code></em>,
|
2809
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> row2</code></em>);</pre>
|
2810
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2811
|
+
<h3 class="title">Warning</h3>
|
2812
|
+
<p><code class="literal">gtk_clist_swap_rows</code> is deprecated and should not be used in newly-written code.</p>
|
2813
|
+
</div>
|
2814
|
+
<p>
|
2815
|
+
Swaps the two specified rows with each other.
|
2816
|
+
</p>
|
2817
|
+
<div class="variablelist"><table border="0">
|
2818
|
+
<col align="left" valign="top">
|
2819
|
+
<tbody>
|
2820
|
+
<tr>
|
2821
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2822
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2823
|
+
</tr>
|
2824
|
+
<tr>
|
2825
|
+
<td><p><span class="term"><em class="parameter"><code>row1</code></em> :</span></p></td>
|
2826
|
+
<td>Number of the first row.</td>
|
2827
|
+
</tr>
|
2828
|
+
<tr>
|
2829
|
+
<td><p><span class="term"><em class="parameter"><code>row2</code></em> :</span></p></td>
|
2830
|
+
<td>Number of the second row.</td>
|
2831
|
+
</tr>
|
2832
|
+
</tbody>
|
2833
|
+
</table></div>
|
2834
|
+
</div>
|
2835
|
+
<hr>
|
2836
|
+
<div class="refsect2">
|
2837
|
+
<a name="gtk-clist-set-compare-func"></a><h3>gtk_clist_set_compare_func ()</h3>
|
2838
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_compare_func (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2839
|
+
<em class="parameter"><code><a class="link" href="GtkCList.html#GtkCListCompareFunc" title="GtkCListCompareFunc ()"><span class="type">GtkCListCompareFunc</span></a> cmp_func</code></em>);</pre>
|
2840
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2841
|
+
<h3 class="title">Warning</h3>
|
2842
|
+
<p><code class="literal">gtk_clist_set_compare_func</code> is deprecated and should not be used in newly-written code.</p>
|
2843
|
+
</div>
|
2844
|
+
<p>
|
2845
|
+
Sets the compare function of the <span class="type">GtkClist</span> to <em class="parameter"><code>cmp_func</code></em>. If <em class="parameter"><code>cmp_func</code></em> is NULL,
|
2846
|
+
then the default compare function is used. The default compare function sorts
|
2847
|
+
ascending or with the type set by <a class="link" href="GtkCList.html#gtk-clist-set-sort-type" title="gtk_clist_set_sort_type ()"><code class="function">gtk_clist_set_sort_type()</code></a> by the column set
|
2848
|
+
by <a class="link" href="GtkCList.html#gtk-clist-set-sort-column" title="gtk_clist_set_sort_column ()"><code class="function">gtk_clist_set_sort_column()</code></a>.
|
2849
|
+
</p>
|
2850
|
+
<div class="variablelist"><table border="0">
|
2851
|
+
<col align="left" valign="top">
|
2852
|
+
<tbody>
|
2853
|
+
<tr>
|
2854
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2855
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2856
|
+
</tr>
|
2857
|
+
<tr>
|
2858
|
+
<td><p><span class="term"><em class="parameter"><code>cmp_func</code></em> :</span></p></td>
|
2859
|
+
<td>The <span class="type">GtkCompareFunction</span> to use.</td>
|
2860
|
+
</tr>
|
2861
|
+
</tbody>
|
2862
|
+
</table></div>
|
2863
|
+
</div>
|
2864
|
+
<hr>
|
2865
|
+
<div class="refsect2">
|
2866
|
+
<a name="gtk-clist-set-sort-column"></a><h3>gtk_clist_set_sort_column ()</h3>
|
2867
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_sort_column (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2868
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
2869
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2870
|
+
<h3 class="title">Warning</h3>
|
2871
|
+
<p><code class="literal">gtk_clist_set_sort_column</code> is deprecated and should not be used in newly-written code.</p>
|
2872
|
+
</div>
|
2873
|
+
<p>
|
2874
|
+
Sets the sort column of the clist. The sort column is used by the
|
2875
|
+
default compare function to determine which column to sort by.
|
2876
|
+
</p>
|
2877
|
+
<div class="variablelist"><table border="0">
|
2878
|
+
<col align="left" valign="top">
|
2879
|
+
<tbody>
|
2880
|
+
<tr>
|
2881
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2882
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2883
|
+
</tr>
|
2884
|
+
<tr>
|
2885
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
2886
|
+
<td>The column to sort by</td>
|
2887
|
+
</tr>
|
2888
|
+
</tbody>
|
2889
|
+
</table></div>
|
2890
|
+
</div>
|
2891
|
+
<hr>
|
2892
|
+
<div class="refsect2">
|
2893
|
+
<a name="gtk-clist-set-sort-type"></a><h3>gtk_clist_set_sort_type ()</h3>
|
2894
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_sort_type (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2895
|
+
<em class="parameter"><code><a class="link" href="gtk-Standard-Enumerations.html#GtkSortType" title="enum GtkSortType"><span class="type">GtkSortType</span></a> sort_type</code></em>);</pre>
|
2896
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2897
|
+
<h3 class="title">Warning</h3>
|
2898
|
+
<p><code class="literal">gtk_clist_set_sort_type</code> is deprecated and should not be used in newly-written code.</p>
|
2899
|
+
</div>
|
2900
|
+
<p>
|
2901
|
+
Sets the sort type of the <span class="type">GtkClist</span>. This is either GTK_SORT_ASCENDING for
|
2902
|
+
ascening sort or GTK_SORT_DESCENDING for descending sort.
|
2903
|
+
</p>
|
2904
|
+
<div class="variablelist"><table border="0">
|
2905
|
+
<col align="left" valign="top">
|
2906
|
+
<tbody>
|
2907
|
+
<tr>
|
2908
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2909
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2910
|
+
</tr>
|
2911
|
+
<tr>
|
2912
|
+
<td><p><span class="term"><em class="parameter"><code>sort_type</code></em> :</span></p></td>
|
2913
|
+
<td>the <a class="link" href="gtk-Standard-Enumerations.html#GtkSortType" title="enum GtkSortType"><span class="type">GtkSortType</span></a> to use</td>
|
2914
|
+
</tr>
|
2915
|
+
</tbody>
|
2916
|
+
</table></div>
|
2917
|
+
</div>
|
2918
|
+
<hr>
|
2919
|
+
<div class="refsect2">
|
2920
|
+
<a name="gtk-clist-sort"></a><h3>gtk_clist_sort ()</h3>
|
2921
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_sort (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
2922
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2923
|
+
<h3 class="title">Warning</h3>
|
2924
|
+
<p><code class="literal">gtk_clist_sort</code> is deprecated and should not be used in newly-written code.</p>
|
2925
|
+
</div>
|
2926
|
+
<p>
|
2927
|
+
Sorts the <span class="type">GtkClist</span> according to the current compare function, which
|
2928
|
+
can be set with the <a class="link" href="GtkCList.html#gtk-clist-set-compare-func" title="gtk_clist_set_compare_func ()"><code class="function">gtk_clist_set_compare_func()</code></a> function.
|
2929
|
+
</p>
|
2930
|
+
<div class="variablelist"><table border="0">
|
2931
|
+
<col align="left" valign="top">
|
2932
|
+
<tbody><tr>
|
2933
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2934
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to sort.</td>
|
2935
|
+
</tr></tbody>
|
2936
|
+
</table></div>
|
2937
|
+
</div>
|
2938
|
+
<hr>
|
2939
|
+
<div class="refsect2">
|
2940
|
+
<a name="gtk-clist-set-auto-sort"></a><h3>gtk_clist_set_auto_sort ()</h3>
|
2941
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_auto_sort (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2942
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> auto_sort</code></em>);</pre>
|
2943
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2944
|
+
<h3 class="title">Warning</h3>
|
2945
|
+
<p><code class="literal">gtk_clist_set_auto_sort</code> is deprecated and should not be used in newly-written code.</p>
|
2946
|
+
</div>
|
2947
|
+
<p>
|
2948
|
+
Turns on or off auto sort of the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a>. If auto sort is on, then the CList will be resorted when a row is inserted into the CList.
|
2949
|
+
</p>
|
2950
|
+
<div class="variablelist"><table border="0">
|
2951
|
+
<col align="left" valign="top">
|
2952
|
+
<tbody>
|
2953
|
+
<tr>
|
2954
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2955
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2956
|
+
</tr>
|
2957
|
+
<tr>
|
2958
|
+
<td><p><span class="term"><em class="parameter"><code>auto_sort</code></em> :</span></p></td>
|
2959
|
+
<td>whether auto sort should be on or off</td>
|
2960
|
+
</tr>
|
2961
|
+
</tbody>
|
2962
|
+
</table></div>
|
2963
|
+
</div>
|
2964
|
+
<hr>
|
2965
|
+
<div class="refsect2">
|
2966
|
+
<a name="gtk-clist-columns-autosize"></a><h3>gtk_clist_columns_autosize ()</h3>
|
2967
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_clist_columns_autosize (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
2968
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2969
|
+
<h3 class="title">Warning</h3>
|
2970
|
+
<p><code class="literal">gtk_clist_columns_autosize</code> is deprecated and should not be used in newly-written code.</p>
|
2971
|
+
</div>
|
2972
|
+
<p>
|
2973
|
+
Auto-sizes all columns in the CList and returns the total width of the CList.
|
2974
|
+
</p>
|
2975
|
+
<div class="variablelist"><table border="0">
|
2976
|
+
<col align="left" valign="top">
|
2977
|
+
<tbody>
|
2978
|
+
<tr>
|
2979
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
2980
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
2981
|
+
</tr>
|
2982
|
+
<tr>
|
2983
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2984
|
+
<td>The total width of the CList.</td>
|
2985
|
+
</tr>
|
2986
|
+
</tbody>
|
2987
|
+
</table></div>
|
2988
|
+
</div>
|
2989
|
+
<hr>
|
2990
|
+
<div class="refsect2">
|
2991
|
+
<a name="gtk-clist-get-column-title"></a><h3>gtk_clist_get_column_title ()</h3>
|
2992
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_clist_get_column_title (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
2993
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
2994
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
2995
|
+
<h3 class="title">Warning</h3>
|
2996
|
+
<p><code class="literal">gtk_clist_get_column_title</code> is deprecated and should not be used in newly-written code.</p>
|
2997
|
+
</div>
|
2998
|
+
<p>
|
2999
|
+
Gets the current title of the specified column
|
3000
|
+
</p>
|
3001
|
+
<div class="variablelist"><table border="0">
|
3002
|
+
<col align="left" valign="top">
|
3003
|
+
<tbody>
|
3004
|
+
<tr>
|
3005
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3006
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
3007
|
+
</tr>
|
3008
|
+
<tr>
|
3009
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
3010
|
+
<td>The column to query.</td>
|
3011
|
+
</tr>
|
3012
|
+
<tr>
|
3013
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3014
|
+
<td>The title of the column.</td>
|
3015
|
+
</tr>
|
3016
|
+
</tbody>
|
3017
|
+
</table></div>
|
3018
|
+
</div>
|
3019
|
+
<hr>
|
3020
|
+
<div class="refsect2">
|
3021
|
+
<a name="gtk-clist-get-column-widget"></a><h3>gtk_clist_get_column_widget ()</h3>
|
3022
|
+
<pre class="programlisting"><a class="link" href="GtkWidget.html" title="GtkWidget"><span class="returnvalue">GtkWidget</span></a> * gtk_clist_get_column_widget (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
3023
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> column</code></em>);</pre>
|
3024
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3025
|
+
<h3 class="title">Warning</h3>
|
3026
|
+
<p><code class="literal">gtk_clist_get_column_widget</code> is deprecated and should not be used in newly-written code.</p>
|
3027
|
+
</div>
|
3028
|
+
<p>
|
3029
|
+
Gets the widget in the column header for the specified column.
|
3030
|
+
</p>
|
3031
|
+
<div class="variablelist"><table border="0">
|
3032
|
+
<col align="left" valign="top">
|
3033
|
+
<tbody>
|
3034
|
+
<tr>
|
3035
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3036
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
3037
|
+
</tr>
|
3038
|
+
<tr>
|
3039
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
3040
|
+
<td>The column to query.</td>
|
3041
|
+
</tr>
|
3042
|
+
<tr>
|
3043
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3044
|
+
<td>Pointer to a <a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> for the column header.</td>
|
3045
|
+
</tr>
|
3046
|
+
</tbody>
|
3047
|
+
</table></div>
|
3048
|
+
</div>
|
3049
|
+
<hr>
|
3050
|
+
<div class="refsect2">
|
3051
|
+
<a name="gtk-clist-get-hadjustment"></a><h3>gtk_clist_get_hadjustment ()</h3>
|
3052
|
+
<pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * gtk_clist_get_hadjustment (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
3053
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3054
|
+
<h3 class="title">Warning</h3>
|
3055
|
+
<p><code class="literal">gtk_clist_get_hadjustment</code> is deprecated and should not be used in newly-written code.</p>
|
3056
|
+
</div>
|
3057
|
+
<p>
|
3058
|
+
Gets the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> currently being used for the horizontal
|
3059
|
+
aspect.
|
3060
|
+
</p>
|
3061
|
+
<div class="variablelist"><table border="0">
|
3062
|
+
<col align="left" valign="top">
|
3063
|
+
<tbody>
|
3064
|
+
<tr>
|
3065
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3066
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to check.</td>
|
3067
|
+
</tr>
|
3068
|
+
<tr>
|
3069
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3070
|
+
<td>A <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> object, or NULL if none is currently
|
3071
|
+
being used.</td>
|
3072
|
+
</tr>
|
3073
|
+
</tbody>
|
3074
|
+
</table></div>
|
3075
|
+
</div>
|
3076
|
+
<hr>
|
3077
|
+
<div class="refsect2">
|
3078
|
+
<a name="gtk-clist-get-vadjustment"></a><h3>gtk_clist_get_vadjustment ()</h3>
|
3079
|
+
<pre class="programlisting"><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="returnvalue">GtkAdjustment</span></a> * gtk_clist_get_vadjustment (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>);</pre>
|
3080
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3081
|
+
<h3 class="title">Warning</h3>
|
3082
|
+
<p><code class="literal">gtk_clist_get_vadjustment</code> is deprecated and should not be used in newly-written code.</p>
|
3083
|
+
</div>
|
3084
|
+
<p>
|
3085
|
+
Gets the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> currently being used for the vertical
|
3086
|
+
aspect.
|
3087
|
+
</p>
|
3088
|
+
<div class="variablelist"><table border="0">
|
3089
|
+
<col align="left" valign="top">
|
3090
|
+
<tbody>
|
3091
|
+
<tr>
|
3092
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3093
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to check.</td>
|
3094
|
+
</tr>
|
3095
|
+
<tr>
|
3096
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3097
|
+
<td>A <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> object, or NULL if none is currently
|
3098
|
+
being used.</td>
|
3099
|
+
</tr>
|
3100
|
+
</tbody>
|
3101
|
+
</table></div>
|
3102
|
+
</div>
|
3103
|
+
<hr>
|
3104
|
+
<div class="refsect2">
|
3105
|
+
<a name="gtk-clist-row-move"></a><h3>gtk_clist_row_move ()</h3>
|
3106
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_row_move (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
3107
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> source_row</code></em>,
|
3108
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dest_row</code></em>);</pre>
|
3109
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3110
|
+
<h3 class="title">Warning</h3>
|
3111
|
+
<p><code class="literal">gtk_clist_row_move</code> is deprecated and should not be used in newly-written code.</p>
|
3112
|
+
</div>
|
3113
|
+
<p>
|
3114
|
+
Allows you to move a row from one position to another in the
|
3115
|
+
list.
|
3116
|
+
</p>
|
3117
|
+
<div class="variablelist"><table border="0">
|
3118
|
+
<col align="left" valign="top">
|
3119
|
+
<tbody>
|
3120
|
+
<tr>
|
3121
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3122
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
3123
|
+
</tr>
|
3124
|
+
<tr>
|
3125
|
+
<td><p><span class="term"><em class="parameter"><code>source_row</code></em> :</span></p></td>
|
3126
|
+
<td>The original position of the row to move.</td>
|
3127
|
+
</tr>
|
3128
|
+
<tr>
|
3129
|
+
<td><p><span class="term"><em class="parameter"><code>dest_row</code></em> :</span></p></td>
|
3130
|
+
<td>The position to which the row should be moved.</td>
|
3131
|
+
</tr>
|
3132
|
+
</tbody>
|
3133
|
+
</table></div>
|
3134
|
+
</div>
|
3135
|
+
<hr>
|
3136
|
+
<div class="refsect2">
|
3137
|
+
<a name="gtk-clist-set-button-actions"></a><h3>gtk_clist_set_button_actions ()</h3>
|
3138
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_button_actions (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
3139
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> button</code></em>,
|
3140
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> button_actions</code></em>);</pre>
|
3141
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3142
|
+
<h3 class="title">Warning</h3>
|
3143
|
+
<p><code class="literal">gtk_clist_set_button_actions</code> is deprecated and should not be used in newly-written code.</p>
|
3144
|
+
</div>
|
3145
|
+
<p>
|
3146
|
+
Sets the action(s) that the specified mouse button will have
|
3147
|
+
on the CList.
|
3148
|
+
</p>
|
3149
|
+
<div class="variablelist"><table border="0">
|
3150
|
+
<col align="left" valign="top">
|
3151
|
+
<tbody>
|
3152
|
+
<tr>
|
3153
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3154
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
3155
|
+
</tr>
|
3156
|
+
<tr>
|
3157
|
+
<td><p><span class="term"><em class="parameter"><code>button</code></em> :</span></p></td>
|
3158
|
+
<td>The mouse button to set. The values here, unlike in the
|
3159
|
+
rest of GTK+ start from 0. For instance, the right mouse
|
3160
|
+
button, which is 3 elsewhere, should be given as 2 here.</td>
|
3161
|
+
</tr>
|
3162
|
+
<tr>
|
3163
|
+
<td><p><span class="term"><em class="parameter"><code>button_actions</code></em> :</span></p></td>
|
3164
|
+
<td>A logically OR'd value of <a class="link" href="GtkCList.html#GtkButtonAction" title="enum GtkButtonAction"><span class="type">GtkButtonAction</span></a> values
|
3165
|
+
for the button.</td>
|
3166
|
+
</tr>
|
3167
|
+
</tbody>
|
3168
|
+
</table></div>
|
3169
|
+
</div>
|
3170
|
+
<hr>
|
3171
|
+
<div class="refsect2">
|
3172
|
+
<a name="gtk-clist-set-hadjustment"></a><h3>gtk_clist_set_hadjustment ()</h3>
|
3173
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_hadjustment (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
3174
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
3175
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3176
|
+
<h3 class="title">Warning</h3>
|
3177
|
+
<p><code class="literal">gtk_clist_set_hadjustment</code> is deprecated and should not be used in newly-written code.</p>
|
3178
|
+
</div>
|
3179
|
+
<p>
|
3180
|
+
Allows you to set the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> to be used for the horizontal
|
3181
|
+
aspect of the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget.
|
3182
|
+
</p>
|
3183
|
+
<div class="variablelist"><table border="0">
|
3184
|
+
<col align="left" valign="top">
|
3185
|
+
<tbody>
|
3186
|
+
<tr>
|
3187
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3188
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
3189
|
+
</tr>
|
3190
|
+
<tr>
|
3191
|
+
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
3192
|
+
<td>A pointer to a <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> widget, or NULL.</td>
|
3193
|
+
</tr>
|
3194
|
+
</tbody>
|
3195
|
+
</table></div>
|
3196
|
+
</div>
|
3197
|
+
<hr>
|
3198
|
+
<div class="refsect2">
|
3199
|
+
<a name="gtk-clist-set-reorderable"></a><h3>gtk_clist_set_reorderable ()</h3>
|
3200
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_reorderable (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
3201
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> reorderable</code></em>);</pre>
|
3202
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3203
|
+
<h3 class="title">Warning</h3>
|
3204
|
+
<p><code class="literal">gtk_clist_set_reorderable</code> is deprecated and should not be used in newly-written code.</p>
|
3205
|
+
</div>
|
3206
|
+
<p>
|
3207
|
+
Sets whether the CList's rows are re-orderable using drag-and-drop.
|
3208
|
+
</p>
|
3209
|
+
<div class="variablelist"><table border="0">
|
3210
|
+
<col align="left" valign="top">
|
3211
|
+
<tbody>
|
3212
|
+
<tr>
|
3213
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3214
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
3215
|
+
</tr>
|
3216
|
+
<tr>
|
3217
|
+
<td><p><span class="term"><em class="parameter"><code>reorderable</code></em> :</span></p></td>
|
3218
|
+
<td>
|
3219
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
|
3220
|
+
</tr>
|
3221
|
+
</tbody>
|
3222
|
+
</table></div>
|
3223
|
+
</div>
|
3224
|
+
<hr>
|
3225
|
+
<div class="refsect2">
|
3226
|
+
<a name="gtk-clist-set-use-drag-icons"></a><h3>gtk_clist_set_use_drag_icons ()</h3>
|
3227
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_use_drag_icons (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
3228
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> use_icons</code></em>);</pre>
|
3229
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3230
|
+
<h3 class="title">Warning</h3>
|
3231
|
+
<p><code class="literal">gtk_clist_set_use_drag_icons</code> is deprecated and should not be used in newly-written code.</p>
|
3232
|
+
</div>
|
3233
|
+
<p>
|
3234
|
+
Determines whether the <span class="type">GtkClist</span> should use icons when
|
3235
|
+
doing drag-and-drop operations.
|
3236
|
+
</p>
|
3237
|
+
<div class="variablelist"><table border="0">
|
3238
|
+
<col align="left" valign="top">
|
3239
|
+
<tbody>
|
3240
|
+
<tr>
|
3241
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3242
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
3243
|
+
</tr>
|
3244
|
+
<tr>
|
3245
|
+
<td><p><span class="term"><em class="parameter"><code>use_icons</code></em> :</span></p></td>
|
3246
|
+
<td>
|
3247
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
|
3248
|
+
</tr>
|
3249
|
+
</tbody>
|
3250
|
+
</table></div>
|
3251
|
+
</div>
|
3252
|
+
<hr>
|
3253
|
+
<div class="refsect2">
|
3254
|
+
<a name="gtk-clist-set-vadjustment"></a><h3>gtk_clist_set_vadjustment ()</h3>
|
3255
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_clist_set_vadjustment (<em class="parameter"><code><a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist</code></em>,
|
3256
|
+
<em class="parameter"><code><a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *adjustment</code></em>);</pre>
|
3257
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
3258
|
+
<h3 class="title">Warning</h3>
|
3259
|
+
<p><code class="literal">gtk_clist_set_vadjustment</code> is deprecated and should not be used in newly-written code.</p>
|
3260
|
+
</div>
|
3261
|
+
<p>
|
3262
|
+
Allows you to set the <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> to be used for the vertical
|
3263
|
+
aspect of the <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> widget.
|
3264
|
+
</p>
|
3265
|
+
<div class="variablelist"><table border="0">
|
3266
|
+
<col align="left" valign="top">
|
3267
|
+
<tbody>
|
3268
|
+
<tr>
|
3269
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3270
|
+
<td>The <a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> to affect.</td>
|
3271
|
+
</tr>
|
3272
|
+
<tr>
|
3273
|
+
<td><p><span class="term"><em class="parameter"><code>adjustment</code></em> :</span></p></td>
|
3274
|
+
<td>A pointer to a <a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> widget, or NULL.</td>
|
3275
|
+
</tr>
|
3276
|
+
</tbody>
|
3277
|
+
</table></div>
|
3278
|
+
</div>
|
3279
|
+
</div>
|
3280
|
+
<div class="refsect1">
|
3281
|
+
<a name="GtkCList.property-details"></a><h2>Property Details</h2>
|
3282
|
+
<div class="refsect2">
|
3283
|
+
<a name="GtkCList--n-columns"></a><h3>The <code class="literal">"n-columns"</code> property</h3>
|
3284
|
+
<pre class="programlisting"> "n-columns" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write / Construct Only</pre>
|
3285
|
+
<p>
|
3286
|
+
An integer value for a column.
|
3287
|
+
</p>
|
3288
|
+
<p>Default value: 0</p>
|
3289
|
+
</div>
|
3290
|
+
<hr>
|
3291
|
+
<div class="refsect2">
|
3292
|
+
<a name="GtkCList--reorderable"></a><h3>The <code class="literal">"reorderable"</code> property</h3>
|
3293
|
+
<pre class="programlisting"> "reorderable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
3294
|
+
<p>
|
3295
|
+
A boolean value for determining if the user can re-order the CList's
|
3296
|
+
columns.
|
3297
|
+
</p>
|
3298
|
+
<p>Default value: FALSE</p>
|
3299
|
+
</div>
|
3300
|
+
<hr>
|
3301
|
+
<div class="refsect2">
|
3302
|
+
<a name="GtkCList--row-height"></a><h3>The <code class="literal">"row-height"</code> property</h3>
|
3303
|
+
<pre class="programlisting"> "row-height" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> : Read / Write</pre>
|
3304
|
+
<p>
|
3305
|
+
An integer value representing the height of a row in pixels.
|
3306
|
+
</p>
|
3307
|
+
<p>Default value: 0</p>
|
3308
|
+
</div>
|
3309
|
+
<hr>
|
3310
|
+
<div class="refsect2">
|
3311
|
+
<a name="GtkCList--selection-mode"></a><h3>The <code class="literal">"selection-mode"</code> property</h3>
|
3312
|
+
<pre class="programlisting"> "selection-mode" <a class="link" href="gtk-Standard-Enumerations.html#GtkSelectionMode" title="enum GtkSelectionMode"><span class="type">GtkSelectionMode</span></a> : Read / Write</pre>
|
3313
|
+
<p>
|
3314
|
+
Sets the type of selection mode for the CList.
|
3315
|
+
</p>
|
3316
|
+
<p>Default value: GTK_SELECTION_NONE</p>
|
3317
|
+
</div>
|
3318
|
+
<hr>
|
3319
|
+
<div class="refsect2">
|
3320
|
+
<a name="GtkCList--shadow-type"></a><h3>The <code class="literal">"shadow-type"</code> property</h3>
|
3321
|
+
<pre class="programlisting"> "shadow-type" <a class="link" href="gtk-Standard-Enumerations.html#GtkShadowType" title="enum GtkShadowType"><span class="type">GtkShadowType</span></a> : Read / Write</pre>
|
3322
|
+
<p>
|
3323
|
+
Sets the shadowing for the CList.
|
3324
|
+
</p>
|
3325
|
+
<p>Default value: GTK_SHADOW_NONE</p>
|
3326
|
+
</div>
|
3327
|
+
<hr>
|
3328
|
+
<div class="refsect2">
|
3329
|
+
<a name="GtkCList--sort-type"></a><h3>The <code class="literal">"sort-type"</code> property</h3>
|
3330
|
+
<pre class="programlisting"> "sort-type" <a class="link" href="gtk-Standard-Enumerations.html#GtkSortType" title="enum GtkSortType"><span class="type">GtkSortType</span></a> : Read / Write</pre>
|
3331
|
+
<p></p>
|
3332
|
+
<p>Default value: GTK_SORT_ASCENDING</p>
|
3333
|
+
</div>
|
3334
|
+
<hr>
|
3335
|
+
<div class="refsect2">
|
3336
|
+
<a name="GtkCList--titles-active"></a><h3>The <code class="literal">"titles-active"</code> property</h3>
|
3337
|
+
<pre class="programlisting"> "titles-active" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
3338
|
+
<p>
|
3339
|
+
A boolean value for setting whether the column titles can be
|
3340
|
+
clicked.
|
3341
|
+
</p>
|
3342
|
+
<p>Default value: FALSE</p>
|
3343
|
+
</div>
|
3344
|
+
<hr>
|
3345
|
+
<div class="refsect2">
|
3346
|
+
<a name="GtkCList--use-drag-icons"></a><h3>The <code class="literal">"use-drag-icons"</code> property</h3>
|
3347
|
+
<pre class="programlisting"> "use-drag-icons" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
3348
|
+
<p>
|
3349
|
+
A boolean value for setting whether to use icons during drag
|
3350
|
+
operations.
|
3351
|
+
</p>
|
3352
|
+
<p>Default value: FALSE</p>
|
3353
|
+
</div>
|
3354
|
+
</div>
|
3355
|
+
<div class="refsect1">
|
3356
|
+
<a name="GtkCList.signal-details"></a><h2>Signal Details</h2>
|
3357
|
+
<div class="refsect2">
|
3358
|
+
<a name="GtkCList-abort-column-resize"></a><h3>The <code class="literal">"abort-column-resize"</code> signal</h3>
|
3359
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3360
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3361
|
+
<p>
|
3362
|
+
This signal is emitted when a column resize is aborted.
|
3363
|
+
</p>
|
3364
|
+
<div class="variablelist"><table border="0">
|
3365
|
+
<col align="left" valign="top">
|
3366
|
+
<tbody>
|
3367
|
+
<tr>
|
3368
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3369
|
+
<td>the object which received the signal.</td>
|
3370
|
+
</tr>
|
3371
|
+
<tr>
|
3372
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3373
|
+
<td>user data set when the signal handler was connected.</td>
|
3374
|
+
</tr>
|
3375
|
+
</tbody>
|
3376
|
+
</table></div>
|
3377
|
+
</div>
|
3378
|
+
<hr>
|
3379
|
+
<div class="refsect2">
|
3380
|
+
<a name="GtkCList-click-column"></a><h3>The <code class="literal">"click-column"</code> signal</h3>
|
3381
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3382
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg1,
|
3383
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
|
3384
|
+
<p>
|
3385
|
+
This signal is emitted when a column title is clicked.
|
3386
|
+
</p>
|
3387
|
+
<div class="variablelist"><table border="0">
|
3388
|
+
<col align="left" valign="top">
|
3389
|
+
<tbody>
|
3390
|
+
<tr>
|
3391
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3392
|
+
<td>The object which received the signal.</td>
|
3393
|
+
</tr>
|
3394
|
+
<tr>
|
3395
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
3396
|
+
<td>The number of the column.</td>
|
3397
|
+
</tr>
|
3398
|
+
<tr>
|
3399
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3400
|
+
<td>user data set when the signal handler was connected.</td>
|
3401
|
+
</tr>
|
3402
|
+
</tbody>
|
3403
|
+
</table></div>
|
3404
|
+
</div>
|
3405
|
+
<hr>
|
3406
|
+
<div class="refsect2">
|
3407
|
+
<a name="GtkCList-end-selection"></a><h3>The <code class="literal">"end-selection"</code> signal</h3>
|
3408
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3409
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3410
|
+
<p>
|
3411
|
+
This signal is emitted when a selection ends in a
|
3412
|
+
multiple selection CList.
|
3413
|
+
</p>
|
3414
|
+
<div class="variablelist"><table border="0">
|
3415
|
+
<col align="left" valign="top">
|
3416
|
+
<tbody>
|
3417
|
+
<tr>
|
3418
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3419
|
+
<td>the object which received the signal.</td>
|
3420
|
+
</tr>
|
3421
|
+
<tr>
|
3422
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3423
|
+
<td>user data set when the signal handler was connected.</td>
|
3424
|
+
</tr>
|
3425
|
+
</tbody>
|
3426
|
+
</table></div>
|
3427
|
+
</div>
|
3428
|
+
<hr>
|
3429
|
+
<div class="refsect2">
|
3430
|
+
<a name="GtkCList-extend-selection"></a><h3>The <code class="literal">"extend-selection"</code> signal</h3>
|
3431
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3432
|
+
<a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> arg1,
|
3433
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> arg2,
|
3434
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> arg3,
|
3435
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3436
|
+
<p>
|
3437
|
+
This signal is emitted when the selection is extended.
|
3438
|
+
</p>
|
3439
|
+
<div class="variablelist"><table border="0">
|
3440
|
+
<col align="left" valign="top">
|
3441
|
+
<tbody>
|
3442
|
+
<tr>
|
3443
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3444
|
+
<td>the object which received the signal.</td>
|
3445
|
+
</tr>
|
3446
|
+
<tr>
|
3447
|
+
<td><p><span class="term"><em class="parameter"><code>scroll_type</code></em> :</span></p></td>
|
3448
|
+
<td>A <a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> value of any scrolling operation the
|
3449
|
+
occured during the selection.</td>
|
3450
|
+
</tr>
|
3451
|
+
<tr>
|
3452
|
+
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
3453
|
+
<td>A value between 0.0 and 1.0.</td>
|
3454
|
+
</tr>
|
3455
|
+
<tr>
|
3456
|
+
<td><p><span class="term"><em class="parameter"><code>auto_start_selection</code></em> :</span></p></td>
|
3457
|
+
<td>
|
3458
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a>.</td>
|
3459
|
+
</tr>
|
3460
|
+
<tr>
|
3461
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3462
|
+
<td>user data set when the signal handler was connected.</td>
|
3463
|
+
</tr>
|
3464
|
+
</tbody>
|
3465
|
+
</table></div>
|
3466
|
+
</div>
|
3467
|
+
<hr>
|
3468
|
+
<div class="refsect2">
|
3469
|
+
<a name="GtkCList-resize-column"></a><h3>The <code class="literal">"resize-column"</code> signal</h3>
|
3470
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3471
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg1,
|
3472
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg2,
|
3473
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
3474
|
+
<p>
|
3475
|
+
This signal is emitted when a column is resized.
|
3476
|
+
</p>
|
3477
|
+
<div class="variablelist"><table border="0">
|
3478
|
+
<col align="left" valign="top">
|
3479
|
+
<tbody>
|
3480
|
+
<tr>
|
3481
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3482
|
+
<td>The object which received the signal.</td>
|
3483
|
+
</tr>
|
3484
|
+
<tr>
|
3485
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
3486
|
+
<td>The number of the column</td>
|
3487
|
+
</tr>
|
3488
|
+
<tr>
|
3489
|
+
<td><p><span class="term"><em class="parameter"><code>width</code></em> :</span></p></td>
|
3490
|
+
<td>The new width of the column.</td>
|
3491
|
+
</tr>
|
3492
|
+
<tr>
|
3493
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3494
|
+
<td>user data set when the signal handler was connected.</td>
|
3495
|
+
</tr>
|
3496
|
+
</tbody>
|
3497
|
+
</table></div>
|
3498
|
+
</div>
|
3499
|
+
<hr>
|
3500
|
+
<div class="refsect2">
|
3501
|
+
<a name="GtkCList-row-move"></a><h3>The <code class="literal">"row-move"</code> signal</h3>
|
3502
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3503
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg1,
|
3504
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg2,
|
3505
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
3506
|
+
<p>
|
3507
|
+
This signal is emitted when a row is moved.
|
3508
|
+
</p>
|
3509
|
+
<div class="variablelist"><table border="0">
|
3510
|
+
<col align="left" valign="top">
|
3511
|
+
<tbody>
|
3512
|
+
<tr>
|
3513
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3514
|
+
<td>The object which received the signal.</td>
|
3515
|
+
</tr>
|
3516
|
+
<tr>
|
3517
|
+
<td><p><span class="term"><em class="parameter"><code>arg1</code></em> :</span></p></td>
|
3518
|
+
<td>The source position of the row.</td>
|
3519
|
+
</tr>
|
3520
|
+
<tr>
|
3521
|
+
<td><p><span class="term"><em class="parameter"><code>arg2</code></em> :</span></p></td>
|
3522
|
+
<td>The destination position of the row.</td>
|
3523
|
+
</tr>
|
3524
|
+
<tr>
|
3525
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3526
|
+
<td>user data set when the signal handler was connected.</td>
|
3527
|
+
</tr>
|
3528
|
+
</tbody>
|
3529
|
+
</table></div>
|
3530
|
+
</div>
|
3531
|
+
<hr>
|
3532
|
+
<div class="refsect2">
|
3533
|
+
<a name="GtkCList-scroll-horizontal"></a><h3>The <code class="literal">"scroll-horizontal"</code> signal</h3>
|
3534
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3535
|
+
<a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> arg1,
|
3536
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> arg2,
|
3537
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3538
|
+
<p>
|
3539
|
+
This signal is emitted when the CList is scrolled horizontally.
|
3540
|
+
</p>
|
3541
|
+
<div class="variablelist"><table border="0">
|
3542
|
+
<col align="left" valign="top">
|
3543
|
+
<tbody>
|
3544
|
+
<tr>
|
3545
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3546
|
+
<td>the object which received the signal.</td>
|
3547
|
+
</tr>
|
3548
|
+
<tr>
|
3549
|
+
<td><p><span class="term"><em class="parameter"><code>scroll_type</code></em> :</span></p></td>
|
3550
|
+
<td>A <a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> value of how the scroll operation occured.</td>
|
3551
|
+
</tr>
|
3552
|
+
<tr>
|
3553
|
+
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
3554
|
+
<td>a value between 0.0 and 1.0.</td>
|
3555
|
+
</tr>
|
3556
|
+
<tr>
|
3557
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3558
|
+
<td>user data set when the signal handler was connected.</td>
|
3559
|
+
</tr>
|
3560
|
+
</tbody>
|
3561
|
+
</table></div>
|
3562
|
+
</div>
|
3563
|
+
<hr>
|
3564
|
+
<div class="refsect2">
|
3565
|
+
<a name="GtkCList-scroll-vertical"></a><h3>The <code class="literal">"scroll-vertical"</code> signal</h3>
|
3566
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3567
|
+
<a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> arg1,
|
3568
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gfloat"><span class="type">gfloat</span></a> arg2,
|
3569
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3570
|
+
<p>
|
3571
|
+
This signal is emitted when the CList is scrolled vertically.
|
3572
|
+
</p>
|
3573
|
+
<div class="variablelist"><table border="0">
|
3574
|
+
<col align="left" valign="top">
|
3575
|
+
<tbody>
|
3576
|
+
<tr>
|
3577
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3578
|
+
<td>the object which received the signal.</td>
|
3579
|
+
</tr>
|
3580
|
+
<tr>
|
3581
|
+
<td><p><span class="term"><em class="parameter"><code>scroll_type</code></em> :</span></p></td>
|
3582
|
+
<td>A <a class="link" href="gtk-Standard-Enumerations.html#GtkScrollType" title="enum GtkScrollType"><span class="type">GtkScrollType</span></a> value of how the scroll operation occured.</td>
|
3583
|
+
</tr>
|
3584
|
+
<tr>
|
3585
|
+
<td><p><span class="term"><em class="parameter"><code>position</code></em> :</span></p></td>
|
3586
|
+
<td>A value between 0.0 and 1.0.</td>
|
3587
|
+
</tr>
|
3588
|
+
<tr>
|
3589
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3590
|
+
<td>user data set when the signal handler was connected.</td>
|
3591
|
+
</tr>
|
3592
|
+
</tbody>
|
3593
|
+
</table></div>
|
3594
|
+
</div>
|
3595
|
+
<hr>
|
3596
|
+
<div class="refsect2">
|
3597
|
+
<a name="GtkCList-select-all"></a><h3>The <code class="literal">"select-all"</code> signal</h3>
|
3598
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3599
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3600
|
+
<p>
|
3601
|
+
This signal is emitted when all the rows are selected in a CList.
|
3602
|
+
</p>
|
3603
|
+
<div class="variablelist"><table border="0">
|
3604
|
+
<col align="left" valign="top">
|
3605
|
+
<tbody>
|
3606
|
+
<tr>
|
3607
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3608
|
+
<td>the object which received the signal.</td>
|
3609
|
+
</tr>
|
3610
|
+
<tr>
|
3611
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3612
|
+
<td>user data set when the signal handler was connected.</td>
|
3613
|
+
</tr>
|
3614
|
+
</tbody>
|
3615
|
+
</table></div>
|
3616
|
+
</div>
|
3617
|
+
<hr>
|
3618
|
+
<div class="refsect2">
|
3619
|
+
<a name="GtkCList-select-row"></a><h3>The <code class="literal">"select-row"</code> signal</h3>
|
3620
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3621
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg1,
|
3622
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg2,
|
3623
|
+
<a href="../gdk/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *arg3,
|
3624
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
|
3625
|
+
<p>
|
3626
|
+
This signal is emitted when the user selects a row in the list.
|
3627
|
+
It is emitted for every row that is selected in a multi-selection or
|
3628
|
+
by calling <a class="link" href="GtkCList.html#gtk-clist-select-all" title="gtk_clist_select_all ()"><code class="function">gtk_clist_select_all()</code></a>.
|
3629
|
+
</p>
|
3630
|
+
<div class="variablelist"><table border="0">
|
3631
|
+
<col align="left" valign="top">
|
3632
|
+
<tbody>
|
3633
|
+
<tr>
|
3634
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3635
|
+
<td>The object which received the signal.</td>
|
3636
|
+
</tr>
|
3637
|
+
<tr>
|
3638
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
3639
|
+
<td>The row selected.</td>
|
3640
|
+
</tr>
|
3641
|
+
<tr>
|
3642
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
3643
|
+
<td>The column where the selection occured.</td>
|
3644
|
+
</tr>
|
3645
|
+
<tr>
|
3646
|
+
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
3647
|
+
<td>A <a href="../gdk/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> structure for the selection.</td>
|
3648
|
+
</tr>
|
3649
|
+
<tr>
|
3650
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3651
|
+
<td>user data set when the signal handler was connected.</td>
|
3652
|
+
</tr>
|
3653
|
+
</tbody>
|
3654
|
+
</table></div>
|
3655
|
+
</div>
|
3656
|
+
<hr>
|
3657
|
+
<div class="refsect2">
|
3658
|
+
<a name="GtkCList-set-scroll-adjustments"></a><h3>The <code class="literal">"set-scroll-adjustments"</code> signal</h3>
|
3659
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3660
|
+
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *arg1,
|
3661
|
+
<a class="link" href="GtkAdjustment.html" title="GtkAdjustment"><span class="type">GtkAdjustment</span></a> *arg2,
|
3662
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
3663
|
+
<p>
|
3664
|
+
</p>
|
3665
|
+
<div class="variablelist"><table border="0">
|
3666
|
+
<col align="left" valign="top">
|
3667
|
+
<tbody>
|
3668
|
+
<tr>
|
3669
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3670
|
+
<td>the object which received the signal.</td>
|
3671
|
+
</tr>
|
3672
|
+
<tr>
|
3673
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3674
|
+
<td>user data set when the signal handler was connected.</td>
|
3675
|
+
</tr>
|
3676
|
+
</tbody>
|
3677
|
+
</table></div>
|
3678
|
+
</div>
|
3679
|
+
<hr>
|
3680
|
+
<div class="refsect2">
|
3681
|
+
<a name="GtkCList-start-selection"></a><h3>The <code class="literal">"start-selection"</code> signal</h3>
|
3682
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3683
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3684
|
+
<p>
|
3685
|
+
This signal is emitted when a drag-selection is started in
|
3686
|
+
a multiple-selection CList.
|
3687
|
+
</p>
|
3688
|
+
<div class="variablelist"><table border="0">
|
3689
|
+
<col align="left" valign="top">
|
3690
|
+
<tbody>
|
3691
|
+
<tr>
|
3692
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3693
|
+
<td>the object which received the signal.</td>
|
3694
|
+
</tr>
|
3695
|
+
<tr>
|
3696
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3697
|
+
<td>user data set when the signal handler was connected.</td>
|
3698
|
+
</tr>
|
3699
|
+
</tbody>
|
3700
|
+
</table></div>
|
3701
|
+
</div>
|
3702
|
+
<hr>
|
3703
|
+
<div class="refsect2">
|
3704
|
+
<a name="GtkCList-toggle-add-mode"></a><h3>The <code class="literal">"toggle-add-mode"</code> signal</h3>
|
3705
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3706
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3707
|
+
<p>
|
3708
|
+
This signal is emitted when "add mode" is toggled.
|
3709
|
+
</p>
|
3710
|
+
<div class="variablelist"><table border="0">
|
3711
|
+
<col align="left" valign="top">
|
3712
|
+
<tbody>
|
3713
|
+
<tr>
|
3714
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3715
|
+
<td>the object which received the signal.</td>
|
3716
|
+
</tr>
|
3717
|
+
<tr>
|
3718
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3719
|
+
<td>user data set when the signal handler was connected.</td>
|
3720
|
+
</tr>
|
3721
|
+
</tbody>
|
3722
|
+
</table></div>
|
3723
|
+
</div>
|
3724
|
+
<hr>
|
3725
|
+
<div class="refsect2">
|
3726
|
+
<a name="GtkCList-toggle-focus-row"></a><h3>The <code class="literal">"toggle-focus-row"</code> signal</h3>
|
3727
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3728
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3729
|
+
<p>
|
3730
|
+
</p>
|
3731
|
+
<div class="variablelist"><table border="0">
|
3732
|
+
<col align="left" valign="top">
|
3733
|
+
<tbody>
|
3734
|
+
<tr>
|
3735
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3736
|
+
<td>The object which received the signal.</td>
|
3737
|
+
</tr>
|
3738
|
+
<tr>
|
3739
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3740
|
+
<td>user data set when the signal handler was connected.</td>
|
3741
|
+
</tr>
|
3742
|
+
</tbody>
|
3743
|
+
</table></div>
|
3744
|
+
</div>
|
3745
|
+
<hr>
|
3746
|
+
<div class="refsect2">
|
3747
|
+
<a name="GtkCList-undo-selection"></a><h3>The <code class="literal">"undo-selection"</code> signal</h3>
|
3748
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3749
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3750
|
+
<p>
|
3751
|
+
This signal is emitted when an undo selection occurs in the CList,
|
3752
|
+
probably via calling <a class="link" href="GtkCList.html#gtk-clist-undo-selection" title="gtk_clist_undo_selection ()"><code class="function">gtk_clist_undo_selection()</code></a>.
|
3753
|
+
</p>
|
3754
|
+
<div class="variablelist"><table border="0">
|
3755
|
+
<col align="left" valign="top">
|
3756
|
+
<tbody>
|
3757
|
+
<tr>
|
3758
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3759
|
+
<td>the object which received the signal.</td>
|
3760
|
+
</tr>
|
3761
|
+
<tr>
|
3762
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3763
|
+
<td>user data set when the signal handler was connected.</td>
|
3764
|
+
</tr>
|
3765
|
+
</tbody>
|
3766
|
+
</table></div>
|
3767
|
+
</div>
|
3768
|
+
<hr>
|
3769
|
+
<div class="refsect2">
|
3770
|
+
<a name="GtkCList-unselect-all"></a><h3>The <code class="literal">"unselect-all"</code> signal</h3>
|
3771
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3772
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-ACTION:CAPS"><code class="literal">Action</code></a></pre>
|
3773
|
+
<p>
|
3774
|
+
This signal is emitted when all rows are unselected in a CList.
|
3775
|
+
</p>
|
3776
|
+
<div class="variablelist"><table border="0">
|
3777
|
+
<col align="left" valign="top">
|
3778
|
+
<tbody>
|
3779
|
+
<tr>
|
3780
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3781
|
+
<td>the object which received the signal.</td>
|
3782
|
+
</tr>
|
3783
|
+
<tr>
|
3784
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3785
|
+
<td>user data set when the signal handler was connected.</td>
|
3786
|
+
</tr>
|
3787
|
+
</tbody>
|
3788
|
+
</table></div>
|
3789
|
+
</div>
|
3790
|
+
<hr>
|
3791
|
+
<div class="refsect2">
|
3792
|
+
<a name="GtkCList-unselect-row"></a><h3>The <code class="literal">"unselect-row"</code> signal</h3>
|
3793
|
+
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkCList.html" title="GtkCList"><span class="type">GtkCList</span></a> *clist,
|
3794
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg1,
|
3795
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> arg2,
|
3796
|
+
<a href="../gdk/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *arg3,
|
3797
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-FIRST:CAPS"><code class="literal">Run First</code></a></pre>
|
3798
|
+
<p>
|
3799
|
+
This signal is emitted when the user unselects a row in the list.
|
3800
|
+
It is emitted for every row that is unselected in a multi-selection or
|
3801
|
+
by calling <a class="link" href="GtkCList.html#gtk-clist-unselect-all" title="gtk_clist_unselect_all ()"><code class="function">gtk_clist_unselect_all()</code></a>. It is also emitted for the
|
3802
|
+
previously selected row in a "single" or "browse" mode CList.
|
3803
|
+
</p>
|
3804
|
+
<div class="variablelist"><table border="0">
|
3805
|
+
<col align="left" valign="top">
|
3806
|
+
<tbody>
|
3807
|
+
<tr>
|
3808
|
+
<td><p><span class="term"><em class="parameter"><code>clist</code></em> :</span></p></td>
|
3809
|
+
<td>The object which received the signal.</td>
|
3810
|
+
</tr>
|
3811
|
+
<tr>
|
3812
|
+
<td><p><span class="term"><em class="parameter"><code>row</code></em> :</span></p></td>
|
3813
|
+
<td>The selected row</td>
|
3814
|
+
</tr>
|
3815
|
+
<tr>
|
3816
|
+
<td><p><span class="term"><em class="parameter"><code>column</code></em> :</span></p></td>
|
3817
|
+
<td>The column where the selection occured.</td>
|
3818
|
+
</tr>
|
3819
|
+
<tr>
|
3820
|
+
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3821
|
+
<td>user data set when the signal handler was connected.</td>
|
3822
|
+
</tr>
|
3823
|
+
</tbody>
|
3824
|
+
</table></div>
|
3825
|
+
</div>
|
3826
|
+
</div>
|
3827
|
+
</div>
|
3828
|
+
<div class="footer">
|
3829
|
+
<hr>
|
3830
|
+
Generated by GTK-Doc V1.18</div>
|
3831
|
+
</body>
|
3832
|
+
</html>
|