gtk2 1.0.3-x86-mingw32 → 1.1.0-x86-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +66 -1
- data/ext/gtk2/extconf.rb +0 -96
- data/ext/gtk2/global.h +274 -13
- data/ext/gtk2/gtk2.def +5 -3
- data/ext/gtk2/init.c +263 -19
- data/ext/gtk2/rbgdk.c +245 -89
- data/ext/gtk2/rbgdk.h +32 -6
- data/ext/gtk2/rbgdkatom.c +38 -28
- data/ext/gtk2/rbgdkcairo.c +32 -42
- data/ext/gtk2/rbgdkcolor.c +52 -42
- data/ext/gtk2/rbgdkcolormap.c +42 -37
- data/ext/gtk2/rbgdkconst.c +23 -13
- data/ext/gtk2/rbgdkconversions.h +19 -6
- data/ext/gtk2/rbgdkcursor.c +37 -25
- data/ext/gtk2/rbgdkdevice.c +77 -67
- data/ext/gtk2/rbgdkdisplay.c +158 -150
- data/ext/gtk2/rbgdkdisplaymanager.c +27 -15
- data/ext/gtk2/rbgdkdragcontext.c +121 -70
- data/ext/gtk2/rbgdkdraw.c +252 -160
- data/ext/gtk2/rbgdkevent.c +30 -20
- data/ext/gtk2/rbgdkgc.c +123 -116
- data/ext/gtk2/rbgdkgeometry.c +77 -68
- data/ext/gtk2/rbgdkimage.c +58 -47
- data/ext/gtk2/rbgdkinput.c +33 -26
- data/ext/gtk2/rbgdkkeymap.c +38 -27
- data/ext/gtk2/rbgdkkeyval.c +44 -32
- data/ext/gtk2/rbgdkpango.c +66 -39
- data/ext/gtk2/rbgdkpangorenderer.c +63 -35
- data/ext/gtk2/rbgdkpixbuf.c +36 -25
- data/ext/gtk2/rbgdkpixmap.c +65 -49
- data/ext/gtk2/rbgdkproperty.c +66 -60
- data/ext/gtk2/rbgdkrectangle.c +54 -46
- data/ext/gtk2/rbgdkregion.c +144 -79
- data/ext/gtk2/rbgdkrgb.c +74 -58
- data/ext/gtk2/rbgdkscreen.c +103 -97
- data/ext/gtk2/rbgdkselection.c +49 -39
- data/ext/gtk2/rbgdkthreads.c +32 -19
- data/ext/gtk2/rbgdktimecoord.c +60 -38
- data/ext/gtk2/rbgdkvisual.c +79 -71
- data/ext/gtk2/rbgdkwindow.c +284 -305
- data/ext/gtk2/rbgdkwindowattr.c +69 -58
- data/ext/gtk2/rbgdkx11.c +41 -28
- data/ext/gtk2/rbgtk.c +498 -19
- data/ext/gtk2/rbgtk.h +35 -20
- data/ext/gtk2/rbgtkaboutdialog.c +33 -80
- data/ext/gtk2/rbgtkaccelerator.c +36 -23
- data/ext/gtk2/rbgtkaccelgroup.c +50 -40
- data/ext/gtk2/rbgtkaccelgroupentry.c +32 -20
- data/ext/gtk2/rbgtkaccelkey.c +40 -28
- data/ext/gtk2/rbgtkaccellabel.c +30 -18
- data/ext/gtk2/rbgtkaccelmap.c +55 -42
- data/ext/gtk2/rbgtkaccessible.c +25 -14
- data/ext/gtk2/rbgtkaction.c +68 -68
- data/ext/gtk2/rbgtkactiongroup.c +317 -195
- data/ext/gtk2/rbgtkadjustment.c +33 -46
- data/ext/gtk2/rbgtkalignment.c +36 -24
- data/ext/gtk2/rbgtkallocation.c +53 -42
- data/ext/gtk2/rbgtkarrow.c +34 -22
- data/ext/gtk2/rbgtkaspectframe.c +32 -20
- data/ext/gtk2/rbgtkassistant.c +81 -61
- data/ext/gtk2/rbgtkbbox.c +32 -20
- data/ext/gtk2/rbgtkbin.c +28 -16
- data/ext/gtk2/rbgtkbindingset.c +42 -35
- data/ext/gtk2/rbgtkborder.c +34 -23
- data/ext/gtk2/rbgtkbox.c +40 -29
- data/ext/gtk2/rbgtkbuildable.c +57 -45
- data/ext/gtk2/rbgtkbuilder.c +53 -38
- data/ext/gtk2/rbgtkbutton.c +41 -55
- data/ext/gtk2/rbgtkcalendar.c +51 -40
- data/ext/gtk2/rbgtkcelleditable.c +28 -17
- data/ext/gtk2/rbgtkcelllayout.c +41 -30
- data/ext/gtk2/rbgtkcellrenderer.c +43 -32
- data/ext/gtk2/rbgtkcellrendereraccel.c +26 -18
- data/ext/gtk2/rbgtkcellrenderercombo.c +25 -17
- data/ext/gtk2/rbgtkcellrendererpixbuf.c +24 -17
- data/ext/gtk2/rbgtkcellrendererprogress.c +25 -17
- data/ext/gtk2/rbgtkcellrendererspin.c +24 -16
- data/ext/gtk2/rbgtkcellrendererspinner.c +23 -11
- data/ext/gtk2/rbgtkcellrenderertext.c +28 -21
- data/ext/gtk2/rbgtkcellrenderertoggle.c +24 -16
- data/ext/gtk2/rbgtkcellview.c +34 -33
- data/ext/gtk2/rbgtkcheckbutton.c +28 -16
- data/ext/gtk2/rbgtkcheckmenuitem.c +31 -19
- data/ext/gtk2/rbgtkclipboard.c +123 -77
- data/ext/gtk2/rbgtkcolorbutton.c +26 -31
- data/ext/gtk2/rbgtkcolorsel.c +109 -55
- data/ext/gtk2/rbgtkcolorselectiondialog.c +28 -19
- data/ext/gtk2/rbgtkcombo.c +43 -32
- data/ext/gtk2/rbgtkcombobox.c +44 -83
- data/ext/gtk2/rbgtkcomboboxentry.c +26 -21
- data/ext/gtk2/rbgtkconst.c +23 -13
- data/ext/gtk2/rbgtkcontainer.c +153 -100
- data/ext/gtk2/rbgtkconversions.h +19 -6
- data/ext/gtk2/rbgtkcurve.c +46 -36
- data/ext/gtk2/rbgtkdialog.c +104 -70
- data/ext/gtk2/rbgtkdrag.c +173 -121
- data/ext/gtk2/rbgtkdrawingarea.c +28 -16
- data/ext/gtk2/rbgtkeditable.c +63 -51
- data/ext/gtk2/rbgtkentry.c +48 -85
- data/ext/gtk2/rbgtkentrycompletion.c +42 -55
- data/ext/gtk2/rbgtkeventbox.c +28 -16
- data/ext/gtk2/rbgtkexpander.c +26 -35
- data/ext/gtk2/rbgtkfilechooser.c +87 -143
- data/ext/gtk2/rbgtkfilechooserbutton.c +26 -32
- data/ext/gtk2/rbgtkfilechooserdialog.c +25 -15
- data/ext/gtk2/rbgtkfilechooserwidget.c +26 -15
- data/ext/gtk2/rbgtkfilefilter.c +45 -35
- data/ext/gtk2/rbgtkfilesel.c +54 -43
- data/ext/gtk2/rbgtkfilesystemerror.c +51 -0
- data/ext/gtk2/rbgtkfixed.c +36 -25
- data/ext/gtk2/rbgtkfontbutton.c +26 -37
- data/ext/gtk2/rbgtkfontselection.c +27 -15
- data/ext/gtk2/rbgtkfontselectiondialog.c +43 -32
- data/ext/gtk2/rbgtkframe.c +39 -28
- data/ext/gtk2/rbgtkgamma.c +32 -20
- data/ext/gtk2/rbgtkhandlebox.c +31 -19
- data/ext/gtk2/rbgtkhbbox.c +28 -16
- data/ext/gtk2/rbgtkhbox.c +29 -17
- data/ext/gtk2/rbgtkhpaned.c +28 -16
- data/ext/gtk2/rbgtkhruler.c +28 -16
- data/ext/gtk2/rbgtkhscale.c +28 -16
- data/ext/gtk2/rbgtkhscrollbar.c +28 -16
- data/ext/gtk2/rbgtkhseparator.c +28 -16
- data/ext/gtk2/rbgtkiconfactory.c +35 -23
- data/ext/gtk2/rbgtkiconinfo.c +42 -30
- data/ext/gtk2/rbgtkiconset.c +31 -19
- data/ext/gtk2/rbgtkiconsize.c +38 -25
- data/ext/gtk2/rbgtkiconsource.c +62 -50
- data/ext/gtk2/rbgtkicontheme.c +95 -95
- data/ext/gtk2/rbgtkiconview.c +87 -121
- data/ext/gtk2/rbgtkimage.c +31 -40
- data/ext/gtk2/rbgtkimagemenuitem.c +26 -14
- data/ext/gtk2/rbgtkimcontext.c +46 -34
- data/ext/gtk2/rbgtkimcontextsimple.c +47 -24
- data/ext/gtk2/rbgtkimmulticontext.c +26 -14
- data/ext/gtk2/rbgtkinputdialog.c +28 -16
- data/ext/gtk2/rbgtkinvisible.c +24 -18
- data/ext/gtk2/rbgtkitem.c +32 -20
- data/ext/gtk2/rbgtkitemfactory.c +65 -57
- data/ext/gtk2/rbgtklabel.c +46 -57
- data/ext/gtk2/rbgtklayout.c +40 -29
- data/ext/gtk2/rbgtklinkbutton.c +26 -15
- data/ext/gtk2/rbgtkliststore.c +145 -102
- data/ext/gtk2/rbgtkmacros.h +19 -6
- data/ext/gtk2/rbgtkmenu.c +47 -59
- data/ext/gtk2/rbgtkmenubar.c +30 -30
- data/ext/gtk2/rbgtkmenuitem.c +34 -41
- data/ext/gtk2/rbgtkmenushell.c +43 -42
- data/ext/gtk2/rbgtkmenutoolbutton.c +27 -16
- data/ext/gtk2/rbgtkmessagedialog.c +31 -25
- data/ext/gtk2/rbgtkmisc.c +33 -22
- data/ext/gtk2/rbgtknotebook.c +98 -134
- data/ext/gtk2/rbgtkobject.c +46 -81
- data/ext/gtk2/rbgtkoptionmenu.c +35 -23
- data/ext/gtk2/rbgtkpagesetup.c +64 -54
- data/ext/gtk2/rbgtkpagesetupunixdialog.c +34 -27
- data/ext/gtk2/rbgtkpaned.c +46 -36
- data/ext/gtk2/rbgtkpapersize.c +60 -54
- data/ext/gtk2/rbgtkplug.c +32 -20
- data/ext/gtk2/rbgtkprintcontext.c +43 -35
- data/ext/gtk2/rbgtkprinter.c +36 -37
- data/ext/gtk2/rbgtkprintjob.c +36 -37
- data/ext/gtk2/rbgtkprintoperation.c +44 -33
- data/ext/gtk2/rbgtkprintoperationpreview.c +30 -18
- data/ext/gtk2/rbgtkprintsettings.c +248 -192
- data/ext/gtk2/rbgtkprintunixdialog.c +33 -45
- data/ext/gtk2/rbgtkprogress.c +23 -13
- data/ext/gtk2/rbgtkprogressbar.c +47 -46
- data/ext/gtk2/rbgtkradioaction.c +84 -39
- data/ext/gtk2/rbgtkradiobutton.c +33 -21
- data/ext/gtk2/rbgtkradiomenuitem.c +86 -45
- data/ext/gtk2/rbgtkradiotoolbutton.c +99 -53
- data/ext/gtk2/rbgtkrange.c +36 -56
- data/ext/gtk2/rbgtkrc.c +61 -49
- data/ext/gtk2/rbgtkrcstyle.c +59 -48
- data/ext/gtk2/rbgtkrecentaction.c +28 -16
- data/ext/gtk2/rbgtkrecentchooser.c +58 -92
- data/ext/gtk2/rbgtkrecentchooserdialog.c +29 -18
- data/ext/gtk2/rbgtkrecentchoosermenu.c +25 -21
- data/ext/gtk2/rbgtkrecentchooserwidget.c +24 -13
- data/ext/gtk2/rbgtkrecentdata.c +47 -36
- data/ext/gtk2/rbgtkrecentfilter.c +55 -46
- data/ext/gtk2/rbgtkrecentfilterinfo.c +51 -40
- data/ext/gtk2/rbgtkrecentinfo.c +66 -56
- data/ext/gtk2/rbgtkrecentmanager.c +47 -43
- data/ext/gtk2/rbgtkruler.c +35 -30
- data/ext/gtk2/rbgtkscale.c +29 -18
- data/ext/gtk2/rbgtkscalebutton.c +27 -27
- data/ext/gtk2/rbgtkscrollbar.c +23 -13
- data/ext/gtk2/rbgtkscrolledwindow.c +44 -60
- data/ext/gtk2/rbgtkselection.c +87 -67
- data/ext/gtk2/rbgtkselectiondata.c +74 -65
- data/ext/gtk2/rbgtkseparator.c +23 -13
- data/ext/gtk2/rbgtkseparatormenuitem.c +25 -13
- data/ext/gtk2/rbgtkseparatortoolitem.c +26 -21
- data/ext/gtk2/rbgtksettings.c +123 -103
- data/ext/gtk2/rbgtksizegroup.c +33 -30
- data/ext/gtk2/rbgtksocket.c +32 -20
- data/ext/gtk2/rbgtkspinbutton.c +48 -38
- data/ext/gtk2/rbgtkspinner.c +27 -14
- data/ext/gtk2/rbgtkstatusbar.c +36 -31
- data/ext/gtk2/rbgtkstatusicon.c +31 -44
- data/ext/gtk2/rbgtkstock.c +137 -125
- data/ext/gtk2/rbgtkstyle.c +177 -161
- data/ext/gtk2/rbgtktable.c +58 -47
- data/ext/gtk2/rbgtktargetlist.c +56 -36
- data/ext/gtk2/rbgtktearoffmenuitem.c +28 -16
- data/ext/gtk2/rbgtktextappearance.c +44 -34
- data/ext/gtk2/rbgtktextattributes.c +54 -42
- data/ext/gtk2/rbgtktextbuffer.c +188 -191
- data/ext/gtk2/rbgtktextchild.c +29 -18
- data/ext/gtk2/rbgtktextiter.c +153 -145
- data/ext/gtk2/rbgtktextmark.c +33 -30
- data/ext/gtk2/rbgtktexttag.c +34 -22
- data/ext/gtk2/rbgtktexttagtable.c +36 -25
- data/ext/gtk2/rbgtktextview.c +85 -73
- data/ext/gtk2/rbgtktoggleaction.c +27 -22
- data/ext/gtk2/rbgtktogglebutton.c +37 -26
- data/ext/gtk2/rbgtktoggletoolbutton.c +26 -20
- data/ext/gtk2/rbgtktoolbar.c +66 -69
- data/ext/gtk2/rbgtktoolbutton.c +27 -40
- data/ext/gtk2/rbgtktoolitem.c +60 -62
- data/ext/gtk2/rbgtktooltip.c +36 -25
- data/ext/gtk2/rbgtktooltips.c +42 -34
- data/ext/gtk2/rbgtktreedragdest.c +20 -11
- data/ext/gtk2/rbgtktreedragsource.c +20 -11
- data/ext/gtk2/rbgtktreeiter.c +58 -47
- data/ext/gtk2/rbgtktreemodel.c +83 -65
- data/ext/gtk2/rbgtktreemodelfilter.c +47 -35
- data/ext/gtk2/rbgtktreemodelsort.c +38 -27
- data/ext/gtk2/rbgtktreepath.c +55 -44
- data/ext/gtk2/rbgtktreerowreference.c +60 -42
- data/ext/gtk2/rbgtktreeselection.c +61 -52
- data/ext/gtk2/rbgtktreesortable.c +52 -42
- data/ext/gtk2/rbgtktreestore.c +88 -67
- data/ext/gtk2/rbgtktreeview.c +157 -185
- data/ext/gtk2/rbgtktreeviewcolumn.c +57 -62
- data/ext/gtk2/rbgtkuimanager.c +61 -61
- data/ext/gtk2/rbgtkvbbox.c +28 -16
- data/ext/gtk2/rbgtkvbox.c +29 -17
- data/ext/gtk2/rbgtkviewport.c +28 -16
- data/ext/gtk2/rbgtkvolumebutton.c +28 -16
- data/ext/gtk2/rbgtkvpaned.c +28 -16
- data/ext/gtk2/rbgtkvruler.c +28 -16
- data/ext/gtk2/rbgtkvscale.c +28 -16
- data/ext/gtk2/rbgtkvscrollbar.c +28 -16
- data/ext/gtk2/rbgtkvseparator.c +28 -16
- data/ext/gtk2/rbgtkwidget.c +284 -296
- data/ext/gtk2/rbgtkwindow.c +156 -214
- data/ext/gtk2/rbgtkwindowgroup.c +35 -24
- data/lib/1.8/gtk2.so +0 -0
- data/lib/1.9/gtk2.so +0 -0
- data/sample/testgtk/labels.rb +1 -0
- data/sample/testgtk/testgtk.rb +2 -0
- data/vendor/local/bin/gtk-builder-convert +29 -2
- data/vendor/local/bin/gtk-demo.exe +0 -0
- data/vendor/local/bin/gtk-query-immodules-2.0.exe +0 -0
- data/vendor/local/bin/gtk-update-icon-cache.exe +0 -0
- data/vendor/local/bin/libgailutil-18.dll +0 -0
- data/vendor/local/bin/libgdk-win32-2.0-0.dll +0 -0
- data/vendor/local/bin/libgtk-win32-2.0-0.dll +0 -0
- data/vendor/local/etc/gtk-2.0/gtk.immodules +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdk.h +4 -7
- data/vendor/local/include/gtk-2.0/gdk/gdkcairo.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdisplay.h +4 -2
- data/vendor/local/include/gtk-2.0/gdk/gdkdnd.h +7 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkdrawable.h +7 -4
- data/vendor/local/include/gtk-2.0/gdk/gdkfont.h +1 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkinput.h +2 -1
- data/vendor/local/include/gtk-2.0/gdk/gdkpixmap.h +4 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkproperty.h +13 -9
- data/vendor/local/include/gtk-2.0/gdk/gdkspawn.h +2 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwin32.h +6 -0
- data/vendor/local/include/gtk-2.0/gdk/gdkwindow.h +16 -6
- data/vendor/local/include/gtk-2.0/gtk/gtk.h +1 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkaboutdialog.h +18 -14
- data/vendor/local/include/gtk-2.0/gtk/gtkaction.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkactiongroup.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkassistant.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcolorbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkcombobox.h +15 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxentry.h +3 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkcomboboxtext.h +77 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkentry.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkentrybuffer.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkexpander.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooser.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilechooserbutton.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilefilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfilesel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkfontbutton.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkfontsel.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkframe.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkhruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkiconfactory.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtkicontheme.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkimage.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkitemfactory.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtklabel.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtklinkbutton.h +3 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmain.h +5 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkmenu.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkmenuitem.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtknotebook.h +9 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkpapersize.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkprintoperation.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkprintsettings.h +7 -7
- data/vendor/local/include/gtk-2.0/gtk/gtkprivate.h +25 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkprogressbar.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrange.h +6 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentfilter.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtkrecentmanager.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkstatusicon.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktextmark.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolbutton.h +3 -3
- data/vendor/local/include/gtk-2.0/gtk/gtktoolitemgroup.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktoolpalette.h +2 -2
- data/vendor/local/include/gtk-2.0/gtk/gtktreeviewcolumn.h +1 -1
- data/vendor/local/include/gtk-2.0/gtk/gtktypeutils.h +2 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkversion.h +4 -4
- data/vendor/local/include/gtk-2.0/gtk/gtkvruler.h +4 -0
- data/vendor/local/include/gtk-2.0/gtk/gtkwidget.h +6 -2
- data/vendor/local/include/gtk-2.0/gtk/gtkwindow.h +8 -7
- data/vendor/local/lib/gailutil.lib +0 -0
- data/vendor/local/lib/gdk-win32-2.0.lib +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libpixmap.dll +0 -0
- data/vendor/local/lib/gtk-2.0/2.10.0/engines/libwimp.dll +0 -0
- data/vendor/local/lib/gtk-2.0/modules/libgail.dll +0 -0
- data/vendor/local/lib/gtk-win32-2.0.lib +0 -0
- data/vendor/local/lib/libgailutil.dll.a +0 -0
- data/vendor/local/lib/libgdk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/libgtk-win32-2.0.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gail.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gdk-win32-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-2.0.pc +1 -1
- data/vendor/local/lib/pkgconfig/gtk+-win32-2.0.pc +1 -1
- data/vendor/local/manifest/{gtk+-dev_2.22.1-1_win32.mft → gtk+-dev_2.24.8-1_win32.mft} +10 -8
- data/vendor/local/manifest/{gtk+_2.22.1-1_win32.mft → gtk+_2.24.8-1_win32.mft} +2 -6
- data/vendor/local/share/doc/{gtk+-2.22.1 → gtk+-2.24.8}/COPYING +0 -0
- data/vendor/local/share/doc/{gtk+-dev-2.22.1 → gtk+-dev-2.24.8}/COPYING +0 -0
- data/vendor/local/share/gtk-2.0/demo/appwindow.c +0 -21
- data/vendor/local/share/gtk-2.0/demo/combobox.c +6 -6
- data/vendor/local/share/gtk-2.0/demo/editable_cells.c +5 -5
- data/vendor/local/share/gtk-2.0/demo/iconview.c +1 -0
- data/vendor/local/share/gtk-2.0/demo/offscreen_window.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/offscreen_window2.c +1 -1
- data/vendor/local/share/gtk-2.0/demo/sizegroup.c +2 -2
- data/vendor/local/share/gtk-2.0/demo/textview.c +4 -4
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailMisc.html +74 -108
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util-GailTextUtil.html +48 -62
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/gail-libgail-util.devhelp2 +1 -1
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/index.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/libgail-util-main.html +3 -3
- data/vendor/local/share/gtk-doc/html/gail-libgail-util/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplay.html +154 -211
- data/vendor/local/share/gtk-doc/html/gdk/GdkDisplayManager.html +35 -39
- data/vendor/local/share/gtk-doc/html/gdk/GdkScreen.html +182 -241
- data/vendor/local/share/gtk-doc/html/gdk/annotation-glossary.html +9 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-10.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-12.html +8 -8
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-14.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-16.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-2.html +26 -26
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-22.html +6 -6
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-4.html +7 -7
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-6.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gdk/api-index-deprecated.html +150 -20
- data/vendor/local/share/gtk-doc/html/gdk/api-index-full.html +174 -138
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Application-launching.html +24 -27
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Bitmaps-and-Pixmaps.html +136 -136
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cairo-Interaction.html +88 -46
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Colormaps-and-Colors.html +139 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Cursors.html +76 -95
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drag-and-Drop.html +164 -203
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Drawing-Primitives.html +303 -419
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Event-Structures.html +324 -439
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Events.html +114 -147
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Fonts.html +157 -236
- data/vendor/local/share/gtk-doc/html/gdk/gdk-GdkRGB.html +159 -233
- data/vendor/local/share/gtk-doc/html/gdk/gdk-General.html +114 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Graphics-Contexts.html +170 -252
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Images.html +92 -133
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input-Devices.html +146 -194
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Input.html +37 -55
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Keyboard-Handling.html +183 -198
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pango-Interaction.html +94 -121
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Pixbufs.html +100 -158
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Points-Rectangles-and-Regions.html +147 -179
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Properties-and-Atoms.html +190 -237
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Selections.html +100 -137
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Testing.html +26 -39
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Threads.html +61 -87
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Visuals.html +86 -111
- data/vendor/local/share/gtk-doc/html/gdk/gdk-Windows.html +725 -801
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp +51 -134
- data/vendor/local/share/gtk-doc/html/gdk/gdk.devhelp2 +75 -158
- data/vendor/local/share/gtk-doc/html/gdk/index.html +10 -13
- data/vendor/local/share/gtk-doc/html/gdk/index.sgml +10 -94
- data/vendor/local/share/gtk-doc/html/gdk/multihead.html +15 -15
- data/vendor/local/share/gtk-doc/html/gdk/reference.html +8 -10
- data/vendor/local/share/gtk-doc/html/gdk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/AbstractObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Actions.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Builder.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ButtonWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DeprecatedObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/DisplayWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/GtkAboutDialog.html +228 -212
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccelLabel.html +41 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkAccessible.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkAction.html +181 -248
- data/vendor/local/share/gtk-doc/html/gtk/GtkActionGroup.html +178 -261
- data/vendor/local/share/gtk-doc/html/gtk/GtkActivatable.html +48 -52
- data/vendor/local/share/gtk-doc/html/gtk/GtkAdjustment.html +80 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkAlignment.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkArrow.html +32 -38
- data/vendor/local/share/gtk-doc/html/gtk/GtkAspectFrame.html +38 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkAssistant.html +113 -134
- data/vendor/local/share/gtk-doc/html/gtk/GtkBin.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkBox.html +97 -122
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuildable.html +88 -116
- data/vendor/local/share/gtk-doc/html/gtk/GtkBuilder.html +100 -139
- data/vendor/local/share/gtk-doc/html/gtk/GtkButton.html +156 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkButtonBox.html +61 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkCList.html +637 -917
- data/vendor/local/share/gtk-doc/html/gtk/GtkCTree.html +570 -1841
- data/vendor/local/share/gtk-doc/html/gtk/GtkCalendar.html +130 -165
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellEditable.html +38 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellLayout.html +62 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRenderer.html +136 -160
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererAccel.html +40 -49
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererCombo.html +29 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererPixbuf.html +33 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererProgress.html +25 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpin.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererSpinner.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererText.html +75 -80
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellRendererToggle.html +47 -56
- data/vendor/local/share/gtk-doc/html/gtk/GtkCellView.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkCheckButton.html +32 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorButton.html +63 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelection.html +128 -200
- data/vendor/local/share/gtk-doc/html/gtk/GtkColorSelectionDialog.html +31 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkCombo.html +65 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBox.html +346 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxEntry.html +59 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkComboBoxText.html +328 -0
- data/vendor/local/share/gtk-doc/html/gtk/GtkContainer.html +170 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkCurve.html +63 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkDialog.html +102 -124
- data/vendor/local/share/gtk-doc/html/gtk/GtkDrawingArea.html +28 -30
- data/vendor/local/share/gtk-doc/html/gtk/GtkEditable.html +71 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntry.html +389 -491
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryBuffer.html +73 -106
- data/vendor/local/share/gtk-doc/html/gtk/GtkEntryCompletion.html +132 -187
- data/vendor/local/share/gtk-doc/html/gtk/GtkEventBox.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkExpander.html +80 -100
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooser.html +358 -414
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserButton.html +71 -94
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserDialog.html +32 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileChooserWidget.html +23 -28
- data/vendor/local/share/gtk-doc/html/gtk/GtkFileSelection.html +104 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkFixed.html +43 -54
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontButton.html +64 -90
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelection.html +70 -85
- data/vendor/local/share/gtk-doc/html/gtk/GtkFontSelectionDialog.html +54 -63
- data/vendor/local/share/gtk-doc/html/gtk/GtkFrame.html +55 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkGammaCurve.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkHBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHButtonBox.html +31 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkHPaned.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkHRuler.html +32 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSV.html +67 -92
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScale.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkHScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkHSeparator.html +21 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkHandleBox.html +57 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContext.html +153 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMContextSimple.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIMMulticontext.html +20 -24
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconTheme.html +213 -271
- data/vendor/local/share/gtk-doc/html/gtk/GtkIconView.html +333 -455
- data/vendor/local/share/gtk-doc/html/gtk/GtkImage.html +241 -262
- data/vendor/local/share/gtk-doc/html/gtk/GtkImageMenuItem.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkInfoBar.html +69 -82
- data/vendor/local/share/gtk-doc/html/gtk/GtkInputDialog.html +37 -42
- data/vendor/local/share/gtk-doc/html/gtk/GtkInvisible.html +42 -50
- data/vendor/local/share/gtk-doc/html/gtk/GtkItem.html +38 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkItemFactory.html +185 -276
- data/vendor/local/share/gtk-doc/html/gtk/GtkLabel.html +201 -251
- data/vendor/local/share/gtk-doc/html/gtk/GtkLayout.html +72 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkLinkButton.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkList.html +132 -182
- data/vendor/local/share/gtk-doc/html/gtk/GtkListItem.html +82 -132
- data/vendor/local/share/gtk-doc/html/gtk/GtkListStore.html +142 -172
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenu.html +185 -229
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuBar.html +43 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuItem.html +114 -147
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuShell.html +89 -121
- data/vendor/local/share/gtk-doc/html/gtk/GtkMenuToolButton.html +75 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkMessageDialog.html +83 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkMisc.html +37 -41
- data/vendor/local/share/gtk-doc/html/gtk/GtkNotebook.html +398 -454
- data/vendor/local/share/gtk-doc/html/gtk/GtkObject.html +150 -208
- data/vendor/local/share/gtk-doc/html/gtk/GtkOffscreenWindow.html +30 -34
- data/vendor/local/share/gtk-doc/html/gtk/GtkOldEditable.html +82 -167
- data/vendor/local/share/gtk-doc/html/gtk/GtkOptionMenu.html +58 -68
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetup.html +117 -162
- data/vendor/local/share/gtk-doc/html/gtk/GtkPageSetupUnixDialog.html +24 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkPaned.html +99 -139
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkPaperSize.html → GtkPaperSize.html} +206 -254
- data/vendor/local/share/gtk-doc/html/gtk/GtkPixmap.html +51 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkPlug.html +67 -83
- data/vendor/local/share/gtk-doc/html/gtk/GtkPreview.html +122 -149
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintContext.html +40 -51
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintJob.html +57 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintSettings.html +284 -413
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrintUnixDialog.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkPrinter.html +112 -142
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgress.html +82 -113
- data/vendor/local/share/gtk-doc/html/gtk/GtkProgressBar.html +93 -110
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioAction.html +44 -55
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioButton.html +88 -81
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioMenuItem.html +65 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkRadioToolButton.html +35 -44
- data/vendor/local/share/gtk-doc/html/gtk/GtkRange.html +224 -188
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentAction.html +36 -43
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooser.html +137 -196
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserDialog.html +29 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserMenu.html +27 -32
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentChooserWidget.html +19 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentFilter.html +67 -89
- data/vendor/local/share/gtk-doc/html/gtk/GtkRecentManager.html +219 -286
- data/vendor/local/share/gtk-doc/html/gtk/GtkRuler.html +85 -60
- data/vendor/local/share/gtk-doc/html/gtk/GtkScale.html +63 -74
- data/vendor/local/share/gtk-doc/html/gtk/GtkScaleButton.html +67 -84
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrollbar.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/GtkScrolledWindow.html +98 -146
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparator.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorMenuItem.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkSeparatorToolItem.html +26 -29
- data/vendor/local/share/gtk-doc/html/gtk/GtkSettings.html +134 -264
- data/vendor/local/share/gtk-doc/html/gtk/GtkSizeGroup.html +40 -47
- data/vendor/local/share/gtk-doc/html/gtk/GtkSocket.html +52 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinButton.html +134 -179
- data/vendor/local/share/gtk-doc/html/gtk/GtkSpinner.html +26 -27
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusIcon.html +221 -285
- data/vendor/local/share/gtk-doc/html/gtk/GtkStatusbar.html +62 -77
- data/vendor/local/share/gtk-doc/html/gtk/GtkStyle.html +754 -1135
- data/vendor/local/share/gtk-doc/html/gtk/GtkTable.html +96 -137
- data/vendor/local/share/gtk-doc/html/gtk/GtkTearoffMenuItem.html +20 -21
- data/vendor/local/share/gtk-doc/html/gtk/GtkText.html +105 -148
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextBuffer.html +527 -685
- data/vendor/local/share/gtk-doc/html/gtk/{gtk-GtkTextIter.html → GtkTextIter.html} +666 -807
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextMark.html +43 -48
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTag.html +180 -210
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextTagTable.html +86 -78
- data/vendor/local/share/gtk-doc/html/gtk/GtkTextView.html +355 -439
- data/vendor/local/share/gtk-doc/html/gtk/GtkTipsQuery.html +76 -96
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleAction.html +45 -59
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleButton.html +61 -73
- data/vendor/local/share/gtk-doc/html/gtk/GtkToggleToolButton.html +34 -40
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolButton.html +82 -93
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItem.html +135 -168
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolItemGroup.html +86 -105
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolPalette.html +121 -144
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolShell.html +44 -61
- data/vendor/local/share/gtk-doc/html/gtk/GtkToolbar.html +251 -362
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltip.html +37 -37
- data/vendor/local/share/gtk-doc/html/gtk/GtkTooltips.html +62 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTree.html +107 -154
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeItem.html +48 -136
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModel.html +434 -566
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelFilter.html +97 -127
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeModelSort.html +65 -72
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSelection.html +125 -173
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeSortable.html +55 -64
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeStore.html +173 -202
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeView.html +588 -867
- data/vendor/local/share/gtk-doc/html/gtk/GtkTreeViewColumn.html +209 -288
- data/vendor/local/share/gtk-doc/html/gtk/GtkUIManager.html +127 -191
- data/vendor/local/share/gtk-doc/html/gtk/GtkVBox.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/GtkVButtonBox.html +29 -36
- data/vendor/local/share/gtk-doc/html/gtk/GtkVPaned.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/GtkVRuler.html +33 -26
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScale.html +26 -31
- data/vendor/local/share/gtk-doc/html/gtk/GtkVScrollbar.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkVSeparator.html +19 -20
- data/vendor/local/share/gtk-doc/html/gtk/GtkViewport.html +60 -71
- data/vendor/local/share/gtk-doc/html/gtk/GtkVolumeButton.html +18 -19
- data/vendor/local/share/gtk-doc/html/gtk/GtkWidget.html +1499 -1795
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindow.html +447 -597
- data/vendor/local/share/gtk-doc/html/gtk/GtkWindowGroup.html +23 -41
- data/vendor/local/share/gtk-doc/html/gtk/LayoutContainers.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/MenusAndCombos.html +8 -5
- data/vendor/local/share/gtk-doc/html/gtk/MiscObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/NumericEntry.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Ornaments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/PlugSocket.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/Printing.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/RecentDocuments.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/ScrollingWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SelectorWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/SpecialObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/TextWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TextWidgetObjects.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidget.html +18 -18
- data/vendor/local/share/gtk-doc/html/gtk/TreeWidgetObjects.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/WindowWidgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/annotation-glossary.html +20 -14
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-10.html +23 -23
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-12.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-14.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-16.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-18.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-2.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-20.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-22.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-24.html +121 -0
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-4.html +31 -31
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-6.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/api-index-2-8.html +10 -10
- data/vendor/local/share/gtk-doc/html/gtk/api-index-deprecated.html +239 -48
- data/vendor/local/share/gtk-doc/html/gtk/api-index-full.html +476 -388
- data/vendor/local/share/gtk-doc/html/gtk/ch01.html +17 -6
- data/vendor/local/share/gtk-doc/html/gtk/ch02.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/chap-drawing-model.html +19 -19
- data/vendor/local/share/gtk-doc/html/gtk/checklist-gdkeventexpose-region.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/checklist-modifiers.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/checklist-named-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/decorating-the-assistant-pages.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/glossary.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Accelerator-Maps.html +78 -133
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Bindings.html +172 -234
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Clipboards.html +235 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Drag-and-Drop.html +248 -318
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Feature-Test-Macros.html +37 -43
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Filesystem-utilities.html +54 -60
- data/vendor/local/share/gtk-doc/html/gtk/gtk-General.html +295 -339
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Graphics-Contexts.html +36 -42
- data/vendor/local/share/gtk-doc/html/gtk/gtk-GtkTreeView-drag-and-drop.html +80 -85
- data/vendor/local/share/gtk-doc/html/gtk/gtk-High-level-Printing-API.html +225 -293
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Keyboard-Accelerators.html +180 -268
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Orientable.html +19 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Resource-Files.html +159 -195
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Selections.html +377 -450
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Signals.html +192 -308
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Standard-Enumerations.html +55 -55
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Stock-Items.html +154 -158
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Testing.html +95 -143
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Themeable-Stock-Images.html +212 -243
- data/vendor/local/share/gtk-doc/html/gtk/gtk-Types.html +273 -345
- data/vendor/local/share/gtk-doc/html/gtk/gtk-builder-convert.html +20 -13
- data/vendor/local/share/gtk-doc/html/gtk/gtk-building.html +22 -22
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-1-2.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-changes-2-0.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-compiling.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-directfb.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkcheckmenuitem.html +65 -77
- data/vendor/local/share/gtk-doc/html/gtk/gtk-gtkfilefilter.html +62 -79
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-ClientSideWindows.html +15 -15
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAboutDialog.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAction.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkAssistant.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkBuilder.html +7 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkColorButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkComboBox.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkFileChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkIconView.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkLinkButton.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-GtkRecentChooser.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-checklist.html +9 -9
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-entry-icons.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-label-links.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-migrating-tooltips.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtk-osx.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtk-query-immodules-2.0.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-question-index.html +115 -115
- data/vendor/local/share/gtk-doc/html/gtk/gtk-resources.html +11 -11
- data/vendor/local/share/gtk-doc/html/gtk/gtk-running.html +60 -33
- data/vendor/local/share/gtk-doc/html/gtk/gtk-update-icon-cache.html +12 -12
- data/vendor/local/share/gtk-doc/html/gtk/gtk-windows.html +16 -16
- data/vendor/local/share/gtk-doc/html/gtk/gtk-x11.html +14 -14
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp +440 -413
- data/vendor/local/share/gtk-doc/html/gtk/gtk.devhelp2 +483 -456
- data/vendor/local/share/gtk-doc/html/gtk/gtk.html +8 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkbase.html +6 -6
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-extra-widgets.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-installing-preview.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-new-features.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkfilechooser-selection-modes.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/gtkobjects.html +11 -8
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-advanced.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/gtkrecent-chooser.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/index.html +16 -12
- data/vendor/local/share/gtk-doc/html/gtk/index.sgml +189 -142
- data/vendor/local/share/gtk-doc/html/gtk/migrating-GtkCombo.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/migrating-gnomeuiinfo.html +20 -20
- data/vendor/local/share/gtk-doc/html/gtk/migrating.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/new-features-GtkComboBox.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/pt05.html +7 -7
- data/vendor/local/share/gtk-doc/html/gtk/setting-the-page-flow.html +5 -5
- data/vendor/local/share/gtk-doc/html/gtk/style.css +2 -1
- data/vendor/local/share/gtk-doc/html/gtk/{document-x-generic.png → text-x-generic.png} +0 -0
- data/vendor/local/share/gtk-doc/html/gtk/ui-manager.html +5 -5
- data/vendor/local/share/icons/hicolor/index.theme +1662 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/dieterv/packaging/gtk+_2.24.8-1_win32.log +4937 -0
- data/vendor/local/src/{tml/packaging/gtk+_2.22.1-1_win32.sh → dieterv/packaging/gtk+_2.24.8-1_win32.sh} +8 -8
- metadata +29 -31
- data/ChangeLog +0 -6902
- data/ext/gtk2/rbgtkmain.c +0 -493
- data/vendor/local/share/gtk-doc/html/gdk/gdk-X-Window-System-Interaction.html +0 -2500
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/kg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20-properties.mo +0 -0
- data/vendor/local/share/locale/lg/LC_MESSAGES/gtk20.mo +0 -0
- data/vendor/local/src/tml/packaging/gtk+_2.22.1-1_win32.log +0 -5048
@@ -4,20 +4,20 @@
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>GtkTextMark</title>
|
6
6
|
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
|
7
|
-
<link rel="home" href="index.html" title="GTK+ Reference Manual">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
|
8
8
|
<link rel="up" href="TextWidgetObjects.html" title="Multiline Text Editor">
|
9
|
-
<link rel="prev" href="
|
9
|
+
<link rel="prev" href="GtkTextIter.html" title="GtkTextIter">
|
10
10
|
<link rel="next" href="GtkTextBuffer.html" title="GtkTextBuffer">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
15
15
|
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
|
16
16
|
<tr valign="middle">
|
17
|
-
<td><a accesskey="p" href="
|
17
|
+
<td><a accesskey="p" href="GtkTextIter.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="TextWidgetObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
19
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
-
<th width="100%" align="center">GTK+ Reference Manual</th>
|
20
|
+
<th width="100%" align="center">GTK+ 2 Reference Manual</th>
|
21
21
|
<td><a accesskey="n" href="GtkTextBuffer.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts">
|
@@ -30,7 +30,7 @@
|
|
30
30
|
<a href="#GtkTextMark.properties" class="shortcut">Properties</a>
|
31
31
|
</td></tr>
|
32
32
|
</table>
|
33
|
-
<div class="refentry"
|
33
|
+
<div class="refentry">
|
34
34
|
<a name="GtkTextMark"></a><div class="titlepage"></div>
|
35
35
|
<div class="refnamediv"><table width="100%"><tr>
|
36
36
|
<td valign="top">
|
@@ -39,38 +39,38 @@
|
|
39
39
|
</td>
|
40
40
|
<td valign="top" align="right"></td>
|
41
41
|
</tr></table></div>
|
42
|
-
<div class="refsynopsisdiv"
|
42
|
+
<div class="refsynopsisdiv">
|
43
43
|
<a name="GtkTextMark.synopsis"></a><h2>Synopsis</h2>
|
44
44
|
<pre class="synopsis">
|
45
45
|
#include <gtk/gtk.h>
|
46
46
|
|
47
|
-
|
47
|
+
struct <a class="link" href="GtkTextMark.html#GtkTextMark-struct" title="struct GtkTextMark">GtkTextMark</a>;
|
48
48
|
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * <a class="link" href="GtkTextMark.html#gtk-text-mark-new" title="gtk_text_mark_new ()">gtk_text_mark_new</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
|
49
49
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> left_gravity</code></em>);
|
50
50
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextMark.html#gtk-text-mark-set-visible" title="gtk_text_mark_set_visible ()">gtk_text_mark_set_visible</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
|
51
51
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);
|
52
52
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextMark.html#gtk-text-mark-get-visible" title="gtk_text_mark_get_visible ()">gtk_text_mark_get_visible</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
53
53
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextMark.html#gtk-text-mark-get-deleted" title="gtk_text_mark_get_deleted ()">gtk_text_mark_get_deleted</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
54
|
-
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a
|
55
|
-
<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a
|
54
|
+
const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkTextMark.html#gtk-text-mark-get-name" title="gtk_text_mark_get_name ()">gtk_text_mark_get_name</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
55
|
+
<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * <a class="link" href="GtkTextMark.html#gtk-text-mark-get-buffer" title="gtk_text_mark_get_buffer ()">gtk_text_mark_get_buffer</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
56
56
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextMark.html#gtk-text-mark-get-left-gravity" title="gtk_text_mark_get_left_gravity ()">gtk_text_mark_get_left_gravity</a> (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
57
57
|
</pre>
|
58
58
|
</div>
|
59
|
-
<div class="refsect1"
|
59
|
+
<div class="refsect1">
|
60
60
|
<a name="GtkTextMark.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
61
61
|
<pre class="synopsis">
|
62
62
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
63
63
|
+----GtkTextMark
|
64
64
|
</pre>
|
65
65
|
</div>
|
66
|
-
<div class="refsect1"
|
66
|
+
<div class="refsect1">
|
67
67
|
<a name="GtkTextMark.properties"></a><h2>Properties</h2>
|
68
68
|
<pre class="synopsis">
|
69
69
|
"<a class="link" href="GtkTextMark.html#GtkTextMark--left-gravity" title='The "left-gravity" property'>left-gravity</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write / Construct Only
|
70
70
|
"<a class="link" href="GtkTextMark.html#GtkTextMark--name" title='The "name" property'>name</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only
|
71
71
|
</pre>
|
72
72
|
</div>
|
73
|
-
<div class="refsect1"
|
73
|
+
<div class="refsect1">
|
74
74
|
<a name="GtkTextMark.description"></a><h2>Description</h2>
|
75
75
|
<p>
|
76
76
|
You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
|
@@ -87,7 +87,7 @@ position originally occupied by the deleted text. When text is inserted at a
|
|
87
87
|
mark, a mark with <em class="firstterm">left gravity</em> will be moved to the
|
88
88
|
beginning of the newly-inserted text, and a mark with <em class="firstterm">right
|
89
89
|
gravity</em> will be moved to the end.
|
90
|
-
<sup>[<a name="
|
90
|
+
<sup>[<a name="id886651" href="#ftn.id886651" class="footnote">3</a>]</sup>
|
91
91
|
</p>
|
92
92
|
<p>
|
93
93
|
Marks are reference counted, but the reference count only controls the validity
|
@@ -103,16 +103,16 @@ Marks optionally have names; these can be convenient to avoid passing the
|
|
103
103
|
Marks are typically created using the <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-mark" title="gtk_text_buffer_create_mark ()"><code class="function">gtk_text_buffer_create_mark()</code></a> function.
|
104
104
|
</p>
|
105
105
|
</div>
|
106
|
-
<div class="refsect1"
|
106
|
+
<div class="refsect1">
|
107
107
|
<a name="GtkTextMark.details"></a><h2>Details</h2>
|
108
|
-
<div class="refsect2"
|
109
|
-
<a name="GtkTextMark-struct"></a><h3>GtkTextMark</h3>
|
110
|
-
<pre class="programlisting">
|
108
|
+
<div class="refsect2">
|
109
|
+
<a name="GtkTextMark-struct"></a><h3>struct GtkTextMark</h3>
|
110
|
+
<pre class="programlisting">struct GtkTextMark;</pre>
|
111
111
|
<p>
|
112
112
|
</p>
|
113
113
|
</div>
|
114
114
|
<hr>
|
115
|
-
<div class="refsect2"
|
115
|
+
<div class="refsect2">
|
116
116
|
<a name="gtk-text-mark-new"></a><h3>gtk_text_mark_new ()</h3>
|
117
117
|
<pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * gtk_text_mark_new (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>,
|
118
118
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> left_gravity</code></em>);</pre>
|
@@ -132,18 +132,16 @@ side of the text you're typing).
|
|
132
132
|
<tbody>
|
133
133
|
<tr>
|
134
134
|
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
135
|
-
<td>
|
135
|
+
<td>mark name or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
136
136
|
</td>
|
137
137
|
</tr>
|
138
138
|
<tr>
|
139
139
|
<td><p><span class="term"><em class="parameter"><code>left_gravity</code></em> :</span></p></td>
|
140
|
-
<td>whether the mark should have left gravity
|
141
|
-
</td>
|
140
|
+
<td>whether the mark should have left gravity</td>
|
142
141
|
</tr>
|
143
142
|
<tr>
|
144
143
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
145
|
-
<td>
|
146
|
-
|
144
|
+
<td>new <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
|
147
145
|
</td>
|
148
146
|
</tr>
|
149
147
|
</tbody>
|
@@ -151,7 +149,7 @@ side of the text you're typing).
|
|
151
149
|
<p class="since">Since 2.12</p>
|
152
150
|
</div>
|
153
151
|
<hr>
|
154
|
-
<div class="refsect2"
|
152
|
+
<div class="refsect2">
|
155
153
|
<a name="gtk-text-mark-set-visible"></a><h3>gtk_text_mark_set_visible ()</h3>
|
156
154
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_mark_set_visible (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
|
157
155
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> setting</code></em>);</pre>
|
@@ -172,14 +170,13 @@ Marks are not visible by default.
|
|
172
170
|
</tr>
|
173
171
|
<tr>
|
174
172
|
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
175
|
-
<td>visibility of mark
|
176
|
-
</td>
|
173
|
+
<td>visibility of mark</td>
|
177
174
|
</tr>
|
178
175
|
</tbody>
|
179
176
|
</table></div>
|
180
177
|
</div>
|
181
178
|
<hr>
|
182
|
-
<div class="refsect2"
|
179
|
+
<div class="refsect2">
|
183
180
|
<a name="gtk-text-mark-get-visible"></a><h3>gtk_text_mark_get_visible ()</h3>
|
184
181
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_text_mark_get_visible (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
185
182
|
<p>
|
@@ -196,14 +193,14 @@ for it).
|
|
196
193
|
</tr>
|
197
194
|
<tr>
|
198
195
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
199
|
-
<td>
|
200
|
-
</td>
|
196
|
+
<td>
|
197
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if visible</td>
|
201
198
|
</tr>
|
202
199
|
</tbody>
|
203
200
|
</table></div>
|
204
201
|
</div>
|
205
202
|
<hr>
|
206
|
-
<div class="refsect2"
|
203
|
+
<div class="refsect2">
|
207
204
|
<a name="gtk-text-mark-get-deleted"></a><h3>gtk_text_mark_get_deleted ()</h3>
|
208
205
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_text_mark_get_deleted (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
209
206
|
<p>
|
@@ -221,16 +218,15 @@ for a way to add it to a buffer again.
|
|
221
218
|
</tr>
|
222
219
|
<tr>
|
223
220
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
224
|
-
<td>
|
225
|
-
</td>
|
221
|
+
<td>whether the mark is deleted</td>
|
226
222
|
</tr>
|
227
223
|
</tbody>
|
228
224
|
</table></div>
|
229
225
|
</div>
|
230
226
|
<hr>
|
231
|
-
<div class="refsect2"
|
227
|
+
<div class="refsect2">
|
232
228
|
<a name="gtk-text-mark-get-name"></a><h3>gtk_text_mark_get_name ()</h3>
|
233
|
-
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a
|
229
|
+
<pre class="programlisting">const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_text_mark_get_name (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
234
230
|
<p>
|
235
231
|
Returns the mark name; returns NULL for anonymous marks.
|
236
232
|
</p>
|
@@ -244,16 +240,15 @@ Returns the mark name; returns NULL for anonymous marks.
|
|
244
240
|
</tr>
|
245
241
|
<tr>
|
246
242
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
247
|
-
<td>
|
248
|
-
</td>
|
243
|
+
<td>mark name</td>
|
249
244
|
</tr>
|
250
245
|
</tbody>
|
251
246
|
</table></div>
|
252
247
|
</div>
|
253
248
|
<hr>
|
254
|
-
<div class="refsect2"
|
249
|
+
<div class="refsect2">
|
255
250
|
<a name="gtk-text-mark-get-buffer"></a><h3>gtk_text_mark_get_buffer ()</h3>
|
256
|
-
<pre class="programlisting"><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a
|
251
|
+
<pre class="programlisting"><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * gtk_text_mark_get_buffer (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
257
252
|
<p>
|
258
253
|
Gets the buffer this mark is located inside,
|
259
254
|
or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if the mark is deleted.
|
@@ -268,14 +263,14 @@ or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.ht
|
|
268
263
|
</tr>
|
269
264
|
<tr>
|
270
265
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
271
|
-
<td>
|
266
|
+
<td>the mark's <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
272
267
|
</td>
|
273
268
|
</tr>
|
274
269
|
</tbody>
|
275
270
|
</table></div>
|
276
271
|
</div>
|
277
272
|
<hr>
|
278
|
-
<div class="refsect2"
|
273
|
+
<div class="refsect2">
|
279
274
|
<a name="gtk-text-mark-get-left-gravity"></a><h3>gtk_text_mark_get_left_gravity ()</h3>
|
280
275
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_text_mark_get_left_gravity (<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
281
276
|
<p>
|
@@ -291,23 +286,23 @@ Determines whether the mark has left gravity.
|
|
291
286
|
</tr>
|
292
287
|
<tr>
|
293
288
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
294
|
-
<td>
|
295
|
-
</td>
|
289
|
+
<td>
|
290
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the mark has left gravity, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
|
296
291
|
</tr>
|
297
292
|
</tbody>
|
298
293
|
</table></div>
|
299
294
|
</div>
|
300
295
|
</div>
|
301
|
-
<div class="refsect1"
|
296
|
+
<div class="refsect1">
|
302
297
|
<a name="GtkTextMark.property-details"></a><h2>Property Details</h2>
|
303
|
-
<div class="refsect2"
|
298
|
+
<div class="refsect2">
|
304
299
|
<a name="GtkTextMark--left-gravity"></a><h3>The <code class="literal">"left-gravity"</code> property</h3>
|
305
300
|
<pre class="programlisting"> "left-gravity" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write / Construct Only</pre>
|
306
301
|
<p>Whether the mark has left gravity.</p>
|
307
302
|
<p>Default value: FALSE</p>
|
308
303
|
</div>
|
309
304
|
<hr>
|
310
|
-
<div class="refsect2"
|
305
|
+
<div class="refsect2">
|
311
306
|
<a name="GtkTextMark--name"></a><h3>The <code class="literal">"name"</code> property</h3>
|
312
307
|
<pre class="programlisting"> "name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only</pre>
|
313
308
|
<p>Mark name.</p>
|
@@ -316,7 +311,7 @@ Determines whether the mark has left gravity.
|
|
316
311
|
</div>
|
317
312
|
<div class="footnotes">
|
318
313
|
<br><hr width="100" align="left">
|
319
|
-
<div class="footnote"><p><sup>[<a id="ftn.
|
314
|
+
<div class="footnote"><p><sup>[<a id="ftn.id886651" href="#id886651" class="para">3</a>] </sup>
|
320
315
|
"left" and "right" here refer to logical direction (left is the toward the start
|
321
316
|
of the buffer); in some languages such as Hebrew the logically-leftmost text is
|
322
317
|
not actually on the left when displayed.
|
@@ -325,6 +320,6 @@ not actually on the left when displayed.
|
|
325
320
|
</div>
|
326
321
|
<div class="footer">
|
327
322
|
<hr>
|
328
|
-
Generated by GTK-Doc V1.
|
323
|
+
Generated by GTK-Doc V1.17</div>
|
329
324
|
</body>
|
330
325
|
</html>
|
@@ -4,11 +4,11 @@
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>GtkTextTag</title>
|
6
6
|
<meta name="generator" content="DocBook XSL Stylesheets V1.76.1">
|
7
|
-
<link rel="home" href="index.html" title="GTK+ Reference Manual">
|
7
|
+
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
|
8
8
|
<link rel="up" href="TextWidgetObjects.html" title="Multiline Text Editor">
|
9
9
|
<link rel="prev" href="GtkTextBuffer.html" title="GtkTextBuffer">
|
10
10
|
<link rel="next" href="GtkTextTagTable.html" title="GtkTextTagTable">
|
11
|
-
<meta name="generator" content="GTK-Doc V1.
|
11
|
+
<meta name="generator" content="GTK-Doc V1.17 (XML mode)">
|
12
12
|
<link rel="stylesheet" href="style.css" type="text/css">
|
13
13
|
</head>
|
14
14
|
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<td><a accesskey="p" href="GtkTextBuffer.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
|
18
18
|
<td><a accesskey="u" href="TextWidgetObjects.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
|
19
19
|
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
|
20
|
-
<th width="100%" align="center">GTK+ Reference Manual</th>
|
20
|
+
<th width="100%" align="center">GTK+ 2 Reference Manual</th>
|
21
21
|
<td><a accesskey="n" href="GtkTextTagTable.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
|
22
22
|
</tr>
|
23
23
|
<tr><td colspan="5" class="shortcuts">
|
@@ -32,7 +32,7 @@
|
|
32
32
|
<a href="#GtkTextTag.signals" class="shortcut">Signals</a>
|
33
33
|
</td></tr>
|
34
34
|
</table>
|
35
|
-
<div class="refentry"
|
35
|
+
<div class="refentry">
|
36
36
|
<a name="GtkTextTag"></a><div class="titlepage"></div>
|
37
37
|
<div class="refnamediv"><table width="100%"><tr>
|
38
38
|
<td valign="top">
|
@@ -41,48 +41,48 @@
|
|
41
41
|
</td>
|
42
42
|
<td valign="top" align="right"></td>
|
43
43
|
</tr></table></div>
|
44
|
-
<div class="refsynopsisdiv"
|
44
|
+
<div class="refsynopsisdiv">
|
45
45
|
<a name="GtkTextTag.synopsis"></a><h2>Synopsis</h2>
|
46
46
|
<pre class="synopsis">
|
47
47
|
#include <gtk/gtk.h>
|
48
48
|
|
49
|
-
|
49
|
+
struct <a class="link" href="GtkTextTag.html#GtkTextTag-struct" title="struct GtkTextTag">GtkTextTag</a>;
|
50
50
|
enum <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode">GtkWrapMode</a>;
|
51
|
-
|
51
|
+
struct <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes">GtkTextAttributes</a>;
|
52
52
|
<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * <a class="link" href="GtkTextTag.html#gtk-text-tag-new" title="gtk_text_tag_new ()">gtk_text_tag_new</a> (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);
|
53
53
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkTextTag.html#gtk-text-tag-get-priority" title="gtk_text_tag_get_priority ()">gtk_text_tag_get_priority</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);
|
54
54
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextTag.html#gtk-text-tag-set-priority" title="gtk_text_tag_set_priority ()">gtk_text_tag_set_priority</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
55
55
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> priority</code></em>);
|
56
56
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextTag.html#gtk-text-tag-event" title="gtk_text_tag_event ()">gtk_text_tag_event</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
57
57
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *event_object</code></em>,
|
58
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
59
|
-
<em class="parameter"><code>const <a class="link" href="
|
60
|
-
|
61
|
-
<a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a
|
62
|
-
<a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a
|
63
|
-
<span class="returnvalue">void</span> <a class="link" href="GtkTextTag.html#gtk-text-attributes-copy-values" title="gtk_text_attributes_copy_values ()">gtk_text_attributes_copy_values</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *src</code></em>,
|
64
|
-
<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *dest</code></em>);
|
65
|
-
<span class="returnvalue">void</span> <a class="link" href="GtkTextTag.html#gtk-text-attributes-unref" title="gtk_text_attributes_unref ()">gtk_text_attributes_unref</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);
|
66
|
-
<a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * <a class="link" href="GtkTextTag.html#gtk-text-attributes-ref" title="gtk_text_attributes_ref ()">gtk_text_attributes_ref</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);
|
58
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>,
|
59
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
|
60
|
+
struct <a class="link" href="GtkTextTag.html#GtkTextAppearance" title="struct GtkTextAppearance">GtkTextAppearance</a>;
|
61
|
+
<a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * <a class="link" href="GtkTextTag.html#gtk-text-attributes-new" title="gtk_text_attributes_new ()">gtk_text_attributes_new</a> (<em class="parameter"><code><span class="type">void</span></code></em>);
|
62
|
+
<a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * <a class="link" href="GtkTextTag.html#gtk-text-attributes-copy" title="gtk_text_attributes_copy ()">gtk_text_attributes_copy</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *src</code></em>);
|
63
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextTag.html#gtk-text-attributes-copy-values" title="gtk_text_attributes_copy_values ()">gtk_text_attributes_copy_values</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *src</code></em>,
|
64
|
+
<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *dest</code></em>);
|
65
|
+
<span class="returnvalue">void</span> <a class="link" href="GtkTextTag.html#gtk-text-attributes-unref" title="gtk_text_attributes_unref ()">gtk_text_attributes_unref</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);
|
66
|
+
<a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * <a class="link" href="GtkTextTag.html#gtk-text-attributes-ref" title="gtk_text_attributes_ref ()">gtk_text_attributes_ref</a> (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);
|
67
67
|
</pre>
|
68
68
|
</div>
|
69
|
-
<div class="refsect1"
|
69
|
+
<div class="refsect1">
|
70
70
|
<a name="GtkTextTag.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
71
71
|
<pre class="synopsis">
|
72
72
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
73
73
|
+----GtkTextTag
|
74
74
|
</pre>
|
75
75
|
</div>
|
76
|
-
<div class="refsect1"
|
76
|
+
<div class="refsect1">
|
77
77
|
<a name="GtkTextTag.properties"></a><h2>Properties</h2>
|
78
78
|
<pre class="synopsis">
|
79
79
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--accumulative-margin" title='The "accumulative-margin" property'>accumulative-margin</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
80
80
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--background" title='The "background" property'>background</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Write
|
81
81
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-full-height" title='The "background-full-height" property'>background-full-height</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
82
82
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-full-height-set" title='The "background-full-height-set" property'>background-full-height-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
83
|
-
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-gdk" title='The "background-gdk" property'>background-gdk</a>" <a href="http://library.gnome.org/devel/
|
83
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-gdk" title='The "background-gdk" property'>background-gdk</a>" <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write
|
84
84
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-set" title='The "background-set" property'>background-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
85
|
-
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-stipple" title='The "background-stipple" property'>background-stipple</a>" <a href="http://library.gnome.org/devel/
|
85
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-stipple" title='The "background-stipple" property'>background-stipple</a>" <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>* : Read / Write
|
86
86
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--background-stipple-set" title='The "background-stipple-set" property'>background-stipple-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
87
87
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--direction" title='The "direction" property'>direction</a>" <a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> : Read / Write
|
88
88
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--editable" title='The "editable" property'>editable</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
@@ -92,9 +92,9 @@ enum <a class="link" href="GtkTextTag.html#GtkWrapMode" title="en
|
|
92
92
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--font" title='The "font" property'>font</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
93
93
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--font-desc" title='The "font-desc" property'>font-desc</a>" <a href="/usr/share/gtk-doc/html/pango/pango-Fonts.html#PangoFontDescription"><span class="type">PangoFontDescription</span></a>* : Read / Write
|
94
94
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground" title='The "foreground" property'>foreground</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Write
|
95
|
-
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground-gdk" title='The "foreground-gdk" property'>foreground-gdk</a>" <a href="http://library.gnome.org/devel/
|
95
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground-gdk" title='The "foreground-gdk" property'>foreground-gdk</a>" <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write
|
96
96
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground-set" title='The "foreground-set" property'>foreground-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
97
|
-
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground-stipple" title='The "foreground-stipple" property'>foreground-stipple</a>" <a href="http://library.gnome.org/devel/
|
97
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground-stipple" title='The "foreground-stipple" property'>foreground-stipple</a>" <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>* : Read / Write
|
98
98
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--foreground-stipple-set" title='The "foreground-stipple-set" property'>foreground-stipple-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
99
99
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--indent" title='The "indent" property'>indent</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
|
100
100
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--indent-set" title='The "indent-set" property'>indent-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
@@ -108,7 +108,7 @@ enum <a class="link" href="GtkTextTag.html#GtkWrapMode" title="en
|
|
108
108
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--left-margin-set" title='The "left-margin-set" property'>left-margin-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
109
109
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--name" title='The "name" property'>name</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only
|
110
110
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--paragraph-background" title='The "paragraph-background" property'>paragraph-background</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Write
|
111
|
-
"<a class="link" href="GtkTextTag.html#GtkTextTag--paragraph-background-gdk" title='The "paragraph-background-gdk" property'>paragraph-background-gdk</a>" <a href="http://library.gnome.org/devel/
|
111
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag--paragraph-background-gdk" title='The "paragraph-background-gdk" property'>paragraph-background-gdk</a>" <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write
|
112
112
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--paragraph-background-set" title='The "paragraph-background-set" property'>paragraph-background-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
113
113
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--pixels-above-lines" title='The "pixels-above-lines" property'>pixels-above-lines</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write
|
114
114
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--pixels-above-lines-set" title='The "pixels-above-lines-set" property'>pixels-above-lines-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
@@ -143,13 +143,13 @@ enum <a class="link" href="GtkTextTag.html#GtkWrapMode" title="en
|
|
143
143
|
"<a class="link" href="GtkTextTag.html#GtkTextTag--wrap-mode-set" title='The "wrap-mode-set" property'>wrap-mode-set</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write
|
144
144
|
</pre>
|
145
145
|
</div>
|
146
|
-
<div class="refsect1"
|
146
|
+
<div class="refsect1">
|
147
147
|
<a name="GtkTextTag.signals"></a><h2>Signals</h2>
|
148
148
|
<pre class="synopsis">
|
149
|
-
"<a class="link" href="GtkTextTag.html#GtkTextTag-event" title='The "event" signal'>event</a>" : Run Last
|
149
|
+
"<a class="link" href="GtkTextTag.html#GtkTextTag-event" title='The "event" signal'>event</a>" : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a>
|
150
150
|
</pre>
|
151
151
|
</div>
|
152
|
-
<div class="refsect1"
|
152
|
+
<div class="refsect1">
|
153
153
|
<a name="GtkTextTag.description"></a><h2>Description</h2>
|
154
154
|
<p>
|
155
155
|
You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
|
@@ -169,16 +169,16 @@ The "invisible" property was not implemented for GTK+ 2.0.
|
|
169
169
|
It is working (with minor issues) since 2.8.
|
170
170
|
</p>
|
171
171
|
</div>
|
172
|
-
<div class="refsect1"
|
172
|
+
<div class="refsect1">
|
173
173
|
<a name="GtkTextTag.details"></a><h2>Details</h2>
|
174
|
-
<div class="refsect2"
|
175
|
-
<a name="GtkTextTag-struct"></a><h3>GtkTextTag</h3>
|
176
|
-
<pre class="programlisting">
|
174
|
+
<div class="refsect2">
|
175
|
+
<a name="GtkTextTag-struct"></a><h3>struct GtkTextTag</h3>
|
176
|
+
<pre class="programlisting">struct GtkTextTag;</pre>
|
177
177
|
<p>
|
178
178
|
</p>
|
179
179
|
</div>
|
180
180
|
<hr>
|
181
|
-
<div class="refsect2"
|
181
|
+
<div class="refsect2">
|
182
182
|
<a name="GtkWrapMode"></a><h3>enum GtkWrapMode</h3>
|
183
183
|
<pre class="programlisting">typedef enum
|
184
184
|
{
|
@@ -222,9 +222,9 @@ Describes a type of line wrapping.
|
|
222
222
|
</table></div>
|
223
223
|
</div>
|
224
224
|
<hr>
|
225
|
-
<div class="refsect2"
|
226
|
-
<a name="GtkTextAttributes"></a><h3>GtkTextAttributes</h3>
|
227
|
-
<pre class="programlisting">
|
225
|
+
<div class="refsect2">
|
226
|
+
<a name="GtkTextAttributes"></a><h3>struct GtkTextAttributes</h3>
|
227
|
+
<pre class="programlisting">struct GtkTextAttributes {
|
228
228
|
GtkTextAppearance appearance;
|
229
229
|
|
230
230
|
GtkJustification justification;
|
@@ -269,11 +269,11 @@ Describes a type of line wrapping.
|
|
269
269
|
|
270
270
|
/* colors are allocated etc. */
|
271
271
|
guint realized : 1;
|
272
|
-
}
|
272
|
+
};
|
273
273
|
</pre>
|
274
274
|
<p>
|
275
|
-
Using <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> directly should rarely be necessary. It's
|
276
|
-
primarily useful with <a class="link" href="
|
275
|
+
Using <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> directly should rarely be necessary. It's
|
276
|
+
primarily useful with <a class="link" href="GtkTextIter.html#gtk-text-iter-get-attributes" title="gtk_text_iter_get_attributes ()"><code class="function">gtk_text_iter_get_attributes()</code></a>. As with most
|
277
277
|
GTK+ structs, the fields in this struct should only be read, never
|
278
278
|
modified directly.
|
279
279
|
</p>
|
@@ -281,100 +281,82 @@ modified directly.
|
|
281
281
|
<col align="left" valign="top">
|
282
282
|
<tbody>
|
283
283
|
<tr>
|
284
|
-
<td><p><span class="term"><a class="link" href="GtkTextTag.html#GtkTextAppearance" title="GtkTextAppearance"><span class="type">GtkTextAppearance</span></a> <em class="structfield"><code><a name="GtkTextAttributes.appearance"></a>appearance</code></em>;</span></p></td>
|
285
|
-
<td>pointer to sub-struct containing certain attributes
|
286
|
-
</td>
|
284
|
+
<td><p><span class="term"><a class="link" href="GtkTextTag.html#GtkTextAppearance" title="struct GtkTextAppearance"><span class="type">GtkTextAppearance</span></a> <em class="structfield"><code><a name="GtkTextAttributes.appearance"></a>appearance</code></em>;</span></p></td>
|
285
|
+
<td>pointer to sub-struct containing certain attributes</td>
|
287
286
|
</tr>
|
288
287
|
<tr>
|
289
288
|
<td><p><span class="term"><a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> <em class="structfield"><code><a name="GtkTextAttributes.justification"></a>justification</code></em>;</span></p></td>
|
290
|
-
<td>
|
291
|
-
</td>
|
289
|
+
<td></td>
|
292
290
|
</tr>
|
293
291
|
<tr>
|
294
292
|
<td><p><span class="term"><a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> <em class="structfield"><code><a name="GtkTextAttributes.direction"></a>direction</code></em>;</span></p></td>
|
295
|
-
<td>
|
296
|
-
</td>
|
293
|
+
<td></td>
|
297
294
|
</tr>
|
298
295
|
<tr>
|
299
296
|
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/pango/pango-Fonts.html#PangoFontDescription"><span class="type">PangoFontDescription</span></a> *<em class="structfield"><code><a name="GtkTextAttributes.font"></a>font</code></em>;</span></p></td>
|
300
|
-
<td>
|
301
|
-
</td>
|
297
|
+
<td></td>
|
302
298
|
</tr>
|
303
299
|
<tr>
|
304
300
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> <em class="structfield"><code><a name="GtkTextAttributes.font-scale"></a>font_scale</code></em>;</span></p></td>
|
305
|
-
<td>
|
306
|
-
</td>
|
301
|
+
<td></td>
|
307
302
|
</tr>
|
308
303
|
<tr>
|
309
304
|
<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="GtkTextAttributes.left-margin"></a>left_margin</code></em>;</span></p></td>
|
310
|
-
<td>
|
311
|
-
</td>
|
305
|
+
<td></td>
|
312
306
|
</tr>
|
313
307
|
<tr>
|
314
308
|
<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="GtkTextAttributes.indent"></a>indent</code></em>;</span></p></td>
|
315
|
-
<td>
|
316
|
-
</td>
|
309
|
+
<td></td>
|
317
310
|
</tr>
|
318
311
|
<tr>
|
319
312
|
<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="GtkTextAttributes.right-margin"></a>right_margin</code></em>;</span></p></td>
|
320
|
-
<td>
|
321
|
-
</td>
|
313
|
+
<td></td>
|
322
314
|
</tr>
|
323
315
|
<tr>
|
324
316
|
<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="GtkTextAttributes.pixels-above-lines"></a>pixels_above_lines</code></em>;</span></p></td>
|
325
|
-
<td>
|
326
|
-
</td>
|
317
|
+
<td></td>
|
327
318
|
</tr>
|
328
319
|
<tr>
|
329
320
|
<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="GtkTextAttributes.pixels-below-lines"></a>pixels_below_lines</code></em>;</span></p></td>
|
330
|
-
<td>
|
331
|
-
</td>
|
321
|
+
<td></td>
|
332
322
|
</tr>
|
333
323
|
<tr>
|
334
324
|
<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="GtkTextAttributes.pixels-inside-wrap"></a>pixels_inside_wrap</code></em>;</span></p></td>
|
335
|
-
<td>
|
336
|
-
</td>
|
325
|
+
<td></td>
|
337
326
|
</tr>
|
338
327
|
<tr>
|
339
328
|
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a> *<em class="structfield"><code><a name="GtkTextAttributes.tabs"></a>tabs</code></em>;</span></p></td>
|
340
|
-
<td>
|
341
|
-
</td>
|
329
|
+
<td></td>
|
342
330
|
</tr>
|
343
331
|
<tr>
|
344
332
|
<td><p><span class="term"><a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> <em class="structfield"><code><a name="GtkTextAttributes.wrap-mode"></a>wrap_mode</code></em>;</span></p></td>
|
345
|
-
<td>
|
346
|
-
</td>
|
333
|
+
<td></td>
|
347
334
|
</tr>
|
348
335
|
<tr>
|
349
336
|
<td><p><span class="term"><a href="/usr/share/gtk-doc/html/pango/pango-Scripts-and-Languages.html#PangoLanguage"><span class="type">PangoLanguage</span></a> *<em class="structfield"><code><a name="GtkTextAttributes.language"></a>language</code></em>;</span></p></td>
|
350
|
-
<td>
|
351
|
-
</td>
|
337
|
+
<td></td>
|
352
338
|
</tr>
|
353
339
|
<tr>
|
354
340
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GtkTextAttributes.invisible"></a>invisible</code></em> : 1;</span></p></td>
|
355
|
-
<td>
|
356
|
-
</td>
|
341
|
+
<td></td>
|
357
342
|
</tr>
|
358
343
|
<tr>
|
359
344
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GtkTextAttributes.bg-full-height"></a>bg_full_height</code></em> : 1;</span></p></td>
|
360
|
-
<td>
|
361
|
-
</td>
|
345
|
+
<td></td>
|
362
346
|
</tr>
|
363
347
|
<tr>
|
364
348
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GtkTextAttributes.editable"></a>editable</code></em> : 1;</span></p></td>
|
365
|
-
<td>
|
366
|
-
</td>
|
349
|
+
<td></td>
|
367
350
|
</tr>
|
368
351
|
<tr>
|
369
352
|
<td><p><span class="term"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint"><span class="type">guint</span></a> <em class="structfield"><code><a name="GtkTextAttributes.realized"></a>realized</code></em> : 1;</span></p></td>
|
370
|
-
<td>
|
371
|
-
</td>
|
353
|
+
<td></td>
|
372
354
|
</tr>
|
373
355
|
</tbody>
|
374
356
|
</table></div>
|
375
357
|
</div>
|
376
358
|
<hr>
|
377
|
-
<div class="refsect2"
|
359
|
+
<div class="refsect2">
|
378
360
|
<a name="gtk-text-tag-new"></a><h3>gtk_text_tag_new ()</h3>
|
379
361
|
<pre class="programlisting"><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * gtk_text_tag_new (<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
|
380
362
|
<p>
|
@@ -386,19 +368,19 @@ i.e. using <a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-
|
|
386
368
|
<tbody>
|
387
369
|
<tr>
|
388
370
|
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
389
|
-
<td>
|
371
|
+
<td>tag name, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
390
372
|
</td>
|
391
373
|
</tr>
|
392
374
|
<tr>
|
393
375
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
394
|
-
<td>
|
376
|
+
<td>a new <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>
|
395
377
|
</td>
|
396
378
|
</tr>
|
397
379
|
</tbody>
|
398
380
|
</table></div>
|
399
381
|
</div>
|
400
382
|
<hr>
|
401
|
-
<div class="refsect2"
|
383
|
+
<div class="refsect2">
|
402
384
|
<a name="gtk-text-tag-get-priority"></a><h3>gtk_text_tag_get_priority ()</h3>
|
403
385
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> gtk_text_tag_get_priority (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>);</pre>
|
404
386
|
<p>
|
@@ -414,14 +396,13 @@ Get the tag priority.
|
|
414
396
|
</tr>
|
415
397
|
<tr>
|
416
398
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
417
|
-
<td>
|
418
|
-
</td>
|
399
|
+
<td>The tag's priority.</td>
|
419
400
|
</tr>
|
420
401
|
</tbody>
|
421
402
|
</table></div>
|
422
403
|
</div>
|
423
404
|
<hr>
|
424
|
-
<div class="refsect2"
|
405
|
+
<div class="refsect2">
|
425
406
|
<a name="gtk-text-tag-set-priority"></a><h3>gtk_text_tag_set_priority ()</h3>
|
426
407
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_tag_set_priority (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
427
408
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> priority</code></em>);</pre>
|
@@ -448,19 +429,18 @@ automatically.
|
|
448
429
|
</tr>
|
449
430
|
<tr>
|
450
431
|
<td><p><span class="term"><em class="parameter"><code>priority</code></em> :</span></p></td>
|
451
|
-
<td>the new priority
|
452
|
-
</td>
|
432
|
+
<td>the new priority</td>
|
453
433
|
</tr>
|
454
434
|
</tbody>
|
455
435
|
</table></div>
|
456
436
|
</div>
|
457
437
|
<hr>
|
458
|
-
<div class="refsect2"
|
438
|
+
<div class="refsect2">
|
459
439
|
<a name="gtk-text-tag-event"></a><h3>gtk_text_tag_event ()</h3>
|
460
440
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> gtk_text_tag_event (<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
461
441
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *event_object</code></em>,
|
462
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
463
|
-
<em class="parameter"><code>const <a class="link" href="
|
442
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event</code></em>,
|
443
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
|
464
444
|
<p>
|
465
445
|
Emits the "event" signal on the <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>.
|
466
446
|
</p>
|
@@ -474,31 +454,27 @@ Emits the "event" signal on the <a class="link" href="GtkTextTag.html" title="Gt
|
|
474
454
|
</tr>
|
475
455
|
<tr>
|
476
456
|
<td><p><span class="term"><em class="parameter"><code>event_object</code></em> :</span></p></td>
|
477
|
-
<td>object that received the event, such as a widget
|
478
|
-
</td>
|
457
|
+
<td>object that received the event, such as a widget</td>
|
479
458
|
</tr>
|
480
459
|
<tr>
|
481
460
|
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
482
|
-
<td>the event
|
483
|
-
</td>
|
461
|
+
<td>the event</td>
|
484
462
|
</tr>
|
485
463
|
<tr>
|
486
464
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
487
|
-
<td>location where the event was received
|
488
|
-
</td>
|
465
|
+
<td>location where the event was received</td>
|
489
466
|
</tr>
|
490
467
|
<tr>
|
491
468
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
492
|
-
<td>
|
493
|
-
</td>
|
469
|
+
<td>result of signal emission (whether the event was handled)</td>
|
494
470
|
</tr>
|
495
471
|
</tbody>
|
496
472
|
</table></div>
|
497
473
|
</div>
|
498
474
|
<hr>
|
499
|
-
<div class="refsect2"
|
500
|
-
<a name="GtkTextAppearance"></a><h3>GtkTextAppearance</h3>
|
501
|
-
<pre class="programlisting">
|
475
|
+
<div class="refsect2">
|
476
|
+
<a name="GtkTextAppearance"></a><h3>struct GtkTextAppearance</h3>
|
477
|
+
<pre class="programlisting">struct GtkTextAppearance {
|
502
478
|
GdkColor bg_color;
|
503
479
|
GdkColor fg_color;
|
504
480
|
GdkBitmap *bg_stipple;
|
@@ -523,56 +499,55 @@ Emits the "event" signal on the <a class="link" href="GtkTextTag.html" title="Gt
|
|
523
499
|
*/
|
524
500
|
guint inside_selection : 1;
|
525
501
|
guint is_text : 1;
|
526
|
-
}
|
502
|
+
};
|
527
503
|
</pre>
|
528
504
|
<p>
|
529
505
|
</p>
|
530
506
|
</div>
|
531
507
|
<hr>
|
532
|
-
<div class="refsect2"
|
508
|
+
<div class="refsect2">
|
533
509
|
<a name="gtk-text-attributes-new"></a><h3>gtk_text_attributes_new ()</h3>
|
534
|
-
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a
|
510
|
+
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * gtk_text_attributes_new (<em class="parameter"><code><span class="type">void</span></code></em>);</pre>
|
535
511
|
<p>
|
536
|
-
Creates a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>, which describes
|
512
|
+
Creates a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>, which describes
|
537
513
|
a set of properties on some text.
|
538
514
|
</p>
|
539
515
|
<div class="variablelist"><table border="0">
|
540
516
|
<col align="left" valign="top">
|
541
517
|
<tbody><tr>
|
542
518
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
543
|
-
<td>
|
519
|
+
<td>a new <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
544
520
|
</td>
|
545
521
|
</tr></tbody>
|
546
522
|
</table></div>
|
547
523
|
</div>
|
548
524
|
<hr>
|
549
|
-
<div class="refsect2"
|
525
|
+
<div class="refsect2">
|
550
526
|
<a name="gtk-text-attributes-copy"></a><h3>gtk_text_attributes_copy ()</h3>
|
551
|
-
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a
|
527
|
+
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * gtk_text_attributes_copy (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *src</code></em>);</pre>
|
552
528
|
<p>
|
553
|
-
Copies <em class="parameter"><code>src</code></em> and returns a new <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>.
|
529
|
+
Copies <em class="parameter"><code>src</code></em> and returns a new <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>.
|
554
530
|
</p>
|
555
531
|
<div class="variablelist"><table border="0">
|
556
532
|
<col align="left" valign="top">
|
557
533
|
<tbody>
|
558
534
|
<tr>
|
559
535
|
<td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
|
560
|
-
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> to be copied
|
561
|
-
</td>
|
536
|
+
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> to be copied</td>
|
562
537
|
</tr>
|
563
538
|
<tr>
|
564
539
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
565
|
-
<td>
|
540
|
+
<td>a copy of <em class="parameter"><code>src</code></em>
|
566
541
|
</td>
|
567
542
|
</tr>
|
568
543
|
</tbody>
|
569
544
|
</table></div>
|
570
545
|
</div>
|
571
546
|
<hr>
|
572
|
-
<div class="refsect2"
|
547
|
+
<div class="refsect2">
|
573
548
|
<a name="gtk-text-attributes-copy-values"></a><h3>gtk_text_attributes_copy_values ()</h3>
|
574
|
-
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_attributes_copy_values (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *src</code></em>,
|
575
|
-
<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *dest</code></em>);</pre>
|
549
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_attributes_copy_values (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *src</code></em>,
|
550
|
+
<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *dest</code></em>);</pre>
|
576
551
|
<p>
|
577
552
|
Copies the values from <em class="parameter"><code>src</code></em> to <em class="parameter"><code>dest</code></em> so that <em class="parameter"><code>dest</code></em> has the same values
|
578
553
|
as <em class="parameter"><code>src</code></em>. Frees existing values in <em class="parameter"><code>dest</code></em>.
|
@@ -582,21 +557,21 @@ as <em class="parameter"><code>src</code></em>. Frees existing values in <em cla
|
|
582
557
|
<tbody>
|
583
558
|
<tr>
|
584
559
|
<td><p><span class="term"><em class="parameter"><code>src</code></em> :</span></p></td>
|
585
|
-
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
560
|
+
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
586
561
|
</td>
|
587
562
|
</tr>
|
588
563
|
<tr>
|
589
564
|
<td><p><span class="term"><em class="parameter"><code>dest</code></em> :</span></p></td>
|
590
|
-
<td>another <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
565
|
+
<td>another <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
591
566
|
</td>
|
592
567
|
</tr>
|
593
568
|
</tbody>
|
594
569
|
</table></div>
|
595
570
|
</div>
|
596
571
|
<hr>
|
597
|
-
<div class="refsect2"
|
572
|
+
<div class="refsect2">
|
598
573
|
<a name="gtk-text-attributes-unref"></a><h3>gtk_text_attributes_unref ()</h3>
|
599
|
-
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_attributes_unref (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);</pre>
|
574
|
+
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_attributes_unref (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);</pre>
|
600
575
|
<p>
|
601
576
|
Decrements the reference count on <em class="parameter"><code>values</code></em>, freeing the structure
|
602
577
|
if the reference count reaches 0.
|
@@ -605,15 +580,15 @@ if the reference count reaches 0.
|
|
605
580
|
<col align="left" valign="top">
|
606
581
|
<tbody><tr>
|
607
582
|
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
608
|
-
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
583
|
+
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
609
584
|
</td>
|
610
585
|
</tr></tbody>
|
611
586
|
</table></div>
|
612
587
|
</div>
|
613
588
|
<hr>
|
614
|
-
<div class="refsect2"
|
589
|
+
<div class="refsect2">
|
615
590
|
<a name="gtk-text-attributes-ref"></a><h3>gtk_text_attributes_ref ()</h3>
|
616
|
-
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * gtk_text_attributes_ref (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);</pre>
|
591
|
+
<pre class="programlisting"><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="returnvalue">GtkTextAttributes</span></a> * gtk_text_attributes_ref (<em class="parameter"><code><a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> *values</code></em>);</pre>
|
617
592
|
<p>
|
618
593
|
Increments the reference count on <em class="parameter"><code>values</code></em>.
|
619
594
|
</p>
|
@@ -622,21 +597,20 @@ Increments the reference count on <em class="parameter"><code>values</code></em>
|
|
622
597
|
<tbody>
|
623
598
|
<tr>
|
624
599
|
<td><p><span class="term"><em class="parameter"><code>values</code></em> :</span></p></td>
|
625
|
-
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
600
|
+
<td>a <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a>
|
626
601
|
</td>
|
627
602
|
</tr>
|
628
603
|
<tr>
|
629
604
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
630
|
-
<td>
|
631
|
-
</td>
|
605
|
+
<td>the <a class="link" href="GtkTextTag.html#GtkTextAttributes" title="struct GtkTextAttributes"><span class="type">GtkTextAttributes</span></a> that were passed in</td>
|
632
606
|
</tr>
|
633
607
|
</tbody>
|
634
608
|
</table></div>
|
635
609
|
</div>
|
636
610
|
</div>
|
637
|
-
<div class="refsect1"
|
611
|
+
<div class="refsect1">
|
638
612
|
<a name="GtkTextTag.property-details"></a><h2>Property Details</h2>
|
639
|
-
<div class="refsect2"
|
613
|
+
<div class="refsect2">
|
640
614
|
<a name="GtkTextTag--accumulative-margin"></a><h3>The <code class="literal">"accumulative-margin"</code> property</h3>
|
641
615
|
<pre class="programlisting"> "accumulative-margin" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
642
616
|
<p>
|
@@ -651,89 +625,89 @@ the margins override one another (the default).
|
|
651
625
|
<p class="since">Since 2.12</p>
|
652
626
|
</div>
|
653
627
|
<hr>
|
654
|
-
<div class="refsect2"
|
628
|
+
<div class="refsect2">
|
655
629
|
<a name="GtkTextTag--background"></a><h3>The <code class="literal">"background"</code> property</h3>
|
656
630
|
<pre class="programlisting"> "background" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Write</pre>
|
657
631
|
<p>Background color as a string.</p>
|
658
632
|
<p>Default value: NULL</p>
|
659
633
|
</div>
|
660
634
|
<hr>
|
661
|
-
<div class="refsect2"
|
635
|
+
<div class="refsect2">
|
662
636
|
<a name="GtkTextTag--background-full-height"></a><h3>The <code class="literal">"background-full-height"</code> property</h3>
|
663
637
|
<pre class="programlisting"> "background-full-height" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
664
638
|
<p>Whether the background color fills the entire line height or only the height of the tagged characters.</p>
|
665
639
|
<p>Default value: FALSE</p>
|
666
640
|
</div>
|
667
641
|
<hr>
|
668
|
-
<div class="refsect2"
|
642
|
+
<div class="refsect2">
|
669
643
|
<a name="GtkTextTag--background-full-height-set"></a><h3>The <code class="literal">"background-full-height-set"</code> property</h3>
|
670
644
|
<pre class="programlisting"> "background-full-height-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
671
645
|
<p>Whether this tag affects background height.</p>
|
672
646
|
<p>Default value: FALSE</p>
|
673
647
|
</div>
|
674
648
|
<hr>
|
675
|
-
<div class="refsect2"
|
649
|
+
<div class="refsect2">
|
676
650
|
<a name="GtkTextTag--background-gdk"></a><h3>The <code class="literal">"background-gdk"</code> property</h3>
|
677
|
-
<pre class="programlisting"> "background-gdk" <a href="http://library.gnome.org/devel/
|
651
|
+
<pre class="programlisting"> "background-gdk" <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write</pre>
|
678
652
|
<p>Background color as a (possibly unallocated) GdkColor.</p>
|
679
653
|
</div>
|
680
654
|
<hr>
|
681
|
-
<div class="refsect2"
|
655
|
+
<div class="refsect2">
|
682
656
|
<a name="GtkTextTag--background-set"></a><h3>The <code class="literal">"background-set"</code> property</h3>
|
683
657
|
<pre class="programlisting"> "background-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
684
658
|
<p>Whether this tag affects the background color.</p>
|
685
659
|
<p>Default value: FALSE</p>
|
686
660
|
</div>
|
687
661
|
<hr>
|
688
|
-
<div class="refsect2"
|
662
|
+
<div class="refsect2">
|
689
663
|
<a name="GtkTextTag--background-stipple"></a><h3>The <code class="literal">"background-stipple"</code> property</h3>
|
690
|
-
<pre class="programlisting"> "background-stipple" <a href="http://library.gnome.org/devel/
|
664
|
+
<pre class="programlisting"> "background-stipple" <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>* : Read / Write</pre>
|
691
665
|
<p>Bitmap to use as a mask when drawing the text background.</p>
|
692
666
|
</div>
|
693
667
|
<hr>
|
694
|
-
<div class="refsect2"
|
668
|
+
<div class="refsect2">
|
695
669
|
<a name="GtkTextTag--background-stipple-set"></a><h3>The <code class="literal">"background-stipple-set"</code> property</h3>
|
696
670
|
<pre class="programlisting"> "background-stipple-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
697
671
|
<p>Whether this tag affects the background stipple.</p>
|
698
672
|
<p>Default value: FALSE</p>
|
699
673
|
</div>
|
700
674
|
<hr>
|
701
|
-
<div class="refsect2"
|
675
|
+
<div class="refsect2">
|
702
676
|
<a name="GtkTextTag--direction"></a><h3>The <code class="literal">"direction"</code> property</h3>
|
703
677
|
<pre class="programlisting"> "direction" <a class="link" href="GtkWidget.html#GtkTextDirection" title="enum GtkTextDirection"><span class="type">GtkTextDirection</span></a> : Read / Write</pre>
|
704
678
|
<p>Text direction, e.g. right-to-left or left-to-right.</p>
|
705
679
|
<p>Default value: GTK_TEXT_DIR_NONE</p>
|
706
680
|
</div>
|
707
681
|
<hr>
|
708
|
-
<div class="refsect2"
|
682
|
+
<div class="refsect2">
|
709
683
|
<a name="GtkTextTag--editable"></a><h3>The <code class="literal">"editable"</code> property</h3>
|
710
684
|
<pre class="programlisting"> "editable" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
711
685
|
<p>Whether the text can be modified by the user.</p>
|
712
686
|
<p>Default value: TRUE</p>
|
713
687
|
</div>
|
714
688
|
<hr>
|
715
|
-
<div class="refsect2"
|
689
|
+
<div class="refsect2">
|
716
690
|
<a name="GtkTextTag--editable-set"></a><h3>The <code class="literal">"editable-set"</code> property</h3>
|
717
691
|
<pre class="programlisting"> "editable-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
718
692
|
<p>Whether this tag affects text editability.</p>
|
719
693
|
<p>Default value: FALSE</p>
|
720
694
|
</div>
|
721
695
|
<hr>
|
722
|
-
<div class="refsect2"
|
696
|
+
<div class="refsect2">
|
723
697
|
<a name="GtkTextTag--family"></a><h3>The <code class="literal">"family"</code> property</h3>
|
724
698
|
<pre class="programlisting"> "family" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
725
699
|
<p>Name of the font family, e.g. Sans, Helvetica, Times, Monospace.</p>
|
726
700
|
<p>Default value: NULL</p>
|
727
701
|
</div>
|
728
702
|
<hr>
|
729
|
-
<div class="refsect2"
|
703
|
+
<div class="refsect2">
|
730
704
|
<a name="GtkTextTag--family-set"></a><h3>The <code class="literal">"family-set"</code> property</h3>
|
731
705
|
<pre class="programlisting"> "family-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
732
706
|
<p>Whether this tag affects the font family.</p>
|
733
707
|
<p>Default value: FALSE</p>
|
734
708
|
</div>
|
735
709
|
<hr>
|
736
|
-
<div class="refsect2"
|
710
|
+
<div class="refsect2">
|
737
711
|
<a name="GtkTextTag--font"></a><h3>The <code class="literal">"font"</code> property</h3>
|
738
712
|
<pre class="programlisting"> "font" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
739
713
|
<p>
|
@@ -746,60 +720,60 @@ the internals of <a href="/usr/share/gtk-doc/html/pango/pango-Fonts.html#PangoFo
|
|
746
720
|
<p>Default value: NULL</p>
|
747
721
|
</div>
|
748
722
|
<hr>
|
749
|
-
<div class="refsect2"
|
723
|
+
<div class="refsect2">
|
750
724
|
<a name="GtkTextTag--font-desc"></a><h3>The <code class="literal">"font-desc"</code> property</h3>
|
751
725
|
<pre class="programlisting"> "font-desc" <a href="/usr/share/gtk-doc/html/pango/pango-Fonts.html#PangoFontDescription"><span class="type">PangoFontDescription</span></a>* : Read / Write</pre>
|
752
726
|
<p>Font description as a PangoFontDescription struct.</p>
|
753
727
|
</div>
|
754
728
|
<hr>
|
755
|
-
<div class="refsect2"
|
729
|
+
<div class="refsect2">
|
756
730
|
<a name="GtkTextTag--foreground"></a><h3>The <code class="literal">"foreground"</code> property</h3>
|
757
731
|
<pre class="programlisting"> "foreground" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Write</pre>
|
758
732
|
<p>Foreground color as a string.</p>
|
759
733
|
<p>Default value: NULL</p>
|
760
734
|
</div>
|
761
735
|
<hr>
|
762
|
-
<div class="refsect2"
|
736
|
+
<div class="refsect2">
|
763
737
|
<a name="GtkTextTag--foreground-gdk"></a><h3>The <code class="literal">"foreground-gdk"</code> property</h3>
|
764
|
-
<pre class="programlisting"> "foreground-gdk" <a href="http://library.gnome.org/devel/
|
738
|
+
<pre class="programlisting"> "foreground-gdk" <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write</pre>
|
765
739
|
<p>Foreground color as a (possibly unallocated) GdkColor.</p>
|
766
740
|
</div>
|
767
741
|
<hr>
|
768
|
-
<div class="refsect2"
|
742
|
+
<div class="refsect2">
|
769
743
|
<a name="GtkTextTag--foreground-set"></a><h3>The <code class="literal">"foreground-set"</code> property</h3>
|
770
744
|
<pre class="programlisting"> "foreground-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
771
745
|
<p>Whether this tag affects the foreground color.</p>
|
772
746
|
<p>Default value: FALSE</p>
|
773
747
|
</div>
|
774
748
|
<hr>
|
775
|
-
<div class="refsect2"
|
749
|
+
<div class="refsect2">
|
776
750
|
<a name="GtkTextTag--foreground-stipple"></a><h3>The <code class="literal">"foreground-stipple"</code> property</h3>
|
777
|
-
<pre class="programlisting"> "foreground-stipple" <a href="http://library.gnome.org/devel/
|
751
|
+
<pre class="programlisting"> "foreground-stipple" <a href="http://library.gnome.org/devel/gdk3/gdk-Bitmaps-and-Pixmaps.html#GdkPixmap"><span class="type">GdkPixmap</span></a>* : Read / Write</pre>
|
778
752
|
<p>Bitmap to use as a mask when drawing the text foreground.</p>
|
779
753
|
</div>
|
780
754
|
<hr>
|
781
|
-
<div class="refsect2"
|
755
|
+
<div class="refsect2">
|
782
756
|
<a name="GtkTextTag--foreground-stipple-set"></a><h3>The <code class="literal">"foreground-stipple-set"</code> property</h3>
|
783
757
|
<pre class="programlisting"> "foreground-stipple-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
784
758
|
<p>Whether this tag affects the foreground stipple.</p>
|
785
759
|
<p>Default value: FALSE</p>
|
786
760
|
</div>
|
787
761
|
<hr>
|
788
|
-
<div class="refsect2"
|
762
|
+
<div class="refsect2">
|
789
763
|
<a name="GtkTextTag--indent"></a><h3>The <code class="literal">"indent"</code> property</h3>
|
790
764
|
<pre class="programlisting"> "indent" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
791
765
|
<p>Amount to indent the paragraph, in pixels.</p>
|
792
766
|
<p>Default value: 0</p>
|
793
767
|
</div>
|
794
768
|
<hr>
|
795
|
-
<div class="refsect2"
|
769
|
+
<div class="refsect2">
|
796
770
|
<a name="GtkTextTag--indent-set"></a><h3>The <code class="literal">"indent-set"</code> property</h3>
|
797
771
|
<pre class="programlisting"> "indent-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
798
772
|
<p>Whether this tag affects indentation.</p>
|
799
773
|
<p>Default value: FALSE</p>
|
800
774
|
</div>
|
801
775
|
<hr>
|
802
|
-
<div class="refsect2"
|
776
|
+
<div class="refsect2">
|
803
777
|
<a name="GtkTextTag--invisible"></a><h3>The <code class="literal">"invisible"</code> property</h3>
|
804
778
|
<pre class="programlisting"> "invisible" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
805
779
|
<p>
|
@@ -814,28 +788,28 @@ containing invisible segments.
|
|
814
788
|
<p class="since">Since 2.8</p>
|
815
789
|
</div>
|
816
790
|
<hr>
|
817
|
-
<div class="refsect2"
|
791
|
+
<div class="refsect2">
|
818
792
|
<a name="GtkTextTag--invisible-set"></a><h3>The <code class="literal">"invisible-set"</code> property</h3>
|
819
793
|
<pre class="programlisting"> "invisible-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
820
794
|
<p>Whether this tag affects text visibility.</p>
|
821
795
|
<p>Default value: FALSE</p>
|
822
796
|
</div>
|
823
797
|
<hr>
|
824
|
-
<div class="refsect2"
|
798
|
+
<div class="refsect2">
|
825
799
|
<a name="GtkTextTag--justification"></a><h3>The <code class="literal">"justification"</code> property</h3>
|
826
800
|
<pre class="programlisting"> "justification" <a class="link" href="gtk-Standard-Enumerations.html#GtkJustification" title="enum GtkJustification"><span class="type">GtkJustification</span></a> : Read / Write</pre>
|
827
801
|
<p>Left, right, or center justification.</p>
|
828
802
|
<p>Default value: GTK_JUSTIFY_LEFT</p>
|
829
803
|
</div>
|
830
804
|
<hr>
|
831
|
-
<div class="refsect2"
|
805
|
+
<div class="refsect2">
|
832
806
|
<a name="GtkTextTag--justification-set"></a><h3>The <code class="literal">"justification-set"</code> property</h3>
|
833
807
|
<pre class="programlisting"> "justification-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
834
808
|
<p>Whether this tag affects paragraph justification.</p>
|
835
809
|
<p>Default value: FALSE</p>
|
836
810
|
</div>
|
837
811
|
<hr>
|
838
|
-
<div class="refsect2"
|
812
|
+
<div class="refsect2">
|
839
813
|
<a name="GtkTextTag--language"></a><h3>The <code class="literal">"language"</code> property</h3>
|
840
814
|
<pre class="programlisting"> "language" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
841
815
|
<p>
|
@@ -850,14 +824,14 @@ locale, see also <a class="link" href="gtk-General.html#gtk-get-default-language
|
|
850
824
|
<p>Default value: NULL</p>
|
851
825
|
</div>
|
852
826
|
<hr>
|
853
|
-
<div class="refsect2"
|
827
|
+
<div class="refsect2">
|
854
828
|
<a name="GtkTextTag--language-set"></a><h3>The <code class="literal">"language-set"</code> property</h3>
|
855
829
|
<pre class="programlisting"> "language-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
856
830
|
<p>Whether this tag affects the language the text is rendered as.</p>
|
857
831
|
<p>Default value: FALSE</p>
|
858
832
|
</div>
|
859
833
|
<hr>
|
860
|
-
<div class="refsect2"
|
834
|
+
<div class="refsect2">
|
861
835
|
<a name="GtkTextTag--left-margin"></a><h3>The <code class="literal">"left-margin"</code> property</h3>
|
862
836
|
<pre class="programlisting"> "left-margin" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
863
837
|
<p>Width of the left margin in pixels.</p>
|
@@ -865,21 +839,21 @@ locale, see also <a class="link" href="gtk-General.html#gtk-get-default-language
|
|
865
839
|
<p>Default value: 0</p>
|
866
840
|
</div>
|
867
841
|
<hr>
|
868
|
-
<div class="refsect2"
|
842
|
+
<div class="refsect2">
|
869
843
|
<a name="GtkTextTag--left-margin-set"></a><h3>The <code class="literal">"left-margin-set"</code> property</h3>
|
870
844
|
<pre class="programlisting"> "left-margin-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
871
845
|
<p>Whether this tag affects the left margin.</p>
|
872
846
|
<p>Default value: FALSE</p>
|
873
847
|
</div>
|
874
848
|
<hr>
|
875
|
-
<div class="refsect2"
|
849
|
+
<div class="refsect2">
|
876
850
|
<a name="GtkTextTag--name"></a><h3>The <code class="literal">"name"</code> property</h3>
|
877
851
|
<pre class="programlisting"> "name" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write / Construct Only</pre>
|
878
852
|
<p>Name used to refer to the text tag. NULL for anonymous tags.</p>
|
879
853
|
<p>Default value: NULL</p>
|
880
854
|
</div>
|
881
855
|
<hr>
|
882
|
-
<div class="refsect2"
|
856
|
+
<div class="refsect2">
|
883
857
|
<a name="GtkTextTag--paragraph-background"></a><h3>The <code class="literal">"paragraph-background"</code> property</h3>
|
884
858
|
<pre class="programlisting"> "paragraph-background" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Write</pre>
|
885
859
|
<p>
|
@@ -889,24 +863,24 @@ The paragraph background color as a string.
|
|
889
863
|
<p class="since">Since 2.8</p>
|
890
864
|
</div>
|
891
865
|
<hr>
|
892
|
-
<div class="refsect2"
|
866
|
+
<div class="refsect2">
|
893
867
|
<a name="GtkTextTag--paragraph-background-gdk"></a><h3>The <code class="literal">"paragraph-background-gdk"</code> property</h3>
|
894
|
-
<pre class="programlisting"> "paragraph-background-gdk" <a href="http://library.gnome.org/devel/
|
868
|
+
<pre class="programlisting"> "paragraph-background-gdk" <a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>* : Read / Write</pre>
|
895
869
|
<p>
|
896
870
|
The paragraph background color as a as a (possibly unallocated)
|
897
|
-
<a href="http://library.gnome.org/devel/
|
871
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Colormaps-and-Colors.html#GdkColor"><span class="type">GdkColor</span></a>.
|
898
872
|
</p>
|
899
873
|
<p class="since">Since 2.8</p>
|
900
874
|
</div>
|
901
875
|
<hr>
|
902
|
-
<div class="refsect2"
|
876
|
+
<div class="refsect2">
|
903
877
|
<a name="GtkTextTag--paragraph-background-set"></a><h3>The <code class="literal">"paragraph-background-set"</code> property</h3>
|
904
878
|
<pre class="programlisting"> "paragraph-background-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
905
879
|
<p>Whether this tag affects the paragraph background color.</p>
|
906
880
|
<p>Default value: FALSE</p>
|
907
881
|
</div>
|
908
882
|
<hr>
|
909
|
-
<div class="refsect2"
|
883
|
+
<div class="refsect2">
|
910
884
|
<a name="GtkTextTag--pixels-above-lines"></a><h3>The <code class="literal">"pixels-above-lines"</code> property</h3>
|
911
885
|
<pre class="programlisting"> "pixels-above-lines" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
912
886
|
<p>Pixels of blank space above paragraphs.</p>
|
@@ -914,14 +888,14 @@ The paragraph background color as a as a (possibly unallocated)
|
|
914
888
|
<p>Default value: 0</p>
|
915
889
|
</div>
|
916
890
|
<hr>
|
917
|
-
<div class="refsect2"
|
891
|
+
<div class="refsect2">
|
918
892
|
<a name="GtkTextTag--pixels-above-lines-set"></a><h3>The <code class="literal">"pixels-above-lines-set"</code> property</h3>
|
919
893
|
<pre class="programlisting"> "pixels-above-lines-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
920
894
|
<p>Whether this tag affects the number of pixels above lines.</p>
|
921
895
|
<p>Default value: FALSE</p>
|
922
896
|
</div>
|
923
897
|
<hr>
|
924
|
-
<div class="refsect2"
|
898
|
+
<div class="refsect2">
|
925
899
|
<a name="GtkTextTag--pixels-below-lines"></a><h3>The <code class="literal">"pixels-below-lines"</code> property</h3>
|
926
900
|
<pre class="programlisting"> "pixels-below-lines" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
927
901
|
<p>Pixels of blank space below paragraphs.</p>
|
@@ -929,14 +903,14 @@ The paragraph background color as a as a (possibly unallocated)
|
|
929
903
|
<p>Default value: 0</p>
|
930
904
|
</div>
|
931
905
|
<hr>
|
932
|
-
<div class="refsect2"
|
906
|
+
<div class="refsect2">
|
933
907
|
<a name="GtkTextTag--pixels-below-lines-set"></a><h3>The <code class="literal">"pixels-below-lines-set"</code> property</h3>
|
934
908
|
<pre class="programlisting"> "pixels-below-lines-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
935
909
|
<p>Whether this tag affects the number of pixels above lines.</p>
|
936
910
|
<p>Default value: FALSE</p>
|
937
911
|
</div>
|
938
912
|
<hr>
|
939
|
-
<div class="refsect2"
|
913
|
+
<div class="refsect2">
|
940
914
|
<a name="GtkTextTag--pixels-inside-wrap"></a><h3>The <code class="literal">"pixels-inside-wrap"</code> property</h3>
|
941
915
|
<pre class="programlisting"> "pixels-inside-wrap" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
942
916
|
<p>Pixels of blank space between wrapped lines in a paragraph.</p>
|
@@ -944,14 +918,14 @@ The paragraph background color as a as a (possibly unallocated)
|
|
944
918
|
<p>Default value: 0</p>
|
945
919
|
</div>
|
946
920
|
<hr>
|
947
|
-
<div class="refsect2"
|
921
|
+
<div class="refsect2">
|
948
922
|
<a name="GtkTextTag--pixels-inside-wrap-set"></a><h3>The <code class="literal">"pixels-inside-wrap-set"</code> property</h3>
|
949
923
|
<pre class="programlisting"> "pixels-inside-wrap-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
950
924
|
<p>Whether this tag affects the number of pixels between wrapped lines.</p>
|
951
925
|
<p>Default value: FALSE</p>
|
952
926
|
</div>
|
953
927
|
<hr>
|
954
|
-
<div class="refsect2"
|
928
|
+
<div class="refsect2">
|
955
929
|
<a name="GtkTextTag--right-margin"></a><h3>The <code class="literal">"right-margin"</code> property</h3>
|
956
930
|
<pre class="programlisting"> "right-margin" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
957
931
|
<p>Width of the right margin in pixels.</p>
|
@@ -959,28 +933,28 @@ The paragraph background color as a as a (possibly unallocated)
|
|
959
933
|
<p>Default value: 0</p>
|
960
934
|
</div>
|
961
935
|
<hr>
|
962
|
-
<div class="refsect2"
|
936
|
+
<div class="refsect2">
|
963
937
|
<a name="GtkTextTag--right-margin-set"></a><h3>The <code class="literal">"right-margin-set"</code> property</h3>
|
964
938
|
<pre class="programlisting"> "right-margin-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
965
939
|
<p>Whether this tag affects the right margin.</p>
|
966
940
|
<p>Default value: FALSE</p>
|
967
941
|
</div>
|
968
942
|
<hr>
|
969
|
-
<div class="refsect2"
|
943
|
+
<div class="refsect2">
|
970
944
|
<a name="GtkTextTag--rise"></a><h3>The <code class="literal">"rise"</code> property</h3>
|
971
945
|
<pre class="programlisting"> "rise" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
972
946
|
<p>Offset of text above the baseline (below the baseline if rise is negative) in Pango units.</p>
|
973
947
|
<p>Default value: 0</p>
|
974
948
|
</div>
|
975
949
|
<hr>
|
976
|
-
<div class="refsect2"
|
950
|
+
<div class="refsect2">
|
977
951
|
<a name="GtkTextTag--rise-set"></a><h3>The <code class="literal">"rise-set"</code> property</h3>
|
978
952
|
<pre class="programlisting"> "rise-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
979
953
|
<p>Whether this tag affects the rise.</p>
|
980
954
|
<p>Default value: FALSE</p>
|
981
955
|
</div>
|
982
956
|
<hr>
|
983
|
-
<div class="refsect2"
|
957
|
+
<div class="refsect2">
|
984
958
|
<a name="GtkTextTag--scale"></a><h3>The <code class="literal">"scale"</code> property</h3>
|
985
959
|
<pre class="programlisting"> "scale" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
|
986
960
|
<p>Font size as a scale factor relative to the default font size. This properly adapts to theme changes etc. so is recommended. Pango predefines some scales such as PANGO_SCALE_X_LARGE.</p>
|
@@ -988,14 +962,14 @@ The paragraph background color as a as a (possibly unallocated)
|
|
988
962
|
<p>Default value: 1</p>
|
989
963
|
</div>
|
990
964
|
<hr>
|
991
|
-
<div class="refsect2"
|
965
|
+
<div class="refsect2">
|
992
966
|
<a name="GtkTextTag--scale-set"></a><h3>The <code class="literal">"scale-set"</code> property</h3>
|
993
967
|
<pre class="programlisting"> "scale-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
994
968
|
<p>Whether this tag scales the font size by a factor.</p>
|
995
969
|
<p>Default value: FALSE</p>
|
996
970
|
</div>
|
997
971
|
<hr>
|
998
|
-
<div class="refsect2"
|
972
|
+
<div class="refsect2">
|
999
973
|
<a name="GtkTextTag--size"></a><h3>The <code class="literal">"size"</code> property</h3>
|
1000
974
|
<pre class="programlisting"> "size" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
1001
975
|
<p>Font size in Pango units.</p>
|
@@ -1003,7 +977,7 @@ The paragraph background color as a as a (possibly unallocated)
|
|
1003
977
|
<p>Default value: 0</p>
|
1004
978
|
</div>
|
1005
979
|
<hr>
|
1006
|
-
<div class="refsect2"
|
980
|
+
<div class="refsect2">
|
1007
981
|
<a name="GtkTextTag--size-points"></a><h3>The <code class="literal">"size-points"</code> property</h3>
|
1008
982
|
<pre class="programlisting"> "size-points" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gdouble"><span class="type">gdouble</span></a> : Read / Write</pre>
|
1009
983
|
<p>Font size in points.</p>
|
@@ -1011,97 +985,97 @@ The paragraph background color as a as a (possibly unallocated)
|
|
1011
985
|
<p>Default value: 0</p>
|
1012
986
|
</div>
|
1013
987
|
<hr>
|
1014
|
-
<div class="refsect2"
|
988
|
+
<div class="refsect2">
|
1015
989
|
<a name="GtkTextTag--size-set"></a><h3>The <code class="literal">"size-set"</code> property</h3>
|
1016
990
|
<pre class="programlisting"> "size-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1017
991
|
<p>Whether this tag affects the font size.</p>
|
1018
992
|
<p>Default value: FALSE</p>
|
1019
993
|
</div>
|
1020
994
|
<hr>
|
1021
|
-
<div class="refsect2"
|
995
|
+
<div class="refsect2">
|
1022
996
|
<a name="GtkTextTag--stretch"></a><h3>The <code class="literal">"stretch"</code> property</h3>
|
1023
997
|
<pre class="programlisting"> "stretch" <a href="/usr/share/gtk-doc/html/pango/pango-Fonts.html#PangoStretch"><span class="type">PangoStretch</span></a> : Read / Write</pre>
|
1024
998
|
<p>Font stretch as a PangoStretch, e.g. PANGO_STRETCH_CONDENSED.</p>
|
1025
999
|
<p>Default value: PANGO_STRETCH_NORMAL</p>
|
1026
1000
|
</div>
|
1027
1001
|
<hr>
|
1028
|
-
<div class="refsect2"
|
1002
|
+
<div class="refsect2">
|
1029
1003
|
<a name="GtkTextTag--stretch-set"></a><h3>The <code class="literal">"stretch-set"</code> property</h3>
|
1030
1004
|
<pre class="programlisting"> "stretch-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1031
1005
|
<p>Whether this tag affects the font stretch.</p>
|
1032
1006
|
<p>Default value: FALSE</p>
|
1033
1007
|
</div>
|
1034
1008
|
<hr>
|
1035
|
-
<div class="refsect2"
|
1009
|
+
<div class="refsect2">
|
1036
1010
|
<a name="GtkTextTag--strikethrough"></a><h3>The <code class="literal">"strikethrough"</code> property</h3>
|
1037
1011
|
<pre class="programlisting"> "strikethrough" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1038
1012
|
<p>Whether to strike through the text.</p>
|
1039
1013
|
<p>Default value: FALSE</p>
|
1040
1014
|
</div>
|
1041
1015
|
<hr>
|
1042
|
-
<div class="refsect2"
|
1016
|
+
<div class="refsect2">
|
1043
1017
|
<a name="GtkTextTag--strikethrough-set"></a><h3>The <code class="literal">"strikethrough-set"</code> property</h3>
|
1044
1018
|
<pre class="programlisting"> "strikethrough-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1045
1019
|
<p>Whether this tag affects strikethrough.</p>
|
1046
1020
|
<p>Default value: FALSE</p>
|
1047
1021
|
</div>
|
1048
1022
|
<hr>
|
1049
|
-
<div class="refsect2"
|
1023
|
+
<div class="refsect2">
|
1050
1024
|
<a name="GtkTextTag--style"></a><h3>The <code class="literal">"style"</code> property</h3>
|
1051
1025
|
<pre class="programlisting"> "style" <a href="/usr/share/gtk-doc/html/pango/pango-Fonts.html#PangoStyle"><span class="type">PangoStyle</span></a> : Read / Write</pre>
|
1052
1026
|
<p>Font style as a PangoStyle, e.g. PANGO_STYLE_ITALIC.</p>
|
1053
1027
|
<p>Default value: PANGO_STYLE_NORMAL</p>
|
1054
1028
|
</div>
|
1055
1029
|
<hr>
|
1056
|
-
<div class="refsect2"
|
1030
|
+
<div class="refsect2">
|
1057
1031
|
<a name="GtkTextTag--style-set"></a><h3>The <code class="literal">"style-set"</code> property</h3>
|
1058
1032
|
<pre class="programlisting"> "style-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1059
1033
|
<p>Whether this tag affects the font style.</p>
|
1060
1034
|
<p>Default value: FALSE</p>
|
1061
1035
|
</div>
|
1062
1036
|
<hr>
|
1063
|
-
<div class="refsect2"
|
1037
|
+
<div class="refsect2">
|
1064
1038
|
<a name="GtkTextTag--tabs"></a><h3>The <code class="literal">"tabs"</code> property</h3>
|
1065
1039
|
<pre class="programlisting"> "tabs" <a href="/usr/share/gtk-doc/html/pango/pango-Tab-Stops.html#PangoTabArray"><span class="type">PangoTabArray</span></a>* : Read / Write</pre>
|
1066
1040
|
<p>Custom tabs for this text.</p>
|
1067
1041
|
</div>
|
1068
1042
|
<hr>
|
1069
|
-
<div class="refsect2"
|
1043
|
+
<div class="refsect2">
|
1070
1044
|
<a name="GtkTextTag--tabs-set"></a><h3>The <code class="literal">"tabs-set"</code> property</h3>
|
1071
1045
|
<pre class="programlisting"> "tabs-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1072
1046
|
<p>Whether this tag affects tabs.</p>
|
1073
1047
|
<p>Default value: FALSE</p>
|
1074
1048
|
</div>
|
1075
1049
|
<hr>
|
1076
|
-
<div class="refsect2"
|
1050
|
+
<div class="refsect2">
|
1077
1051
|
<a name="GtkTextTag--underline"></a><h3>The <code class="literal">"underline"</code> property</h3>
|
1078
1052
|
<pre class="programlisting"> "underline" <a href="/usr/share/gtk-doc/html/pango/pango-Text-Attributes.html#PangoUnderline"><span class="type">PangoUnderline</span></a> : Read / Write</pre>
|
1079
1053
|
<p>Style of underline for this text.</p>
|
1080
1054
|
<p>Default value: PANGO_UNDERLINE_NONE</p>
|
1081
1055
|
</div>
|
1082
1056
|
<hr>
|
1083
|
-
<div class="refsect2"
|
1057
|
+
<div class="refsect2">
|
1084
1058
|
<a name="GtkTextTag--underline-set"></a><h3>The <code class="literal">"underline-set"</code> property</h3>
|
1085
1059
|
<pre class="programlisting"> "underline-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1086
1060
|
<p>Whether this tag affects underlining.</p>
|
1087
1061
|
<p>Default value: FALSE</p>
|
1088
1062
|
</div>
|
1089
1063
|
<hr>
|
1090
|
-
<div class="refsect2"
|
1064
|
+
<div class="refsect2">
|
1091
1065
|
<a name="GtkTextTag--variant"></a><h3>The <code class="literal">"variant"</code> property</h3>
|
1092
1066
|
<pre class="programlisting"> "variant" <a href="/usr/share/gtk-doc/html/pango/pango-Fonts.html#PangoVariant"><span class="type">PangoVariant</span></a> : Read / Write</pre>
|
1093
1067
|
<p>Font variant as a PangoVariant, e.g. PANGO_VARIANT_SMALL_CAPS.</p>
|
1094
1068
|
<p>Default value: PANGO_VARIANT_NORMAL</p>
|
1095
1069
|
</div>
|
1096
1070
|
<hr>
|
1097
|
-
<div class="refsect2"
|
1071
|
+
<div class="refsect2">
|
1098
1072
|
<a name="GtkTextTag--variant-set"></a><h3>The <code class="literal">"variant-set"</code> property</h3>
|
1099
1073
|
<pre class="programlisting"> "variant-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1100
1074
|
<p>Whether this tag affects the font variant.</p>
|
1101
1075
|
<p>Default value: FALSE</p>
|
1102
1076
|
</div>
|
1103
1077
|
<hr>
|
1104
|
-
<div class="refsect2"
|
1078
|
+
<div class="refsect2">
|
1105
1079
|
<a name="GtkTextTag--weight"></a><h3>The <code class="literal">"weight"</code> property</h3>
|
1106
1080
|
<pre class="programlisting"> "weight" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read / Write</pre>
|
1107
1081
|
<p>Font weight as an integer, see predefined values in PangoWeight; for example, PANGO_WEIGHT_BOLD.</p>
|
@@ -1109,36 +1083,36 @@ The paragraph background color as a as a (possibly unallocated)
|
|
1109
1083
|
<p>Default value: 400</p>
|
1110
1084
|
</div>
|
1111
1085
|
<hr>
|
1112
|
-
<div class="refsect2"
|
1086
|
+
<div class="refsect2">
|
1113
1087
|
<a name="GtkTextTag--weight-set"></a><h3>The <code class="literal">"weight-set"</code> property</h3>
|
1114
1088
|
<pre class="programlisting"> "weight-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1115
1089
|
<p>Whether this tag affects the font weight.</p>
|
1116
1090
|
<p>Default value: FALSE</p>
|
1117
1091
|
</div>
|
1118
1092
|
<hr>
|
1119
|
-
<div class="refsect2"
|
1093
|
+
<div class="refsect2">
|
1120
1094
|
<a name="GtkTextTag--wrap-mode"></a><h3>The <code class="literal">"wrap-mode"</code> property</h3>
|
1121
1095
|
<pre class="programlisting"> "wrap-mode" <a class="link" href="GtkTextTag.html#GtkWrapMode" title="enum GtkWrapMode"><span class="type">GtkWrapMode</span></a> : Read / Write</pre>
|
1122
1096
|
<p>Whether to wrap lines never, at word boundaries, or at character boundaries.</p>
|
1123
1097
|
<p>Default value: GTK_WRAP_NONE</p>
|
1124
1098
|
</div>
|
1125
1099
|
<hr>
|
1126
|
-
<div class="refsect2"
|
1100
|
+
<div class="refsect2">
|
1127
1101
|
<a name="GtkTextTag--wrap-mode-set"></a><h3>The <code class="literal">"wrap-mode-set"</code> property</h3>
|
1128
1102
|
<pre class="programlisting"> "wrap-mode-set" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read / Write</pre>
|
1129
1103
|
<p>Whether this tag affects line wrap mode.</p>
|
1130
1104
|
<p>Default value: FALSE</p>
|
1131
1105
|
</div>
|
1132
1106
|
</div>
|
1133
|
-
<div class="refsect1"
|
1107
|
+
<div class="refsect1">
|
1134
1108
|
<a name="GtkTextTag.signal-details"></a><h2>Signal Details</h2>
|
1135
|
-
<div class="refsect2"
|
1109
|
+
<div class="refsect2">
|
1136
1110
|
<a name="GtkTextTag-event"></a><h3>The <code class="literal">"event"</code> signal</h3>
|
1137
1111
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> user_function (<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
|
1138
1112
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject"><span class="type">GObject</span></a> *object,
|
1139
|
-
<a href="http://library.gnome.org/devel/
|
1140
|
-
<a class="link" href="
|
1141
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : Run Last</pre>
|
1113
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Event-Structures.html#GdkEvent"><span class="type">GdkEvent</span></a> *event,
|
1114
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter,
|
1115
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data) : <a href="http://library.gnome.org/devel/gobject/unstable/gobject-Signals.html#G-SIGNAL-RUN-LAST:CAPS"><code class="literal">Run Last</code></a></pre>
|
1142
1116
|
<p>
|
1143
1117
|
The ::event signal is emitted when an event occurs on a region of the
|
1144
1118
|
buffer marked with this tag.
|
@@ -1148,23 +1122,19 @@ buffer marked with this tag.
|
|
1148
1122
|
<tbody>
|
1149
1123
|
<tr>
|
1150
1124
|
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
1151
|
-
<td>the <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> on which the signal is emitted
|
1152
|
-
</td>
|
1125
|
+
<td>the <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> on which the signal is emitted</td>
|
1153
1126
|
</tr>
|
1154
1127
|
<tr>
|
1155
1128
|
<td><p><span class="term"><em class="parameter"><code>object</code></em> :</span></p></td>
|
1156
|
-
<td>the object the event was fired from (typically a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>)
|
1157
|
-
</td>
|
1129
|
+
<td>the object the event was fired from (typically a <a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>)</td>
|
1158
1130
|
</tr>
|
1159
1131
|
<tr>
|
1160
1132
|
<td><p><span class="term"><em class="parameter"><code>event</code></em> :</span></p></td>
|
1161
|
-
<td>the event which triggered the signal
|
1162
|
-
</td>
|
1133
|
+
<td>the event which triggered the signal</td>
|
1163
1134
|
</tr>
|
1164
1135
|
<tr>
|
1165
1136
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1166
|
-
<td>a <a class="link" href="
|
1167
|
-
</td>
|
1137
|
+
<td>a <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> pointing at the location the event occured</td>
|
1168
1138
|
</tr>
|
1169
1139
|
<tr>
|
1170
1140
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -1172,9 +1142,9 @@ buffer marked with this tag.
|
|
1172
1142
|
</tr>
|
1173
1143
|
<tr>
|
1174
1144
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1175
|
-
<td>
|
1176
|
-
|
1177
|
-
</td>
|
1145
|
+
<td>
|
1146
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> to stop other handlers from being invoked for the
|
1147
|
+
event. <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> to propagate the event further.</td>
|
1178
1148
|
</tr>
|
1179
1149
|
</tbody>
|
1180
1150
|
</table></div>
|
@@ -1183,6 +1153,6 @@ event. <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macro
|
|
1183
1153
|
</div>
|
1184
1154
|
<div class="footer">
|
1185
1155
|
<hr>
|
1186
|
-
Generated by GTK-Doc V1.
|
1156
|
+
Generated by GTK-Doc V1.17</div>
|
1187
1157
|
</body>
|
1188
1158
|
</html>
|