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,1653 @@
|
|
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>Graphics Contexts</title>
|
6
|
+
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
|
7
|
+
<link rel="home" href="index.html" title="GDK 2 Reference Manual">
|
8
|
+
<link rel="up" href="reference.html" title="API Reference">
|
9
|
+
<link rel="prev" href="gdk-Points-Rectangles-and-Regions.html" title="Points, Rectangles and Regions">
|
10
|
+
<link rel="next" href="gdk-Drawing-Primitives.html" title="Drawing Primitives">
|
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="gdk-Points-Rectangles-and-Regions.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
|
+
<td><a accesskey="u" href="reference.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">GDK 2 Reference Manual</th>
|
21
|
+
<td><a accesskey="n" href="gdk-Drawing-Primitives.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="#gdk-Graphics-Contexts.synopsis" class="shortcut">Top</a>
|
25
|
+
|
|
26
|
+
<a href="#gdk-Graphics-Contexts.description" class="shortcut">Description</a>
|
27
|
+
|
|
28
|
+
<a href="#gdk-Graphics-Contexts.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
29
|
+
</td></tr>
|
30
|
+
</table>
|
31
|
+
<div class="refentry">
|
32
|
+
<a name="gdk-Graphics-Contexts"></a><div class="titlepage"></div>
|
33
|
+
<div class="refnamediv"><table width="100%"><tr>
|
34
|
+
<td valign="top">
|
35
|
+
<h2><span class="refentrytitle"><a name="gdk-Graphics-Contexts.top_of_page"></a>Graphics Contexts</span></h2>
|
36
|
+
<p>Graphics Contexts — Objects to encapsulate drawing properties</p>
|
37
|
+
</td>
|
38
|
+
<td valign="top" align="right"></td>
|
39
|
+
</tr></table></div>
|
40
|
+
<div class="refsynopsisdiv">
|
41
|
+
<a name="gdk-Graphics-Contexts.synopsis"></a><h2>Synopsis</h2>
|
42
|
+
<a name="GdkGC"></a><pre class="synopsis">
|
43
|
+
#include <gdk/gdk.h>
|
44
|
+
|
45
|
+
<a class="link" href="gdk-Graphics-Contexts.html#GdkGC-struct" title="GdkGC">GdkGC</a>;
|
46
|
+
struct <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues">GdkGCValues</a>;
|
47
|
+
enum <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask">GdkGCValuesMask</a>;
|
48
|
+
enum <a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction">GdkFunction</a>;
|
49
|
+
<a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-new" title="gdk_gc_new ()">gdk_gc_new</a> (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);
|
50
|
+
<a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-new-with-values" title="gdk_gc_new_with_values ()">gdk_gc_new_with_values</a> (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
|
51
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
52
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);
|
53
|
+
<a class="link" href="GdkScreen.html" title="GdkScreen"><span class="returnvalue">GdkScreen</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-screen" title="gdk_gc_get_screen ()">gdk_gc_get_screen</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
|
54
|
+
<a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-ref" title="gdk_gc_ref ()">gdk_gc_ref</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
|
55
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-unref" title="gdk_gc_unref ()">gdk_gc_unref</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
|
56
|
+
#define <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-destroy" title="gdk_gc_destroy">gdk_gc_destroy</a>
|
57
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-values" title="gdk_gc_set_values ()">gdk_gc_set_values</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
58
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
59
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);
|
60
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()">gdk_gc_get_values</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
61
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);
|
62
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-foreground" title="gdk_gc_set_foreground ()">gdk_gc_set_foreground</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
63
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
|
64
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-background" title="gdk_gc_set_background ()">gdk_gc_set_background</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
65
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
|
66
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-rgb-fg-color" title="gdk_gc_set_rgb_fg_color ()">gdk_gc_set_rgb_fg_color</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
67
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
|
68
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-rgb-bg-color" title="gdk_gc_set_rgb_bg_color ()">gdk_gc_set_rgb_bg_color</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
69
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);
|
70
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-font" title="gdk_gc_set_font ()">gdk_gc_set_font</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
71
|
+
<em class="parameter"><code><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);
|
72
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-function" title="gdk_gc_set_function ()">gdk_gc_set_function</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
73
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> function</code></em>);
|
74
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-fill" title="gdk_gc_set_fill ()">gdk_gc_set_fill</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
75
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkFill" title="enum GdkFill"><span class="type">GdkFill</span></a> fill</code></em>);
|
76
|
+
enum <a class="link" href="gdk-Graphics-Contexts.html#GdkFill" title="enum GdkFill">GdkFill</a>;
|
77
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-tile" title="gdk_gc_set_tile ()">gdk_gc_set_tile</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
78
|
+
<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *tile</code></em>);
|
79
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-stipple" title="gdk_gc_set_stipple ()">gdk_gc_set_stipple</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
80
|
+
<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *stipple</code></em>);
|
81
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-ts-origin" title="gdk_gc_set_ts_origin ()">gdk_gc_set_ts_origin</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
82
|
+
<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>,
|
83
|
+
<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>);
|
84
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()">gdk_gc_set_clip_origin</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
85
|
+
<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>,
|
86
|
+
<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>);
|
87
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-mask" title="gdk_gc_set_clip_mask ()">gdk_gc_set_clip_mask</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
88
|
+
<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkBitmap" title="GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);
|
89
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-rectangle" title="gdk_gc_set_clip_rectangle ()">gdk_gc_set_clip_rectangle</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
90
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="struct GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);
|
91
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-region" title="gdk_gc_set_clip_region ()">gdk_gc_set_clip_region</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
92
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a> *region</code></em>);
|
93
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-subwindow" title="gdk_gc_set_subwindow ()">gdk_gc_set_subwindow</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
94
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode"><span class="type">GdkSubwindowMode</span></a> mode</code></em>);
|
95
|
+
enum <a class="link" href="gdk-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode">GdkSubwindowMode</a>;
|
96
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-exposures" title="gdk_gc_set_exposures ()">gdk_gc_set_exposures</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
97
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> exposures</code></em>);
|
98
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-line-attributes" title="gdk_gc_set_line_attributes ()">gdk_gc_set_line_attributes</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</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> line_width</code></em>,
|
100
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle"><span class="type">GdkLineStyle</span></a> line_style</code></em>,
|
101
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle"><span class="type">GdkCapStyle</span></a> cap_style</code></em>,
|
102
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle"><span class="type">GdkJoinStyle</span></a> join_style</code></em>);
|
103
|
+
enum <a class="link" href="gdk-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle">GdkLineStyle</a>;
|
104
|
+
enum <a class="link" href="gdk-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle">GdkCapStyle</a>;
|
105
|
+
enum <a class="link" href="gdk-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle">GdkJoinStyle</a>;
|
106
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-dashes" title="gdk_gc_set_dashes ()">gdk_gc_set_dashes</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
107
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dash_offset</code></em>,
|
108
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> dash_list[]</code></em>,
|
109
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n</code></em>);
|
110
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-copy" title="gdk_gc_copy ()">gdk_gc_copy</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *dst_gc</code></em>,
|
111
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *src_gc</code></em>);
|
112
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-colormap" title="gdk_gc_set_colormap ()">gdk_gc_set_colormap</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
113
|
+
<em class="parameter"><code><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>);
|
114
|
+
<a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a> * <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-colormap" title="gdk_gc_get_colormap ()">gdk_gc_get_colormap</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);
|
115
|
+
<span class="returnvalue">void</span> <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-offset" title="gdk_gc_offset ()">gdk_gc_offset</a> (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
116
|
+
<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_offset</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> y_offset</code></em>);
|
118
|
+
</pre>
|
119
|
+
</div>
|
120
|
+
<div class="refsect1">
|
121
|
+
<a name="gdk-Graphics-Contexts.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
122
|
+
<pre class="synopsis">
|
123
|
+
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
124
|
+
+----GdkGC
|
125
|
+
</pre>
|
126
|
+
</div>
|
127
|
+
<div class="refsect1">
|
128
|
+
<a name="gdk-Graphics-Contexts.description"></a><h2>Description</h2>
|
129
|
+
<p>
|
130
|
+
All drawing operations in GDK take a
|
131
|
+
<em class="firstterm">graphics context</em> (GC) argument.
|
132
|
+
A graphics context encapsulates information about
|
133
|
+
the way things are drawn, such as the foreground
|
134
|
+
color or line width. By using graphics contexts,
|
135
|
+
the number of arguments to each drawing call is
|
136
|
+
greatly reduced, and communication overhead is
|
137
|
+
minimized, since identical arguments do not need
|
138
|
+
to be passed repeatedly.
|
139
|
+
</p>
|
140
|
+
<p>
|
141
|
+
Most values of a graphics context can be set at
|
142
|
+
creation time by using <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-new-with-values" title="gdk_gc_new_with_values ()"><code class="function">gdk_gc_new_with_values()</code></a>,
|
143
|
+
or can be set one-by-one using functions such
|
144
|
+
as <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-foreground" title="gdk_gc_set_foreground ()"><code class="function">gdk_gc_set_foreground()</code></a>. A few of the values
|
145
|
+
in the GC, such as the dash pattern, can only
|
146
|
+
be set by the latter method.
|
147
|
+
</p>
|
148
|
+
</div>
|
149
|
+
<div class="refsect1">
|
150
|
+
<a name="gdk-Graphics-Contexts.details"></a><h2>Details</h2>
|
151
|
+
<div class="refsect2">
|
152
|
+
<a name="GdkGC-struct"></a><h3>GdkGC</h3>
|
153
|
+
<pre class="programlisting">typedef struct _GdkGC GdkGC;</pre>
|
154
|
+
<p>
|
155
|
+
The <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> structure represents a graphics context.
|
156
|
+
It is an opaque structure with no user-visible
|
157
|
+
elements.
|
158
|
+
</p>
|
159
|
+
</div>
|
160
|
+
<hr>
|
161
|
+
<div class="refsect2">
|
162
|
+
<a name="GdkGCValues"></a><h3>struct GdkGCValues</h3>
|
163
|
+
<pre class="programlisting">struct GdkGCValues {
|
164
|
+
GdkColor foreground;
|
165
|
+
GdkColor background;
|
166
|
+
GdkFont *font;
|
167
|
+
GdkFunction function;
|
168
|
+
GdkFill fill;
|
169
|
+
GdkPixmap *tile;
|
170
|
+
GdkPixmap *stipple;
|
171
|
+
GdkPixmap *clip_mask;
|
172
|
+
GdkSubwindowMode subwindow_mode;
|
173
|
+
gint ts_x_origin;
|
174
|
+
gint ts_y_origin;
|
175
|
+
gint clip_x_origin;
|
176
|
+
gint clip_y_origin;
|
177
|
+
gint graphics_exposures;
|
178
|
+
gint line_width;
|
179
|
+
GdkLineStyle line_style;
|
180
|
+
GdkCapStyle cap_style;
|
181
|
+
GdkJoinStyle join_style;
|
182
|
+
};
|
183
|
+
</pre>
|
184
|
+
<p>
|
185
|
+
The <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure holds a set of values used
|
186
|
+
to create or modify a graphics context.
|
187
|
+
</p>
|
188
|
+
<div class="variablelist"><table border="0">
|
189
|
+
<col align="left" valign="top">
|
190
|
+
<tbody>
|
191
|
+
<tr>
|
192
|
+
<td><p><span class="term"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> <em class="structfield"><code><a name="GdkGCValues.foreground"></a>foreground</code></em>;</span></p></td>
|
193
|
+
<td>the foreground color. Note that <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()"><code class="function">gdk_gc_get_values()</code></a>
|
194
|
+
only sets the pixel value.</td>
|
195
|
+
</tr>
|
196
|
+
<tr>
|
197
|
+
<td><p><span class="term"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> <em class="structfield"><code><a name="GdkGCValues.background"></a>background</code></em>;</span></p></td>
|
198
|
+
<td>the background color. Note that <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-get-values" title="gdk_gc_get_values ()"><code class="function">gdk_gc_get_values()</code></a>
|
199
|
+
only sets the pixel value.</td>
|
200
|
+
</tr>
|
201
|
+
<tr>
|
202
|
+
<td><p><span class="term"><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *<em class="structfield"><code><a name="GdkGCValues.font"></a>font</code></em>;</span></p></td>
|
203
|
+
<td>the default font.</td>
|
204
|
+
</tr>
|
205
|
+
<tr>
|
206
|
+
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> <em class="structfield"><code><a name="GdkGCValues.function"></a>function</code></em>;</span></p></td>
|
207
|
+
<td>the bitwise operation used when drawing.</td>
|
208
|
+
</tr>
|
209
|
+
<tr>
|
210
|
+
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkFill" title="enum GdkFill"><span class="type">GdkFill</span></a> <em class="structfield"><code><a name="GdkGCValues.fill"></a>fill</code></em>;</span></p></td>
|
211
|
+
<td>the fill style.</td>
|
212
|
+
</tr>
|
213
|
+
<tr>
|
214
|
+
<td><p><span class="term"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.tile"></a>tile</code></em>;</span></p></td>
|
215
|
+
<td>the tile pixmap.</td>
|
216
|
+
</tr>
|
217
|
+
<tr>
|
218
|
+
<td><p><span class="term"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.stipple"></a>stipple</code></em>;</span></p></td>
|
219
|
+
<td>the stipple bitmap.</td>
|
220
|
+
</tr>
|
221
|
+
<tr>
|
222
|
+
<td><p><span class="term"><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *<em class="structfield"><code><a name="GdkGCValues.clip-mask"></a>clip_mask</code></em>;</span></p></td>
|
223
|
+
<td>the clip mask bitmap.</td>
|
224
|
+
</tr>
|
225
|
+
<tr>
|
226
|
+
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode"><span class="type">GdkSubwindowMode</span></a> <em class="structfield"><code><a name="GdkGCValues.subwindow-mode"></a>subwindow_mode</code></em>;</span></p></td>
|
227
|
+
<td>the subwindow mode.</td>
|
228
|
+
</tr>
|
229
|
+
<tr>
|
230
|
+
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.ts-x-origin"></a>ts_x_origin</code></em>;</span></p></td>
|
231
|
+
<td>the x origin of the tile or stipple.</td>
|
232
|
+
</tr>
|
233
|
+
<tr>
|
234
|
+
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.ts-y-origin"></a>ts_y_origin</code></em>;</span></p></td>
|
235
|
+
<td>the y origin of the tile or stipple.</td>
|
236
|
+
</tr>
|
237
|
+
<tr>
|
238
|
+
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.clip-x-origin"></a>clip_x_origin</code></em>;</span></p></td>
|
239
|
+
<td>the x origin of the clip mask.</td>
|
240
|
+
</tr>
|
241
|
+
<tr>
|
242
|
+
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.clip-y-origin"></a>clip_y_origin</code></em>;</span></p></td>
|
243
|
+
<td>the y origin of the clip mask.</td>
|
244
|
+
</tr>
|
245
|
+
<tr>
|
246
|
+
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.graphics-exposures"></a>graphics_exposures</code></em>;</span></p></td>
|
247
|
+
<td>whether graphics exposures are enabled.</td>
|
248
|
+
</tr>
|
249
|
+
<tr>
|
250
|
+
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> <em class="structfield"><code><a name="GdkGCValues.line-width"></a>line_width</code></em>;</span></p></td>
|
251
|
+
<td>the line width.</td>
|
252
|
+
</tr>
|
253
|
+
<tr>
|
254
|
+
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle"><span class="type">GdkLineStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.line-style"></a>line_style</code></em>;</span></p></td>
|
255
|
+
<td>the way dashed lines are drawn.</td>
|
256
|
+
</tr>
|
257
|
+
<tr>
|
258
|
+
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle"><span class="type">GdkCapStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.cap-style"></a>cap_style</code></em>;</span></p></td>
|
259
|
+
<td>the way the ends of lines are drawn.</td>
|
260
|
+
</tr>
|
261
|
+
<tr>
|
262
|
+
<td><p><span class="term"><a class="link" href="gdk-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle"><span class="type">GdkJoinStyle</span></a> <em class="structfield"><code><a name="GdkGCValues.join-style"></a>join_style</code></em>;</span></p></td>
|
263
|
+
<td>the way joins between lines are drawn.</td>
|
264
|
+
</tr>
|
265
|
+
</tbody>
|
266
|
+
</table></div>
|
267
|
+
</div>
|
268
|
+
<hr>
|
269
|
+
<div class="refsect2">
|
270
|
+
<a name="GdkGCValuesMask"></a><h3>enum GdkGCValuesMask</h3>
|
271
|
+
<pre class="programlisting">typedef enum {
|
272
|
+
GDK_GC_FOREGROUND = 1 << 0,
|
273
|
+
GDK_GC_BACKGROUND = 1 << 1,
|
274
|
+
GDK_GC_FONT = 1 << 2,
|
275
|
+
GDK_GC_FUNCTION = 1 << 3,
|
276
|
+
GDK_GC_FILL = 1 << 4,
|
277
|
+
GDK_GC_TILE = 1 << 5,
|
278
|
+
GDK_GC_STIPPLE = 1 << 6,
|
279
|
+
GDK_GC_CLIP_MASK = 1 << 7,
|
280
|
+
GDK_GC_SUBWINDOW = 1 << 8,
|
281
|
+
GDK_GC_TS_X_ORIGIN = 1 << 9,
|
282
|
+
GDK_GC_TS_Y_ORIGIN = 1 << 10,
|
283
|
+
GDK_GC_CLIP_X_ORIGIN = 1 << 11,
|
284
|
+
GDK_GC_CLIP_Y_ORIGIN = 1 << 12,
|
285
|
+
GDK_GC_EXPOSURES = 1 << 13,
|
286
|
+
GDK_GC_LINE_WIDTH = 1 << 14,
|
287
|
+
GDK_GC_LINE_STYLE = 1 << 15,
|
288
|
+
GDK_GC_CAP_STYLE = 1 << 16,
|
289
|
+
GDK_GC_JOIN_STYLE = 1 << 17
|
290
|
+
} GdkGCValuesMask;
|
291
|
+
</pre>
|
292
|
+
<p>
|
293
|
+
A set of bit flags used to indicate which fields
|
294
|
+
<a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure are set.
|
295
|
+
</p>
|
296
|
+
<div class="variablelist"><table border="0">
|
297
|
+
<col align="left" valign="top">
|
298
|
+
<tbody>
|
299
|
+
<tr>
|
300
|
+
<td><p><a name="GDK-GC-FOREGROUND:CAPS"></a><span class="term"><code class="literal">GDK_GC_FOREGROUND</code></span></p></td>
|
301
|
+
<td>the <em class="parameter"><code>foreground</code></em> is set.
|
302
|
+
</td>
|
303
|
+
</tr>
|
304
|
+
<tr>
|
305
|
+
<td><p><a name="GDK-GC-BACKGROUND:CAPS"></a><span class="term"><code class="literal">GDK_GC_BACKGROUND</code></span></p></td>
|
306
|
+
<td>the <em class="parameter"><code>background</code></em> is set.
|
307
|
+
</td>
|
308
|
+
</tr>
|
309
|
+
<tr>
|
310
|
+
<td><p><a name="GDK-GC-FONT:CAPS"></a><span class="term"><code class="literal">GDK_GC_FONT</code></span></p></td>
|
311
|
+
<td>the <em class="parameter"><code>font</code></em> is set.
|
312
|
+
</td>
|
313
|
+
</tr>
|
314
|
+
<tr>
|
315
|
+
<td><p><a name="GDK-GC-FUNCTION:CAPS"></a><span class="term"><code class="literal">GDK_GC_FUNCTION</code></span></p></td>
|
316
|
+
<td>the <em class="parameter"><code>function</code></em> is set.
|
317
|
+
</td>
|
318
|
+
</tr>
|
319
|
+
<tr>
|
320
|
+
<td><p><a name="GDK-GC-FILL:CAPS"></a><span class="term"><code class="literal">GDK_GC_FILL</code></span></p></td>
|
321
|
+
<td>the <em class="parameter"><code>fill</code></em> is set.
|
322
|
+
</td>
|
323
|
+
</tr>
|
324
|
+
<tr>
|
325
|
+
<td><p><a name="GDK-GC-TILE:CAPS"></a><span class="term"><code class="literal">GDK_GC_TILE</code></span></p></td>
|
326
|
+
<td>the <em class="parameter"><code>tile</code></em> is set.
|
327
|
+
</td>
|
328
|
+
</tr>
|
329
|
+
<tr>
|
330
|
+
<td><p><a name="GDK-GC-STIPPLE:CAPS"></a><span class="term"><code class="literal">GDK_GC_STIPPLE</code></span></p></td>
|
331
|
+
<td>the <em class="parameter"><code>stipple</code></em> is set.
|
332
|
+
</td>
|
333
|
+
</tr>
|
334
|
+
<tr>
|
335
|
+
<td><p><a name="GDK-GC-CLIP-MASK:CAPS"></a><span class="term"><code class="literal">GDK_GC_CLIP_MASK</code></span></p></td>
|
336
|
+
<td>the <em class="parameter"><code>clip_mask</code></em> is set.
|
337
|
+
</td>
|
338
|
+
</tr>
|
339
|
+
<tr>
|
340
|
+
<td><p><a name="GDK-GC-SUBWINDOW:CAPS"></a><span class="term"><code class="literal">GDK_GC_SUBWINDOW</code></span></p></td>
|
341
|
+
<td>the <em class="parameter"><code>subwindow_mode</code></em> is set.
|
342
|
+
</td>
|
343
|
+
</tr>
|
344
|
+
<tr>
|
345
|
+
<td><p><a name="GDK-GC-TS-X-ORIGIN:CAPS"></a><span class="term"><code class="literal">GDK_GC_TS_X_ORIGIN</code></span></p></td>
|
346
|
+
<td>the <em class="parameter"><code>ts_x_origin</code></em> is set.
|
347
|
+
</td>
|
348
|
+
</tr>
|
349
|
+
<tr>
|
350
|
+
<td><p><a name="GDK-GC-TS-Y-ORIGIN:CAPS"></a><span class="term"><code class="literal">GDK_GC_TS_Y_ORIGIN</code></span></p></td>
|
351
|
+
<td>the <em class="parameter"><code>ts_y_origin</code></em> is set.
|
352
|
+
</td>
|
353
|
+
</tr>
|
354
|
+
<tr>
|
355
|
+
<td><p><a name="GDK-GC-CLIP-X-ORIGIN:CAPS"></a><span class="term"><code class="literal">GDK_GC_CLIP_X_ORIGIN</code></span></p></td>
|
356
|
+
<td>the <em class="parameter"><code>clip_x_origin</code></em> is set.
|
357
|
+
</td>
|
358
|
+
</tr>
|
359
|
+
<tr>
|
360
|
+
<td><p><a name="GDK-GC-CLIP-Y-ORIGIN:CAPS"></a><span class="term"><code class="literal">GDK_GC_CLIP_Y_ORIGIN</code></span></p></td>
|
361
|
+
<td>the <em class="parameter"><code>clip_y_origin</code></em> is set.
|
362
|
+
</td>
|
363
|
+
</tr>
|
364
|
+
<tr>
|
365
|
+
<td><p><a name="GDK-GC-EXPOSURES:CAPS"></a><span class="term"><code class="literal">GDK_GC_EXPOSURES</code></span></p></td>
|
366
|
+
<td>the <em class="parameter"><code>graphics_exposures</code></em> is set.
|
367
|
+
</td>
|
368
|
+
</tr>
|
369
|
+
<tr>
|
370
|
+
<td><p><a name="GDK-GC-LINE-WIDTH:CAPS"></a><span class="term"><code class="literal">GDK_GC_LINE_WIDTH</code></span></p></td>
|
371
|
+
<td>the <em class="parameter"><code>line_width</code></em> is set.
|
372
|
+
</td>
|
373
|
+
</tr>
|
374
|
+
<tr>
|
375
|
+
<td><p><a name="GDK-GC-LINE-STYLE:CAPS"></a><span class="term"><code class="literal">GDK_GC_LINE_STYLE</code></span></p></td>
|
376
|
+
<td>the <em class="parameter"><code>line_style</code></em> is set.
|
377
|
+
</td>
|
378
|
+
</tr>
|
379
|
+
<tr>
|
380
|
+
<td><p><a name="GDK-GC-CAP-STYLE:CAPS"></a><span class="term"><code class="literal">GDK_GC_CAP_STYLE</code></span></p></td>
|
381
|
+
<td>the <em class="parameter"><code>cap_style</code></em> is set.
|
382
|
+
</td>
|
383
|
+
</tr>
|
384
|
+
<tr>
|
385
|
+
<td><p><a name="GDK-GC-JOIN-STYLE:CAPS"></a><span class="term"><code class="literal">GDK_GC_JOIN_STYLE</code></span></p></td>
|
386
|
+
<td>the <em class="parameter"><code>join_style</code></em> is set.
|
387
|
+
</td>
|
388
|
+
</tr>
|
389
|
+
</tbody>
|
390
|
+
</table></div>
|
391
|
+
</div>
|
392
|
+
<hr>
|
393
|
+
<div class="refsect2">
|
394
|
+
<a name="GdkFunction"></a><h3>enum GdkFunction</h3>
|
395
|
+
<pre class="programlisting">typedef enum {
|
396
|
+
GDK_COPY,
|
397
|
+
GDK_INVERT,
|
398
|
+
GDK_XOR,
|
399
|
+
GDK_CLEAR,
|
400
|
+
GDK_AND,
|
401
|
+
GDK_AND_REVERSE,
|
402
|
+
GDK_AND_INVERT,
|
403
|
+
GDK_NOOP,
|
404
|
+
GDK_OR,
|
405
|
+
GDK_EQUIV,
|
406
|
+
GDK_OR_REVERSE,
|
407
|
+
GDK_COPY_INVERT,
|
408
|
+
GDK_OR_INVERT,
|
409
|
+
GDK_NAND,
|
410
|
+
GDK_NOR,
|
411
|
+
GDK_SET
|
412
|
+
} GdkFunction;
|
413
|
+
</pre>
|
414
|
+
<p>
|
415
|
+
Determines how the bit values for the source pixels are combined with
|
416
|
+
the bit values for destination pixels to produce the final result. The
|
417
|
+
sixteen values here correspond to the 16 different possible 2x2 truth
|
418
|
+
tables. Only a couple of these values are usually useful; for colored
|
419
|
+
images, only <a class="link" href="gdk-Graphics-Contexts.html#GDK-COPY:CAPS"><code class="literal">GDK_COPY</code></a>, <a class="link" href="gdk-Graphics-Contexts.html#GDK-XOR:CAPS"><code class="literal">GDK_XOR</code></a> and <a class="link" href="gdk-Graphics-Contexts.html#GDK-INVERT:CAPS"><code class="literal">GDK_INVERT</code></a> are generally
|
420
|
+
useful. For bitmaps, <a class="link" href="gdk-Graphics-Contexts.html#GDK-AND:CAPS"><code class="literal">GDK_AND</code></a> and <a class="link" href="gdk-Graphics-Contexts.html#GDK-OR:CAPS"><code class="literal">GDK_OR</code></a> are also useful.
|
421
|
+
</p>
|
422
|
+
<div class="variablelist"><table border="0">
|
423
|
+
<col align="left" valign="top">
|
424
|
+
<tbody>
|
425
|
+
<tr>
|
426
|
+
<td><p><a name="GDK-COPY:CAPS"></a><span class="term"><code class="literal">GDK_COPY</code></span></p></td>
|
427
|
+
<td>
|
428
|
+
<code class="literal">dst = src</code>
|
429
|
+
</td>
|
430
|
+
</tr>
|
431
|
+
<tr>
|
432
|
+
<td><p><a name="GDK-INVERT:CAPS"></a><span class="term"><code class="literal">GDK_INVERT</code></span></p></td>
|
433
|
+
<td>
|
434
|
+
<code class="literal">dst = NOT dst</code>
|
435
|
+
</td>
|
436
|
+
</tr>
|
437
|
+
<tr>
|
438
|
+
<td><p><a name="GDK-XOR:CAPS"></a><span class="term"><code class="literal">GDK_XOR</code></span></p></td>
|
439
|
+
<td>
|
440
|
+
<code class="literal">dst = src XOR dst</code>
|
441
|
+
</td>
|
442
|
+
</tr>
|
443
|
+
<tr>
|
444
|
+
<td><p><a name="GDK-CLEAR:CAPS"></a><span class="term"><code class="literal">GDK_CLEAR</code></span></p></td>
|
445
|
+
<td>
|
446
|
+
<code class="literal">dst = 0</code>
|
447
|
+
</td>
|
448
|
+
</tr>
|
449
|
+
<tr>
|
450
|
+
<td><p><a name="GDK-AND:CAPS"></a><span class="term"><code class="literal">GDK_AND</code></span></p></td>
|
451
|
+
<td>
|
452
|
+
<code class="literal">dst = dst AND src</code>
|
453
|
+
</td>
|
454
|
+
</tr>
|
455
|
+
<tr>
|
456
|
+
<td><p><a name="GDK-AND-REVERSE:CAPS"></a><span class="term"><code class="literal">GDK_AND_REVERSE</code></span></p></td>
|
457
|
+
<td>
|
458
|
+
<code class="literal">dst = src AND (NOT dst)</code>
|
459
|
+
</td>
|
460
|
+
</tr>
|
461
|
+
<tr>
|
462
|
+
<td><p><a name="GDK-AND-INVERT:CAPS"></a><span class="term"><code class="literal">GDK_AND_INVERT</code></span></p></td>
|
463
|
+
<td>
|
464
|
+
<code class="literal">dst = (NOT src) AND dst</code>
|
465
|
+
</td>
|
466
|
+
</tr>
|
467
|
+
<tr>
|
468
|
+
<td><p><a name="GDK-NOOP:CAPS"></a><span class="term"><code class="literal">GDK_NOOP</code></span></p></td>
|
469
|
+
<td>
|
470
|
+
<code class="literal">dst = dst</code>
|
471
|
+
</td>
|
472
|
+
</tr>
|
473
|
+
<tr>
|
474
|
+
<td><p><a name="GDK-OR:CAPS"></a><span class="term"><code class="literal">GDK_OR</code></span></p></td>
|
475
|
+
<td>
|
476
|
+
<code class="literal">dst = src OR dst</code>
|
477
|
+
</td>
|
478
|
+
</tr>
|
479
|
+
<tr>
|
480
|
+
<td><p><a name="GDK-EQUIV:CAPS"></a><span class="term"><code class="literal">GDK_EQUIV</code></span></p></td>
|
481
|
+
<td>
|
482
|
+
<code class="literal">dst = (NOT src) XOR dst</code>
|
483
|
+
</td>
|
484
|
+
</tr>
|
485
|
+
<tr>
|
486
|
+
<td><p><a name="GDK-OR-REVERSE:CAPS"></a><span class="term"><code class="literal">GDK_OR_REVERSE</code></span></p></td>
|
487
|
+
<td>
|
488
|
+
<code class="literal">dst = src OR (NOT dst)</code>
|
489
|
+
</td>
|
490
|
+
</tr>
|
491
|
+
<tr>
|
492
|
+
<td><p><a name="GDK-COPY-INVERT:CAPS"></a><span class="term"><code class="literal">GDK_COPY_INVERT</code></span></p></td>
|
493
|
+
<td>
|
494
|
+
<code class="literal">dst = NOT src</code>
|
495
|
+
</td>
|
496
|
+
</tr>
|
497
|
+
<tr>
|
498
|
+
<td><p><a name="GDK-OR-INVERT:CAPS"></a><span class="term"><code class="literal">GDK_OR_INVERT</code></span></p></td>
|
499
|
+
<td>
|
500
|
+
<code class="literal">dst = (NOT src) OR dst</code>
|
501
|
+
</td>
|
502
|
+
</tr>
|
503
|
+
<tr>
|
504
|
+
<td><p><a name="GDK-NAND:CAPS"></a><span class="term"><code class="literal">GDK_NAND</code></span></p></td>
|
505
|
+
<td>
|
506
|
+
<code class="literal">dst = (NOT src) OR (NOT dst)</code>
|
507
|
+
</td>
|
508
|
+
</tr>
|
509
|
+
<tr>
|
510
|
+
<td><p><a name="GDK-NOR:CAPS"></a><span class="term"><code class="literal">GDK_NOR</code></span></p></td>
|
511
|
+
<td>
|
512
|
+
<code class="literal">dst = (NOT src) AND (NOT dst)</code>
|
513
|
+
</td>
|
514
|
+
</tr>
|
515
|
+
<tr>
|
516
|
+
<td><p><a name="GDK-SET:CAPS"></a><span class="term"><code class="literal">GDK_SET</code></span></p></td>
|
517
|
+
<td>
|
518
|
+
<code class="literal">dst = 1</code>
|
519
|
+
</td>
|
520
|
+
</tr>
|
521
|
+
</tbody>
|
522
|
+
</table></div>
|
523
|
+
</div>
|
524
|
+
<hr>
|
525
|
+
<div class="refsect2">
|
526
|
+
<a name="gdk-gc-new"></a><h3>gdk_gc_new ()</h3>
|
527
|
+
<pre class="programlisting"><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * gdk_gc_new (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>);</pre>
|
528
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
529
|
+
<h3 class="title">Warning</h3>
|
530
|
+
<p><code class="literal">gdk_gc_new</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
|
531
|
+
</div>
|
532
|
+
<p>
|
533
|
+
Create a new graphics context with default values.
|
534
|
+
</p>
|
535
|
+
<div class="variablelist"><table border="0">
|
536
|
+
<col align="left" valign="top">
|
537
|
+
<tbody>
|
538
|
+
<tr>
|
539
|
+
<td><p><span class="term"><em class="parameter"><code>drawable</code></em> :</span></p></td>
|
540
|
+
<td>a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>. The created GC must always be used
|
541
|
+
with drawables of the same depth as this one.</td>
|
542
|
+
</tr>
|
543
|
+
<tr>
|
544
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
545
|
+
<td>the new graphics context.</td>
|
546
|
+
</tr>
|
547
|
+
</tbody>
|
548
|
+
</table></div>
|
549
|
+
</div>
|
550
|
+
<hr>
|
551
|
+
<div class="refsect2">
|
552
|
+
<a name="gdk-gc-new-with-values"></a><h3>gdk_gc_new_with_values ()</h3>
|
553
|
+
<pre class="programlisting"><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * gdk_gc_new_with_values (<em class="parameter"><code><a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a> *drawable</code></em>,
|
554
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
555
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);</pre>
|
556
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
557
|
+
<h3 class="title">Warning</h3>
|
558
|
+
<p><code class="literal">gdk_gc_new_with_values</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
|
559
|
+
</div>
|
560
|
+
<p>
|
561
|
+
Create a new GC with the given initial values.
|
562
|
+
</p>
|
563
|
+
<div class="variablelist"><table border="0">
|
564
|
+
<col align="left" valign="top">
|
565
|
+
<tbody>
|
566
|
+
<tr>
|
567
|
+
<td><p><span class="term"><em class="parameter"><code>drawable</code></em> :</span></p></td>
|
568
|
+
<td>a <a class="link" href="gdk-Drawing-Primitives.html#GdkDrawable"><span class="type">GdkDrawable</span></a>. The created GC must always be used
|
569
|
+
with drawables of the same depth as this one.</td>
|
570
|
+
</tr>
|
571
|
+
<tr>
|
572
|
+
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
573
|
+
<td>a structure containing initial values for the GC.</td>
|
574
|
+
</tr>
|
575
|
+
<tr>
|
576
|
+
<td><p><span class="term"><em class="parameter"><code>values_mask</code></em> :</span></p></td>
|
577
|
+
<td>a bit mask indicating which fields in <em class="parameter"><code>values</code></em>
|
578
|
+
are set.</td>
|
579
|
+
</tr>
|
580
|
+
<tr>
|
581
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
582
|
+
<td>the new graphics context.</td>
|
583
|
+
</tr>
|
584
|
+
</tbody>
|
585
|
+
</table></div>
|
586
|
+
</div>
|
587
|
+
<hr>
|
588
|
+
<div class="refsect2">
|
589
|
+
<a name="gdk-gc-get-screen"></a><h3>gdk_gc_get_screen ()</h3>
|
590
|
+
<pre class="programlisting"><a class="link" href="GdkScreen.html" title="GdkScreen"><span class="returnvalue">GdkScreen</span></a> * gdk_gc_get_screen (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
|
591
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
592
|
+
<h3 class="title">Warning</h3>
|
593
|
+
<p><code class="literal">gdk_gc_get_screen</code> is deprecated and should not be used in newly-written code.</p>
|
594
|
+
</div>
|
595
|
+
<p>
|
596
|
+
Gets the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> for which <em class="parameter"><code>gc</code></em> was created
|
597
|
+
</p>
|
598
|
+
<div class="variablelist"><table border="0">
|
599
|
+
<col align="left" valign="top">
|
600
|
+
<tbody>
|
601
|
+
<tr>
|
602
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
603
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
604
|
+
</tr>
|
605
|
+
<tr>
|
606
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
607
|
+
<td>the <a class="link" href="GdkScreen.html" title="GdkScreen"><span class="type">GdkScreen</span></a> for <em class="parameter"><code>gc</code></em>.</td>
|
608
|
+
</tr>
|
609
|
+
</tbody>
|
610
|
+
</table></div>
|
611
|
+
<p class="since">Since 2.2</p>
|
612
|
+
</div>
|
613
|
+
<hr>
|
614
|
+
<div class="refsect2">
|
615
|
+
<a name="gdk-gc-ref"></a><h3>gdk_gc_ref ()</h3>
|
616
|
+
<pre class="programlisting"><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="returnvalue">GdkGC</span></a> * gdk_gc_ref (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
|
617
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
618
|
+
<h3 class="title">Warning</h3>
|
619
|
+
<p><code class="literal">gdk_gc_ref</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a> instead.</p>
|
620
|
+
</div>
|
621
|
+
<p>
|
622
|
+
Deprecated function; use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-ref"><code class="function">g_object_ref()</code></a> instead.
|
623
|
+
</p>
|
624
|
+
<div class="variablelist"><table border="0">
|
625
|
+
<col align="left" valign="top">
|
626
|
+
<tbody>
|
627
|
+
<tr>
|
628
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
629
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>
|
630
|
+
</td>
|
631
|
+
</tr>
|
632
|
+
<tr>
|
633
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
634
|
+
<td>the gc.</td>
|
635
|
+
</tr>
|
636
|
+
</tbody>
|
637
|
+
</table></div>
|
638
|
+
</div>
|
639
|
+
<hr>
|
640
|
+
<div class="refsect2">
|
641
|
+
<a name="gdk-gc-unref"></a><h3>gdk_gc_unref ()</h3>
|
642
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_unref (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
|
643
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
644
|
+
<h3 class="title">Warning</h3>
|
645
|
+
<p><code class="literal">gdk_gc_unref</code> has been deprecated since version 2.0 and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> instead.</p>
|
646
|
+
</div>
|
647
|
+
<p>
|
648
|
+
Decrement the reference count of <em class="parameter"><code>gc</code></em>.
|
649
|
+
</p>
|
650
|
+
<div class="variablelist"><table border="0">
|
651
|
+
<col align="left" valign="top">
|
652
|
+
<tbody><tr>
|
653
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
654
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>
|
655
|
+
</td>
|
656
|
+
</tr></tbody>
|
657
|
+
</table></div>
|
658
|
+
</div>
|
659
|
+
<hr>
|
660
|
+
<div class="refsect2">
|
661
|
+
<a name="gdk-gc-destroy"></a><h3>gdk_gc_destroy</h3>
|
662
|
+
<pre class="programlisting">#define gdk_gc_destroy g_object_unref
|
663
|
+
</pre>
|
664
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
665
|
+
<h3 class="title">Warning</h3>
|
666
|
+
<p><code class="literal">gdk_gc_destroy</code> is deprecated and should not be used in newly-written code. Use <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#g-object-unref"><code class="function">g_object_unref()</code></a> instead</p>
|
667
|
+
</div>
|
668
|
+
<p>
|
669
|
+
This function is obsolete and should not be used.
|
670
|
+
</p>
|
671
|
+
</div>
|
672
|
+
<hr>
|
673
|
+
<div class="refsect2">
|
674
|
+
<a name="gdk-gc-set-values"></a><h3>gdk_gc_set_values ()</h3>
|
675
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_values (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
676
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>,
|
677
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValuesMask" title="enum GdkGCValuesMask"><span class="type">GdkGCValuesMask</span></a> values_mask</code></em>);</pre>
|
678
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
679
|
+
<h3 class="title">Warning</h3>
|
680
|
+
<p><code class="literal">gdk_gc_set_values</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
|
681
|
+
</div>
|
682
|
+
<p>
|
683
|
+
Sets attributes of a graphics context in bulk. For each flag set in
|
684
|
+
<em class="parameter"><code>values_mask</code></em>, the corresponding field will be read from <em class="parameter"><code>values</code></em> and
|
685
|
+
set as the new value for <em class="parameter"><code>gc</code></em>. If you're only setting a few values
|
686
|
+
on <em class="parameter"><code>gc</code></em>, calling individual "setter" functions is likely more
|
687
|
+
convenient.
|
688
|
+
</p>
|
689
|
+
<div class="variablelist"><table border="0">
|
690
|
+
<col align="left" valign="top">
|
691
|
+
<tbody>
|
692
|
+
<tr>
|
693
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
694
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>
|
695
|
+
</td>
|
696
|
+
</tr>
|
697
|
+
<tr>
|
698
|
+
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
699
|
+
<td>struct containing the new values</td>
|
700
|
+
</tr>
|
701
|
+
<tr>
|
702
|
+
<td><p><span class="term"><em class="parameter"><code>values_mask</code></em> :</span></p></td>
|
703
|
+
<td>mask indicating which struct fields are to be used</td>
|
704
|
+
</tr>
|
705
|
+
</tbody>
|
706
|
+
</table></div>
|
707
|
+
</div>
|
708
|
+
<hr>
|
709
|
+
<div class="refsect2">
|
710
|
+
<a name="gdk-gc-get-values"></a><h3>gdk_gc_get_values ()</h3>
|
711
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_get_values (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
712
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> *values</code></em>);</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">gdk_gc_get_values</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for rendering.</p>
|
716
|
+
</div>
|
717
|
+
<p>
|
718
|
+
Retrieves the current values from a graphics context. Note that
|
719
|
+
only the pixel values of the <em class="parameter"><code>values->foreground</code></em> and <em class="parameter"><code>values->background</code></em>
|
720
|
+
are filled, use <a class="link" href="gdk-Colormaps-and-Colors.html#gdk-colormap-query-color" title="gdk_colormap_query_color ()"><code class="function">gdk_colormap_query_color()</code></a> to obtain the rgb values
|
721
|
+
if you need them.
|
722
|
+
</p>
|
723
|
+
<div class="variablelist"><table border="0">
|
724
|
+
<col align="left" valign="top">
|
725
|
+
<tbody>
|
726
|
+
<tr>
|
727
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
728
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
729
|
+
</tr>
|
730
|
+
<tr>
|
731
|
+
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
732
|
+
<td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> structure in which to store the results.</td>
|
733
|
+
</tr>
|
734
|
+
</tbody>
|
735
|
+
</table></div>
|
736
|
+
</div>
|
737
|
+
<hr>
|
738
|
+
<div class="refsect2">
|
739
|
+
<a name="gdk-gc-set-foreground"></a><h3>gdk_gc_set_foreground ()</h3>
|
740
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_foreground (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
741
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
|
742
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
743
|
+
<h3 class="title">Warning</h3>
|
744
|
+
<p><code class="literal">gdk_gc_set_foreground</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> to use a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>
|
745
|
+
as the source in Cairo.</p>
|
746
|
+
</div>
|
747
|
+
<p>
|
748
|
+
Sets the foreground color for a graphics context.
|
749
|
+
Note that this function uses <em class="parameter"><code>color->pixel</code></em>, use
|
750
|
+
<a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-rgb-fg-color" title="gdk_gc_set_rgb_fg_color ()"><code class="function">gdk_gc_set_rgb_fg_color()</code></a> to specify the foreground
|
751
|
+
color as red, green, blue components.
|
752
|
+
</p>
|
753
|
+
<div class="variablelist"><table border="0">
|
754
|
+
<col align="left" valign="top">
|
755
|
+
<tbody>
|
756
|
+
<tr>
|
757
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
758
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
759
|
+
</tr>
|
760
|
+
<tr>
|
761
|
+
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
762
|
+
<td>the new foreground color.</td>
|
763
|
+
</tr>
|
764
|
+
</tbody>
|
765
|
+
</table></div>
|
766
|
+
</div>
|
767
|
+
<hr>
|
768
|
+
<div class="refsect2">
|
769
|
+
<a name="gdk-gc-set-background"></a><h3>gdk_gc_set_background ()</h3>
|
770
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_background (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
771
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
|
772
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
773
|
+
<h3 class="title">Warning</h3>
|
774
|
+
<p><code class="literal">gdk_gc_set_background</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> to use a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>
|
775
|
+
as the source in Cairo. Note that if you want to draw a background and a
|
776
|
+
foreground in Cairo, you need to call drawing functions (like <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-fill"><code class="function">cairo_fill()</code></a>)
|
777
|
+
twice.</p>
|
778
|
+
</div>
|
779
|
+
<p>
|
780
|
+
Sets the background color for a graphics context.
|
781
|
+
Note that this function uses <em class="parameter"><code>color->pixel</code></em>, use
|
782
|
+
<a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-rgb-bg-color" title="gdk_gc_set_rgb_bg_color ()"><code class="function">gdk_gc_set_rgb_bg_color()</code></a> to specify the background
|
783
|
+
color as red, green, blue components.
|
784
|
+
</p>
|
785
|
+
<div class="variablelist"><table border="0">
|
786
|
+
<col align="left" valign="top">
|
787
|
+
<tbody>
|
788
|
+
<tr>
|
789
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
790
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
791
|
+
</tr>
|
792
|
+
<tr>
|
793
|
+
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
794
|
+
<td>the new background color.</td>
|
795
|
+
</tr>
|
796
|
+
</tbody>
|
797
|
+
</table></div>
|
798
|
+
</div>
|
799
|
+
<hr>
|
800
|
+
<div class="refsect2">
|
801
|
+
<a name="gdk-gc-set-rgb-fg-color"></a><h3>gdk_gc_set_rgb_fg_color ()</h3>
|
802
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_rgb_fg_color (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
803
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
|
804
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
805
|
+
<h3 class="title">Warning</h3>
|
806
|
+
<p><code class="literal">gdk_gc_set_rgb_fg_color</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> instead.</p>
|
807
|
+
</div>
|
808
|
+
<p>
|
809
|
+
Set the foreground color of a GC using an unallocated color. The
|
810
|
+
pixel value for the color will be determined using GdkRGB. If the
|
811
|
+
colormap for the GC has not previously been initialized for GdkRGB,
|
812
|
+
then for pseudo-color colormaps (colormaps with a small modifiable
|
813
|
+
number of colors), a colorcube will be allocated in the colormap.
|
814
|
+
</p>
|
815
|
+
<p>
|
816
|
+
Calling this function for a GC without a colormap is an error.
|
817
|
+
</p>
|
818
|
+
<div class="variablelist"><table border="0">
|
819
|
+
<col align="left" valign="top">
|
820
|
+
<tbody>
|
821
|
+
<tr>
|
822
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
823
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>
|
824
|
+
</td>
|
825
|
+
</tr>
|
826
|
+
<tr>
|
827
|
+
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
828
|
+
<td>an unallocated <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>.</td>
|
829
|
+
</tr>
|
830
|
+
</tbody>
|
831
|
+
</table></div>
|
832
|
+
</div>
|
833
|
+
<hr>
|
834
|
+
<div class="refsect2">
|
835
|
+
<a name="gdk-gc-set-rgb-bg-color"></a><h3>gdk_gc_set_rgb_bg_color ()</h3>
|
836
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_rgb_bg_color (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
837
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a> *color</code></em>);</pre>
|
838
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
839
|
+
<h3 class="title">Warning</h3>
|
840
|
+
<p><code class="literal">gdk_gc_set_rgb_bg_color</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-color" title="gdk_cairo_set_source_color ()"><code class="function">gdk_cairo_set_source_color()</code></a> instead.</p>
|
841
|
+
</div>
|
842
|
+
<p>
|
843
|
+
Set the background color of a GC using an unallocated color. The
|
844
|
+
pixel value for the color will be determined using GdkRGB. If the
|
845
|
+
colormap for the GC has not previously been initialized for GdkRGB,
|
846
|
+
then for pseudo-color colormaps (colormaps with a small modifiable
|
847
|
+
number of colors), a colorcube will be allocated in the colormap.
|
848
|
+
</p>
|
849
|
+
<p>
|
850
|
+
Calling this function for a GC without a colormap is an error.
|
851
|
+
</p>
|
852
|
+
<div class="variablelist"><table border="0">
|
853
|
+
<col align="left" valign="top">
|
854
|
+
<tbody>
|
855
|
+
<tr>
|
856
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
857
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>
|
858
|
+
</td>
|
859
|
+
</tr>
|
860
|
+
<tr>
|
861
|
+
<td><p><span class="term"><em class="parameter"><code>color</code></em> :</span></p></td>
|
862
|
+
<td>an unallocated <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColor" title="GdkColor"><span class="type">GdkColor</span></a>.</td>
|
863
|
+
</tr>
|
864
|
+
</tbody>
|
865
|
+
</table></div>
|
866
|
+
</div>
|
867
|
+
<hr>
|
868
|
+
<div class="refsect2">
|
869
|
+
<a name="gdk-gc-set-font"></a><h3>gdk_gc_set_font ()</h3>
|
870
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_font (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
871
|
+
<em class="parameter"><code><a class="link" href="gdk-Fonts.html#GdkFont" title="GdkFont"><span class="type">GdkFont</span></a> *font</code></em>);</pre>
|
872
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
873
|
+
<h3 class="title">Warning</h3>
|
874
|
+
<p><code class="literal">gdk_gc_set_font</code> is deprecated and should not be used in newly-written code.</p>
|
875
|
+
</div>
|
876
|
+
<p>
|
877
|
+
Sets the font for a graphics context. (Note that
|
878
|
+
all text-drawing functions in GDK take a <em class="parameter"><code>font</code></em>
|
879
|
+
argument; the value set here is used when that
|
880
|
+
argument is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>.)
|
881
|
+
</p>
|
882
|
+
<div class="variablelist"><table border="0">
|
883
|
+
<col align="left" valign="top">
|
884
|
+
<tbody>
|
885
|
+
<tr>
|
886
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
887
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
888
|
+
</tr>
|
889
|
+
<tr>
|
890
|
+
<td><p><span class="term"><em class="parameter"><code>font</code></em> :</span></p></td>
|
891
|
+
<td>the new font.</td>
|
892
|
+
</tr>
|
893
|
+
</tbody>
|
894
|
+
</table></div>
|
895
|
+
</div>
|
896
|
+
<hr>
|
897
|
+
<div class="refsect2">
|
898
|
+
<a name="gdk-gc-set-function"></a><h3>gdk_gc_set_function ()</h3>
|
899
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_function (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
900
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> function</code></em>);</pre>
|
901
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
902
|
+
<h3 class="title">Warning</h3>
|
903
|
+
<p><code class="literal">gdk_gc_set_function</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-operator"><code class="function">cairo_set_operator()</code></a> with Cairo.</p>
|
904
|
+
</div>
|
905
|
+
<p>
|
906
|
+
Determines how the current pixel values and the
|
907
|
+
pixel values being drawn are combined to produce
|
908
|
+
the final pixel values.
|
909
|
+
</p>
|
910
|
+
<div class="variablelist"><table border="0">
|
911
|
+
<col align="left" valign="top">
|
912
|
+
<tbody>
|
913
|
+
<tr>
|
914
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
915
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
916
|
+
</tr>
|
917
|
+
<tr>
|
918
|
+
<td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
|
919
|
+
<td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkFunction" title="enum GdkFunction"><span class="type">GdkFunction</span></a> to use</td>
|
920
|
+
</tr>
|
921
|
+
</tbody>
|
922
|
+
</table></div>
|
923
|
+
</div>
|
924
|
+
<hr>
|
925
|
+
<div class="refsect2">
|
926
|
+
<a name="gdk-gc-set-fill"></a><h3>gdk_gc_set_fill ()</h3>
|
927
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_fill (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
928
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkFill" title="enum GdkFill"><span class="type">GdkFill</span></a> fill</code></em>);</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">gdk_gc_set_fill</code> has been deprecated since version 2.22 and should not be used in newly-written code. You can achieve tiling in Cairo by using
|
932
|
+
<a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-extend"><code class="function">cairo_pattern_set_extend()</code></a> on the source. For stippling, see the
|
933
|
+
deprecation comments on <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-stipple" title="gdk_gc_set_stipple ()"><code class="function">gdk_gc_set_stipple()</code></a>.</p>
|
934
|
+
</div>
|
935
|
+
<p>
|
936
|
+
Set the fill mode for a graphics context.
|
937
|
+
</p>
|
938
|
+
<div class="variablelist"><table border="0">
|
939
|
+
<col align="left" valign="top">
|
940
|
+
<tbody>
|
941
|
+
<tr>
|
942
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
943
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
944
|
+
</tr>
|
945
|
+
<tr>
|
946
|
+
<td><p><span class="term"><em class="parameter"><code>fill</code></em> :</span></p></td>
|
947
|
+
<td>the new fill mode.</td>
|
948
|
+
</tr>
|
949
|
+
</tbody>
|
950
|
+
</table></div>
|
951
|
+
</div>
|
952
|
+
<hr>
|
953
|
+
<div class="refsect2">
|
954
|
+
<a name="GdkFill"></a><h3>enum GdkFill</h3>
|
955
|
+
<pre class="programlisting">typedef enum {
|
956
|
+
GDK_SOLID,
|
957
|
+
GDK_TILED,
|
958
|
+
GDK_STIPPLED,
|
959
|
+
GDK_OPAQUE_STIPPLED
|
960
|
+
} GdkFill;
|
961
|
+
</pre>
|
962
|
+
<p>
|
963
|
+
Determines how primitives are drawn.
|
964
|
+
</p>
|
965
|
+
<div class="variablelist"><table border="0">
|
966
|
+
<col align="left" valign="top">
|
967
|
+
<tbody>
|
968
|
+
<tr>
|
969
|
+
<td><p><a name="GDK-SOLID:CAPS"></a><span class="term"><code class="literal">GDK_SOLID</code></span></p></td>
|
970
|
+
<td>draw with the foreground color.
|
971
|
+
</td>
|
972
|
+
</tr>
|
973
|
+
<tr>
|
974
|
+
<td><p><a name="GDK-TILED:CAPS"></a><span class="term"><code class="literal">GDK_TILED</code></span></p></td>
|
975
|
+
<td>draw with a tiled pixmap.
|
976
|
+
</td>
|
977
|
+
</tr>
|
978
|
+
<tr>
|
979
|
+
<td><p><a name="GDK-STIPPLED:CAPS"></a><span class="term"><code class="literal">GDK_STIPPLED</code></span></p></td>
|
980
|
+
<td>draw using the stipple bitmap. Pixels corresponding
|
981
|
+
to bits in the stipple bitmap that are set will be drawn in the
|
982
|
+
foreground color; pixels corresponding to bits that are
|
983
|
+
not set will be left untouched.
|
984
|
+
</td>
|
985
|
+
</tr>
|
986
|
+
<tr>
|
987
|
+
<td><p><a name="GDK-OPAQUE-STIPPLED:CAPS"></a><span class="term"><code class="literal">GDK_OPAQUE_STIPPLED</code></span></p></td>
|
988
|
+
<td>draw using the stipple bitmap. Pixels corresponding
|
989
|
+
to bits in the stipple bitmap that are set will be drawn in the
|
990
|
+
foreground color; pixels corresponding to bits that are
|
991
|
+
not set will be drawn with the background color.
|
992
|
+
</td>
|
993
|
+
</tr>
|
994
|
+
</tbody>
|
995
|
+
</table></div>
|
996
|
+
</div>
|
997
|
+
<hr>
|
998
|
+
<div class="refsect2">
|
999
|
+
<a name="gdk-gc-set-tile"></a><h3>gdk_gc_set_tile ()</h3>
|
1000
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_tile (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1001
|
+
<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *tile</code></em>);</pre>
|
1002
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1003
|
+
<h3 class="title">Warning</h3>
|
1004
|
+
<p><code class="literal">gdk_gc_set_tile</code> has been deprecated since version 2.22 and should not be used in newly-written code. The following code snippet sets a tiling <a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>
|
1005
|
+
as the source in Cairo:
|
1006
|
+
</p>
|
1007
|
+
<div class="informalexample">
|
1008
|
+
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
|
1009
|
+
<tbody>
|
1010
|
+
<tr>
|
1011
|
+
<td class="listing_lines" align="right"><pre>1
|
1012
|
+
2</pre></td>
|
1013
|
+
<td class="listing_code"><pre class="programlisting"><span class="function"><a href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-pixmap">gdk_cairo_set_source_pixmap</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">cr</span><span class="symbol">,</span><span class="normal"> tile</span><span class="symbol">,</span><span class="normal"> ts_origin_x</span><span class="symbol">,</span><span class="normal"> ts_origin_y</span><span class="symbol">);</span>
|
1014
|
+
<span class="function"><a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-extend">cairo_pattern_set_extend</a></span><span class="normal"> </span><span class="symbol">(</span><span class="function"><a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-get-source">cairo_get_source</a></span><span class="normal"> </span><span class="symbol">(</span><span class="normal">cr</span><span class="symbol">),</span><span class="normal"> <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html#CAIRO-EXTEND-REPEAT:CAPS">CAIRO_EXTEND_REPEAT</a></span><span class="symbol">);</span></pre></td>
|
1015
|
+
</tr>
|
1016
|
+
</tbody>
|
1017
|
+
</table>
|
1018
|
+
</div>
|
1019
|
+
|
1020
|
+
</div>
|
1021
|
+
<p>
|
1022
|
+
Set a tile pixmap for a graphics context.
|
1023
|
+
This will only be used if the fill mode
|
1024
|
+
is <a class="link" href="gdk-Graphics-Contexts.html#GDK-TILED:CAPS"><code class="literal">GDK_TILED</code></a>.
|
1025
|
+
</p>
|
1026
|
+
<div class="variablelist"><table border="0">
|
1027
|
+
<col align="left" valign="top">
|
1028
|
+
<tbody>
|
1029
|
+
<tr>
|
1030
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1031
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1032
|
+
</tr>
|
1033
|
+
<tr>
|
1034
|
+
<td><p><span class="term"><em class="parameter"><code>tile</code></em> :</span></p></td>
|
1035
|
+
<td>the new tile pixmap.</td>
|
1036
|
+
</tr>
|
1037
|
+
</tbody>
|
1038
|
+
</table></div>
|
1039
|
+
</div>
|
1040
|
+
<hr>
|
1041
|
+
<div class="refsect2">
|
1042
|
+
<a name="gdk-gc-set-stipple"></a><h3>gdk_gc_set_stipple ()</h3>
|
1043
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_stipple (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1044
|
+
<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a> *stipple</code></em>);</pre>
|
1045
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1046
|
+
<h3 class="title">Warning</h3>
|
1047
|
+
<p><code class="literal">gdk_gc_set_stipple</code> has been deprecated since version 2.22 and should not be used in newly-written code. Stippling has no direct replacement in Cairo. If you
|
1048
|
+
want to achieve an identical look, you can use the stipple bitmap as a
|
1049
|
+
mask. Most likely, this involves rendering the source to an intermediate
|
1050
|
+
surface using <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-push-group"><code class="function">cairo_push_group()</code></a> first, so that you can then use
|
1051
|
+
<a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-mask"><code class="function">cairo_mask()</code></a> to achieve the stippled look.</p>
|
1052
|
+
</div>
|
1053
|
+
<p>
|
1054
|
+
Set the stipple bitmap for a graphics context. The
|
1055
|
+
stipple will only be used if the fill mode is
|
1056
|
+
<a class="link" href="gdk-Graphics-Contexts.html#GDK-STIPPLED:CAPS"><code class="literal">GDK_STIPPLED</code></a> or <a class="link" href="gdk-Graphics-Contexts.html#GDK-OPAQUE-STIPPLED:CAPS"><code class="literal">GDK_OPAQUE_STIPPLED</code></a>.
|
1057
|
+
</p>
|
1058
|
+
<div class="variablelist"><table border="0">
|
1059
|
+
<col align="left" valign="top">
|
1060
|
+
<tbody>
|
1061
|
+
<tr>
|
1062
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1063
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1064
|
+
</tr>
|
1065
|
+
<tr>
|
1066
|
+
<td><p><span class="term"><em class="parameter"><code>stipple</code></em> :</span></p></td>
|
1067
|
+
<td>the new stipple bitmap.</td>
|
1068
|
+
</tr>
|
1069
|
+
</tbody>
|
1070
|
+
</table></div>
|
1071
|
+
</div>
|
1072
|
+
<hr>
|
1073
|
+
<div class="refsect2">
|
1074
|
+
<a name="gdk-gc-set-ts-origin"></a><h3>gdk_gc_set_ts_origin ()</h3>
|
1075
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_ts_origin (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1076
|
+
<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>,
|
1077
|
+
<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>);</pre>
|
1078
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1079
|
+
<h3 class="title">Warning</h3>
|
1080
|
+
<p><code class="literal">gdk_gc_set_ts_origin</code> has been deprecated since version 2.22 and should not be used in newly-written code. You can set the origin for tiles and stipples in Cairo
|
1081
|
+
by changing the source's matrix using <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-pattern-t.html#cairo-pattern-set-matrix"><code class="function">cairo_pattern_set_matrix()</code></a>. Or you
|
1082
|
+
can specify it with <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-set-source-pixmap" title="gdk_cairo_set_source_pixmap ()"><code class="function">gdk_cairo_set_source_pixmap()</code></a> as shown in the example
|
1083
|
+
for <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-tile" title="gdk_gc_set_tile ()"><code class="function">gdk_gc_set_tile()</code></a>.</p>
|
1084
|
+
</div>
|
1085
|
+
<p>
|
1086
|
+
Set the origin when using tiles or stipples with
|
1087
|
+
the GC. The tile or stipple will be aligned such
|
1088
|
+
that the upper left corner of the tile or stipple
|
1089
|
+
will coincide with this point.
|
1090
|
+
</p>
|
1091
|
+
<div class="variablelist"><table border="0">
|
1092
|
+
<col align="left" valign="top">
|
1093
|
+
<tbody>
|
1094
|
+
<tr>
|
1095
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1096
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1097
|
+
</tr>
|
1098
|
+
<tr>
|
1099
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1100
|
+
<td>the x-coordinate of the origin.</td>
|
1101
|
+
</tr>
|
1102
|
+
<tr>
|
1103
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1104
|
+
<td>the y-coordinate of the origin.</td>
|
1105
|
+
</tr>
|
1106
|
+
</tbody>
|
1107
|
+
</table></div>
|
1108
|
+
</div>
|
1109
|
+
<hr>
|
1110
|
+
<div class="refsect2">
|
1111
|
+
<a name="gdk-gc-set-clip-origin"></a><h3>gdk_gc_set_clip_origin ()</h3>
|
1112
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_origin (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1113
|
+
<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>,
|
1114
|
+
<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>);</pre>
|
1115
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1116
|
+
<h3 class="title">Warning</h3>
|
1117
|
+
<p><code class="literal">gdk_gc_set_clip_origin</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-Transformations.html#cairo-translate"><code class="function">cairo_translate()</code></a> before applying the clip path in
|
1118
|
+
Cairo.</p>
|
1119
|
+
</div>
|
1120
|
+
<p>
|
1121
|
+
Sets the origin of the clip mask. The coordinates are
|
1122
|
+
interpreted relative to the upper-left corner of
|
1123
|
+
the destination drawable of the current operation.
|
1124
|
+
</p>
|
1125
|
+
<div class="variablelist"><table border="0">
|
1126
|
+
<col align="left" valign="top">
|
1127
|
+
<tbody>
|
1128
|
+
<tr>
|
1129
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1130
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1131
|
+
</tr>
|
1132
|
+
<tr>
|
1133
|
+
<td><p><span class="term"><em class="parameter"><code>x</code></em> :</span></p></td>
|
1134
|
+
<td>the x-coordinate of the origin.</td>
|
1135
|
+
</tr>
|
1136
|
+
<tr>
|
1137
|
+
<td><p><span class="term"><em class="parameter"><code>y</code></em> :</span></p></td>
|
1138
|
+
<td>the y-coordinate of the origin.</td>
|
1139
|
+
</tr>
|
1140
|
+
</tbody>
|
1141
|
+
</table></div>
|
1142
|
+
</div>
|
1143
|
+
<hr>
|
1144
|
+
<div class="refsect2">
|
1145
|
+
<a name="gdk-gc-set-clip-mask"></a><h3>gdk_gc_set_clip_mask ()</h3>
|
1146
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_mask (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1147
|
+
<em class="parameter"><code><a class="link" href="gdk-Bitmaps-and-Pixmaps.html#GdkBitmap" title="GdkBitmap"><span class="type">GdkBitmap</span></a> *mask</code></em>);</pre>
|
1148
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1149
|
+
<h3 class="title">Warning</h3>
|
1150
|
+
<p><code class="literal">gdk_gc_set_clip_mask</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-mask"><code class="function">cairo_mask()</code></a> instead.</p>
|
1151
|
+
</div>
|
1152
|
+
<p>
|
1153
|
+
Sets the clip mask for a graphics context from a bitmap.
|
1154
|
+
The clip mask is interpreted relative to the clip
|
1155
|
+
origin. (See <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()"><code class="function">gdk_gc_set_clip_origin()</code></a>).
|
1156
|
+
</p>
|
1157
|
+
<div class="variablelist"><table border="0">
|
1158
|
+
<col align="left" valign="top">
|
1159
|
+
<tbody>
|
1160
|
+
<tr>
|
1161
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1162
|
+
<td>the <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1163
|
+
</tr>
|
1164
|
+
<tr>
|
1165
|
+
<td><p><span class="term"><em class="parameter"><code>mask</code></em> :</span></p></td>
|
1166
|
+
<td>a bitmap.</td>
|
1167
|
+
</tr>
|
1168
|
+
</tbody>
|
1169
|
+
</table></div>
|
1170
|
+
</div>
|
1171
|
+
<hr>
|
1172
|
+
<div class="refsect2">
|
1173
|
+
<a name="gdk-gc-set-clip-rectangle"></a><h3>gdk_gc_set_clip_rectangle ()</h3>
|
1174
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_rectangle (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1175
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRectangle" title="struct GdkRectangle"><span class="type">GdkRectangle</span></a> *rectangle</code></em>);</pre>
|
1176
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1177
|
+
<h3 class="title">Warning</h3>
|
1178
|
+
<p><code class="literal">gdk_gc_set_clip_rectangle</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-Paths.html#cairo-rectangle"><code class="function">cairo_rectangle()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-clip"><code class="function">cairo_clip()</code></a> in Cairo.</p>
|
1179
|
+
</div>
|
1180
|
+
<p>
|
1181
|
+
Sets the clip mask for a graphics context from a
|
1182
|
+
rectangle. The clip mask is interpreted relative to the clip
|
1183
|
+
origin. (See <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()"><code class="function">gdk_gc_set_clip_origin()</code></a>).
|
1184
|
+
</p>
|
1185
|
+
<div class="variablelist"><table border="0">
|
1186
|
+
<col align="left" valign="top">
|
1187
|
+
<tbody>
|
1188
|
+
<tr>
|
1189
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1190
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1191
|
+
</tr>
|
1192
|
+
<tr>
|
1193
|
+
<td><p><span class="term"><em class="parameter"><code>rectangle</code></em> :</span></p></td>
|
1194
|
+
<td>the rectangle to clip to.</td>
|
1195
|
+
</tr>
|
1196
|
+
</tbody>
|
1197
|
+
</table></div>
|
1198
|
+
</div>
|
1199
|
+
<hr>
|
1200
|
+
<div class="refsect2">
|
1201
|
+
<a name="gdk-gc-set-clip-region"></a><h3>gdk_gc_set_clip_region ()</h3>
|
1202
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_clip_region (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1203
|
+
<em class="parameter"><code>const <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a> *region</code></em>);</pre>
|
1204
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1205
|
+
<h3 class="title">Warning</h3>
|
1206
|
+
<p><code class="literal">gdk_gc_set_clip_region</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a class="link" href="gdk-Cairo-Interaction.html#gdk-cairo-region" title="gdk_cairo_region ()"><code class="function">gdk_cairo_region()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-clip"><code class="function">cairo_clip()</code></a> in Cairo.</p>
|
1207
|
+
</div>
|
1208
|
+
<p>
|
1209
|
+
Sets the clip mask for a graphics context from a region structure.
|
1210
|
+
The clip mask is interpreted relative to the clip origin. (See
|
1211
|
+
<a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()"><code class="function">gdk_gc_set_clip_origin()</code></a>).
|
1212
|
+
</p>
|
1213
|
+
<div class="variablelist"><table border="0">
|
1214
|
+
<col align="left" valign="top">
|
1215
|
+
<tbody>
|
1216
|
+
<tr>
|
1217
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1218
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1219
|
+
</tr>
|
1220
|
+
<tr>
|
1221
|
+
<td><p><span class="term"><em class="parameter"><code>region</code></em> :</span></p></td>
|
1222
|
+
<td>the <a class="link" href="gdk-Points-Rectangles-and-Regions.html#GdkRegion" title="GdkRegion"><span class="type">GdkRegion</span></a>.</td>
|
1223
|
+
</tr>
|
1224
|
+
</tbody>
|
1225
|
+
</table></div>
|
1226
|
+
</div>
|
1227
|
+
<hr>
|
1228
|
+
<div class="refsect2">
|
1229
|
+
<a name="gdk-gc-set-subwindow"></a><h3>gdk_gc_set_subwindow ()</h3>
|
1230
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_subwindow (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1231
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkSubwindowMode" title="enum GdkSubwindowMode"><span class="type">GdkSubwindowMode</span></a> mode</code></em>);</pre>
|
1232
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1233
|
+
<h3 class="title">Warning</h3>
|
1234
|
+
<p><code class="literal">gdk_gc_set_subwindow</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. If you need to control
|
1235
|
+
subwindows, you must use drawing operations of the underlying window
|
1236
|
+
system manually. Cairo will always use <a class="link" href="gdk-Graphics-Contexts.html#GDK-INCLUDE-INFERIORS:CAPS"><code class="literal">GDK_INCLUDE_INFERIORS</code></a> on sources
|
1237
|
+
and masks and <a class="link" href="gdk-Graphics-Contexts.html#GDK-CLIP-BY-CHILDREN:CAPS"><code class="literal">GDK_CLIP_BY_CHILDREN</code></a> on targets.</p>
|
1238
|
+
</div>
|
1239
|
+
<p>
|
1240
|
+
Sets how drawing with this GC on a window will affect child
|
1241
|
+
windows of that window.
|
1242
|
+
</p>
|
1243
|
+
<div class="variablelist"><table border="0">
|
1244
|
+
<col align="left" valign="top">
|
1245
|
+
<tbody>
|
1246
|
+
<tr>
|
1247
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1248
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1249
|
+
</tr>
|
1250
|
+
<tr>
|
1251
|
+
<td><p><span class="term"><em class="parameter"><code>mode</code></em> :</span></p></td>
|
1252
|
+
<td>the subwindow mode.</td>
|
1253
|
+
</tr>
|
1254
|
+
</tbody>
|
1255
|
+
</table></div>
|
1256
|
+
</div>
|
1257
|
+
<hr>
|
1258
|
+
<div class="refsect2">
|
1259
|
+
<a name="GdkSubwindowMode"></a><h3>enum GdkSubwindowMode</h3>
|
1260
|
+
<pre class="programlisting">typedef enum {
|
1261
|
+
GDK_CLIP_BY_CHILDREN = 0,
|
1262
|
+
GDK_INCLUDE_INFERIORS = 1
|
1263
|
+
} GdkSubwindowMode;
|
1264
|
+
</pre>
|
1265
|
+
<p>
|
1266
|
+
Determines how drawing onto a window will affect child
|
1267
|
+
windows of that window.
|
1268
|
+
</p>
|
1269
|
+
<div class="variablelist"><table border="0">
|
1270
|
+
<col align="left" valign="top">
|
1271
|
+
<tbody>
|
1272
|
+
<tr>
|
1273
|
+
<td><p><a name="GDK-CLIP-BY-CHILDREN:CAPS"></a><span class="term"><code class="literal">GDK_CLIP_BY_CHILDREN</code></span></p></td>
|
1274
|
+
<td>only draw onto the window itself.
|
1275
|
+
</td>
|
1276
|
+
</tr>
|
1277
|
+
<tr>
|
1278
|
+
<td><p><a name="GDK-INCLUDE-INFERIORS:CAPS"></a><span class="term"><code class="literal">GDK_INCLUDE_INFERIORS</code></span></p></td>
|
1279
|
+
<td>draw onto the window and child windows.
|
1280
|
+
</td>
|
1281
|
+
</tr>
|
1282
|
+
</tbody>
|
1283
|
+
</table></div>
|
1284
|
+
</div>
|
1285
|
+
<hr>
|
1286
|
+
<div class="refsect2">
|
1287
|
+
<a name="gdk-gc-set-exposures"></a><h3>gdk_gc_set_exposures ()</h3>
|
1288
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_exposures (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1289
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> exposures</code></em>);</pre>
|
1290
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1291
|
+
<h3 class="title">Warning</h3>
|
1292
|
+
<p><code class="literal">gdk_gc_set_exposures</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. If you need to control
|
1293
|
+
exposures, you must use drawing operations of the underlying window
|
1294
|
+
system or use <a class="link" href="gdk-Windows.html#gdk-window-invalidate-rect" title="gdk_window_invalidate_rect ()"><code class="function">gdk_window_invalidate_rect()</code></a>. Cairo will never
|
1295
|
+
generate exposures.</p>
|
1296
|
+
</div>
|
1297
|
+
<p>
|
1298
|
+
Sets whether copying non-visible portions of a drawable
|
1299
|
+
using this graphics context generate exposure events
|
1300
|
+
for the corresponding regions of the destination
|
1301
|
+
drawable. (See <a class="link" href="gdk-Drawing-Primitives.html#gdk-draw-drawable" title="gdk_draw_drawable ()"><code class="function">gdk_draw_drawable()</code></a>).
|
1302
|
+
</p>
|
1303
|
+
<div class="variablelist"><table border="0">
|
1304
|
+
<col align="left" valign="top">
|
1305
|
+
<tbody>
|
1306
|
+
<tr>
|
1307
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1308
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1309
|
+
</tr>
|
1310
|
+
<tr>
|
1311
|
+
<td><p><span class="term"><em class="parameter"><code>exposures</code></em> :</span></p></td>
|
1312
|
+
<td>if <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a>, exposure events will be generated.</td>
|
1313
|
+
</tr>
|
1314
|
+
</tbody>
|
1315
|
+
</table></div>
|
1316
|
+
</div>
|
1317
|
+
<hr>
|
1318
|
+
<div class="refsect2">
|
1319
|
+
<a name="gdk-gc-set-line-attributes"></a><h3>gdk_gc_set_line_attributes ()</h3>
|
1320
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_line_attributes (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1321
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line_width</code></em>,
|
1322
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkLineStyle" title="enum GdkLineStyle"><span class="type">GdkLineStyle</span></a> line_style</code></em>,
|
1323
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkCapStyle" title="enum GdkCapStyle"><span class="type">GdkCapStyle</span></a> cap_style</code></em>,
|
1324
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkJoinStyle" title="enum GdkJoinStyle"><span class="type">GdkJoinStyle</span></a> join_style</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">gdk_gc_set_line_attributes</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use the Cairo functions <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-line-width"><code class="function">cairo_set_line_width()</code></a>,
|
1328
|
+
<a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-line-join"><code class="function">cairo_set_line_join()</code></a>, <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-line-cap"><code class="function">cairo_set_line_cap()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-dash"><code class="function">cairo_set_dash()</code></a>
|
1329
|
+
to affect the stroking behavior in Cairo. Keep in mind that the default
|
1330
|
+
attributes of a <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-t"><span class="type">cairo_t</span></a> are different from the default attributes of
|
1331
|
+
a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p>
|
1332
|
+
</div>
|
1333
|
+
<p>
|
1334
|
+
Sets various attributes of how lines are drawn. See
|
1335
|
+
the corresponding members of <a class="link" href="gdk-Graphics-Contexts.html#GdkGCValues" title="struct GdkGCValues"><span class="type">GdkGCValues</span></a> for full
|
1336
|
+
explanations of the arguments.
|
1337
|
+
</p>
|
1338
|
+
<div class="variablelist"><table border="0">
|
1339
|
+
<col align="left" valign="top">
|
1340
|
+
<tbody>
|
1341
|
+
<tr>
|
1342
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1343
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1344
|
+
</tr>
|
1345
|
+
<tr>
|
1346
|
+
<td><p><span class="term"><em class="parameter"><code>line_width</code></em> :</span></p></td>
|
1347
|
+
<td>the width of lines.</td>
|
1348
|
+
</tr>
|
1349
|
+
<tr>
|
1350
|
+
<td><p><span class="term"><em class="parameter"><code>line_style</code></em> :</span></p></td>
|
1351
|
+
<td>the dash-style for lines.</td>
|
1352
|
+
</tr>
|
1353
|
+
<tr>
|
1354
|
+
<td><p><span class="term"><em class="parameter"><code>cap_style</code></em> :</span></p></td>
|
1355
|
+
<td>the manner in which the ends of lines are drawn.</td>
|
1356
|
+
</tr>
|
1357
|
+
<tr>
|
1358
|
+
<td><p><span class="term"><em class="parameter"><code>join_style</code></em> :</span></p></td>
|
1359
|
+
<td>the in which lines are joined together.</td>
|
1360
|
+
</tr>
|
1361
|
+
</tbody>
|
1362
|
+
</table></div>
|
1363
|
+
</div>
|
1364
|
+
<hr>
|
1365
|
+
<div class="refsect2">
|
1366
|
+
<a name="GdkLineStyle"></a><h3>enum GdkLineStyle</h3>
|
1367
|
+
<pre class="programlisting">typedef enum {
|
1368
|
+
GDK_LINE_SOLID,
|
1369
|
+
GDK_LINE_ON_OFF_DASH,
|
1370
|
+
GDK_LINE_DOUBLE_DASH
|
1371
|
+
} GdkLineStyle;
|
1372
|
+
</pre>
|
1373
|
+
<p>
|
1374
|
+
Determines how lines are drawn.
|
1375
|
+
</p>
|
1376
|
+
<div class="variablelist"><table border="0">
|
1377
|
+
<col align="left" valign="top">
|
1378
|
+
<tbody>
|
1379
|
+
<tr>
|
1380
|
+
<td><p><a name="GDK-LINE-SOLID:CAPS"></a><span class="term"><code class="literal">GDK_LINE_SOLID</code></span></p></td>
|
1381
|
+
<td>lines are drawn solid.
|
1382
|
+
</td>
|
1383
|
+
</tr>
|
1384
|
+
<tr>
|
1385
|
+
<td><p><a name="GDK-LINE-ON-OFF-DASH:CAPS"></a><span class="term"><code class="literal">GDK_LINE_ON_OFF_DASH</code></span></p></td>
|
1386
|
+
<td>even segments are drawn; odd segments are not drawn.
|
1387
|
+
</td>
|
1388
|
+
</tr>
|
1389
|
+
<tr>
|
1390
|
+
<td><p><a name="GDK-LINE-DOUBLE-DASH:CAPS"></a><span class="term"><code class="literal">GDK_LINE_DOUBLE_DASH</code></span></p></td>
|
1391
|
+
<td>even segments are normally. Odd segments are drawn
|
1392
|
+
in the background color if the fill style is <a class="link" href="gdk-Graphics-Contexts.html#GDK-SOLID:CAPS"><code class="literal">GDK_SOLID</code></a>, or in the background
|
1393
|
+
color masked by the stipple if the fill style is <a class="link" href="gdk-Graphics-Contexts.html#GDK-STIPPLED:CAPS"><code class="literal">GDK_STIPPLED</code></a>.
|
1394
|
+
</td>
|
1395
|
+
</tr>
|
1396
|
+
</tbody>
|
1397
|
+
</table></div>
|
1398
|
+
</div>
|
1399
|
+
<hr>
|
1400
|
+
<div class="refsect2">
|
1401
|
+
<a name="GdkCapStyle"></a><h3>enum GdkCapStyle</h3>
|
1402
|
+
<pre class="programlisting">typedef enum {
|
1403
|
+
GDK_CAP_NOT_LAST,
|
1404
|
+
GDK_CAP_BUTT,
|
1405
|
+
GDK_CAP_ROUND,
|
1406
|
+
GDK_CAP_PROJECTING
|
1407
|
+
} GdkCapStyle;
|
1408
|
+
</pre>
|
1409
|
+
<p>
|
1410
|
+
Determines how the end of lines are drawn.
|
1411
|
+
</p>
|
1412
|
+
<div class="variablelist"><table border="0">
|
1413
|
+
<col align="left" valign="top">
|
1414
|
+
<tbody>
|
1415
|
+
<tr>
|
1416
|
+
<td><p><a name="GDK-CAP-NOT-LAST:CAPS"></a><span class="term"><code class="literal">GDK_CAP_NOT_LAST</code></span></p></td>
|
1417
|
+
<td>the same as <a class="link" href="gdk-Graphics-Contexts.html#GDK-CAP-BUTT:CAPS"><code class="literal">GDK_CAP_BUTT</code></a> for lines of non-zero width.
|
1418
|
+
for zero width lines, the final point on the line will not be drawn.
|
1419
|
+
</td>
|
1420
|
+
</tr>
|
1421
|
+
<tr>
|
1422
|
+
<td><p><a name="GDK-CAP-BUTT:CAPS"></a><span class="term"><code class="literal">GDK_CAP_BUTT</code></span></p></td>
|
1423
|
+
<td>the ends of the lines are drawn squared off and extending
|
1424
|
+
to the coordinates of the end point.
|
1425
|
+
</td>
|
1426
|
+
</tr>
|
1427
|
+
<tr>
|
1428
|
+
<td><p><a name="GDK-CAP-ROUND:CAPS"></a><span class="term"><code class="literal">GDK_CAP_ROUND</code></span></p></td>
|
1429
|
+
<td>the ends of the lines are drawn as semicircles with the
|
1430
|
+
diameter equal to the line width and centered at the end point.
|
1431
|
+
</td>
|
1432
|
+
</tr>
|
1433
|
+
<tr>
|
1434
|
+
<td><p><a name="GDK-CAP-PROJECTING:CAPS"></a><span class="term"><code class="literal">GDK_CAP_PROJECTING</code></span></p></td>
|
1435
|
+
<td>the ends of the lines are drawn squared off and extending
|
1436
|
+
half the width of the line beyond the end point.
|
1437
|
+
</td>
|
1438
|
+
</tr>
|
1439
|
+
</tbody>
|
1440
|
+
</table></div>
|
1441
|
+
</div>
|
1442
|
+
<hr>
|
1443
|
+
<div class="refsect2">
|
1444
|
+
<a name="GdkJoinStyle"></a><h3>enum GdkJoinStyle</h3>
|
1445
|
+
<pre class="programlisting">typedef enum {
|
1446
|
+
GDK_JOIN_MITER,
|
1447
|
+
GDK_JOIN_ROUND,
|
1448
|
+
GDK_JOIN_BEVEL
|
1449
|
+
} GdkJoinStyle;
|
1450
|
+
</pre>
|
1451
|
+
<p>
|
1452
|
+
Determines how the joins between segments of a polygon are drawn.
|
1453
|
+
</p>
|
1454
|
+
<div class="variablelist"><table border="0">
|
1455
|
+
<col align="left" valign="top">
|
1456
|
+
<tbody>
|
1457
|
+
<tr>
|
1458
|
+
<td><p><a name="GDK-JOIN-MITER:CAPS"></a><span class="term"><code class="literal">GDK_JOIN_MITER</code></span></p></td>
|
1459
|
+
<td>the sides of each line are extended to meet at an angle.
|
1460
|
+
</td>
|
1461
|
+
</tr>
|
1462
|
+
<tr>
|
1463
|
+
<td><p><a name="GDK-JOIN-ROUND:CAPS"></a><span class="term"><code class="literal">GDK_JOIN_ROUND</code></span></p></td>
|
1464
|
+
<td>the sides of the two lines are joined by a circular arc.
|
1465
|
+
</td>
|
1466
|
+
</tr>
|
1467
|
+
<tr>
|
1468
|
+
<td><p><a name="GDK-JOIN-BEVEL:CAPS"></a><span class="term"><code class="literal">GDK_JOIN_BEVEL</code></span></p></td>
|
1469
|
+
<td>the sides of the two lines are joined by a straight line which
|
1470
|
+
makes an equal angle with each line.
|
1471
|
+
</td>
|
1472
|
+
</tr>
|
1473
|
+
</tbody>
|
1474
|
+
</table></div>
|
1475
|
+
</div>
|
1476
|
+
<hr>
|
1477
|
+
<div class="refsect2">
|
1478
|
+
<a name="gdk-gc-set-dashes"></a><h3>gdk_gc_set_dashes ()</h3>
|
1479
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_dashes (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1480
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> dash_offset</code></em>,
|
1481
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint8"><span class="type">gint8</span></a> dash_list[]</code></em>,
|
1482
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> n</code></em>);</pre>
|
1483
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1484
|
+
<h3 class="title">Warning</h3>
|
1485
|
+
<p><code class="literal">gdk_gc_set_dashes</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-set-dash"><code class="function">cairo_set_dash()</code></a> to set the dash in Cairo.</p>
|
1486
|
+
</div>
|
1487
|
+
<p>
|
1488
|
+
Sets the way dashed-lines are drawn. Lines will be
|
1489
|
+
drawn with alternating on and off segments of the
|
1490
|
+
lengths specified in <em class="parameter"><code>dash_list</code></em>. The manner in
|
1491
|
+
which the on and off segments are drawn is determined
|
1492
|
+
by the <em class="parameter"><code>line_style</code></em> value of the GC. (This can
|
1493
|
+
be changed with <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-line-attributes" title="gdk_gc_set_line_attributes ()"><code class="function">gdk_gc_set_line_attributes()</code></a>.)
|
1494
|
+
</p>
|
1495
|
+
<p>
|
1496
|
+
The <em class="parameter"><code>dash_offset</code></em> defines the phase of the pattern,
|
1497
|
+
specifying how many pixels into the dash-list the pattern
|
1498
|
+
should actually begin.
|
1499
|
+
</p>
|
1500
|
+
<div class="variablelist"><table border="0">
|
1501
|
+
<col align="left" valign="top">
|
1502
|
+
<tbody>
|
1503
|
+
<tr>
|
1504
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1505
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</td>
|
1506
|
+
</tr>
|
1507
|
+
<tr>
|
1508
|
+
<td><p><span class="term"><em class="parameter"><code>dash_offset</code></em> :</span></p></td>
|
1509
|
+
<td>the phase of the dash pattern.</td>
|
1510
|
+
</tr>
|
1511
|
+
<tr>
|
1512
|
+
<td><p><span class="term"><em class="parameter"><code>dash_list</code></em> :</span></p></td>
|
1513
|
+
<td>an array of dash lengths.</td>
|
1514
|
+
</tr>
|
1515
|
+
<tr>
|
1516
|
+
<td><p><span class="term"><em class="parameter"><code>n</code></em> :</span></p></td>
|
1517
|
+
<td>the number of elements in <em class="parameter"><code>dash_list</code></em>.</td>
|
1518
|
+
</tr>
|
1519
|
+
</tbody>
|
1520
|
+
</table></div>
|
1521
|
+
</div>
|
1522
|
+
<hr>
|
1523
|
+
<div class="refsect2">
|
1524
|
+
<a name="gdk-gc-copy"></a><h3>gdk_gc_copy ()</h3>
|
1525
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_copy (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *dst_gc</code></em>,
|
1526
|
+
<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *src_gc</code></em>);</pre>
|
1527
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1528
|
+
<h3 class="title">Warning</h3>
|
1529
|
+
<p><code class="literal">gdk_gc_copy</code> has been deprecated since version 2.22 and should not be used in newly-written code. Use Cairo for drawing. <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-save"><code class="function">cairo_save()</code></a> and <a href="/usr/share/gtk-doc/html/cairo/cairo-cairo-t.html#cairo-restore"><code class="function">cairo_restore()</code></a>
|
1530
|
+
can be helpful in cases where you'd have copied a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>.</p>
|
1531
|
+
</div>
|
1532
|
+
<p>
|
1533
|
+
Copy the set of values from one graphics context
|
1534
|
+
onto another graphics context.
|
1535
|
+
</p>
|
1536
|
+
<div class="variablelist"><table border="0">
|
1537
|
+
<col align="left" valign="top">
|
1538
|
+
<tbody>
|
1539
|
+
<tr>
|
1540
|
+
<td><p><span class="term"><em class="parameter"><code>dst_gc</code></em> :</span></p></td>
|
1541
|
+
<td>the destination graphics context.</td>
|
1542
|
+
</tr>
|
1543
|
+
<tr>
|
1544
|
+
<td><p><span class="term"><em class="parameter"><code>src_gc</code></em> :</span></p></td>
|
1545
|
+
<td>the source graphics context.</td>
|
1546
|
+
</tr>
|
1547
|
+
</tbody>
|
1548
|
+
</table></div>
|
1549
|
+
</div>
|
1550
|
+
<hr>
|
1551
|
+
<div class="refsect2">
|
1552
|
+
<a name="gdk-gc-set-colormap"></a><h3>gdk_gc_set_colormap ()</h3>
|
1553
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_set_colormap (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1554
|
+
<em class="parameter"><code><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a> *colormap</code></em>);</pre>
|
1555
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1556
|
+
<h3 class="title">Warning</h3>
|
1557
|
+
<p><code class="literal">gdk_gc_set_colormap</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. Cairo handles colormaps
|
1558
|
+
automatically, so there is no need to care about them.</p>
|
1559
|
+
</div>
|
1560
|
+
<p>
|
1561
|
+
Sets the colormap for the GC to the given colormap. The depth
|
1562
|
+
of the colormap's visual must match the depth of the drawable
|
1563
|
+
for which the GC was created.
|
1564
|
+
</p>
|
1565
|
+
<div class="variablelist"><table border="0">
|
1566
|
+
<col align="left" valign="top">
|
1567
|
+
<tbody>
|
1568
|
+
<tr>
|
1569
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1570
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>
|
1571
|
+
</td>
|
1572
|
+
</tr>
|
1573
|
+
<tr>
|
1574
|
+
<td><p><span class="term"><em class="parameter"><code>colormap</code></em> :</span></p></td>
|
1575
|
+
<td>a <a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="type">GdkColormap</span></a>
|
1576
|
+
</td>
|
1577
|
+
</tr>
|
1578
|
+
</tbody>
|
1579
|
+
</table></div>
|
1580
|
+
</div>
|
1581
|
+
<hr>
|
1582
|
+
<div class="refsect2">
|
1583
|
+
<a name="gdk-gc-get-colormap"></a><h3>gdk_gc_get_colormap ()</h3>
|
1584
|
+
<pre class="programlisting"><a class="link" href="gdk-Colormaps-and-Colors.html#GdkColormap" title="GdkColormap"><span class="returnvalue">GdkColormap</span></a> * gdk_gc_get_colormap (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>);</pre>
|
1585
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1586
|
+
<h3 class="title">Warning</h3>
|
1587
|
+
<p><code class="literal">gdk_gc_get_colormap</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no replacement. Cairo handles colormaps
|
1588
|
+
automatically, so there is no need to care about them.</p>
|
1589
|
+
</div>
|
1590
|
+
<p>
|
1591
|
+
Retrieves the colormap for a given GC, if it exists.
|
1592
|
+
A GC will have a colormap if the drawable for which it was created
|
1593
|
+
has a colormap, or if a colormap was set explicitely with
|
1594
|
+
gdk_gc_set_colormap.
|
1595
|
+
</p>
|
1596
|
+
<div class="variablelist"><table border="0">
|
1597
|
+
<col align="left" valign="top">
|
1598
|
+
<tbody>
|
1599
|
+
<tr>
|
1600
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1601
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>
|
1602
|
+
</td>
|
1603
|
+
</tr>
|
1604
|
+
<tr>
|
1605
|
+
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1606
|
+
<td>the colormap of <em class="parameter"><code>gc</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if <em class="parameter"><code>gc</code></em> doesn't have one.</td>
|
1607
|
+
</tr>
|
1608
|
+
</tbody>
|
1609
|
+
</table></div>
|
1610
|
+
</div>
|
1611
|
+
<hr>
|
1612
|
+
<div class="refsect2">
|
1613
|
+
<a name="gdk-gc-offset"></a><h3>gdk_gc_offset ()</h3>
|
1614
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gdk_gc_offset (<em class="parameter"><code><a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a> *gc</code></em>,
|
1615
|
+
<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_offset</code></em>,
|
1616
|
+
<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_offset</code></em>);</pre>
|
1617
|
+
<div class="warning" style="margin-left: 0.5in; margin-right: 0.5in;">
|
1618
|
+
<h3 class="title">Warning</h3>
|
1619
|
+
<p><code class="literal">gdk_gc_offset</code> has been deprecated since version 2.22 and should not be used in newly-written code. There is no direct replacement, as this is just a
|
1620
|
+
convenience function for gdk_gc_set_ts_origin and <a class="link" href="gdk-Graphics-Contexts.html#gdk-gc-set-clip-origin" title="gdk_gc_set_clip_origin ()"><code class="function">gdk_gc_set_clip_origin()</code></a>.</p>
|
1621
|
+
</div>
|
1622
|
+
<p>
|
1623
|
+
Offset attributes such as the clip and tile-stipple origins
|
1624
|
+
of the GC so that drawing at x - x_offset, y - y_offset with
|
1625
|
+
the offset GC has the same effect as drawing at x, y with the original
|
1626
|
+
GC.
|
1627
|
+
</p>
|
1628
|
+
<div class="variablelist"><table border="0">
|
1629
|
+
<col align="left" valign="top">
|
1630
|
+
<tbody>
|
1631
|
+
<tr>
|
1632
|
+
<td><p><span class="term"><em class="parameter"><code>gc</code></em> :</span></p></td>
|
1633
|
+
<td>a <a class="link" href="gdk-Graphics-Contexts.html#GdkGC"><span class="type">GdkGC</span></a>
|
1634
|
+
</td>
|
1635
|
+
</tr>
|
1636
|
+
<tr>
|
1637
|
+
<td><p><span class="term"><em class="parameter"><code>x_offset</code></em> :</span></p></td>
|
1638
|
+
<td>amount by which to offset the GC in the X direction</td>
|
1639
|
+
</tr>
|
1640
|
+
<tr>
|
1641
|
+
<td><p><span class="term"><em class="parameter"><code>y_offset</code></em> :</span></p></td>
|
1642
|
+
<td>amount by which to offset the GC in the Y direction</td>
|
1643
|
+
</tr>
|
1644
|
+
</tbody>
|
1645
|
+
</table></div>
|
1646
|
+
</div>
|
1647
|
+
</div>
|
1648
|
+
</div>
|
1649
|
+
<div class="footer">
|
1650
|
+
<hr>
|
1651
|
+
Generated by GTK-Doc V1.18</div>
|
1652
|
+
</body>
|
1653
|
+
</html>
|