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,11 +4,11 @@
|
|
4
4
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
5
5
|
<title>GtkTextBuffer</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="GtkTextMark.html" title="GtkTextMark">
|
10
10
|
<link rel="next" href="GtkTextTag.html" title="GtkTextTag">
|
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="GtkTextMark.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="GtkTextTag.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="#GtkTextBuffer.signals" class="shortcut">Signals</a>
|
33
33
|
</td></tr>
|
34
34
|
</table>
|
35
|
-
<div class="refentry"
|
35
|
+
<div class="refentry">
|
36
36
|
<a name="GtkTextBuffer"></a><div class="titlepage"></div>
|
37
37
|
<div class="refnamediv"><table width="100%"><tr>
|
38
38
|
<td valign="top">
|
@@ -41,7 +41,7 @@
|
|
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="GtkTextBuffer.synopsis"></a><h2>Synopsis</h2>
|
46
46
|
<pre class="synopsis">
|
47
47
|
#include <gtk/gtk.h>
|
@@ -50,16 +50,16 @@
|
|
50
50
|
<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-new" title="gtk_text_buffer_new ()">gtk_text_buffer_new</a> (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>);
|
51
51
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-line-count" title="gtk_text_buffer_get_line_count ()">gtk_text_buffer_get_line_count</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
52
52
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="returnvalue">gint</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-char-count" title="gtk_text_buffer_get_char_count ()">gtk_text_buffer_get_char_count</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
53
|
-
<a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="returnvalue">GtkTextTagTable</span></a
|
53
|
+
<a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="returnvalue">GtkTextTagTable</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-tag-table" title="gtk_text_buffer_get_tag_table ()">gtk_text_buffer_get_tag_table</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
54
54
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert" title="gtk_text_buffer_insert ()">gtk_text_buffer_insert</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
55
|
-
<em class="parameter"><code><a class="link" href="
|
55
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
56
56
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
57
57
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);
|
58
58
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-at-cursor" title="gtk_text_buffer_insert_at_cursor ()">gtk_text_buffer_insert_at_cursor</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
59
59
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
60
60
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);
|
61
61
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-interactive" title="gtk_text_buffer_insert_interactive ()">gtk_text_buffer_insert_interactive</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
62
|
-
<em class="parameter"><code><a class="link" href="
|
62
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
63
63
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
64
64
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
|
65
65
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
|
@@ -69,139 +69,139 @@
|
|
69
69
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
|
70
70
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
|
71
71
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-range" title="gtk_text_buffer_insert_range ()">gtk_text_buffer_insert_range</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
72
|
-
<em class="parameter"><code><a class="link" href="
|
73
|
-
<em class="parameter"><code>const <a class="link" href="
|
74
|
-
<em class="parameter"><code>const <a class="link" href="
|
72
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
73
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
74
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
|
75
75
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-range-interactive" title="gtk_text_buffer_insert_range_interactive ()">gtk_text_buffer_insert_range_interactive</a>
|
76
76
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
77
|
-
<em class="parameter"><code><a class="link" href="
|
78
|
-
<em class="parameter"><code>const <a class="link" href="
|
79
|
-
<em class="parameter"><code>const <a class="link" href="
|
77
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
78
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
79
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
|
80
80
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
|
81
81
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-with-tags" title="gtk_text_buffer_insert_with_tags ()">gtk_text_buffer_insert_with_tags</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
82
|
-
<em class="parameter"><code><a class="link" href="
|
82
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
83
83
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
84
84
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
|
85
85
|
<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *first_tag</code></em>,
|
86
86
|
<em class="parameter"><code>...</code></em>);
|
87
87
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-with-tags-by-name" title="gtk_text_buffer_insert_with_tags_by_name ()">gtk_text_buffer_insert_with_tags_by_name</a>
|
88
88
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
89
|
-
<em class="parameter"><code><a class="link" href="
|
89
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
90
90
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
91
91
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
|
92
92
|
<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> *first_tag_name</code></em>,
|
93
93
|
<em class="parameter"><code>...</code></em>);
|
94
94
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete" title="gtk_text_buffer_delete ()">gtk_text_buffer_delete</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
95
|
-
<em class="parameter"><code><a class="link" href="
|
96
|
-
<em class="parameter"><code><a class="link" href="
|
95
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
96
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
|
97
97
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-interactive" title="gtk_text_buffer_delete_interactive ()">gtk_text_buffer_delete_interactive</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
98
|
-
<em class="parameter"><code><a class="link" href="
|
99
|
-
<em class="parameter"><code><a class="link" href="
|
98
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start_iter</code></em>,
|
99
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end_iter</code></em>,
|
100
100
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
|
101
101
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-backspace" title="gtk_text_buffer_backspace ()">gtk_text_buffer_backspace</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
102
|
-
<em class="parameter"><code><a class="link" href="
|
102
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
103
103
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> interactive</code></em>,
|
104
104
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
|
105
105
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-set-text" title="gtk_text_buffer_set_text ()">gtk_text_buffer_set_text</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
106
106
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
107
107
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);
|
108
108
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-text" title="gtk_text_buffer_get_text ()">gtk_text_buffer_get_text</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
109
|
-
<em class="parameter"><code>const <a class="link" href="
|
110
|
-
<em class="parameter"><code>const <a class="link" href="
|
109
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
110
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
|
111
111
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> include_hidden_chars</code></em>);
|
112
112
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-slice" title="gtk_text_buffer_get_slice ()">gtk_text_buffer_get_slice</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
113
|
-
<em class="parameter"><code>const <a class="link" href="
|
114
|
-
<em class="parameter"><code>const <a class="link" href="
|
113
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
114
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
|
115
115
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> include_hidden_chars</code></em>);
|
116
116
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-pixbuf" title="gtk_text_buffer_insert_pixbuf ()">gtk_text_buffer_insert_pixbuf</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
117
|
-
<em class="parameter"><code><a class="link" href="
|
118
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
117
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
118
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);
|
119
119
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-child-anchor" title="gtk_text_buffer_insert_child_anchor ()">gtk_text_buffer_insert_child_anchor</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
120
|
-
<em class="parameter"><code><a class="link" href="
|
120
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
121
121
|
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);
|
122
122
|
<a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-child-anchor" title="gtk_text_buffer_create_child_anchor ()">gtk_text_buffer_create_child_anchor</a>
|
123
123
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
124
|
-
<em class="parameter"><code><a class="link" href="
|
124
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
|
125
125
|
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-mark" title="gtk_text_buffer_create_mark ()">gtk_text_buffer_create_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
126
126
|
<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> *mark_name</code></em>,
|
127
|
-
<em class="parameter"><code>const <a class="link" href="
|
127
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>,
|
128
128
|
<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>);
|
129
129
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-move-mark" title="gtk_text_buffer_move_mark ()">gtk_text_buffer_move_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
130
130
|
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
|
131
|
-
<em class="parameter"><code>const <a class="link" href="
|
131
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);
|
132
132
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-move-mark-by-name" title="gtk_text_buffer_move_mark_by_name ()">gtk_text_buffer_move_mark_by_name</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
133
133
|
<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>,
|
134
|
-
<em class="parameter"><code>const <a class="link" href="
|
134
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);
|
135
135
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-add-mark" title="gtk_text_buffer_add_mark ()">gtk_text_buffer_add_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
136
136
|
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
|
137
|
-
<em class="parameter"><code>const <a class="link" href="
|
137
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);
|
138
138
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-mark" title="gtk_text_buffer_delete_mark ()">gtk_text_buffer_delete_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
139
139
|
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
140
140
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete-mark-by-name" title="gtk_text_buffer_delete_mark_by_name ()">gtk_text_buffer_delete_mark_by_name</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
141
141
|
<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>);
|
142
|
-
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a
|
142
|
+
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-mark" title="gtk_text_buffer_get_mark ()">gtk_text_buffer_get_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
143
143
|
<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>);
|
144
|
-
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a
|
145
|
-
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a
|
144
|
+
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-insert" title="gtk_text_buffer_get_insert ()">gtk_text_buffer_get_insert</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
145
|
+
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-selection-bound" title="gtk_text_buffer_get_selection_bound ()">gtk_text_buffer_get_selection_bound</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
146
146
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-has-selection" title="gtk_text_buffer_get_has_selection ()">gtk_text_buffer_get_has_selection</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
147
147
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-place-cursor" title="gtk_text_buffer_place_cursor ()">gtk_text_buffer_place_cursor</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
148
|
-
<em class="parameter"><code>const <a class="link" href="
|
148
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);
|
149
149
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-select-range" title="gtk_text_buffer_select_range ()">gtk_text_buffer_select_range</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
150
|
-
<em class="parameter"><code>const <a class="link" href="
|
151
|
-
<em class="parameter"><code>const <a class="link" href="
|
150
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *ins</code></em>,
|
151
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *bound</code></em>);
|
152
152
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-apply-tag" title="gtk_text_buffer_apply_tag ()">gtk_text_buffer_apply_tag</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
153
153
|
<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
154
|
-
<em class="parameter"><code>const <a class="link" href="
|
155
|
-
<em class="parameter"><code>const <a class="link" href="
|
154
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
155
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
|
156
156
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-remove-tag" title="gtk_text_buffer_remove_tag ()">gtk_text_buffer_remove_tag</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
157
157
|
<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
158
|
-
<em class="parameter"><code>const <a class="link" href="
|
159
|
-
<em class="parameter"><code>const <a class="link" href="
|
158
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
159
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
|
160
160
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-apply-tag-by-name" title="gtk_text_buffer_apply_tag_by_name ()">gtk_text_buffer_apply_tag_by_name</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
161
161
|
<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>,
|
162
|
-
<em class="parameter"><code>const <a class="link" href="
|
163
|
-
<em class="parameter"><code>const <a class="link" href="
|
162
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
163
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
|
164
164
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-remove-tag-by-name" title="gtk_text_buffer_remove_tag_by_name ()">gtk_text_buffer_remove_tag_by_name</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
165
165
|
<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>,
|
166
|
-
<em class="parameter"><code>const <a class="link" href="
|
167
|
-
<em class="parameter"><code>const <a class="link" href="
|
166
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
167
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
|
168
168
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-remove-all-tags" title="gtk_text_buffer_remove_all_tags ()">gtk_text_buffer_remove_all_tags</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
169
|
-
<em class="parameter"><code>const <a class="link" href="
|
170
|
-
<em class="parameter"><code>const <a class="link" href="
|
169
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
170
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
|
171
171
|
<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-tag" title="gtk_text_buffer_create_tag ()">gtk_text_buffer_create_tag</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
172
172
|
<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> *tag_name</code></em>,
|
173
173
|
<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> *first_property_name</code></em>,
|
174
174
|
<em class="parameter"><code>...</code></em>);
|
175
175
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-line-offset" title="gtk_text_buffer_get_iter_at_line_offset ()">gtk_text_buffer_get_iter_at_line_offset</a>
|
176
176
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
177
|
-
<em class="parameter"><code><a class="link" href="
|
177
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
178
178
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line_number</code></em>,
|
179
179
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> char_offset</code></em>);
|
180
180
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-offset" title="gtk_text_buffer_get_iter_at_offset ()">gtk_text_buffer_get_iter_at_offset</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
181
|
-
<em class="parameter"><code><a class="link" href="
|
181
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
182
182
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> char_offset</code></em>);
|
183
183
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-line" title="gtk_text_buffer_get_iter_at_line ()">gtk_text_buffer_get_iter_at_line</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
184
|
-
<em class="parameter"><code><a class="link" href="
|
184
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
185
185
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line_number</code></em>);
|
186
186
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-line-index" title="gtk_text_buffer_get_iter_at_line_index ()">gtk_text_buffer_get_iter_at_line_index</a>
|
187
187
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
188
|
-
<em class="parameter"><code><a class="link" href="
|
188
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
189
189
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line_number</code></em>,
|
190
190
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> byte_index</code></em>);
|
191
191
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-mark" title="gtk_text_buffer_get_iter_at_mark ()">gtk_text_buffer_get_iter_at_mark</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
192
|
-
<em class="parameter"><code><a class="link" href="
|
192
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
193
193
|
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);
|
194
194
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-child-anchor" title="gtk_text_buffer_get_iter_at_child_anchor ()">gtk_text_buffer_get_iter_at_child_anchor</a>
|
195
195
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
196
|
-
<em class="parameter"><code><a class="link" href="
|
196
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
197
197
|
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);
|
198
198
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-start-iter" title="gtk_text_buffer_get_start_iter ()">gtk_text_buffer_get_start_iter</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
199
|
-
<em class="parameter"><code><a class="link" href="
|
199
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
|
200
200
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-end-iter" title="gtk_text_buffer_get_end_iter ()">gtk_text_buffer_get_end_iter</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
201
|
-
<em class="parameter"><code><a class="link" href="
|
201
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);
|
202
202
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-bounds" title="gtk_text_buffer_get_bounds ()">gtk_text_buffer_get_bounds</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
203
|
-
<em class="parameter"><code><a class="link" href="
|
204
|
-
<em class="parameter"><code><a class="link" href="
|
203
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
204
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
|
205
205
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-modified" title="gtk_text_buffer_get_modified ()">gtk_text_buffer_get_modified</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
206
206
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-set-modified" title="gtk_text_buffer_set_modified ()">gtk_text_buffer_set_modified</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
207
207
|
<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>);
|
@@ -210,7 +210,7 @@
|
|
210
210
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
|
211
211
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-paste-clipboard" title="gtk_text_buffer_paste_clipboard ()">gtk_text_buffer_paste_clipboard</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
212
212
|
<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
|
213
|
-
<em class="parameter"><code><a class="link" href="
|
213
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *override_location</code></em>,
|
214
214
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
|
215
215
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-copy-clipboard" title="gtk_text_buffer_copy_clipboard ()">gtk_text_buffer_copy_clipboard</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
216
216
|
<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);
|
@@ -219,8 +219,8 @@
|
|
219
219
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);
|
220
220
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-selection-bounds" title="gtk_text_buffer_get_selection_bounds ()">gtk_text_buffer_get_selection_bounds</a>
|
221
221
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
222
|
-
<em class="parameter"><code><a class="link" href="
|
223
|
-
<em class="parameter"><code><a class="link" href="
|
222
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
223
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);
|
224
224
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-begin-user-action" title="gtk_text_buffer_begin_user_action ()">gtk_text_buffer_begin_user_action</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
225
225
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-end-user-action" title="gtk_text_buffer_end_user_action ()">gtk_text_buffer_end_user_action</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
226
226
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-add-selection-clipboard" title="gtk_text_buffer_add_selection_clipboard ()">gtk_text_buffer_add_selection_clipboard</a>
|
@@ -233,7 +233,7 @@
|
|
233
233
|
enum <a class="link" href="GtkTextBuffer.html#GtkTextBufferTargetInfo" title="enum GtkTextBufferTargetInfo">GtkTextBufferTargetInfo</a>;
|
234
234
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (<a class="link" href="GtkTextBuffer.html#GtkTextBufferDeserializeFunc" title="GtkTextBufferDeserializeFunc ()">*GtkTextBufferDeserializeFunc</a>) (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
|
235
235
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
|
236
|
-
<em class="parameter"><code><a class="link" href="
|
236
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
237
237
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *data</code></em>,
|
238
238
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
|
239
239
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> create_tags</code></em>,
|
@@ -241,103 +241,103 @@ enum <a class="link" href="GtkTextBuffer.html#GtkTextBufferTarget
|
|
241
241
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);
|
242
242
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-deserialize" title="gtk_text_buffer_deserialize ()">gtk_text_buffer_deserialize</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
|
243
243
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
|
244
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
245
|
-
<em class="parameter"><code><a class="link" href="
|
244
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
|
245
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
246
246
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *data</code></em>,
|
247
247
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
|
248
248
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);
|
249
249
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-deserialize-get-can-create-tags" title="gtk_text_buffer_deserialize_get_can_create_tags ()">gtk_text_buffer_deserialize_get_can_create_tags</a>
|
250
250
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
251
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
251
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);
|
252
252
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-deserialize-set-can-create-tags" title="gtk_text_buffer_deserialize_set_can_create_tags ()">gtk_text_buffer_deserialize_set_can_create_tags</a>
|
253
253
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
254
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
254
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
|
255
255
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> can_create_tags</code></em>);
|
256
|
-
<a class="link" href="gtk-Selections.html#GtkTargetList"
|
256
|
+
<a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-copy-target-list" title="gtk_text_buffer_get_copy_target_list ()">gtk_text_buffer_get_copy_target_list</a>
|
257
257
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
258
|
-
<a href="http://library.gnome.org/devel/
|
258
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-deserialize-formats" title="gtk_text_buffer_get_deserialize_formats ()">gtk_text_buffer_get_deserialize_formats</a>
|
259
259
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
260
260
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_formats</code></em>);
|
261
|
-
<a class="link" href="gtk-Selections.html#GtkTargetList"
|
261
|
+
<a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-paste-target-list" title="gtk_text_buffer_get_paste_target_list ()">gtk_text_buffer_get_paste_target_list</a>
|
262
262
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);
|
263
|
-
<a href="http://library.gnome.org/devel/
|
263
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-serialize-formats" title="gtk_text_buffer_get_serialize_formats ()">gtk_text_buffer_get_serialize_formats</a>
|
264
264
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
265
265
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_formats</code></em>);
|
266
|
-
<a href="http://library.gnome.org/devel/
|
266
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-format" title="gtk_text_buffer_register_deserialize_format ()">gtk_text_buffer_register_deserialize_format</a>
|
267
267
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
268
268
|
<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> *mime_type</code></em>,
|
269
269
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html#GtkTextBufferDeserializeFunc" title="GtkTextBufferDeserializeFunc ()"><span class="type">GtkTextBufferDeserializeFunc</span></a> function</code></em>,
|
270
270
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
|
271
271
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> user_data_destroy</code></em>);
|
272
|
-
<a href="http://library.gnome.org/devel/
|
272
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-tagset" title="gtk_text_buffer_register_deserialize_tagset ()">gtk_text_buffer_register_deserialize_tagset</a>
|
273
273
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
274
274
|
<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> *tagset_name</code></em>);
|
275
|
-
<a href="http://library.gnome.org/devel/
|
275
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-format" title="gtk_text_buffer_register_serialize_format ()">gtk_text_buffer_register_serialize_format</a>
|
276
276
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
277
277
|
<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> *mime_type</code></em>,
|
278
278
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html#GtkTextBufferSerializeFunc" title="GtkTextBufferSerializeFunc ()"><span class="type">GtkTextBufferSerializeFunc</span></a> function</code></em>,
|
279
279
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>,
|
280
280
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Datasets.html#GDestroyNotify"><span class="type">GDestroyNotify</span></a> user_data_destroy</code></em>);
|
281
|
-
<a href="http://library.gnome.org/devel/
|
281
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-tagset" title="gtk_text_buffer_register_serialize_tagset ()">gtk_text_buffer_register_serialize_tagset</a>
|
282
282
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
283
283
|
<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> *tagset_name</code></em>);
|
284
284
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="returnvalue">guint8</span></a> * (<a class="link" href="GtkTextBuffer.html#GtkTextBufferSerializeFunc" title="GtkTextBufferSerializeFunc ()">*GtkTextBufferSerializeFunc</a>) (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
|
285
285
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
|
286
|
-
<em class="parameter"><code>const <a class="link" href="
|
287
|
-
<em class="parameter"><code>const <a class="link" href="
|
286
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
287
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
|
288
288
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>,
|
289
289
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);
|
290
290
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="returnvalue">guint8</span></a> * <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-serialize" title="gtk_text_buffer_serialize ()">gtk_text_buffer_serialize</a> (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
|
291
291
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
|
292
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
293
|
-
<em class="parameter"><code>const <a class="link" href="
|
294
|
-
<em class="parameter"><code>const <a class="link" href="
|
292
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
|
293
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
294
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
|
295
295
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>);
|
296
296
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-unregister-deserialize-format" title="gtk_text_buffer_unregister_deserialize_format ()">gtk_text_buffer_unregister_deserialize_format</a>
|
297
297
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
298
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
298
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);
|
299
299
|
<span class="returnvalue">void</span> <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-unregister-serialize-format" title="gtk_text_buffer_unregister_serialize_format ()">gtk_text_buffer_unregister_serialize_format</a>
|
300
300
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
301
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
301
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);
|
302
302
|
</pre>
|
303
303
|
</div>
|
304
|
-
<div class="refsect1"
|
304
|
+
<div class="refsect1">
|
305
305
|
<a name="GtkTextBuffer.object-hierarchy"></a><h2>Object Hierarchy</h2>
|
306
306
|
<pre class="synopsis">
|
307
307
|
<a href="http://library.gnome.org/devel/gobject/unstable/gobject-The-Base-Object-Type.html#GObject">GObject</a>
|
308
308
|
+----GtkTextBuffer
|
309
309
|
</pre>
|
310
310
|
</div>
|
311
|
-
<div class="refsect1"
|
311
|
+
<div class="refsect1">
|
312
312
|
<a name="GtkTextBuffer.properties"></a><h2>Properties</h2>
|
313
313
|
<pre class="synopsis">
|
314
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--copy-target-list" title='The "copy-target-list" property'>copy-target-list</a>" <a class="link" href="gtk-Selections.html#GtkTargetList"
|
314
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--copy-target-list" title='The "copy-target-list" property'>copy-target-list</a>" <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>* : Read
|
315
315
|
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--cursor-position" title='The "cursor-position" property'>cursor-position</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read
|
316
316
|
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--has-selection" title='The "has-selection" property'>has-selection</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read
|
317
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--paste-target-list" title='The "paste-target-list" property'>paste-target-list</a>" <a class="link" href="gtk-Selections.html#GtkTargetList"
|
317
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--paste-target-list" title='The "paste-target-list" property'>paste-target-list</a>" <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>* : Read
|
318
318
|
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--tag-table" title='The "tag-table" property'>tag-table</a>" <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>* : Read / Write / Construct Only
|
319
319
|
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer--text" title='The "text" property'>text</a>" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write
|
320
320
|
</pre>
|
321
321
|
</div>
|
322
|
-
<div class="refsect1"
|
322
|
+
<div class="refsect1">
|
323
323
|
<a name="GtkTextBuffer.signals"></a><h2>Signals</h2>
|
324
324
|
<pre class="synopsis">
|
325
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-apply-tag" title='The "apply-tag" signal'>apply-tag</a>" : Run Last
|
326
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-begin-user-action" title='The "begin-user-action" signal'>begin-user-action</a>" : Run Last
|
327
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-changed" title='The "changed" signal'>changed</a>" : Run Last
|
328
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-delete-range" title='The "delete-range" signal'>delete-range</a>" : Run Last
|
329
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-end-user-action" title='The "end-user-action" signal'>end-user-action</a>" : Run Last
|
330
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-child-anchor" title='The "insert-child-anchor" signal'>insert-child-anchor</a>" : Run Last
|
331
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-pixbuf" title='The "insert-pixbuf" signal'>insert-pixbuf</a>" : Run Last
|
332
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-text" title='The "insert-text" signal'>insert-text</a>" : Run Last
|
333
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-mark-deleted" title='The "mark-deleted" signal'>mark-deleted</a>" : Run Last
|
334
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-mark-set" title='The "mark-set" signal'>mark-set</a>" : Run Last
|
335
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-modified-changed" title='The "modified-changed" signal'>modified-changed</a>" : Run Last
|
336
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-paste-done" title='The "paste-done" signal'>paste-done</a>" : Run Last
|
337
|
-
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-remove-tag" title='The "remove-tag" signal'>remove-tag</a>" : Run Last
|
325
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-apply-tag" title='The "apply-tag" signal'>apply-tag</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>
|
326
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-begin-user-action" title='The "begin-user-action" signal'>begin-user-action</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>
|
327
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-changed" title='The "changed" signal'>changed</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>
|
328
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-delete-range" title='The "delete-range" signal'>delete-range</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>
|
329
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-end-user-action" title='The "end-user-action" signal'>end-user-action</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>
|
330
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-child-anchor" title='The "insert-child-anchor" signal'>insert-child-anchor</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>
|
331
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-pixbuf" title='The "insert-pixbuf" signal'>insert-pixbuf</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>
|
332
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-insert-text" title='The "insert-text" signal'>insert-text</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>
|
333
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-mark-deleted" title='The "mark-deleted" signal'>mark-deleted</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>
|
334
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-mark-set" title='The "mark-set" signal'>mark-set</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>
|
335
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-modified-changed" title='The "modified-changed" signal'>modified-changed</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>
|
336
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-paste-done" title='The "paste-done" signal'>paste-done</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>
|
337
|
+
"<a class="link" href="GtkTextBuffer.html#GtkTextBuffer-remove-tag" title='The "remove-tag" signal'>remove-tag</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>
|
338
338
|
</pre>
|
339
339
|
</div>
|
340
|
-
<div class="refsect1"
|
340
|
+
<div class="refsect1">
|
341
341
|
<a name="GtkTextBuffer.description"></a><h2>Description</h2>
|
342
342
|
<p>
|
343
343
|
You may wish to begin by reading the <a class="link" href="TextWidget.html" title="Text Widget Overview">text widget
|
@@ -347,16 +347,16 @@ types related to the text widget and how they work together.
|
|
347
347
|
<p>
|
348
348
|
</p>
|
349
349
|
</div>
|
350
|
-
<div class="refsect1"
|
350
|
+
<div class="refsect1">
|
351
351
|
<a name="GtkTextBuffer.details"></a><h2>Details</h2>
|
352
|
-
<div class="refsect2"
|
352
|
+
<div class="refsect2">
|
353
353
|
<a name="GtkTextBuffer-struct"></a><h3>GtkTextBuffer</h3>
|
354
354
|
<pre class="programlisting">typedef struct _GtkTextBuffer GtkTextBuffer;</pre>
|
355
355
|
<p>
|
356
356
|
</p>
|
357
357
|
</div>
|
358
358
|
<hr>
|
359
|
-
<div class="refsect2"
|
359
|
+
<div class="refsect2">
|
360
360
|
<a name="gtk-text-buffer-new"></a><h3>gtk_text_buffer_new ()</h3>
|
361
361
|
<pre class="programlisting"><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="returnvalue">GtkTextBuffer</span></a> * gtk_text_buffer_new (<em class="parameter"><code><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> *table</code></em>);</pre>
|
362
362
|
<p>
|
@@ -367,19 +367,18 @@ Creates a new text buffer.
|
|
367
367
|
<tbody>
|
368
368
|
<tr>
|
369
369
|
<td><p><span class="term"><em class="parameter"><code>table</code></em> :</span></p></td>
|
370
|
-
<td>
|
370
|
+
<td>a tag table, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> to create a new one. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
371
371
|
</td>
|
372
372
|
</tr>
|
373
373
|
<tr>
|
374
374
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
375
|
-
<td>
|
376
|
-
</td>
|
375
|
+
<td>a new text buffer</td>
|
377
376
|
</tr>
|
378
377
|
</tbody>
|
379
378
|
</table></div>
|
380
379
|
</div>
|
381
380
|
<hr>
|
382
|
-
<div class="refsect2"
|
381
|
+
<div class="refsect2">
|
383
382
|
<a name="gtk-text-buffer-get-line-count"></a><h3>gtk_text_buffer_get_line_count ()</h3>
|
384
383
|
<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_buffer_get_line_count (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
385
384
|
<p>
|
@@ -391,19 +390,18 @@ the function is very fast.
|
|
391
390
|
<tbody>
|
392
391
|
<tr>
|
393
392
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
394
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
393
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
395
394
|
</td>
|
396
395
|
</tr>
|
397
396
|
<tr>
|
398
397
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
399
|
-
<td>
|
400
|
-
</td>
|
398
|
+
<td>number of lines in the buffer</td>
|
401
399
|
</tr>
|
402
400
|
</tbody>
|
403
401
|
</table></div>
|
404
402
|
</div>
|
405
403
|
<hr>
|
406
|
-
<div class="refsect2"
|
404
|
+
<div class="refsect2">
|
407
405
|
<a name="gtk-text-buffer-get-char-count"></a><h3>gtk_text_buffer_get_char_count ()</h3>
|
408
406
|
<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_buffer_get_char_count (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
409
407
|
<p>
|
@@ -417,21 +415,20 @@ count is cached, so this function is very fast.
|
|
417
415
|
<tbody>
|
418
416
|
<tr>
|
419
417
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
420
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
418
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
421
419
|
</td>
|
422
420
|
</tr>
|
423
421
|
<tr>
|
424
422
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
425
|
-
<td>
|
426
|
-
</td>
|
423
|
+
<td>number of characters in the buffer</td>
|
427
424
|
</tr>
|
428
425
|
</tbody>
|
429
426
|
</table></div>
|
430
427
|
</div>
|
431
428
|
<hr>
|
432
|
-
<div class="refsect2"
|
429
|
+
<div class="refsect2">
|
433
430
|
<a name="gtk-text-buffer-get-tag-table"></a><h3>gtk_text_buffer_get_tag_table ()</h3>
|
434
|
-
<pre class="programlisting"><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="returnvalue">GtkTextTagTable</span></a
|
431
|
+
<pre class="programlisting"><a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="returnvalue">GtkTextTagTable</span></a> * gtk_text_buffer_get_tag_table (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
435
432
|
<p>
|
436
433
|
Get the <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a> associated with this buffer.
|
437
434
|
</p>
|
@@ -445,17 +442,17 @@ Get the <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><spa
|
|
445
442
|
</tr>
|
446
443
|
<tr>
|
447
444
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
448
|
-
<td>
|
445
|
+
<td>the buffer's tag table. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
449
446
|
</td>
|
450
447
|
</tr>
|
451
448
|
</tbody>
|
452
449
|
</table></div>
|
453
450
|
</div>
|
454
451
|
<hr>
|
455
|
-
<div class="refsect2"
|
452
|
+
<div class="refsect2">
|
456
453
|
<a name="gtk-text-buffer-insert"></a><h3>gtk_text_buffer_insert ()</h3>
|
457
454
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
458
|
-
<em class="parameter"><code><a class="link" href="
|
455
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
459
456
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
460
457
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>);</pre>
|
461
458
|
<p>
|
@@ -477,24 +474,21 @@ inserted text.
|
|
477
474
|
</tr>
|
478
475
|
<tr>
|
479
476
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
480
|
-
<td>a position in the buffer
|
481
|
-
</td>
|
477
|
+
<td>a position in the buffer</td>
|
482
478
|
</tr>
|
483
479
|
<tr>
|
484
480
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
485
|
-
<td>
|
486
|
-
</td>
|
481
|
+
<td>text in UTF-8 format</td>
|
487
482
|
</tr>
|
488
483
|
<tr>
|
489
484
|
<td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
|
490
|
-
<td>length of text in bytes, or -1
|
491
|
-
</td>
|
485
|
+
<td>length of text in bytes, or -1</td>
|
492
486
|
</tr>
|
493
487
|
</tbody>
|
494
488
|
</table></div>
|
495
489
|
</div>
|
496
490
|
<hr>
|
497
|
-
<div class="refsect2"
|
491
|
+
<div class="refsect2">
|
498
492
|
<a name="gtk-text-buffer-insert-at-cursor"></a><h3>gtk_text_buffer_insert_at_cursor ()</h3>
|
499
493
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_at_cursor (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
500
494
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
@@ -513,22 +507,20 @@ cursor position as the insertion point.
|
|
513
507
|
</tr>
|
514
508
|
<tr>
|
515
509
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
516
|
-
<td>
|
517
|
-
</td>
|
510
|
+
<td>text in UTF-8 format</td>
|
518
511
|
</tr>
|
519
512
|
<tr>
|
520
513
|
<td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
|
521
|
-
<td>length of text, in bytes
|
522
|
-
</td>
|
514
|
+
<td>length of text, in bytes</td>
|
523
515
|
</tr>
|
524
516
|
</tbody>
|
525
517
|
</table></div>
|
526
518
|
</div>
|
527
519
|
<hr>
|
528
|
-
<div class="refsect2"
|
520
|
+
<div class="refsect2">
|
529
521
|
<a name="gtk-text-buffer-insert-interactive"></a><h3>gtk_text_buffer_insert_interactive ()</h3>
|
530
522
|
<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_buffer_insert_interactive (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
531
|
-
<em class="parameter"><code><a class="link" href="
|
523
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
532
524
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
533
525
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
|
534
526
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
|
@@ -558,29 +550,25 @@ result of <a class="link" href="GtkTextView.html#gtk-text-view-get-editable" tit
|
|
558
550
|
</tr>
|
559
551
|
<tr>
|
560
552
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
561
|
-
<td>some UTF-8 text
|
562
|
-
</td>
|
553
|
+
<td>some UTF-8 text</td>
|
563
554
|
</tr>
|
564
555
|
<tr>
|
565
556
|
<td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
|
566
|
-
<td>length of text in bytes, or -1
|
567
|
-
</td>
|
557
|
+
<td>length of text in bytes, or -1</td>
|
568
558
|
</tr>
|
569
559
|
<tr>
|
570
560
|
<td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
|
571
|
-
<td>default editability of buffer
|
572
|
-
</td>
|
561
|
+
<td>default editability of buffer</td>
|
573
562
|
</tr>
|
574
563
|
<tr>
|
575
564
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
576
|
-
<td>
|
577
|
-
</td>
|
565
|
+
<td>whether text was actually inserted</td>
|
578
566
|
</tr>
|
579
567
|
</tbody>
|
580
568
|
</table></div>
|
581
569
|
</div>
|
582
570
|
<hr>
|
583
|
-
<div class="refsect2"
|
571
|
+
<div class="refsect2">
|
584
572
|
<a name="gtk-text-buffer-insert-interactive-at-cursor"></a><h3>gtk_text_buffer_insert_interactive_at_cursor ()</h3>
|
585
573
|
<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_buffer_insert_interactive_at_cursor
|
586
574
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
@@ -606,34 +594,30 @@ result of <a class="link" href="GtkTextView.html#gtk-text-view-get-editable" tit
|
|
606
594
|
</tr>
|
607
595
|
<tr>
|
608
596
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
609
|
-
<td>text in UTF-8 format
|
610
|
-
</td>
|
597
|
+
<td>text in UTF-8 format</td>
|
611
598
|
</tr>
|
612
599
|
<tr>
|
613
600
|
<td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
|
614
|
-
<td>length of text in bytes, or -1
|
615
|
-
</td>
|
601
|
+
<td>length of text in bytes, or -1</td>
|
616
602
|
</tr>
|
617
603
|
<tr>
|
618
604
|
<td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
|
619
|
-
<td>default editability of buffer
|
620
|
-
</td>
|
605
|
+
<td>default editability of buffer</td>
|
621
606
|
</tr>
|
622
607
|
<tr>
|
623
608
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
624
|
-
<td>
|
625
|
-
</td>
|
609
|
+
<td>whether text was actually inserted</td>
|
626
610
|
</tr>
|
627
611
|
</tbody>
|
628
612
|
</table></div>
|
629
613
|
</div>
|
630
614
|
<hr>
|
631
|
-
<div class="refsect2"
|
615
|
+
<div class="refsect2">
|
632
616
|
<a name="gtk-text-buffer-insert-range"></a><h3>gtk_text_buffer_insert_range ()</h3>
|
633
617
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_range (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
634
|
-
<em class="parameter"><code><a class="link" href="
|
635
|
-
<em class="parameter"><code>const <a class="link" href="
|
636
|
-
<em class="parameter"><code>const <a class="link" href="
|
618
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
619
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
620
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
|
637
621
|
<p>
|
638
622
|
Copies text, tags, and pixbufs between <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> (the order
|
639
623
|
of <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> doesn't matter) and inserts the copy at <em class="parameter"><code>iter</code></em>.
|
@@ -672,13 +656,13 @@ so expect those.
|
|
672
656
|
</table></div>
|
673
657
|
</div>
|
674
658
|
<hr>
|
675
|
-
<div class="refsect2"
|
659
|
+
<div class="refsect2">
|
676
660
|
<a name="gtk-text-buffer-insert-range-interactive"></a><h3>gtk_text_buffer_insert_range_interactive ()</h3>
|
677
661
|
<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_buffer_insert_range_interactive
|
678
662
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
679
|
-
<em class="parameter"><code><a class="link" href="
|
680
|
-
<em class="parameter"><code>const <a class="link" href="
|
681
|
-
<em class="parameter"><code>const <a class="link" href="
|
663
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
664
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
665
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
|
682
666
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
|
683
667
|
<p>
|
684
668
|
Same as <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-range" title="gtk_text_buffer_insert_range ()"><code class="function">gtk_text_buffer_insert_range()</code></a>, but does nothing if the
|
@@ -712,22 +696,21 @@ enclosing <em class="parameter"><code>iter</code></em> affect editability. Typic
|
|
712
696
|
</tr>
|
713
697
|
<tr>
|
714
698
|
<td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
|
715
|
-
<td>default editability of the buffer
|
716
|
-
</td>
|
699
|
+
<td>default editability of the buffer</td>
|
717
700
|
</tr>
|
718
701
|
<tr>
|
719
702
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
720
|
-
<td>
|
703
|
+
<td>whether an insertion was possible at <em class="parameter"><code>iter</code></em>
|
721
704
|
</td>
|
722
705
|
</tr>
|
723
706
|
</tbody>
|
724
707
|
</table></div>
|
725
708
|
</div>
|
726
709
|
<hr>
|
727
|
-
<div class="refsect2"
|
710
|
+
<div class="refsect2">
|
728
711
|
<a name="gtk-text-buffer-insert-with-tags"></a><h3>gtk_text_buffer_insert_with_tags ()</h3>
|
729
712
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_with_tags (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
730
|
-
<em class="parameter"><code><a class="link" href="
|
713
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
731
714
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
732
715
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
|
733
716
|
<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *first_tag</code></em>,
|
@@ -754,13 +737,11 @@ then <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-apply-tag" title="
|
|
754
737
|
</tr>
|
755
738
|
<tr>
|
756
739
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
757
|
-
<td>UTF-8 text
|
758
|
-
</td>
|
740
|
+
<td>UTF-8 text</td>
|
759
741
|
</tr>
|
760
742
|
<tr>
|
761
743
|
<td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
|
762
|
-
<td>length of <em class="parameter"><code>text</code></em>, or -1
|
763
|
-
</td>
|
744
|
+
<td>length of <em class="parameter"><code>text</code></em>, or -1</td>
|
764
745
|
</tr>
|
765
746
|
<tr>
|
766
747
|
<td><p><span class="term"><em class="parameter"><code>first_tag</code></em> :</span></p></td>
|
@@ -769,18 +750,17 @@ then <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-apply-tag" title="
|
|
769
750
|
</tr>
|
770
751
|
<tr>
|
771
752
|
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
772
|
-
<td>NULL-terminated list of tags to apply
|
773
|
-
</td>
|
753
|
+
<td>NULL-terminated list of tags to apply</td>
|
774
754
|
</tr>
|
775
755
|
</tbody>
|
776
756
|
</table></div>
|
777
757
|
</div>
|
778
758
|
<hr>
|
779
|
-
<div class="refsect2"
|
759
|
+
<div class="refsect2">
|
780
760
|
<a name="gtk-text-buffer-insert-with-tags-by-name"></a><h3>gtk_text_buffer_insert_with_tags_by_name ()</h3>
|
781
761
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_with_tags_by_name
|
782
762
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
783
|
-
<em class="parameter"><code><a class="link" href="
|
763
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
784
764
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
785
765
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len</code></em>,
|
786
766
|
<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> *first_tag_name</code></em>,
|
@@ -804,13 +784,11 @@ to pass in tag names instead of tag objects.
|
|
804
784
|
</tr>
|
805
785
|
<tr>
|
806
786
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
807
|
-
<td>UTF-8 text
|
808
|
-
</td>
|
787
|
+
<td>UTF-8 text</td>
|
809
788
|
</tr>
|
810
789
|
<tr>
|
811
790
|
<td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
|
812
|
-
<td>length of <em class="parameter"><code>text</code></em>, or -1
|
813
|
-
</td>
|
791
|
+
<td>length of <em class="parameter"><code>text</code></em>, or -1</td>
|
814
792
|
</tr>
|
815
793
|
<tr>
|
816
794
|
<td><p><span class="term"><em class="parameter"><code>first_tag_name</code></em> :</span></p></td>
|
@@ -819,18 +797,17 @@ to pass in tag names instead of tag objects.
|
|
819
797
|
</tr>
|
820
798
|
<tr>
|
821
799
|
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
822
|
-
<td>more tag names
|
823
|
-
</td>
|
800
|
+
<td>more tag names</td>
|
824
801
|
</tr>
|
825
802
|
</tbody>
|
826
803
|
</table></div>
|
827
804
|
</div>
|
828
805
|
<hr>
|
829
|
-
<div class="refsect2"
|
806
|
+
<div class="refsect2">
|
830
807
|
<a name="gtk-text-buffer-delete"></a><h3>gtk_text_buffer_delete ()</h3>
|
831
808
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_delete (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
832
|
-
<em class="parameter"><code><a class="link" href="
|
833
|
-
<em class="parameter"><code><a class="link" href="
|
809
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
810
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
|
834
811
|
<p>
|
835
812
|
Deletes text between <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em>. The order of <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em>
|
836
813
|
is not actually relevant; <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete" title="gtk_text_buffer_delete ()"><code class="function">gtk_text_buffer_delete()</code></a> will reorder
|
@@ -862,11 +839,11 @@ re-initialized to point to the location where text was deleted.
|
|
862
839
|
</table></div>
|
863
840
|
</div>
|
864
841
|
<hr>
|
865
|
-
<div class="refsect2"
|
842
|
+
<div class="refsect2">
|
866
843
|
<a name="gtk-text-buffer-delete-interactive"></a><h3>gtk_text_buffer_delete_interactive ()</h3>
|
867
844
|
<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_buffer_delete_interactive (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
868
|
-
<em class="parameter"><code><a class="link" href="
|
869
|
-
<em class="parameter"><code><a class="link" href="
|
845
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start_iter</code></em>,
|
846
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end_iter</code></em>,
|
870
847
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
|
871
848
|
<p>
|
872
849
|
Deletes all <span class="emphasis"><em>editable</em></span> text in the given range.
|
@@ -885,32 +862,28 @@ no text was deleted.
|
|
885
862
|
</tr>
|
886
863
|
<tr>
|
887
864
|
<td><p><span class="term"><em class="parameter"><code>start_iter</code></em> :</span></p></td>
|
888
|
-
<td>start of range to delete
|
889
|
-
</td>
|
865
|
+
<td>start of range to delete</td>
|
890
866
|
</tr>
|
891
867
|
<tr>
|
892
868
|
<td><p><span class="term"><em class="parameter"><code>end_iter</code></em> :</span></p></td>
|
893
|
-
<td>end of range
|
894
|
-
</td>
|
869
|
+
<td>end of range</td>
|
895
870
|
</tr>
|
896
871
|
<tr>
|
897
872
|
<td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
|
898
|
-
<td>whether the buffer is editable by default
|
899
|
-
</td>
|
873
|
+
<td>whether the buffer is editable by default</td>
|
900
874
|
</tr>
|
901
875
|
<tr>
|
902
876
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
903
|
-
<td>
|
904
|
-
</td>
|
877
|
+
<td>whether some text was actually deleted</td>
|
905
878
|
</tr>
|
906
879
|
</tbody>
|
907
880
|
</table></div>
|
908
881
|
</div>
|
909
882
|
<hr>
|
910
|
-
<div class="refsect2"
|
883
|
+
<div class="refsect2">
|
911
884
|
<a name="gtk-text-buffer-backspace"></a><h3>gtk_text_buffer_backspace ()</h3>
|
912
885
|
<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_buffer_backspace (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
913
|
-
<em class="parameter"><code><a class="link" href="
|
886
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
914
887
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> interactive</code></em>,
|
915
888
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
|
916
889
|
<p>
|
@@ -941,26 +914,23 @@ re-initialized to point to the location where text was deleted.
|
|
941
914
|
</tr>
|
942
915
|
<tr>
|
943
916
|
<td><p><span class="term"><em class="parameter"><code>interactive</code></em> :</span></p></td>
|
944
|
-
<td>whether the deletion is caused by user interaction
|
945
|
-
</td>
|
917
|
+
<td>whether the deletion is caused by user interaction</td>
|
946
918
|
</tr>
|
947
919
|
<tr>
|
948
920
|
<td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
|
949
|
-
<td>whether the buffer is editable by default
|
950
|
-
</td>
|
921
|
+
<td>whether the buffer is editable by default</td>
|
951
922
|
</tr>
|
952
923
|
<tr>
|
953
924
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
954
|
-
<td>
|
955
|
-
|
956
|
-
</td>
|
925
|
+
<td>
|
926
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the buffer was modified</td>
|
957
927
|
</tr>
|
958
928
|
</tbody>
|
959
929
|
</table></div>
|
960
930
|
<p class="since">Since 2.6</p>
|
961
931
|
</div>
|
962
932
|
<hr>
|
963
|
-
<div class="refsect2"
|
933
|
+
<div class="refsect2">
|
964
934
|
<a name="gtk-text-buffer-set-text"></a><h3>gtk_text_buffer_set_text ()</h3>
|
965
935
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_set_text (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
966
936
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text</code></em>,
|
@@ -979,23 +949,21 @@ Deletes current contents of <em class="parameter"><code>buffer</code></em>, and
|
|
979
949
|
</tr>
|
980
950
|
<tr>
|
981
951
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
982
|
-
<td>UTF-8 text to insert
|
983
|
-
</td>
|
952
|
+
<td>UTF-8 text to insert</td>
|
984
953
|
</tr>
|
985
954
|
<tr>
|
986
955
|
<td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
|
987
|
-
<td>length of <em class="parameter"><code>text</code></em> in bytes
|
988
|
-
</td>
|
956
|
+
<td>length of <em class="parameter"><code>text</code></em> in bytes</td>
|
989
957
|
</tr>
|
990
958
|
</tbody>
|
991
959
|
</table></div>
|
992
960
|
</div>
|
993
961
|
<hr>
|
994
|
-
<div class="refsect2"
|
962
|
+
<div class="refsect2">
|
995
963
|
<a name="gtk-text-buffer-get-text"></a><h3>gtk_text_buffer_get_text ()</h3>
|
996
964
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_text_buffer_get_text (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
997
|
-
<em class="parameter"><code>const <a class="link" href="
|
998
|
-
<em class="parameter"><code>const <a class="link" href="
|
965
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
966
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
|
999
967
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> include_hidden_chars</code></em>);</pre>
|
1000
968
|
<p>
|
1001
969
|
Returns the text in the range [<em class="parameter"><code>start</code></em>,<em class="parameter"><code>end</code></em>). Excludes undisplayed
|
@@ -1016,33 +984,29 @@ and character indexes into the buffer. Contrast with
|
|
1016
984
|
</tr>
|
1017
985
|
<tr>
|
1018
986
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
1019
|
-
<td>start of a range
|
1020
|
-
</td>
|
987
|
+
<td>start of a range</td>
|
1021
988
|
</tr>
|
1022
989
|
<tr>
|
1023
990
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
1024
|
-
<td>end of a range
|
1025
|
-
</td>
|
991
|
+
<td>end of a range</td>
|
1026
992
|
</tr>
|
1027
993
|
<tr>
|
1028
994
|
<td><p><span class="term"><em class="parameter"><code>include_hidden_chars</code></em> :</span></p></td>
|
1029
|
-
<td>whether to include invisible text
|
1030
|
-
</td>
|
995
|
+
<td>whether to include invisible text</td>
|
1031
996
|
</tr>
|
1032
997
|
<tr>
|
1033
998
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1034
|
-
<td>
|
1035
|
-
</td>
|
999
|
+
<td>an allocated UTF-8 string</td>
|
1036
1000
|
</tr>
|
1037
1001
|
</tbody>
|
1038
1002
|
</table></div>
|
1039
1003
|
</div>
|
1040
1004
|
<hr>
|
1041
|
-
<div class="refsect2"
|
1005
|
+
<div class="refsect2">
|
1042
1006
|
<a name="gtk-text-buffer-get-slice"></a><h3>gtk_text_buffer_get_slice ()</h3>
|
1043
1007
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="returnvalue">gchar</span></a> * gtk_text_buffer_get_slice (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1044
|
-
<em class="parameter"><code>const <a class="link" href="
|
1045
|
-
<em class="parameter"><code>const <a class="link" href="
|
1008
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
1009
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
|
1046
1010
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> include_hidden_chars</code></em>);</pre>
|
1047
1011
|
<p>
|
1048
1012
|
Returns the text in the range [<em class="parameter"><code>start</code></em>,<em class="parameter"><code>end</code></em>). Excludes undisplayed
|
@@ -1066,33 +1030,29 @@ widget is in the buffer.
|
|
1066
1030
|
</tr>
|
1067
1031
|
<tr>
|
1068
1032
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
1069
|
-
<td>start of a range
|
1070
|
-
</td>
|
1033
|
+
<td>start of a range</td>
|
1071
1034
|
</tr>
|
1072
1035
|
<tr>
|
1073
1036
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
1074
|
-
<td>end of a range
|
1075
|
-
</td>
|
1037
|
+
<td>end of a range</td>
|
1076
1038
|
</tr>
|
1077
1039
|
<tr>
|
1078
1040
|
<td><p><span class="term"><em class="parameter"><code>include_hidden_chars</code></em> :</span></p></td>
|
1079
|
-
<td>whether to include invisible text
|
1080
|
-
</td>
|
1041
|
+
<td>whether to include invisible text</td>
|
1081
1042
|
</tr>
|
1082
1043
|
<tr>
|
1083
1044
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1084
|
-
<td>
|
1085
|
-
</td>
|
1045
|
+
<td>an allocated UTF-8 string</td>
|
1086
1046
|
</tr>
|
1087
1047
|
</tbody>
|
1088
1048
|
</table></div>
|
1089
1049
|
</div>
|
1090
1050
|
<hr>
|
1091
|
-
<div class="refsect2"
|
1051
|
+
<div class="refsect2">
|
1092
1052
|
<a name="gtk-text-buffer-insert-pixbuf"></a><h3>gtk_text_buffer_insert_pixbuf ()</h3>
|
1093
1053
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_pixbuf (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1094
|
-
<em class="parameter"><code><a class="link" href="
|
1095
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1054
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
1055
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf</code></em>);</pre>
|
1096
1056
|
<p>
|
1097
1057
|
Inserts an image into the text buffer at <em class="parameter"><code>iter</code></em>. The image will be
|
1098
1058
|
counted as one character in character counts, and when obtaining
|
@@ -1113,22 +1073,21 @@ not. e.g. see <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-slice
|
|
1113
1073
|
</tr>
|
1114
1074
|
<tr>
|
1115
1075
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1116
|
-
<td>location to insert the pixbuf
|
1117
|
-
</td>
|
1076
|
+
<td>location to insert the pixbuf</td>
|
1118
1077
|
</tr>
|
1119
1078
|
<tr>
|
1120
1079
|
<td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
|
1121
|
-
<td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
1080
|
+
<td>a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
|
1122
1081
|
</td>
|
1123
1082
|
</tr>
|
1124
1083
|
</tbody>
|
1125
1084
|
</table></div>
|
1126
1085
|
</div>
|
1127
1086
|
<hr>
|
1128
|
-
<div class="refsect2"
|
1087
|
+
<div class="refsect2">
|
1129
1088
|
<a name="gtk-text-buffer-insert-child-anchor"></a><h3>gtk_text_buffer_insert_child_anchor ()</h3>
|
1130
1089
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_insert_child_anchor (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1131
|
-
<em class="parameter"><code><a class="link" href="
|
1090
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
1132
1091
|
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
|
1133
1092
|
<p>
|
1134
1093
|
Inserts a child widget anchor into the text buffer at <em class="parameter"><code>iter</code></em>. The
|
@@ -1153,8 +1112,7 @@ the anchor, so you can unref it after insertion.
|
|
1153
1112
|
</tr>
|
1154
1113
|
<tr>
|
1155
1114
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1156
|
-
<td>location to insert the anchor
|
1157
|
-
</td>
|
1115
|
+
<td>location to insert the anchor</td>
|
1158
1116
|
</tr>
|
1159
1117
|
<tr>
|
1160
1118
|
<td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
|
@@ -1165,11 +1123,11 @@ the anchor, so you can unref it after insertion.
|
|
1165
1123
|
</table></div>
|
1166
1124
|
</div>
|
1167
1125
|
<hr>
|
1168
|
-
<div class="refsect2"
|
1126
|
+
<div class="refsect2">
|
1169
1127
|
<a name="gtk-text-buffer-create-child-anchor"></a><h3>gtk_text_buffer_create_child_anchor ()</h3>
|
1170
1128
|
<pre class="programlisting"><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="returnvalue">GtkTextChildAnchor</span></a> * gtk_text_buffer_create_child_anchor
|
1171
1129
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1172
|
-
<em class="parameter"><code><a class="link" href="
|
1130
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
|
1173
1131
|
<p>
|
1174
1132
|
This is a convenience function which simply creates a child anchor
|
1175
1133
|
with <a class="link" href="GtkTextView.html#gtk-text-child-anchor-new" title="gtk_text_child_anchor_new ()"><code class="function">gtk_text_child_anchor_new()</code></a> and inserts it into the buffer
|
@@ -1187,23 +1145,22 @@ the caller of <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-create-ch
|
|
1187
1145
|
</tr>
|
1188
1146
|
<tr>
|
1189
1147
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1190
|
-
<td>location in the buffer
|
1191
|
-
</td>
|
1148
|
+
<td>location in the buffer</td>
|
1192
1149
|
</tr>
|
1193
1150
|
<tr>
|
1194
1151
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1195
|
-
<td>
|
1152
|
+
<td>the created child anchor. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1196
1153
|
</td>
|
1197
1154
|
</tr>
|
1198
1155
|
</tbody>
|
1199
1156
|
</table></div>
|
1200
1157
|
</div>
|
1201
1158
|
<hr>
|
1202
|
-
<div class="refsect2"
|
1159
|
+
<div class="refsect2">
|
1203
1160
|
<a name="gtk-text-buffer-create-mark"></a><h3>gtk_text_buffer_create_mark ()</h3>
|
1204
1161
|
<pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * gtk_text_buffer_create_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1205
1162
|
<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> *mark_name</code></em>,
|
1206
|
-
<em class="parameter"><code>const <a class="link" href="
|
1163
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>,
|
1207
1164
|
<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>
|
1208
1165
|
<p>
|
1209
1166
|
Creates a mark at position <em class="parameter"><code>where</code></em>. If <em class="parameter"><code>mark_name</code></em> is <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>, the mark
|
@@ -1236,33 +1193,31 @@ placement.
|
|
1236
1193
|
</tr>
|
1237
1194
|
<tr>
|
1238
1195
|
<td><p><span class="term"><em class="parameter"><code>mark_name</code></em> :</span></p></td>
|
1239
|
-
<td>
|
1196
|
+
<td>name for mark, 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>
|
1240
1197
|
</td>
|
1241
1198
|
</tr>
|
1242
1199
|
<tr>
|
1243
1200
|
<td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
|
1244
|
-
<td>location to place mark
|
1245
|
-
</td>
|
1201
|
+
<td>location to place mark</td>
|
1246
1202
|
</tr>
|
1247
1203
|
<tr>
|
1248
1204
|
<td><p><span class="term"><em class="parameter"><code>left_gravity</code></em> :</span></p></td>
|
1249
|
-
<td>whether the mark has left gravity
|
1250
|
-
</td>
|
1205
|
+
<td>whether the mark has left gravity</td>
|
1251
1206
|
</tr>
|
1252
1207
|
<tr>
|
1253
1208
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1254
|
-
<td>
|
1209
|
+
<td>the new <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> object. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1255
1210
|
</td>
|
1256
1211
|
</tr>
|
1257
1212
|
</tbody>
|
1258
1213
|
</table></div>
|
1259
1214
|
</div>
|
1260
1215
|
<hr>
|
1261
|
-
<div class="refsect2"
|
1216
|
+
<div class="refsect2">
|
1262
1217
|
<a name="gtk-text-buffer-move-mark"></a><h3>gtk_text_buffer_move_mark ()</h3>
|
1263
1218
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_move_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1264
1219
|
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
|
1265
|
-
<em class="parameter"><code>const <a class="link" href="
|
1220
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
|
1266
1221
|
<p>
|
1267
1222
|
Moves <em class="parameter"><code>mark</code></em> to the new location <em class="parameter"><code>where</code></em>. Emits the "mark-set" signal
|
1268
1223
|
as notification of the move.
|
@@ -1289,11 +1244,11 @@ as notification of the move.
|
|
1289
1244
|
</table></div>
|
1290
1245
|
</div>
|
1291
1246
|
<hr>
|
1292
|
-
<div class="refsect2"
|
1247
|
+
<div class="refsect2">
|
1293
1248
|
<a name="gtk-text-buffer-move-mark-by-name"></a><h3>gtk_text_buffer_move_mark_by_name ()</h3>
|
1294
1249
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_move_mark_by_name (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1295
1250
|
<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>,
|
1296
|
-
<em class="parameter"><code>const <a class="link" href="
|
1251
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
|
1297
1252
|
<p>
|
1298
1253
|
Moves the mark named <em class="parameter"><code>name</code></em> (which must exist) to location <em class="parameter"><code>where</code></em>.
|
1299
1254
|
See <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-move-mark" title="gtk_text_buffer_move_mark ()"><code class="function">gtk_text_buffer_move_mark()</code></a> for details.
|
@@ -1308,23 +1263,21 @@ See <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-move-mark" title="g
|
|
1308
1263
|
</tr>
|
1309
1264
|
<tr>
|
1310
1265
|
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
1311
|
-
<td>name of a mark
|
1312
|
-
</td>
|
1266
|
+
<td>name of a mark</td>
|
1313
1267
|
</tr>
|
1314
1268
|
<tr>
|
1315
1269
|
<td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
|
1316
|
-
<td>new location for mark
|
1317
|
-
</td>
|
1270
|
+
<td>new location for mark</td>
|
1318
1271
|
</tr>
|
1319
1272
|
</tbody>
|
1320
1273
|
</table></div>
|
1321
1274
|
</div>
|
1322
1275
|
<hr>
|
1323
|
-
<div class="refsect2"
|
1276
|
+
<div class="refsect2">
|
1324
1277
|
<a name="gtk-text-buffer-add-mark"></a><h3>gtk_text_buffer_add_mark ()</h3>
|
1325
1278
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_add_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1326
1279
|
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>,
|
1327
|
-
<em class="parameter"><code>const <a class="link" href="
|
1280
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
|
1328
1281
|
<p>
|
1329
1282
|
Adds the mark at position <em class="parameter"><code>where</code></em>. The mark must not be added to
|
1330
1283
|
another buffer, and if its name is not <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> then there must not
|
@@ -1344,20 +1297,18 @@ placement.
|
|
1344
1297
|
</tr>
|
1345
1298
|
<tr>
|
1346
1299
|
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
1347
|
-
<td>the mark to add
|
1348
|
-
</td>
|
1300
|
+
<td>the mark to add</td>
|
1349
1301
|
</tr>
|
1350
1302
|
<tr>
|
1351
1303
|
<td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
|
1352
|
-
<td>location to place mark
|
1353
|
-
</td>
|
1304
|
+
<td>location to place mark</td>
|
1354
1305
|
</tr>
|
1355
1306
|
</tbody>
|
1356
1307
|
</table></div>
|
1357
1308
|
<p class="since">Since 2.12</p>
|
1358
1309
|
</div>
|
1359
1310
|
<hr>
|
1360
|
-
<div class="refsect2"
|
1311
|
+
<div class="refsect2">
|
1361
1312
|
<a name="gtk-text-buffer-delete-mark"></a><h3>gtk_text_buffer_delete_mark ()</h3>
|
1362
1313
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_delete_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1363
1314
|
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
@@ -1389,7 +1340,7 @@ the mark is deleted.
|
|
1389
1340
|
</table></div>
|
1390
1341
|
</div>
|
1391
1342
|
<hr>
|
1392
|
-
<div class="refsect2"
|
1343
|
+
<div class="refsect2">
|
1393
1344
|
<a name="gtk-text-buffer-delete-mark-by-name"></a><h3>gtk_text_buffer_delete_mark_by_name ()</h3>
|
1394
1345
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_delete_mark_by_name (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1395
1346
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *name</code></em>);</pre>
|
@@ -1414,9 +1365,9 @@ Deletes the mark named <em class="parameter"><code>name</code></em>; the mark mu
|
|
1414
1365
|
</table></div>
|
1415
1366
|
</div>
|
1416
1367
|
<hr>
|
1417
|
-
<div class="refsect2"
|
1368
|
+
<div class="refsect2">
|
1418
1369
|
<a name="gtk-text-buffer-get-mark"></a><h3>gtk_text_buffer_get_mark ()</h3>
|
1419
|
-
<pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a
|
1370
|
+
<pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * gtk_text_buffer_get_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1420
1371
|
<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>
|
1421
1372
|
<p>
|
1422
1373
|
Returns the mark named <em class="parameter"><code>name</code></em> in buffer <em class="parameter"><code>buffer</code></em>, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if no such
|
@@ -1432,21 +1383,20 @@ mark exists in the buffer.
|
|
1432
1383
|
</tr>
|
1433
1384
|
<tr>
|
1434
1385
|
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
|
1435
|
-
<td>a mark name
|
1436
|
-
</td>
|
1386
|
+
<td>a mark name</td>
|
1437
1387
|
</tr>
|
1438
1388
|
<tr>
|
1439
1389
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1440
|
-
<td>
|
1390
|
+
<td>a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>, 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="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1441
1391
|
</td>
|
1442
1392
|
</tr>
|
1443
1393
|
</tbody>
|
1444
1394
|
</table></div>
|
1445
1395
|
</div>
|
1446
1396
|
<hr>
|
1447
|
-
<div class="refsect2"
|
1397
|
+
<div class="refsect2">
|
1448
1398
|
<a name="gtk-text-buffer-get-insert"></a><h3>gtk_text_buffer_get_insert ()</h3>
|
1449
|
-
<pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a
|
1399
|
+
<pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * gtk_text_buffer_get_insert (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
1450
1400
|
<p>
|
1451
1401
|
Returns the mark that represents the cursor (insertion point).
|
1452
1402
|
Equivalent to calling <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-mark" title="gtk_text_buffer_get_mark ()"><code class="function">gtk_text_buffer_get_mark()</code></a> to get the mark
|
@@ -1463,16 +1413,16 @@ typing.
|
|
1463
1413
|
</tr>
|
1464
1414
|
<tr>
|
1465
1415
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1466
|
-
<td>
|
1416
|
+
<td>insertion point mark. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1467
1417
|
</td>
|
1468
1418
|
</tr>
|
1469
1419
|
</tbody>
|
1470
1420
|
</table></div>
|
1471
1421
|
</div>
|
1472
1422
|
<hr>
|
1473
|
-
<div class="refsect2"
|
1423
|
+
<div class="refsect2">
|
1474
1424
|
<a name="gtk-text-buffer-get-selection-bound"></a><h3>gtk_text_buffer_get_selection_bound ()</h3>
|
1475
|
-
<pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a
|
1425
|
+
<pre class="programlisting"><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="returnvalue">GtkTextMark</span></a> * gtk_text_buffer_get_selection_bound (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
1476
1426
|
<p>
|
1477
1427
|
Returns the mark that represents the selection bound. Equivalent
|
1478
1428
|
to calling <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-mark" title="gtk_text_buffer_get_mark ()"><code class="function">gtk_text_buffer_get_mark()</code></a> to get the mark named
|
@@ -1497,14 +1447,14 @@ selection and what its bounds are.
|
|
1497
1447
|
</tr>
|
1498
1448
|
<tr>
|
1499
1449
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1500
|
-
<td>
|
1450
|
+
<td>selection bound mark. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1501
1451
|
</td>
|
1502
1452
|
</tr>
|
1503
1453
|
</tbody>
|
1504
1454
|
</table></div>
|
1505
1455
|
</div>
|
1506
1456
|
<hr>
|
1507
|
-
<div class="refsect2"
|
1457
|
+
<div class="refsect2">
|
1508
1458
|
<a name="gtk-text-buffer-get-has-selection"></a><h3>gtk_text_buffer_get_has_selection ()</h3>
|
1509
1459
|
<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_buffer_get_has_selection (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
1510
1460
|
<p>
|
@@ -1515,24 +1465,23 @@ Indicates whether the buffer has some text currently selected.
|
|
1515
1465
|
<tbody>
|
1516
1466
|
<tr>
|
1517
1467
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
1518
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
1468
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
1519
1469
|
</td>
|
1520
1470
|
</tr>
|
1521
1471
|
<tr>
|
1522
1472
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1523
|
-
<td>
|
1524
|
-
|
1525
|
-
</td>
|
1473
|
+
<td>
|
1474
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the there is text selected</td>
|
1526
1475
|
</tr>
|
1527
1476
|
</tbody>
|
1528
1477
|
</table></div>
|
1529
1478
|
<p class="since">Since 2.10</p>
|
1530
1479
|
</div>
|
1531
1480
|
<hr>
|
1532
|
-
<div class="refsect2"
|
1481
|
+
<div class="refsect2">
|
1533
1482
|
<a name="gtk-text-buffer-place-cursor"></a><h3>gtk_text_buffer_place_cursor ()</h3>
|
1534
1483
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_place_cursor (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1535
|
-
<em class="parameter"><code>const <a class="link" href="
|
1484
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *where</code></em>);</pre>
|
1536
1485
|
<p>
|
1537
1486
|
This function moves the "insert" and "selection_bound" marks
|
1538
1487
|
simultaneously. If you move them to the same place in two steps
|
@@ -1552,18 +1501,17 @@ be optimized.
|
|
1552
1501
|
</tr>
|
1553
1502
|
<tr>
|
1554
1503
|
<td><p><span class="term"><em class="parameter"><code>where</code></em> :</span></p></td>
|
1555
|
-
<td>where to put the cursor
|
1556
|
-
</td>
|
1504
|
+
<td>where to put the cursor</td>
|
1557
1505
|
</tr>
|
1558
1506
|
</tbody>
|
1559
1507
|
</table></div>
|
1560
1508
|
</div>
|
1561
1509
|
<hr>
|
1562
|
-
<div class="refsect2"
|
1510
|
+
<div class="refsect2">
|
1563
1511
|
<a name="gtk-text-buffer-select-range"></a><h3>gtk_text_buffer_select_range ()</h3>
|
1564
1512
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_select_range (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1565
|
-
<em class="parameter"><code>const <a class="link" href="
|
1566
|
-
<em class="parameter"><code>const <a class="link" href="
|
1513
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *ins</code></em>,
|
1514
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *bound</code></em>);</pre>
|
1567
1515
|
<p>
|
1568
1516
|
This function moves the "insert" and "selection_bound" marks
|
1569
1517
|
simultaneously. If you move them in two steps
|
@@ -1583,25 +1531,23 @@ be optimized.
|
|
1583
1531
|
</tr>
|
1584
1532
|
<tr>
|
1585
1533
|
<td><p><span class="term"><em class="parameter"><code>ins</code></em> :</span></p></td>
|
1586
|
-
<td>where to put the "insert" mark
|
1587
|
-
</td>
|
1534
|
+
<td>where to put the "insert" mark</td>
|
1588
1535
|
</tr>
|
1589
1536
|
<tr>
|
1590
1537
|
<td><p><span class="term"><em class="parameter"><code>bound</code></em> :</span></p></td>
|
1591
|
-
<td>where to put the "selection_bound" mark
|
1592
|
-
</td>
|
1538
|
+
<td>where to put the "selection_bound" mark</td>
|
1593
1539
|
</tr>
|
1594
1540
|
</tbody>
|
1595
1541
|
</table></div>
|
1596
1542
|
<p class="since">Since 2.4</p>
|
1597
1543
|
</div>
|
1598
1544
|
<hr>
|
1599
|
-
<div class="refsect2"
|
1545
|
+
<div class="refsect2">
|
1600
1546
|
<a name="gtk-text-buffer-apply-tag"></a><h3>gtk_text_buffer_apply_tag ()</h3>
|
1601
1547
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_apply_tag (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1602
1548
|
<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
1603
|
-
<em class="parameter"><code>const <a class="link" href="
|
1604
|
-
<em class="parameter"><code>const <a class="link" href="
|
1549
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
1550
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
|
1605
1551
|
<p>
|
1606
1552
|
Emits the "apply-tag" signal on <em class="parameter"><code>buffer</code></em>. The default
|
1607
1553
|
handler for the signal applies <em class="parameter"><code>tag</code></em> to the given range.
|
@@ -1622,24 +1568,22 @@ handler for the signal applies <em class="parameter"><code>tag</code></em> to th
|
|
1622
1568
|
</tr>
|
1623
1569
|
<tr>
|
1624
1570
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
1625
|
-
<td>one bound of range to be tagged
|
1626
|
-
</td>
|
1571
|
+
<td>one bound of range to be tagged</td>
|
1627
1572
|
</tr>
|
1628
1573
|
<tr>
|
1629
1574
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
1630
|
-
<td>other bound of range to be tagged
|
1631
|
-
</td>
|
1575
|
+
<td>other bound of range to be tagged</td>
|
1632
1576
|
</tr>
|
1633
1577
|
</tbody>
|
1634
1578
|
</table></div>
|
1635
1579
|
</div>
|
1636
1580
|
<hr>
|
1637
|
-
<div class="refsect2"
|
1581
|
+
<div class="refsect2">
|
1638
1582
|
<a name="gtk-text-buffer-remove-tag"></a><h3>gtk_text_buffer_remove_tag ()</h3>
|
1639
1583
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_remove_tag (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1640
1584
|
<em class="parameter"><code><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag</code></em>,
|
1641
|
-
<em class="parameter"><code>const <a class="link" href="
|
1642
|
-
<em class="parameter"><code>const <a class="link" href="
|
1585
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
1586
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
|
1643
1587
|
<p>
|
1644
1588
|
Emits the "remove-tag" signal. The default handler for the signal
|
1645
1589
|
removes all occurrences of <em class="parameter"><code>tag</code></em> from the given range. <em class="parameter"><code>start</code></em> and
|
@@ -1660,24 +1604,22 @@ removes all occurrences of <em class="parameter"><code>tag</code></em> from the
|
|
1660
1604
|
</tr>
|
1661
1605
|
<tr>
|
1662
1606
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
1663
|
-
<td>one bound of range to be untagged
|
1664
|
-
</td>
|
1607
|
+
<td>one bound of range to be untagged</td>
|
1665
1608
|
</tr>
|
1666
1609
|
<tr>
|
1667
1610
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
1668
|
-
<td>other bound of range to be untagged
|
1669
|
-
</td>
|
1611
|
+
<td>other bound of range to be untagged</td>
|
1670
1612
|
</tr>
|
1671
1613
|
</tbody>
|
1672
1614
|
</table></div>
|
1673
1615
|
</div>
|
1674
1616
|
<hr>
|
1675
|
-
<div class="refsect2"
|
1617
|
+
<div class="refsect2">
|
1676
1618
|
<a name="gtk-text-buffer-apply-tag-by-name"></a><h3>gtk_text_buffer_apply_tag_by_name ()</h3>
|
1677
1619
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_apply_tag_by_name (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1678
1620
|
<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>,
|
1679
|
-
<em class="parameter"><code>const <a class="link" href="
|
1680
|
-
<em class="parameter"><code>const <a class="link" href="
|
1621
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
1622
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
|
1681
1623
|
<p>
|
1682
1624
|
Calls <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-lookup" title="gtk_text_tag_table_lookup ()"><code class="function">gtk_text_tag_table_lookup()</code></a> on the buffer's tag table to
|
1683
1625
|
get a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>, then calls <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-apply-tag" title="gtk_text_buffer_apply_tag ()"><code class="function">gtk_text_buffer_apply_tag()</code></a>.
|
@@ -1697,24 +1639,22 @@ get a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="typ
|
|
1697
1639
|
</tr>
|
1698
1640
|
<tr>
|
1699
1641
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
1700
|
-
<td>one bound of range to be tagged
|
1701
|
-
</td>
|
1642
|
+
<td>one bound of range to be tagged</td>
|
1702
1643
|
</tr>
|
1703
1644
|
<tr>
|
1704
1645
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
1705
|
-
<td>other bound of range to be tagged
|
1706
|
-
</td>
|
1646
|
+
<td>other bound of range to be tagged</td>
|
1707
1647
|
</tr>
|
1708
1648
|
</tbody>
|
1709
1649
|
</table></div>
|
1710
1650
|
</div>
|
1711
1651
|
<hr>
|
1712
|
-
<div class="refsect2"
|
1652
|
+
<div class="refsect2">
|
1713
1653
|
<a name="gtk-text-buffer-remove-tag-by-name"></a><h3>gtk_text_buffer_remove_tag_by_name ()</h3>
|
1714
1654
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_remove_tag_by_name (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1715
1655
|
<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>,
|
1716
|
-
<em class="parameter"><code>const <a class="link" href="
|
1717
|
-
<em class="parameter"><code>const <a class="link" href="
|
1656
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
1657
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
|
1718
1658
|
<p>
|
1719
1659
|
Calls <a class="link" href="GtkTextTagTable.html#gtk-text-tag-table-lookup" title="gtk_text_tag_table_lookup ()"><code class="function">gtk_text_tag_table_lookup()</code></a> on the buffer's tag table to
|
1720
1660
|
get a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a>, then calls <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-remove-tag" title="gtk_text_buffer_remove_tag ()"><code class="function">gtk_text_buffer_remove_tag()</code></a>.
|
@@ -1734,23 +1674,21 @@ get a <a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="typ
|
|
1734
1674
|
</tr>
|
1735
1675
|
<tr>
|
1736
1676
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
1737
|
-
<td>one bound of range to be untagged
|
1738
|
-
</td>
|
1677
|
+
<td>one bound of range to be untagged</td>
|
1739
1678
|
</tr>
|
1740
1679
|
<tr>
|
1741
1680
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
1742
|
-
<td>other bound of range to be untagged
|
1743
|
-
</td>
|
1681
|
+
<td>other bound of range to be untagged</td>
|
1744
1682
|
</tr>
|
1745
1683
|
</tbody>
|
1746
1684
|
</table></div>
|
1747
1685
|
</div>
|
1748
1686
|
<hr>
|
1749
|
-
<div class="refsect2"
|
1687
|
+
<div class="refsect2">
|
1750
1688
|
<a name="gtk-text-buffer-remove-all-tags"></a><h3>gtk_text_buffer_remove_all_tags ()</h3>
|
1751
1689
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_remove_all_tags (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1752
|
-
<em class="parameter"><code>const <a class="link" href="
|
1753
|
-
<em class="parameter"><code>const <a class="link" href="
|
1690
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
1691
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
|
1754
1692
|
<p>
|
1755
1693
|
Removes all tags in the range between <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em>. Be careful
|
1756
1694
|
with this function; it could remove tags added in code unrelated to
|
@@ -1768,19 +1706,17 @@ that add tags.
|
|
1768
1706
|
</tr>
|
1769
1707
|
<tr>
|
1770
1708
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
1771
|
-
<td>one bound of range to be untagged
|
1772
|
-
</td>
|
1709
|
+
<td>one bound of range to be untagged</td>
|
1773
1710
|
</tr>
|
1774
1711
|
<tr>
|
1775
1712
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
1776
|
-
<td>other bound of range to be untagged
|
1777
|
-
</td>
|
1713
|
+
<td>other bound of range to be untagged</td>
|
1778
1714
|
</tr>
|
1779
1715
|
</tbody>
|
1780
1716
|
</table></div>
|
1781
1717
|
</div>
|
1782
1718
|
<hr>
|
1783
|
-
<div class="refsect2"
|
1719
|
+
<div class="refsect2">
|
1784
1720
|
<a name="gtk-text-buffer-create-tag"></a><h3>gtk_text_buffer_create_tag ()</h3>
|
1785
1721
|
<pre class="programlisting"><a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="returnvalue">GtkTextTag</span></a> * gtk_text_buffer_create_tag (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1786
1722
|
<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> *tag_name</code></em>,
|
@@ -1813,34 +1749,33 @@ of properties to set on the tag, as with <a href="http://library.gnome.org/devel
|
|
1813
1749
|
</tr>
|
1814
1750
|
<tr>
|
1815
1751
|
<td><p><span class="term"><em class="parameter"><code>tag_name</code></em> :</span></p></td>
|
1816
|
-
<td>
|
1752
|
+
<td>name of the new tag, 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>
|
1817
1753
|
</td>
|
1818
1754
|
</tr>
|
1819
1755
|
<tr>
|
1820
1756
|
<td><p><span class="term"><em class="parameter"><code>first_property_name</code></em> :</span></p></td>
|
1821
|
-
<td>
|
1757
|
+
<td>name of first property to set, 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>
|
1822
1758
|
</td>
|
1823
1759
|
</tr>
|
1824
1760
|
<tr>
|
1825
1761
|
<td><p><span class="term"><em class="parameter"><code>...</code></em> :</span></p></td>
|
1826
1762
|
<td>
|
1827
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated list of property names and values
|
1828
|
-
</td>
|
1763
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a>-terminated list of property names and values</td>
|
1829
1764
|
</tr>
|
1830
1765
|
<tr>
|
1831
1766
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
1832
|
-
<td>
|
1767
|
+
<td>a new tag. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
1833
1768
|
</td>
|
1834
1769
|
</tr>
|
1835
1770
|
</tbody>
|
1836
1771
|
</table></div>
|
1837
1772
|
</div>
|
1838
1773
|
<hr>
|
1839
|
-
<div class="refsect2"
|
1774
|
+
<div class="refsect2">
|
1840
1775
|
<a name="gtk-text-buffer-get-iter-at-line-offset"></a><h3>gtk_text_buffer_get_iter_at_line_offset ()</h3>
|
1841
1776
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_line_offset
|
1842
1777
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1843
|
-
<em class="parameter"><code><a class="link" href="
|
1778
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
1844
1779
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line_number</code></em>,
|
1845
1780
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> char_offset</code></em>);</pre>
|
1846
1781
|
<p>
|
@@ -1859,27 +1794,25 @@ UTF-8 may encode one character as multiple bytes.
|
|
1859
1794
|
</tr>
|
1860
1795
|
<tr>
|
1861
1796
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1862
|
-
<td>
|
1797
|
+
<td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1863
1798
|
</td>
|
1864
1799
|
</tr>
|
1865
1800
|
<tr>
|
1866
1801
|
<td><p><span class="term"><em class="parameter"><code>line_number</code></em> :</span></p></td>
|
1867
|
-
<td>line number counting from 0
|
1868
|
-
</td>
|
1802
|
+
<td>line number counting from 0</td>
|
1869
1803
|
</tr>
|
1870
1804
|
<tr>
|
1871
1805
|
<td><p><span class="term"><em class="parameter"><code>char_offset</code></em> :</span></p></td>
|
1872
|
-
<td>char offset from start of line
|
1873
|
-
</td>
|
1806
|
+
<td>char offset from start of line</td>
|
1874
1807
|
</tr>
|
1875
1808
|
</tbody>
|
1876
1809
|
</table></div>
|
1877
1810
|
</div>
|
1878
1811
|
<hr>
|
1879
|
-
<div class="refsect2"
|
1812
|
+
<div class="refsect2">
|
1880
1813
|
<a name="gtk-text-buffer-get-iter-at-offset"></a><h3>gtk_text_buffer_get_iter_at_offset ()</h3>
|
1881
1814
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_offset (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1882
|
-
<em class="parameter"><code><a class="link" href="
|
1815
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
1883
1816
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> char_offset</code></em>);</pre>
|
1884
1817
|
<p>
|
1885
1818
|
Initializes <em class="parameter"><code>iter</code></em> to a position <em class="parameter"><code>char_offset</code></em> chars from the start
|
@@ -1892,27 +1825,26 @@ the iterator one past the last valid character in the buffer.
|
|
1892
1825
|
<tbody>
|
1893
1826
|
<tr>
|
1894
1827
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
1895
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
1828
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
1896
1829
|
</td>
|
1897
1830
|
</tr>
|
1898
1831
|
<tr>
|
1899
1832
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1900
|
-
<td>
|
1833
|
+
<td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1901
1834
|
</td>
|
1902
1835
|
</tr>
|
1903
1836
|
<tr>
|
1904
1837
|
<td><p><span class="term"><em class="parameter"><code>char_offset</code></em> :</span></p></td>
|
1905
|
-
<td>char offset from start of buffer, counting from 0, or -1
|
1906
|
-
</td>
|
1838
|
+
<td>char offset from start of buffer, counting from 0, or -1</td>
|
1907
1839
|
</tr>
|
1908
1840
|
</tbody>
|
1909
1841
|
</table></div>
|
1910
1842
|
</div>
|
1911
1843
|
<hr>
|
1912
|
-
<div class="refsect2"
|
1844
|
+
<div class="refsect2">
|
1913
1845
|
<a name="gtk-text-buffer-get-iter-at-line"></a><h3>gtk_text_buffer_get_iter_at_line ()</h3>
|
1914
1846
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_line (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1915
|
-
<em class="parameter"><code><a class="link" href="
|
1847
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
1916
1848
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line_number</code></em>);</pre>
|
1917
1849
|
<p>
|
1918
1850
|
Initializes <em class="parameter"><code>iter</code></em> to the start of the given line.
|
@@ -1922,28 +1854,27 @@ Initializes <em class="parameter"><code>iter</code></em> to the start of the giv
|
|
1922
1854
|
<tbody>
|
1923
1855
|
<tr>
|
1924
1856
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
1925
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
1857
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
1926
1858
|
</td>
|
1927
1859
|
</tr>
|
1928
1860
|
<tr>
|
1929
1861
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1930
|
-
<td>
|
1862
|
+
<td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1931
1863
|
</td>
|
1932
1864
|
</tr>
|
1933
1865
|
<tr>
|
1934
1866
|
<td><p><span class="term"><em class="parameter"><code>line_number</code></em> :</span></p></td>
|
1935
|
-
<td>line number counting from 0
|
1936
|
-
</td>
|
1867
|
+
<td>line number counting from 0</td>
|
1937
1868
|
</tr>
|
1938
1869
|
</tbody>
|
1939
1870
|
</table></div>
|
1940
1871
|
</div>
|
1941
1872
|
<hr>
|
1942
|
-
<div class="refsect2"
|
1873
|
+
<div class="refsect2">
|
1943
1874
|
<a name="gtk-text-buffer-get-iter-at-line-index"></a><h3>gtk_text_buffer_get_iter_at_line_index ()</h3>
|
1944
1875
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_line_index
|
1945
1876
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1946
|
-
<em class="parameter"><code><a class="link" href="
|
1877
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
1947
1878
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> line_number</code></em>,
|
1948
1879
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> byte_index</code></em>);</pre>
|
1949
1880
|
<p>
|
@@ -1957,32 +1888,30 @@ characters; UTF-8 may encode one character as multiple bytes.
|
|
1957
1888
|
<tbody>
|
1958
1889
|
<tr>
|
1959
1890
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
1960
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
1891
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
1961
1892
|
</td>
|
1962
1893
|
</tr>
|
1963
1894
|
<tr>
|
1964
1895
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
1965
|
-
<td>
|
1896
|
+
<td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
1966
1897
|
</td>
|
1967
1898
|
</tr>
|
1968
1899
|
<tr>
|
1969
1900
|
<td><p><span class="term"><em class="parameter"><code>line_number</code></em> :</span></p></td>
|
1970
|
-
<td>line number counting from 0
|
1971
|
-
</td>
|
1901
|
+
<td>line number counting from 0</td>
|
1972
1902
|
</tr>
|
1973
1903
|
<tr>
|
1974
1904
|
<td><p><span class="term"><em class="parameter"><code>byte_index</code></em> :</span></p></td>
|
1975
|
-
<td>byte index from start of line
|
1976
|
-
</td>
|
1905
|
+
<td>byte index from start of line</td>
|
1977
1906
|
</tr>
|
1978
1907
|
</tbody>
|
1979
1908
|
</table></div>
|
1980
1909
|
</div>
|
1981
1910
|
<hr>
|
1982
|
-
<div class="refsect2"
|
1911
|
+
<div class="refsect2">
|
1983
1912
|
<a name="gtk-text-buffer-get-iter-at-mark"></a><h3>gtk_text_buffer_get_iter_at_mark ()</h3>
|
1984
1913
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_mark (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
1985
|
-
<em class="parameter"><code><a class="link" href="
|
1914
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
1986
1915
|
<em class="parameter"><code><a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark</code></em>);</pre>
|
1987
1916
|
<p>
|
1988
1917
|
Initializes <em class="parameter"><code>iter</code></em> with the current position of <em class="parameter"><code>mark</code></em>.
|
@@ -1997,7 +1926,7 @@ Initializes <em class="parameter"><code>iter</code></em> with the current positi
|
|
1997
1926
|
</tr>
|
1998
1927
|
<tr>
|
1999
1928
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
2000
|
-
<td>
|
1929
|
+
<td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2001
1930
|
</td>
|
2002
1931
|
</tr>
|
2003
1932
|
<tr>
|
@@ -2009,11 +1938,11 @@ Initializes <em class="parameter"><code>iter</code></em> with the current positi
|
|
2009
1938
|
</table></div>
|
2010
1939
|
</div>
|
2011
1940
|
<hr>
|
2012
|
-
<div class="refsect2"
|
1941
|
+
<div class="refsect2">
|
2013
1942
|
<a name="gtk-text-buffer-get-iter-at-child-anchor"></a><h3>gtk_text_buffer_get_iter_at_child_anchor ()</h3>
|
2014
1943
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_iter_at_child_anchor
|
2015
1944
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2016
|
-
<em class="parameter"><code><a class="link" href="
|
1945
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
2017
1946
|
<em class="parameter"><code><a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor</code></em>);</pre>
|
2018
1947
|
<p>
|
2019
1948
|
Obtains the location of <em class="parameter"><code>anchor</code></em> within <em class="parameter"><code>buffer</code></em>.
|
@@ -2028,7 +1957,7 @@ Obtains the location of <em class="parameter"><code>anchor</code></em> within <e
|
|
2028
1957
|
</tr>
|
2029
1958
|
<tr>
|
2030
1959
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
2031
|
-
<td>
|
1960
|
+
<td>an iterator to be initialized. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2032
1961
|
</td>
|
2033
1962
|
</tr>
|
2034
1963
|
<tr>
|
@@ -2040,10 +1969,10 @@ Obtains the location of <em class="parameter"><code>anchor</code></em> within <e
|
|
2040
1969
|
</table></div>
|
2041
1970
|
</div>
|
2042
1971
|
<hr>
|
2043
|
-
<div class="refsect2"
|
1972
|
+
<div class="refsect2">
|
2044
1973
|
<a name="gtk-text-buffer-get-start-iter"></a><h3>gtk_text_buffer_get_start_iter ()</h3>
|
2045
1974
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_start_iter (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2046
|
-
<em class="parameter"><code><a class="link" href="
|
1975
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
|
2047
1976
|
<p>
|
2048
1977
|
Initialized <em class="parameter"><code>iter</code></em> with the first position in the text buffer. This
|
2049
1978
|
is the same as using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-iter-at-offset" title="gtk_text_buffer_get_iter_at_offset ()"><code class="function">gtk_text_buffer_get_iter_at_offset()</code></a> to get
|
@@ -2059,21 +1988,21 @@ the iter at character offset 0.
|
|
2059
1988
|
</tr>
|
2060
1989
|
<tr>
|
2061
1990
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
2062
|
-
<td>
|
1991
|
+
<td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2063
1992
|
</td>
|
2064
1993
|
</tr>
|
2065
1994
|
</tbody>
|
2066
1995
|
</table></div>
|
2067
1996
|
</div>
|
2068
1997
|
<hr>
|
2069
|
-
<div class="refsect2"
|
1998
|
+
<div class="refsect2">
|
2070
1999
|
<a name="gtk-text-buffer-get-end-iter"></a><h3>gtk_text_buffer_get_end_iter ()</h3>
|
2071
2000
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_end_iter (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2072
|
-
<em class="parameter"><code><a class="link" href="
|
2001
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>);</pre>
|
2073
2002
|
<p>
|
2074
2003
|
Initializes <em class="parameter"><code>iter</code></em> with the "end iterator," one past the last valid
|
2075
2004
|
character in the text buffer. If dereferenced with
|
2076
|
-
<a class="link" href="
|
2005
|
+
<a class="link" href="GtkTextIter.html#gtk-text-iter-get-char" title="gtk_text_iter_get_char ()"><code class="function">gtk_text_iter_get_char()</code></a>, the end iterator has a character value of
|
2077
2006
|
0. The entire buffer lies in the range from the first position in
|
2078
2007
|
the buffer (call <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-start-iter" title="gtk_text_buffer_get_start_iter ()"><code class="function">gtk_text_buffer_get_start_iter()</code></a> to get
|
2079
2008
|
character position 0) to the end iterator.
|
@@ -2083,23 +2012,23 @@ character position 0) to the end iterator.
|
|
2083
2012
|
<tbody>
|
2084
2013
|
<tr>
|
2085
2014
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
2086
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2015
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2087
2016
|
</td>
|
2088
2017
|
</tr>
|
2089
2018
|
<tr>
|
2090
2019
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
2091
|
-
<td>
|
2020
|
+
<td>iterator to initialize. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2092
2021
|
</td>
|
2093
2022
|
</tr>
|
2094
2023
|
</tbody>
|
2095
2024
|
</table></div>
|
2096
2025
|
</div>
|
2097
2026
|
<hr>
|
2098
|
-
<div class="refsect2"
|
2027
|
+
<div class="refsect2">
|
2099
2028
|
<a name="gtk-text-buffer-get-bounds"></a><h3>gtk_text_buffer_get_bounds ()</h3>
|
2100
2029
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_get_bounds (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2101
|
-
<em class="parameter"><code><a class="link" href="
|
2102
|
-
<em class="parameter"><code><a class="link" href="
|
2030
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
2031
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
|
2103
2032
|
<p>
|
2104
2033
|
Retrieves the first and last iterators in the buffer, i.e. the
|
2105
2034
|
entire buffer lies within the range [<em class="parameter"><code>start</code></em>,<em class="parameter"><code>end</code></em>).
|
@@ -2109,24 +2038,24 @@ entire buffer lies within the range [<em class="parameter"><code>start</code></e
|
|
2109
2038
|
<tbody>
|
2110
2039
|
<tr>
|
2111
2040
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
2112
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2041
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2113
2042
|
</td>
|
2114
2043
|
</tr>
|
2115
2044
|
<tr>
|
2116
2045
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
2117
|
-
<td>
|
2046
|
+
<td>iterator to initialize with first position in the buffer. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2118
2047
|
</td>
|
2119
2048
|
</tr>
|
2120
2049
|
<tr>
|
2121
2050
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
2122
|
-
<td>
|
2051
|
+
<td>iterator to initialize with the end iterator. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2123
2052
|
</td>
|
2124
2053
|
</tr>
|
2125
2054
|
</tbody>
|
2126
2055
|
</table></div>
|
2127
2056
|
</div>
|
2128
2057
|
<hr>
|
2129
|
-
<div class="refsect2"
|
2058
|
+
<div class="refsect2">
|
2130
2059
|
<a name="gtk-text-buffer-get-modified"></a><h3>gtk_text_buffer_get_modified ()</h3>
|
2131
2060
|
<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_buffer_get_modified (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
2132
2061
|
<p>
|
@@ -2140,19 +2069,19 @@ editor.
|
|
2140
2069
|
<tbody>
|
2141
2070
|
<tr>
|
2142
2071
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
2143
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2072
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2144
2073
|
</td>
|
2145
2074
|
</tr>
|
2146
2075
|
<tr>
|
2147
2076
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2148
|
-
<td>
|
2149
|
-
</td>
|
2077
|
+
<td>
|
2078
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if the buffer has been modified</td>
|
2150
2079
|
</tr>
|
2151
2080
|
</tbody>
|
2152
2081
|
</table></div>
|
2153
2082
|
</div>
|
2154
2083
|
<hr>
|
2155
|
-
<div class="refsect2"
|
2084
|
+
<div class="refsect2">
|
2156
2085
|
<a name="gtk-text-buffer-set-modified"></a><h3>gtk_text_buffer_set_modified ()</h3>
|
2157
2086
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_set_modified (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2158
2087
|
<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>
|
@@ -2168,19 +2097,18 @@ bit flips, the buffer emits a "modified-changed" signal.
|
|
2168
2097
|
<tbody>
|
2169
2098
|
<tr>
|
2170
2099
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
2171
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2100
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2172
2101
|
</td>
|
2173
2102
|
</tr>
|
2174
2103
|
<tr>
|
2175
2104
|
<td><p><span class="term"><em class="parameter"><code>setting</code></em> :</span></p></td>
|
2176
|
-
<td>modification flag setting
|
2177
|
-
</td>
|
2105
|
+
<td>modification flag setting</td>
|
2178
2106
|
</tr>
|
2179
2107
|
</tbody>
|
2180
2108
|
</table></div>
|
2181
2109
|
</div>
|
2182
2110
|
<hr>
|
2183
|
-
<div class="refsect2"
|
2111
|
+
<div class="refsect2">
|
2184
2112
|
<a name="gtk-text-buffer-delete-selection"></a><h3>gtk_text_buffer_delete_selection ()</h3>
|
2185
2113
|
<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_buffer_delete_selection (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2186
2114
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> interactive</code></em>,
|
@@ -2196,39 +2124,36 @@ uneditable text).
|
|
2196
2124
|
<tbody>
|
2197
2125
|
<tr>
|
2198
2126
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
2199
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2127
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2200
2128
|
</td>
|
2201
2129
|
</tr>
|
2202
2130
|
<tr>
|
2203
2131
|
<td><p><span class="term"><em class="parameter"><code>interactive</code></em> :</span></p></td>
|
2204
|
-
<td>whether the deletion is caused by user interaction
|
2205
|
-
</td>
|
2132
|
+
<td>whether the deletion is caused by user interaction</td>
|
2206
2133
|
</tr>
|
2207
2134
|
<tr>
|
2208
2135
|
<td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
|
2209
|
-
<td>whether the buffer is editable by default
|
2210
|
-
</td>
|
2136
|
+
<td>whether the buffer is editable by default</td>
|
2211
2137
|
</tr>
|
2212
2138
|
<tr>
|
2213
2139
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2214
|
-
<td>
|
2215
|
-
</td>
|
2140
|
+
<td>whether there was a non-empty selection to delete</td>
|
2216
2141
|
</tr>
|
2217
2142
|
</tbody>
|
2218
2143
|
</table></div>
|
2219
2144
|
</div>
|
2220
2145
|
<hr>
|
2221
|
-
<div class="refsect2"
|
2146
|
+
<div class="refsect2">
|
2222
2147
|
<a name="gtk-text-buffer-paste-clipboard"></a><h3>gtk_text_buffer_paste_clipboard ()</h3>
|
2223
2148
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_paste_clipboard (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2224
2149
|
<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
|
2225
|
-
<em class="parameter"><code><a class="link" href="
|
2150
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *override_location</code></em>,
|
2226
2151
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> default_editable</code></em>);</pre>
|
2227
2152
|
<p>
|
2228
|
-
Pastes the contents of a clipboard at the insertion point, or
|
2229
|
-
<em class="parameter"><code>override_location</code></em>. (Note: pasting is asynchronous, that is,
|
2230
|
-
ask for the paste data and return, and at some point later
|
2231
|
-
the main loop runs, the paste data will be inserted.)
|
2153
|
+
Pastes the contents of a clipboard at the insertion point, or
|
2154
|
+
at <em class="parameter"><code>override_location</code></em>. (Note: pasting is asynchronous, that is,
|
2155
|
+
we'll ask for the paste data and return, and at some point later
|
2156
|
+
after the main loop runs, the paste data will be inserted.)
|
2232
2157
|
</p>
|
2233
2158
|
<div class="variablelist"><table border="0">
|
2234
2159
|
<col align="left" valign="top">
|
@@ -2240,25 +2165,23 @@ the main loop runs, the paste data will be inserted.)
|
|
2240
2165
|
</tr>
|
2241
2166
|
<tr>
|
2242
2167
|
<td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
|
2243
|
-
<td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> to paste from
|
2244
|
-
</td>
|
2168
|
+
<td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> to paste from</td>
|
2245
2169
|
</tr>
|
2246
2170
|
<tr>
|
2247
2171
|
<td><p><span class="term"><em class="parameter"><code>override_location</code></em> :</span></p></td>
|
2248
|
-
<td>
|
2249
|
-
|
2172
|
+
<td>location to insert pasted text, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> for
|
2173
|
+
at the cursor. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
|
2250
2174
|
</td>
|
2251
2175
|
</tr>
|
2252
2176
|
<tr>
|
2253
2177
|
<td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
|
2254
|
-
<td>whether the buffer is editable by default
|
2255
|
-
</td>
|
2178
|
+
<td>whether the buffer is editable by default</td>
|
2256
2179
|
</tr>
|
2257
2180
|
</tbody>
|
2258
2181
|
</table></div>
|
2259
2182
|
</div>
|
2260
2183
|
<hr>
|
2261
|
-
<div class="refsect2"
|
2184
|
+
<div class="refsect2">
|
2262
2185
|
<a name="gtk-text-buffer-copy-clipboard"></a><h3>gtk_text_buffer_copy_clipboard ()</h3>
|
2263
2186
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_copy_clipboard (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2264
2187
|
<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>);</pre>
|
@@ -2270,19 +2193,18 @@ Copies the currently-selected text to a clipboard.
|
|
2270
2193
|
<tbody>
|
2271
2194
|
<tr>
|
2272
2195
|
<td><p><span class="term"><em class="parameter"><code>buffer</code></em> :</span></p></td>
|
2273
|
-
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2196
|
+
<td>a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
2274
2197
|
</td>
|
2275
2198
|
</tr>
|
2276
2199
|
<tr>
|
2277
2200
|
<td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
|
2278
|
-
<td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object to copy to
|
2279
|
-
</td>
|
2201
|
+
<td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object to copy to</td>
|
2280
2202
|
</tr>
|
2281
2203
|
</tbody>
|
2282
2204
|
</table></div>
|
2283
2205
|
</div>
|
2284
2206
|
<hr>
|
2285
|
-
<div class="refsect2"
|
2207
|
+
<div class="refsect2">
|
2286
2208
|
<a name="gtk-text-buffer-cut-clipboard"></a><h3>gtk_text_buffer_cut_clipboard ()</h3>
|
2287
2209
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_cut_clipboard (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2288
2210
|
<em class="parameter"><code><a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *clipboard</code></em>,
|
@@ -2301,24 +2223,22 @@ said text if it's editable.
|
|
2301
2223
|
</tr>
|
2302
2224
|
<tr>
|
2303
2225
|
<td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
|
2304
|
-
<td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object to cut to
|
2305
|
-
</td>
|
2226
|
+
<td>the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> object to cut to</td>
|
2306
2227
|
</tr>
|
2307
2228
|
<tr>
|
2308
2229
|
<td><p><span class="term"><em class="parameter"><code>default_editable</code></em> :</span></p></td>
|
2309
|
-
<td>default editability of the buffer
|
2310
|
-
</td>
|
2230
|
+
<td>default editability of the buffer</td>
|
2311
2231
|
</tr>
|
2312
2232
|
</tbody>
|
2313
2233
|
</table></div>
|
2314
2234
|
</div>
|
2315
2235
|
<hr>
|
2316
|
-
<div class="refsect2"
|
2236
|
+
<div class="refsect2">
|
2317
2237
|
<a name="gtk-text-buffer-get-selection-bounds"></a><h3>gtk_text_buffer_get_selection_bounds ()</h3>
|
2318
2238
|
<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_buffer_get_selection_bounds
|
2319
2239
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2320
|
-
<em class="parameter"><code><a class="link" href="
|
2321
|
-
<em class="parameter"><code><a class="link" href="
|
2240
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
2241
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>);</pre>
|
2322
2242
|
<p>
|
2323
2243
|
Returns <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if some text is selected; places the bounds
|
2324
2244
|
of the selection in <em class="parameter"><code>start</code></em> and <em class="parameter"><code>end</code></em> (if the selection has length 0,
|
@@ -2337,24 +2257,23 @@ whether text is selected.
|
|
2337
2257
|
</tr>
|
2338
2258
|
<tr>
|
2339
2259
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
2340
|
-
<td>
|
2260
|
+
<td>iterator to initialize with selection start. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2341
2261
|
</td>
|
2342
2262
|
</tr>
|
2343
2263
|
<tr>
|
2344
2264
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
2345
|
-
<td>
|
2265
|
+
<td>iterator to initialize with selection end. <span class="annotation">[<acronym title="Parameter for returning results. Default is transfer full."><span class="acronym">out</span></acronym>]</span>
|
2346
2266
|
</td>
|
2347
2267
|
</tr>
|
2348
2268
|
<tr>
|
2349
2269
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2350
|
-
<td>
|
2351
|
-
</td>
|
2270
|
+
<td>whether the selection has nonzero length</td>
|
2352
2271
|
</tr>
|
2353
2272
|
</tbody>
|
2354
2273
|
</table></div>
|
2355
2274
|
</div>
|
2356
2275
|
<hr>
|
2357
|
-
<div class="refsect2"
|
2276
|
+
<div class="refsect2">
|
2358
2277
|
<a name="gtk-text-buffer-begin-user-action"></a><h3>gtk_text_buffer_begin_user_action ()</h3>
|
2359
2278
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_begin_user_action (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
2360
2279
|
<p>
|
@@ -2387,7 +2306,7 @@ single call to one of those functions.
|
|
2387
2306
|
</table></div>
|
2388
2307
|
</div>
|
2389
2308
|
<hr>
|
2390
|
-
<div class="refsect2"
|
2309
|
+
<div class="refsect2">
|
2391
2310
|
<a name="gtk-text-buffer-end-user-action"></a><h3>gtk_text_buffer_end_user_action ()</h3>
|
2392
2311
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_end_user_action (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
2393
2312
|
<p>
|
@@ -2404,7 +2323,7 @@ See that function for a full explanation.
|
|
2404
2323
|
</table></div>
|
2405
2324
|
</div>
|
2406
2325
|
<hr>
|
2407
|
-
<div class="refsect2"
|
2326
|
+
<div class="refsect2">
|
2408
2327
|
<a name="gtk-text-buffer-add-selection-clipboard"></a><h3>gtk_text_buffer_add_selection_clipboard ()</h3>
|
2409
2328
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_add_selection_clipboard
|
2410
2329
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
@@ -2412,7 +2331,7 @@ See that function for a full explanation.
|
|
2412
2331
|
<p>
|
2413
2332
|
Adds <em class="parameter"><code>clipboard</code></em> to the list of clipboards in which the selection
|
2414
2333
|
contents of <em class="parameter"><code>buffer</code></em> are available. In most cases, <em class="parameter"><code>clipboard</code></em> will be
|
2415
|
-
the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> of type <a href="http://library.gnome.org/devel/
|
2334
|
+
the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> of type <a href="http://library.gnome.org/devel/gdk3/gdk-Selections.html#GDK-SELECTION-PRIMARY:CAPS"><code class="literal">GDK_SELECTION_PRIMARY</code></a> for a view of <em class="parameter"><code>buffer</code></em>.
|
2416
2335
|
</p>
|
2417
2336
|
<div class="variablelist"><table border="0">
|
2418
2337
|
<col align="left" valign="top">
|
@@ -2431,7 +2350,7 @@ the <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">G
|
|
2431
2350
|
</table></div>
|
2432
2351
|
</div>
|
2433
2352
|
<hr>
|
2434
|
-
<div class="refsect2"
|
2353
|
+
<div class="refsect2">
|
2435
2354
|
<a name="gtk-text-buffer-remove-selection-clipboard"></a><h3>gtk_text_buffer_remove_selection_clipboard ()</h3>
|
2436
2355
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_remove_selection_clipboard
|
2437
2356
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
@@ -2450,15 +2369,15 @@ Removes a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="t
|
|
2450
2369
|
</tr>
|
2451
2370
|
<tr>
|
2452
2371
|
<td><p><span class="term"><em class="parameter"><code>clipboard</code></em> :</span></p></td>
|
2453
|
-
<td>a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> added to <em class="parameter"><code>buffer</code></em> by
|
2454
|
-
|
2372
|
+
<td>a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> added to <em class="parameter"><code>buffer</code></em> by
|
2373
|
+
<a class="link" href="GtkTextBuffer.html#gtk-text-buffer-add-selection-clipboard" title="gtk_text_buffer_add_selection_clipboard ()"><code class="function">gtk_text_buffer_add_selection_clipboard()</code></a>
|
2455
2374
|
</td>
|
2456
2375
|
</tr>
|
2457
2376
|
</tbody>
|
2458
2377
|
</table></div>
|
2459
2378
|
</div>
|
2460
2379
|
<hr>
|
2461
|
-
<div class="refsect2"
|
2380
|
+
<div class="refsect2">
|
2462
2381
|
<a name="GtkTextBufferTargetInfo"></a><h3>enum GtkTextBufferTargetInfo</h3>
|
2463
2382
|
<pre class="programlisting">typedef enum
|
2464
2383
|
{
|
@@ -2471,11 +2390,11 @@ Removes a <a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="t
|
|
2471
2390
|
</p>
|
2472
2391
|
</div>
|
2473
2392
|
<hr>
|
2474
|
-
<div class="refsect2"
|
2393
|
+
<div class="refsect2">
|
2475
2394
|
<a name="GtkTextBufferDeserializeFunc"></a><h3>GtkTextBufferDeserializeFunc ()</h3>
|
2476
2395
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="returnvalue">gboolean</span></a> (*GtkTextBufferDeserializeFunc) (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
|
2477
2396
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
|
2478
|
-
<em class="parameter"><code><a class="link" href="
|
2397
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
2479
2398
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *data</code></em>,
|
2480
2399
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
|
2481
2400
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> create_tags</code></em>,
|
@@ -2490,23 +2409,19 @@ serialized with <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-seriali
|
|
2490
2409
|
<tbody>
|
2491
2410
|
<tr>
|
2492
2411
|
<td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
|
2493
|
-
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> the format is registered with
|
2494
|
-
</td>
|
2412
|
+
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> the format is registered with</td>
|
2495
2413
|
</tr>
|
2496
2414
|
<tr>
|
2497
2415
|
<td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
|
2498
|
-
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to deserialize into
|
2499
|
-
</td>
|
2416
|
+
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to deserialize into</td>
|
2500
2417
|
</tr>
|
2501
2418
|
<tr>
|
2502
2419
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
2503
|
-
<td>insertion point for the deserialized text
|
2504
|
-
</td>
|
2420
|
+
<td>insertion point for the deserialized text</td>
|
2505
2421
|
</tr>
|
2506
2422
|
<tr>
|
2507
2423
|
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2508
|
-
<td>data to deserialize
|
2509
|
-
</td>
|
2424
|
+
<td>data to deserialize</td>
|
2510
2425
|
</tr>
|
2511
2426
|
<tr>
|
2512
2427
|
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
@@ -2516,13 +2431,11 @@ serialized with <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-seriali
|
|
2516
2431
|
<tr>
|
2517
2432
|
<td><p><span class="term"><em class="parameter"><code>create_tags</code></em> :</span></p></td>
|
2518
2433
|
<td>
|
2519
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if deserializing may create tags
|
2520
|
-
</td>
|
2434
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> if deserializing may create tags</td>
|
2521
2435
|
</tr>
|
2522
2436
|
<tr>
|
2523
2437
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2524
|
-
<td>user data that was specified when registering the format
|
2525
|
-
</td>
|
2438
|
+
<td>user data that was specified when registering the format</td>
|
2526
2439
|
</tr>
|
2527
2440
|
<tr>
|
2528
2441
|
<td><p><span class="term"><em class="parameter"><code>error</code></em> :</span></p></td>
|
@@ -2532,19 +2445,18 @@ serialized with <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-seriali
|
|
2532
2445
|
<tr>
|
2533
2446
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2534
2447
|
<td>
|
2535
|
-
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise
|
2536
|
-
</td>
|
2448
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise</td>
|
2537
2449
|
</tr>
|
2538
2450
|
</tbody>
|
2539
2451
|
</table></div>
|
2540
2452
|
</div>
|
2541
2453
|
<hr>
|
2542
|
-
<div class="refsect2"
|
2454
|
+
<div class="refsect2">
|
2543
2455
|
<a name="gtk-text-buffer-deserialize"></a><h3>gtk_text_buffer_deserialize ()</h3>
|
2544
2456
|
<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_buffer_deserialize (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
|
2545
2457
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
|
2546
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
2547
|
-
<em class="parameter"><code><a class="link" href="
|
2458
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
|
2459
|
+
<em class="parameter"><code><a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *iter</code></em>,
|
2548
2460
|
<em class="parameter"><code>const <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="type">guint8</span></a> *data</code></em>,
|
2549
2461
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> length</code></em>,
|
2550
2462
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Error-Reporting.html#GError"><span class="type">GError</span></a> **error</code></em>);</pre>
|
@@ -2562,27 +2474,23 @@ it at <em class="parameter"><code>iter</code></em>.
|
|
2562
2474
|
<tbody>
|
2563
2475
|
<tr>
|
2564
2476
|
<td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
|
2565
|
-
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> <em class="parameter"><code>format</code></em> is registered with
|
2566
|
-
</td>
|
2477
|
+
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> <em class="parameter"><code>format</code></em> is registered with</td>
|
2567
2478
|
</tr>
|
2568
2479
|
<tr>
|
2569
2480
|
<td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
|
2570
|
-
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to deserialize into
|
2571
|
-
</td>
|
2481
|
+
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to deserialize into</td>
|
2572
2482
|
</tr>
|
2573
2483
|
<tr>
|
2574
2484
|
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
2575
|
-
<td>the rich text format to use for deserializing
|
2576
|
-
</td>
|
2485
|
+
<td>the rich text format to use for deserializing</td>
|
2577
2486
|
</tr>
|
2578
2487
|
<tr>
|
2579
2488
|
<td><p><span class="term"><em class="parameter"><code>iter</code></em> :</span></p></td>
|
2580
|
-
<td>insertion point for the deserialized text
|
2581
|
-
</td>
|
2489
|
+
<td>insertion point for the deserialized text</td>
|
2582
2490
|
</tr>
|
2583
2491
|
<tr>
|
2584
2492
|
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
|
2585
|
-
<td>data to deserialize
|
2493
|
+
<td>data to deserialize. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length]</span>
|
2586
2494
|
</td>
|
2587
2495
|
</tr>
|
2588
2496
|
<tr>
|
@@ -2597,20 +2505,19 @@ it at <em class="parameter"><code>iter</code></em>.
|
|
2597
2505
|
</tr>
|
2598
2506
|
<tr>
|
2599
2507
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2600
|
-
<td>
|
2601
|
-
|
2602
|
-
</td>
|
2508
|
+
<td>
|
2509
|
+
<a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#TRUE:CAPS"><code class="literal">TRUE</code></a> on success, <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#FALSE:CAPS"><code class="literal">FALSE</code></a> otherwise.</td>
|
2603
2510
|
</tr>
|
2604
2511
|
</tbody>
|
2605
2512
|
</table></div>
|
2606
2513
|
<p class="since">Since 2.10</p>
|
2607
2514
|
</div>
|
2608
2515
|
<hr>
|
2609
|
-
<div class="refsect2"
|
2516
|
+
<div class="refsect2">
|
2610
2517
|
<a name="gtk-text-buffer-deserialize-get-can-create-tags"></a><h3>gtk_text_buffer_deserialize_get_can_create_tags ()</h3>
|
2611
2518
|
<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_buffer_deserialize_get_can_create_tags
|
2612
2519
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2613
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
2520
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);</pre>
|
2614
2521
|
<p>
|
2615
2522
|
This functions returns the value set with
|
2616
2523
|
<a class="link" href="GtkTextBuffer.html#gtk-text-buffer-deserialize-set-can-create-tags" title="gtk_text_buffer_deserialize_set_can_create_tags ()"><code class="function">gtk_text_buffer_deserialize_set_can_create_tags()</code></a>
|
@@ -2625,25 +2532,22 @@ This functions returns the value set with
|
|
2625
2532
|
</tr>
|
2626
2533
|
<tr>
|
2627
2534
|
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
2628
|
-
<td>a <a href="http://library.gnome.org/devel/
|
2629
|
-
</td>
|
2535
|
+
<td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format</td>
|
2630
2536
|
</tr>
|
2631
2537
|
<tr>
|
2632
2538
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2633
|
-
<td>
|
2634
|
-
|
2635
|
-
</td>
|
2539
|
+
<td>whether deserializing this format may create tags</td>
|
2636
2540
|
</tr>
|
2637
2541
|
</tbody>
|
2638
2542
|
</table></div>
|
2639
2543
|
<p class="since">Since 2.10</p>
|
2640
2544
|
</div>
|
2641
2545
|
<hr>
|
2642
|
-
<div class="refsect2"
|
2546
|
+
<div class="refsect2">
|
2643
2547
|
<a name="gtk-text-buffer-deserialize-set-can-create-tags"></a><h3>gtk_text_buffer_deserialize_set_can_create_tags ()</h3>
|
2644
2548
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_deserialize_set_can_create_tags
|
2645
2549
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2646
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
2550
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
|
2647
2551
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> can_create_tags</code></em>);</pre>
|
2648
2552
|
<p>
|
2649
2553
|
Use this function to allow a rich text deserialization function to
|
@@ -2676,22 +2580,20 @@ handle the newly created tags.
|
|
2676
2580
|
</tr>
|
2677
2581
|
<tr>
|
2678
2582
|
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
2679
|
-
<td>a <a href="http://library.gnome.org/devel/
|
2680
|
-
</td>
|
2583
|
+
<td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format</td>
|
2681
2584
|
</tr>
|
2682
2585
|
<tr>
|
2683
2586
|
<td><p><span class="term"><em class="parameter"><code>can_create_tags</code></em> :</span></p></td>
|
2684
|
-
<td>whether deserializing this format may create tags
|
2685
|
-
</td>
|
2587
|
+
<td>whether deserializing this format may create tags</td>
|
2686
2588
|
</tr>
|
2687
2589
|
</tbody>
|
2688
2590
|
</table></div>
|
2689
2591
|
<p class="since">Since 2.10</p>
|
2690
2592
|
</div>
|
2691
2593
|
<hr>
|
2692
|
-
<div class="refsect2"
|
2594
|
+
<div class="refsect2">
|
2693
2595
|
<a name="gtk-text-buffer-get-copy-target-list"></a><h3>gtk_text_buffer_get_copy_target_list ()</h3>
|
2694
|
-
<pre class="programlisting"><a class="link" href="gtk-Selections.html#GtkTargetList"
|
2596
|
+
<pre class="programlisting"><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * gtk_text_buffer_get_copy_target_list
|
2695
2597
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
2696
2598
|
<p>
|
2697
2599
|
This function returns the list of targets this text buffer can
|
@@ -2710,8 +2612,7 @@ using <a class="link" href="gtk-Selections.html#gtk-target-list-add-rich-text-ta
|
|
2710
2612
|
</tr>
|
2711
2613
|
<tr>
|
2712
2614
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2713
|
-
<td>
|
2714
|
-
|
2615
|
+
<td>the <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2715
2616
|
</td>
|
2716
2617
|
</tr>
|
2717
2618
|
</tbody>
|
@@ -2719,9 +2620,9 @@ using <a class="link" href="gtk-Selections.html#gtk-target-list-add-rich-text-ta
|
|
2719
2620
|
<p class="since">Since 2.10</p>
|
2720
2621
|
</div>
|
2721
2622
|
<hr>
|
2722
|
-
<div class="refsect2"
|
2623
|
+
<div class="refsect2">
|
2723
2624
|
<a name="gtk-text-buffer-get-deserialize-formats"></a><h3>gtk_text_buffer_get_deserialize_formats ()</h3>
|
2724
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/
|
2625
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> * gtk_text_buffer_get_deserialize_formats
|
2725
2626
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2726
2627
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_formats</code></em>);</pre>
|
2727
2628
|
<p>
|
@@ -2739,14 +2640,12 @@ with <em class="parameter"><code>buffer</code></em> using <a class="link" href="
|
|
2739
2640
|
</tr>
|
2740
2641
|
<tr>
|
2741
2642
|
<td><p><span class="term"><em class="parameter"><code>n_formats</code></em> :</span></p></td>
|
2742
|
-
<td>return location for the number of formats
|
2743
|
-
</td>
|
2643
|
+
<td>return location for the number of formats</td>
|
2744
2644
|
</tr>
|
2745
2645
|
<tr>
|
2746
2646
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2747
|
-
<td>
|
2748
|
-
|
2749
|
-
|
2647
|
+
<td>an array of
|
2648
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a>s representing the registered formats. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_formats][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
|
2750
2649
|
</td>
|
2751
2650
|
</tr>
|
2752
2651
|
</tbody>
|
@@ -2754,9 +2653,9 @@ with <em class="parameter"><code>buffer</code></em> using <a class="link" href="
|
|
2754
2653
|
<p class="since">Since 2.10</p>
|
2755
2654
|
</div>
|
2756
2655
|
<hr>
|
2757
|
-
<div class="refsect2"
|
2656
|
+
<div class="refsect2">
|
2758
2657
|
<a name="gtk-text-buffer-get-paste-target-list"></a><h3>gtk_text_buffer_get_paste_target_list ()</h3>
|
2759
|
-
<pre class="programlisting"><a class="link" href="gtk-Selections.html#GtkTargetList"
|
2658
|
+
<pre class="programlisting"><a class="link" href="gtk-Selections.html#GtkTargetList"><span class="returnvalue">GtkTargetList</span></a> * gtk_text_buffer_get_paste_target_list
|
2760
2659
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>);</pre>
|
2761
2660
|
<p>
|
2762
2661
|
This function returns the list of targets this text buffer supports
|
@@ -2775,8 +2674,7 @@ using <a class="link" href="gtk-Selections.html#gtk-target-list-add-rich-text-ta
|
|
2775
2674
|
</tr>
|
2776
2675
|
<tr>
|
2777
2676
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2778
|
-
<td>
|
2779
|
-
|
2677
|
+
<td>the <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2780
2678
|
</td>
|
2781
2679
|
</tr>
|
2782
2680
|
</tbody>
|
@@ -2784,9 +2682,9 @@ using <a class="link" href="gtk-Selections.html#gtk-target-list-add-rich-text-ta
|
|
2784
2682
|
<p class="since">Since 2.10</p>
|
2785
2683
|
</div>
|
2786
2684
|
<hr>
|
2787
|
-
<div class="refsect2"
|
2685
|
+
<div class="refsect2">
|
2788
2686
|
<a name="gtk-text-buffer-get-serialize-formats"></a><h3>gtk_text_buffer_get_serialize_formats ()</h3>
|
2789
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/
|
2687
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> * gtk_text_buffer_get_serialize_formats
|
2790
2688
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2791
2689
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> *n_formats</code></em>);</pre>
|
2792
2690
|
<p>
|
@@ -2804,14 +2702,12 @@ with <em class="parameter"><code>buffer</code></em> using <a class="link" href="
|
|
2804
2702
|
</tr>
|
2805
2703
|
<tr>
|
2806
2704
|
<td><p><span class="term"><em class="parameter"><code>n_formats</code></em> :</span></p></td>
|
2807
|
-
<td>return location for the number of formats
|
2808
|
-
</td>
|
2705
|
+
<td>return location for the number of formats</td>
|
2809
2706
|
</tr>
|
2810
2707
|
<tr>
|
2811
2708
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2812
|
-
<td>
|
2813
|
-
|
2814
|
-
|
2709
|
+
<td>an array of
|
2710
|
+
<a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a>s representing the registered formats. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=n_formats][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
|
2815
2711
|
</td>
|
2816
2712
|
</tr>
|
2817
2713
|
</tbody>
|
@@ -2819,9 +2715,9 @@ with <em class="parameter"><code>buffer</code></em> using <a class="link" href="
|
|
2819
2715
|
<p class="since">Since 2.10</p>
|
2820
2716
|
</div>
|
2821
2717
|
<hr>
|
2822
|
-
<div class="refsect2"
|
2718
|
+
<div class="refsect2">
|
2823
2719
|
<a name="gtk-text-buffer-register-deserialize-format"></a><h3>gtk_text_buffer_register_deserialize_format ()</h3>
|
2824
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/
|
2720
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_deserialize_format
|
2825
2721
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2826
2722
|
<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> *mime_type</code></em>,
|
2827
2723
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html#GtkTextBufferDeserializeFunc" title="GtkTextBufferDeserializeFunc ()"><span class="type">GtkTextBufferDeserializeFunc</span></a> function</code></em>,
|
@@ -2841,30 +2737,25 @@ its <em class="parameter"><code>mime_type</code></em> with the passed <em class=
|
|
2841
2737
|
</tr>
|
2842
2738
|
<tr>
|
2843
2739
|
<td><p><span class="term"><em class="parameter"><code>mime_type</code></em> :</span></p></td>
|
2844
|
-
<td>the format's mime-type
|
2845
|
-
</td>
|
2740
|
+
<td>the format's mime-type</td>
|
2846
2741
|
</tr>
|
2847
2742
|
<tr>
|
2848
2743
|
<td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
|
2849
|
-
<td>the deserialize function to register
|
2850
|
-
</td>
|
2744
|
+
<td>the deserialize function to register</td>
|
2851
2745
|
</tr>
|
2852
2746
|
<tr>
|
2853
2747
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2854
2748
|
<td>
|
2855
|
-
<em class="parameter"><code>function</code></em>'s user_data
|
2856
|
-
</td>
|
2749
|
+
<em class="parameter"><code>function</code></em>'s user_data</td>
|
2857
2750
|
</tr>
|
2858
2751
|
<tr>
|
2859
2752
|
<td><p><span class="term"><em class="parameter"><code>user_data_destroy</code></em> :</span></p></td>
|
2860
|
-
<td>a function to call when <em class="parameter"><code>user_data</code></em> is no longer needed
|
2861
|
-
</td>
|
2753
|
+
<td>a function to call when <em class="parameter"><code>user_data</code></em> is no longer needed</td>
|
2862
2754
|
</tr>
|
2863
2755
|
<tr>
|
2864
2756
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2865
|
-
<td>
|
2866
|
-
|
2867
|
-
|
2757
|
+
<td>the <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
|
2758
|
+
newly registered format's mime-type. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2868
2759
|
</td>
|
2869
2760
|
</tr>
|
2870
2761
|
</tbody>
|
@@ -2872,9 +2763,9 @@ its <em class="parameter"><code>mime_type</code></em> with the passed <em class=
|
|
2872
2763
|
<p class="since">Since 2.10</p>
|
2873
2764
|
</div>
|
2874
2765
|
<hr>
|
2875
|
-
<div class="refsect2"
|
2766
|
+
<div class="refsect2">
|
2876
2767
|
<a name="gtk-text-buffer-register-deserialize-tagset"></a><h3>gtk_text_buffer_register_deserialize_tagset ()</h3>
|
2877
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/
|
2768
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_deserialize_tagset
|
2878
2769
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2879
2770
|
<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> *tagset_name</code></em>);</pre>
|
2880
2771
|
<p>
|
@@ -2892,14 +2783,13 @@ format with the passed <em class="parameter"><code>buffer</code></em>. See
|
|
2892
2783
|
</tr>
|
2893
2784
|
<tr>
|
2894
2785
|
<td><p><span class="term"><em class="parameter"><code>tagset_name</code></em> :</span></p></td>
|
2895
|
-
<td>
|
2786
|
+
<td>an optional tagset name, on <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>
|
2896
2787
|
</td>
|
2897
2788
|
</tr>
|
2898
2789
|
<tr>
|
2899
2790
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2900
|
-
<td>
|
2901
|
-
|
2902
|
-
|
2791
|
+
<td>the <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
|
2792
|
+
newly registered format's mime-type. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2903
2793
|
</td>
|
2904
2794
|
</tr>
|
2905
2795
|
</tbody>
|
@@ -2907,9 +2797,9 @@ format with the passed <em class="parameter"><code>buffer</code></em>. See
|
|
2907
2797
|
<p class="since">Since 2.10</p>
|
2908
2798
|
</div>
|
2909
2799
|
<hr>
|
2910
|
-
<div class="refsect2"
|
2800
|
+
<div class="refsect2">
|
2911
2801
|
<a name="gtk-text-buffer-register-serialize-format"></a><h3>gtk_text_buffer_register_serialize_format ()</h3>
|
2912
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/
|
2802
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_serialize_format
|
2913
2803
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2914
2804
|
<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> *mime_type</code></em>,
|
2915
2805
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html#GtkTextBufferSerializeFunc" title="GtkTextBufferSerializeFunc ()"><span class="type">GtkTextBufferSerializeFunc</span></a> function</code></em>,
|
@@ -2929,30 +2819,25 @@ its <em class="parameter"><code>mime_type</code></em> with the passed <em class=
|
|
2929
2819
|
</tr>
|
2930
2820
|
<tr>
|
2931
2821
|
<td><p><span class="term"><em class="parameter"><code>mime_type</code></em> :</span></p></td>
|
2932
|
-
<td>the format's mime-type
|
2933
|
-
</td>
|
2822
|
+
<td>the format's mime-type</td>
|
2934
2823
|
</tr>
|
2935
2824
|
<tr>
|
2936
2825
|
<td><p><span class="term"><em class="parameter"><code>function</code></em> :</span></p></td>
|
2937
|
-
<td>the serialize function to register
|
2938
|
-
</td>
|
2826
|
+
<td>the serialize function to register</td>
|
2939
2827
|
</tr>
|
2940
2828
|
<tr>
|
2941
2829
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
2942
2830
|
<td>
|
2943
|
-
<code class="literal">function</code>'s user_data
|
2944
|
-
</td>
|
2831
|
+
<code class="literal">function</code>'s user_data</td>
|
2945
2832
|
</tr>
|
2946
2833
|
<tr>
|
2947
2834
|
<td><p><span class="term"><em class="parameter"><code>user_data_destroy</code></em> :</span></p></td>
|
2948
|
-
<td>a function to call when <em class="parameter"><code>user_data</code></em> is no longer needed
|
2949
|
-
</td>
|
2835
|
+
<td>a function to call when <em class="parameter"><code>user_data</code></em> is no longer needed</td>
|
2950
2836
|
</tr>
|
2951
2837
|
<tr>
|
2952
2838
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
2953
|
-
<td>
|
2954
|
-
|
2955
|
-
|
2839
|
+
<td>the <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
|
2840
|
+
newly registered format's mime-type. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
2956
2841
|
</td>
|
2957
2842
|
</tr>
|
2958
2843
|
</tbody>
|
@@ -2960,9 +2845,9 @@ its <em class="parameter"><code>mime_type</code></em> with the passed <em class=
|
|
2960
2845
|
<p class="since">Since 2.10</p>
|
2961
2846
|
</div>
|
2962
2847
|
<hr>
|
2963
|
-
<div class="refsect2"
|
2848
|
+
<div class="refsect2">
|
2964
2849
|
<a name="gtk-text-buffer-register-serialize-tagset"></a><h3>gtk_text_buffer_register_serialize_tagset ()</h3>
|
2965
|
-
<pre class="programlisting"><a href="http://library.gnome.org/devel/
|
2850
|
+
<pre class="programlisting"><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="returnvalue">GdkAtom</span></a> gtk_text_buffer_register_serialize_tagset
|
2966
2851
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
2967
2852
|
<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> *tagset_name</code></em>);</pre>
|
2968
2853
|
<p>
|
@@ -2996,14 +2881,13 @@ receiving buffer to deal with with pasting of arbitrary tags.
|
|
2996
2881
|
</tr>
|
2997
2882
|
<tr>
|
2998
2883
|
<td><p><span class="term"><em class="parameter"><code>tagset_name</code></em> :</span></p></td>
|
2999
|
-
<td>
|
2884
|
+
<td>an optional tagset name, on <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>
|
3000
2885
|
</td>
|
3001
2886
|
</tr>
|
3002
2887
|
<tr>
|
3003
2888
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3004
|
-
<td>
|
3005
|
-
|
3006
|
-
|
2889
|
+
<td>the <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> that corresponds to the
|
2890
|
+
newly registered format's mime-type. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
|
3007
2891
|
</td>
|
3008
2892
|
</tr>
|
3009
2893
|
</tbody>
|
@@ -3011,12 +2895,12 @@ receiving buffer to deal with with pasting of arbitrary tags.
|
|
3011
2895
|
<p class="since">Since 2.10</p>
|
3012
2896
|
</div>
|
3013
2897
|
<hr>
|
3014
|
-
<div class="refsect2"
|
2898
|
+
<div class="refsect2">
|
3015
2899
|
<a name="GtkTextBufferSerializeFunc"></a><h3>GtkTextBufferSerializeFunc ()</h3>
|
3016
2900
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="returnvalue">guint8</span></a> * (*GtkTextBufferSerializeFunc) (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
|
3017
2901
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
|
3018
|
-
<em class="parameter"><code>const <a class="link" href="
|
3019
|
-
<em class="parameter"><code>const <a class="link" href="
|
2902
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
2903
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
|
3020
2904
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>,
|
3021
2905
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gpointer"><span class="type">gpointer</span></a> user_data</code></em>);</pre>
|
3022
2906
|
<p>
|
@@ -3028,51 +2912,44 @@ It must return the serialized form of the content.
|
|
3028
2912
|
<tbody>
|
3029
2913
|
<tr>
|
3030
2914
|
<td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
|
3031
|
-
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> for which the format is registered
|
3032
|
-
</td>
|
2915
|
+
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> for which the format is registered</td>
|
3033
2916
|
</tr>
|
3034
2917
|
<tr>
|
3035
2918
|
<td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
|
3036
|
-
<td>the <span class="type">GtkTextsBuffer</span> to serialize
|
3037
|
-
</td>
|
2919
|
+
<td>the <span class="type">GtkTextsBuffer</span> to serialize</td>
|
3038
2920
|
</tr>
|
3039
2921
|
<tr>
|
3040
2922
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
3041
|
-
<td>start of the block of text to serialize
|
3042
|
-
</td>
|
2923
|
+
<td>start of the block of text to serialize</td>
|
3043
2924
|
</tr>
|
3044
2925
|
<tr>
|
3045
2926
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
3046
|
-
<td>end of the block of text to serialize
|
3047
|
-
</td>
|
2927
|
+
<td>end of the block of text to serialize</td>
|
3048
2928
|
</tr>
|
3049
2929
|
<tr>
|
3050
2930
|
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
3051
|
-
<td>Return location for the length of the serialized data
|
3052
|
-
</td>
|
2931
|
+
<td>Return location for the length of the serialized data</td>
|
3053
2932
|
</tr>
|
3054
2933
|
<tr>
|
3055
2934
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
3056
|
-
<td>user data that was specified when registering the format
|
3057
|
-
</td>
|
2935
|
+
<td>user data that was specified when registering the format</td>
|
3058
2936
|
</tr>
|
3059
2937
|
<tr>
|
3060
2938
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3061
2939
|
<td>a newly-allocated array of guint8 which contains the serialized
|
3062
|
-
|
3063
|
-
</td>
|
2940
|
+
data, or <a href="http://library.gnome.org/devel/glib/unstable/glib-Standard-Macros.html#NULL:CAPS"><code class="literal">NULL</code></a> if an error occurred</td>
|
3064
2941
|
</tr>
|
3065
2942
|
</tbody>
|
3066
2943
|
</table></div>
|
3067
2944
|
</div>
|
3068
2945
|
<hr>
|
3069
|
-
<div class="refsect2"
|
2946
|
+
<div class="refsect2">
|
3070
2947
|
<a name="gtk-text-buffer-serialize"></a><h3>gtk_text_buffer_serialize ()</h3>
|
3071
2948
|
<pre class="programlisting"><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#guint8"><span class="returnvalue">guint8</span></a> * gtk_text_buffer_serialize (<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *register_buffer</code></em>,
|
3072
2949
|
<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *content_buffer</code></em>,
|
3073
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
3074
|
-
<em class="parameter"><code>const <a class="link" href="
|
3075
|
-
<em class="parameter"><code>const <a class="link" href="
|
2950
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>,
|
2951
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start</code></em>,
|
2952
|
+
<em class="parameter"><code>const <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end</code></em>,
|
3076
2953
|
<em class="parameter"><code><a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gsize"><span class="type">gsize</span></a> *length</code></em>);</pre>
|
3077
2954
|
<p>
|
3078
2955
|
This function serializes the portion of text between <em class="parameter"><code>start</code></em>
|
@@ -3088,38 +2965,32 @@ and <em class="parameter"><code>end</code></em> in the rich text format represen
|
|
3088
2965
|
<tbody>
|
3089
2966
|
<tr>
|
3090
2967
|
<td><p><span class="term"><em class="parameter"><code>register_buffer</code></em> :</span></p></td>
|
3091
|
-
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> <em class="parameter"><code>format</code></em> is registered with
|
3092
|
-
</td>
|
2968
|
+
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> <em class="parameter"><code>format</code></em> is registered with</td>
|
3093
2969
|
</tr>
|
3094
2970
|
<tr>
|
3095
2971
|
<td><p><span class="term"><em class="parameter"><code>content_buffer</code></em> :</span></p></td>
|
3096
|
-
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to serialize
|
3097
|
-
</td>
|
2972
|
+
<td>the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> to serialize</td>
|
3098
2973
|
</tr>
|
3099
2974
|
<tr>
|
3100
2975
|
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
3101
|
-
<td>the rich text format to use for serializing
|
3102
|
-
</td>
|
2976
|
+
<td>the rich text format to use for serializing</td>
|
3103
2977
|
</tr>
|
3104
2978
|
<tr>
|
3105
2979
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
3106
|
-
<td>start of block of text to serialize
|
3107
|
-
</td>
|
2980
|
+
<td>start of block of text to serialize</td>
|
3108
2981
|
</tr>
|
3109
2982
|
<tr>
|
3110
2983
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
3111
|
-
<td>end of block of test to serialize
|
3112
|
-
</td>
|
2984
|
+
<td>end of block of test to serialize</td>
|
3113
2985
|
</tr>
|
3114
2986
|
<tr>
|
3115
2987
|
<td><p><span class="term"><em class="parameter"><code>length</code></em> :</span></p></td>
|
3116
|
-
<td>return location for the length of the serialized data
|
3117
|
-
</td>
|
2988
|
+
<td>return location for the length of the serialized data</td>
|
3118
2989
|
</tr>
|
3119
2990
|
<tr>
|
3120
2991
|
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
|
3121
|
-
<td>
|
3122
|
-
|
2992
|
+
<td>the serialized
|
2993
|
+
data, encoded as <em class="parameter"><code>format</code></em>. <span class="annotation">[<acronym title="Parameter points to an array of items."><span class="acronym">array</span></acronym> length=length][<acronym title="Free data after the code is done."><span class="acronym">transfer full</span></acronym>]</span>
|
3123
2994
|
</td>
|
3124
2995
|
</tr>
|
3125
2996
|
</tbody>
|
@@ -3127,11 +2998,11 @@ and <em class="parameter"><code>end</code></em> in the rich text format represen
|
|
3127
2998
|
<p class="since">Since 2.10</p>
|
3128
2999
|
</div>
|
3129
3000
|
<hr>
|
3130
|
-
<div class="refsect2"
|
3001
|
+
<div class="refsect2">
|
3131
3002
|
<a name="gtk-text-buffer-unregister-deserialize-format"></a><h3>gtk_text_buffer_unregister_deserialize_format ()</h3>
|
3132
3003
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_unregister_deserialize_format
|
3133
3004
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
3134
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
3005
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);</pre>
|
3135
3006
|
<p>
|
3136
3007
|
This function unregisters a rich text format that was previously
|
3137
3008
|
registered using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-deserialize-format" title="gtk_text_buffer_register_deserialize_format ()"><code class="function">gtk_text_buffer_register_deserialize_format()</code></a> or
|
@@ -3147,19 +3018,18 @@ registered using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-regist
|
|
3147
3018
|
</tr>
|
3148
3019
|
<tr>
|
3149
3020
|
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
3150
|
-
<td>a <a href="http://library.gnome.org/devel/
|
3151
|
-
</td>
|
3021
|
+
<td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format.</td>
|
3152
3022
|
</tr>
|
3153
3023
|
</tbody>
|
3154
3024
|
</table></div>
|
3155
3025
|
<p class="since">Since 2.10</p>
|
3156
3026
|
</div>
|
3157
3027
|
<hr>
|
3158
|
-
<div class="refsect2"
|
3028
|
+
<div class="refsect2">
|
3159
3029
|
<a name="gtk-text-buffer-unregister-serialize-format"></a><h3>gtk_text_buffer_unregister_serialize_format ()</h3>
|
3160
3030
|
<pre class="programlisting"><span class="returnvalue">void</span> gtk_text_buffer_unregister_serialize_format
|
3161
3031
|
(<em class="parameter"><code><a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *buffer</code></em>,
|
3162
|
-
<em class="parameter"><code><a href="http://library.gnome.org/devel/
|
3032
|
+
<em class="parameter"><code><a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> format</code></em>);</pre>
|
3163
3033
|
<p>
|
3164
3034
|
This function unregisters a rich text format that was previously
|
3165
3035
|
registered using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-register-serialize-format" title="gtk_text_buffer_register_serialize_format ()"><code class="function">gtk_text_buffer_register_serialize_format()</code></a> or
|
@@ -3175,19 +3045,18 @@ registered using <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-regist
|
|
3175
3045
|
</tr>
|
3176
3046
|
<tr>
|
3177
3047
|
<td><p><span class="term"><em class="parameter"><code>format</code></em> :</span></p></td>
|
3178
|
-
<td>a <a href="http://library.gnome.org/devel/
|
3179
|
-
</td>
|
3048
|
+
<td>a <a href="http://library.gnome.org/devel/gdk3/gdk-Properties-and-Atoms.html#GdkAtom"><span class="type">GdkAtom</span></a> representing a registered rich text format.</td>
|
3180
3049
|
</tr>
|
3181
3050
|
</tbody>
|
3182
3051
|
</table></div>
|
3183
3052
|
<p class="since">Since 2.10</p>
|
3184
3053
|
</div>
|
3185
3054
|
</div>
|
3186
|
-
<div class="refsect1"
|
3055
|
+
<div class="refsect1">
|
3187
3056
|
<a name="GtkTextBuffer.property-details"></a><h2>Property Details</h2>
|
3188
|
-
<div class="refsect2"
|
3057
|
+
<div class="refsect2">
|
3189
3058
|
<a name="GtkTextBuffer--copy-target-list"></a><h3>The <code class="literal">"copy-target-list"</code> property</h3>
|
3190
|
-
<pre class="programlisting"> "copy-target-list" <a class="link" href="gtk-Selections.html#GtkTargetList"
|
3059
|
+
<pre class="programlisting"> "copy-target-list" <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>* : Read</pre>
|
3191
3060
|
<p>
|
3192
3061
|
The list of targets this buffer supports for clipboard copying
|
3193
3062
|
and as DND source.
|
@@ -3195,7 +3064,7 @@ and as DND source.
|
|
3195
3064
|
<p class="since">Since 2.10</p>
|
3196
3065
|
</div>
|
3197
3066
|
<hr>
|
3198
|
-
<div class="refsect2"
|
3067
|
+
<div class="refsect2">
|
3199
3068
|
<a name="GtkTextBuffer--cursor-position"></a><h3>The <code class="literal">"cursor-position"</code> property</h3>
|
3200
3069
|
<pre class="programlisting"> "cursor-position" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> : Read</pre>
|
3201
3070
|
<p>
|
@@ -3208,7 +3077,7 @@ cursor moves.
|
|
3208
3077
|
<p class="since">Since 2.10</p>
|
3209
3078
|
</div>
|
3210
3079
|
<hr>
|
3211
|
-
<div class="refsect2"
|
3080
|
+
<div class="refsect2">
|
3212
3081
|
<a name="GtkTextBuffer--has-selection"></a><h3>The <code class="literal">"has-selection"</code> property</h3>
|
3213
3082
|
<pre class="programlisting"> "has-selection" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gboolean"><span class="type">gboolean</span></a> : Read</pre>
|
3214
3083
|
<p>
|
@@ -3218,9 +3087,9 @@ Whether the buffer has some text currently selected.
|
|
3218
3087
|
<p class="since">Since 2.10</p>
|
3219
3088
|
</div>
|
3220
3089
|
<hr>
|
3221
|
-
<div class="refsect2"
|
3090
|
+
<div class="refsect2">
|
3222
3091
|
<a name="GtkTextBuffer--paste-target-list"></a><h3>The <code class="literal">"paste-target-list"</code> property</h3>
|
3223
|
-
<pre class="programlisting"> "paste-target-list" <a class="link" href="gtk-Selections.html#GtkTargetList"
|
3092
|
+
<pre class="programlisting"> "paste-target-list" <a class="link" href="gtk-Selections.html#GtkTargetList"><span class="type">GtkTargetList</span></a>* : Read</pre>
|
3224
3093
|
<p>
|
3225
3094
|
The list of targets this buffer supports for clipboard pasting
|
3226
3095
|
and as DND destination.
|
@@ -3228,13 +3097,13 @@ and as DND destination.
|
|
3228
3097
|
<p class="since">Since 2.10</p>
|
3229
3098
|
</div>
|
3230
3099
|
<hr>
|
3231
|
-
<div class="refsect2"
|
3100
|
+
<div class="refsect2">
|
3232
3101
|
<a name="GtkTextBuffer--tag-table"></a><h3>The <code class="literal">"tag-table"</code> property</h3>
|
3233
3102
|
<pre class="programlisting"> "tag-table" <a class="link" href="GtkTextTagTable.html" title="GtkTextTagTable"><span class="type">GtkTextTagTable</span></a>* : Read / Write / Construct Only</pre>
|
3234
3103
|
<p>Text Tag Table.</p>
|
3235
3104
|
</div>
|
3236
3105
|
<hr>
|
3237
|
-
<div class="refsect2"
|
3106
|
+
<div class="refsect2">
|
3238
3107
|
<a name="GtkTextBuffer--text"></a><h3>The <code class="literal">"text"</code> property</h3>
|
3239
3108
|
<pre class="programlisting"> "text" <a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a>* : Read / Write</pre>
|
3240
3109
|
<p>
|
@@ -3245,15 +3114,15 @@ see <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-get-text" title="gt
|
|
3245
3114
|
<p class="since">Since 2.8</p>
|
3246
3115
|
</div>
|
3247
3116
|
</div>
|
3248
|
-
<div class="refsect1"
|
3117
|
+
<div class="refsect1">
|
3249
3118
|
<a name="GtkTextBuffer.signal-details"></a><h2>Signal Details</h2>
|
3250
|
-
<div class="refsect2"
|
3119
|
+
<div class="refsect2">
|
3251
3120
|
<a name="GtkTextBuffer-apply-tag"></a><h3>The <code class="literal">"apply-tag"</code> signal</h3>
|
3252
3121
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3253
3122
|
<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
|
3254
|
-
<a class="link" href="
|
3255
|
-
<a class="link" href="
|
3256
|
-
<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>
|
3123
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start,
|
3124
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end,
|
3125
|
+
<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>
|
3257
3126
|
<p>
|
3258
3127
|
The ::apply-tag signal is emitted to apply a tag to a
|
3259
3128
|
range of text in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
@@ -3274,23 +3143,19 @@ See also:
|
|
3274
3143
|
<tbody>
|
3275
3144
|
<tr>
|
3276
3145
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3277
|
-
<td>the object which received the signal
|
3278
|
-
</td>
|
3146
|
+
<td>the object which received the signal</td>
|
3279
3147
|
</tr>
|
3280
3148
|
<tr>
|
3281
3149
|
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3282
|
-
<td>the applied tag
|
3283
|
-
</td>
|
3150
|
+
<td>the applied tag</td>
|
3284
3151
|
</tr>
|
3285
3152
|
<tr>
|
3286
3153
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
3287
|
-
<td>the start of the range the tag is applied to
|
3288
|
-
</td>
|
3154
|
+
<td>the start of the range the tag is applied to</td>
|
3289
3155
|
</tr>
|
3290
3156
|
<tr>
|
3291
3157
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
3292
|
-
<td>the end of the range the tag is applied to
|
3293
|
-
</td>
|
3158
|
+
<td>the end of the range the tag is applied to</td>
|
3294
3159
|
</tr>
|
3295
3160
|
<tr>
|
3296
3161
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3300,10 +3165,10 @@ See also:
|
|
3300
3165
|
</table></div>
|
3301
3166
|
</div>
|
3302
3167
|
<hr>
|
3303
|
-
<div class="refsect2"
|
3168
|
+
<div class="refsect2">
|
3304
3169
|
<a name="GtkTextBuffer-begin-user-action"></a><h3>The <code class="literal">"begin-user-action"</code> signal</h3>
|
3305
3170
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3306
|
-
<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>
|
3171
|
+
<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>
|
3307
3172
|
<p>
|
3308
3173
|
The ::begin-user-action signal is emitted at the beginning of a single
|
3309
3174
|
user-visible operation on a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
@@ -3322,8 +3187,7 @@ See also:
|
|
3322
3187
|
<tbody>
|
3323
3188
|
<tr>
|
3324
3189
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3325
|
-
<td>the object which received the signal
|
3326
|
-
</td>
|
3190
|
+
<td>the object which received the signal</td>
|
3327
3191
|
</tr>
|
3328
3192
|
<tr>
|
3329
3193
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3333,10 +3197,10 @@ See also:
|
|
3333
3197
|
</table></div>
|
3334
3198
|
</div>
|
3335
3199
|
<hr>
|
3336
|
-
<div class="refsect2"
|
3200
|
+
<div class="refsect2">
|
3337
3201
|
<a name="GtkTextBuffer-changed"></a><h3>The <code class="literal">"changed"</code> signal</h3>
|
3338
3202
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3339
|
-
<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>
|
3203
|
+
<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>
|
3340
3204
|
<p>
|
3341
3205
|
The ::changed signal is emitted when the content of a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>
|
3342
3206
|
has changed.
|
@@ -3346,8 +3210,7 @@ has changed.
|
|
3346
3210
|
<tbody>
|
3347
3211
|
<tr>
|
3348
3212
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3349
|
-
<td>the object which received the signal
|
3350
|
-
</td>
|
3213
|
+
<td>the object which received the signal</td>
|
3351
3214
|
</tr>
|
3352
3215
|
<tr>
|
3353
3216
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3357,12 +3220,12 @@ has changed.
|
|
3357
3220
|
</table></div>
|
3358
3221
|
</div>
|
3359
3222
|
<hr>
|
3360
|
-
<div class="refsect2"
|
3223
|
+
<div class="refsect2">
|
3361
3224
|
<a name="GtkTextBuffer-delete-range"></a><h3>The <code class="literal">"delete-range"</code> signal</h3>
|
3362
3225
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3363
|
-
<a class="link" href="
|
3364
|
-
<a class="link" href="
|
3365
|
-
<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>
|
3226
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start,
|
3227
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end,
|
3228
|
+
<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>
|
3366
3229
|
<p>
|
3367
3230
|
The ::delete-range signal is emitted to delete a range
|
3368
3231
|
from a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
@@ -3383,18 +3246,15 @@ See also: <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete" title
|
|
3383
3246
|
<tbody>
|
3384
3247
|
<tr>
|
3385
3248
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3386
|
-
<td>the object which received the signal
|
3387
|
-
</td>
|
3249
|
+
<td>the object which received the signal</td>
|
3388
3250
|
</tr>
|
3389
3251
|
<tr>
|
3390
3252
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
3391
|
-
<td>the start of the range to be deleted
|
3392
|
-
</td>
|
3253
|
+
<td>the start of the range to be deleted</td>
|
3393
3254
|
</tr>
|
3394
3255
|
<tr>
|
3395
3256
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
3396
|
-
<td>the end of the range to be deleted
|
3397
|
-
</td>
|
3257
|
+
<td>the end of the range to be deleted</td>
|
3398
3258
|
</tr>
|
3399
3259
|
<tr>
|
3400
3260
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3404,10 +3264,10 @@ See also: <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-delete" title
|
|
3404
3264
|
</table></div>
|
3405
3265
|
</div>
|
3406
3266
|
<hr>
|
3407
|
-
<div class="refsect2"
|
3267
|
+
<div class="refsect2">
|
3408
3268
|
<a name="GtkTextBuffer-end-user-action"></a><h3>The <code class="literal">"end-user-action"</code> signal</h3>
|
3409
3269
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3410
|
-
<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>
|
3270
|
+
<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>
|
3411
3271
|
<p>
|
3412
3272
|
The ::end-user-action signal is emitted at the end of a single
|
3413
3273
|
user-visible operation on the <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
@@ -3427,8 +3287,7 @@ See also:
|
|
3427
3287
|
<tbody>
|
3428
3288
|
<tr>
|
3429
3289
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3430
|
-
<td>the object which received the signal
|
3431
|
-
</td>
|
3290
|
+
<td>the object which received the signal</td>
|
3432
3291
|
</tr>
|
3433
3292
|
<tr>
|
3434
3293
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3438,12 +3297,12 @@ See also:
|
|
3438
3297
|
</table></div>
|
3439
3298
|
</div>
|
3440
3299
|
<hr>
|
3441
|
-
<div class="refsect2"
|
3300
|
+
<div class="refsect2">
|
3442
3301
|
<a name="GtkTextBuffer-insert-child-anchor"></a><h3>The <code class="literal">"insert-child-anchor"</code> signal</h3>
|
3443
3302
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3444
|
-
<a class="link" href="
|
3303
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
|
3445
3304
|
<a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> *anchor,
|
3446
|
-
<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>
|
3305
|
+
<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>
|
3447
3306
|
<p>
|
3448
3307
|
The ::insert-child-anchor signal is emitted to insert a
|
3449
3308
|
<a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
@@ -3463,8 +3322,7 @@ See also: <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-child-
|
|
3463
3322
|
<tbody>
|
3464
3323
|
<tr>
|
3465
3324
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3466
|
-
<td>the object which received the signal
|
3467
|
-
</td>
|
3325
|
+
<td>the object which received the signal</td>
|
3468
3326
|
</tr>
|
3469
3327
|
<tr>
|
3470
3328
|
<td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
|
@@ -3473,8 +3331,7 @@ See also: <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-child-
|
|
3473
3331
|
</tr>
|
3474
3332
|
<tr>
|
3475
3333
|
<td><p><span class="term"><em class="parameter"><code>anchor</code></em> :</span></p></td>
|
3476
|
-
<td>the <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> to be inserted
|
3477
|
-
</td>
|
3334
|
+
<td>the <a class="link" href="GtkTextView.html#GtkTextChildAnchor"><span class="type">GtkTextChildAnchor</span></a> to be inserted</td>
|
3478
3335
|
</tr>
|
3479
3336
|
<tr>
|
3480
3337
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3484,14 +3341,14 @@ See also: <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-child-
|
|
3484
3341
|
</table></div>
|
3485
3342
|
</div>
|
3486
3343
|
<hr>
|
3487
|
-
<div class="refsect2"
|
3344
|
+
<div class="refsect2">
|
3488
3345
|
<a name="GtkTextBuffer-insert-pixbuf"></a><h3>The <code class="literal">"insert-pixbuf"</code> signal</h3>
|
3489
3346
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3490
|
-
<a class="link" href="
|
3491
|
-
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
3492
|
-
<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>
|
3347
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
|
3348
|
+
<a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> *pixbuf,
|
3349
|
+
<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>
|
3493
3350
|
<p>
|
3494
|
-
The ::insert-pixbuf signal is emitted to insert a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
3351
|
+
The ::insert-pixbuf signal is emitted to insert a <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a>
|
3495
3352
|
in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>. Insertion actually occurs in the default handler.
|
3496
3353
|
</p>
|
3497
3354
|
<p>
|
@@ -3508,8 +3365,7 @@ See also: <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-pixbuf
|
|
3508
3365
|
<tbody>
|
3509
3366
|
<tr>
|
3510
3367
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3511
|
-
<td>the object which received the signal
|
3512
|
-
</td>
|
3368
|
+
<td>the object which received the signal</td>
|
3513
3369
|
</tr>
|
3514
3370
|
<tr>
|
3515
3371
|
<td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
|
@@ -3518,8 +3374,7 @@ See also: <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-pixbuf
|
|
3518
3374
|
</tr>
|
3519
3375
|
<tr>
|
3520
3376
|
<td><p><span class="term"><em class="parameter"><code>pixbuf</code></em> :</span></p></td>
|
3521
|
-
<td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-
|
3522
|
-
</td>
|
3377
|
+
<td>the <a href="http://library.gnome.org/devel/gdk-pixbuf/unstable/gdk-pixbuf-The-GdkPixbuf-Structure.html#GdkPixbuf"><span class="type">GdkPixbuf</span></a> to be inserted</td>
|
3523
3378
|
</tr>
|
3524
3379
|
<tr>
|
3525
3380
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3529,13 +3384,13 @@ See also: <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-insert-pixbuf
|
|
3529
3384
|
</table></div>
|
3530
3385
|
</div>
|
3531
3386
|
<hr>
|
3532
|
-
<div class="refsect2"
|
3387
|
+
<div class="refsect2">
|
3533
3388
|
<a name="GtkTextBuffer-insert-text"></a><h3>The <code class="literal">"insert-text"</code> signal</h3>
|
3534
3389
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3535
|
-
<a class="link" href="
|
3390
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
|
3536
3391
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gchar"><span class="type">gchar</span></a> *text,
|
3537
3392
|
<a href="http://library.gnome.org/devel/glib/unstable/glib-Basic-Types.html#gint"><span class="type">gint</span></a> len,
|
3538
|
-
<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>
|
3393
|
+
<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>
|
3539
3394
|
<p>
|
3540
3395
|
The ::insert-text signal is emitted to insert text in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
3541
3396
|
Insertion actually occurs in the default handler.
|
@@ -3556,8 +3411,7 @@ See also:
|
|
3556
3411
|
<tbody>
|
3557
3412
|
<tr>
|
3558
3413
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3559
|
-
<td>the object which received the signal
|
3560
|
-
</td>
|
3414
|
+
<td>the object which received the signal</td>
|
3561
3415
|
</tr>
|
3562
3416
|
<tr>
|
3563
3417
|
<td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
|
@@ -3566,13 +3420,11 @@ See also:
|
|
3566
3420
|
</tr>
|
3567
3421
|
<tr>
|
3568
3422
|
<td><p><span class="term"><em class="parameter"><code>text</code></em> :</span></p></td>
|
3569
|
-
<td>the UTF-8 text to be inserted
|
3570
|
-
</td>
|
3423
|
+
<td>the UTF-8 text to be inserted</td>
|
3571
3424
|
</tr>
|
3572
3425
|
<tr>
|
3573
3426
|
<td><p><span class="term"><em class="parameter"><code>len</code></em> :</span></p></td>
|
3574
|
-
<td>length of the inserted text in bytes
|
3575
|
-
</td>
|
3427
|
+
<td>length of the inserted text in bytes</td>
|
3576
3428
|
</tr>
|
3577
3429
|
<tr>
|
3578
3430
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3582,11 +3434,11 @@ See also:
|
|
3582
3434
|
</table></div>
|
3583
3435
|
</div>
|
3584
3436
|
<hr>
|
3585
|
-
<div class="refsect2"
|
3437
|
+
<div class="refsect2">
|
3586
3438
|
<a name="GtkTextBuffer-mark-deleted"></a><h3>The <code class="literal">"mark-deleted"</code> signal</h3>
|
3587
3439
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3588
3440
|
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark,
|
3589
|
-
<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>
|
3441
|
+
<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>
|
3590
3442
|
<p>
|
3591
3443
|
The ::mark-deleted signal is emitted as notification
|
3592
3444
|
after a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> is deleted.
|
@@ -3600,13 +3452,11 @@ See also:
|
|
3600
3452
|
<tbody>
|
3601
3453
|
<tr>
|
3602
3454
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3603
|
-
<td>the object which received the signal
|
3604
|
-
</td>
|
3455
|
+
<td>the object which received the signal</td>
|
3605
3456
|
</tr>
|
3606
3457
|
<tr>
|
3607
3458
|
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
3608
|
-
<td>The mark that was deleted
|
3609
|
-
</td>
|
3459
|
+
<td>The mark that was deleted</td>
|
3610
3460
|
</tr>
|
3611
3461
|
<tr>
|
3612
3462
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3616,12 +3466,12 @@ See also:
|
|
3616
3466
|
</table></div>
|
3617
3467
|
</div>
|
3618
3468
|
<hr>
|
3619
|
-
<div class="refsect2"
|
3469
|
+
<div class="refsect2">
|
3620
3470
|
<a name="GtkTextBuffer-mark-set"></a><h3>The <code class="literal">"mark-set"</code> signal</h3>
|
3621
3471
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3622
|
-
<a class="link" href="
|
3472
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *location,
|
3623
3473
|
<a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> *mark,
|
3624
|
-
<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>
|
3474
|
+
<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>
|
3625
3475
|
<p>
|
3626
3476
|
The ::mark-set signal is emitted as notification
|
3627
3477
|
after a <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a> is set.
|
@@ -3636,8 +3486,7 @@ See also:
|
|
3636
3486
|
<tbody>
|
3637
3487
|
<tr>
|
3638
3488
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3639
|
-
<td>the object which received the signal
|
3640
|
-
</td>
|
3489
|
+
<td>the object which received the signal</td>
|
3641
3490
|
</tr>
|
3642
3491
|
<tr>
|
3643
3492
|
<td><p><span class="term"><em class="parameter"><code>location</code></em> :</span></p></td>
|
@@ -3646,8 +3495,7 @@ See also:
|
|
3646
3495
|
</tr>
|
3647
3496
|
<tr>
|
3648
3497
|
<td><p><span class="term"><em class="parameter"><code>mark</code></em> :</span></p></td>
|
3649
|
-
<td>The mark that is set
|
3650
|
-
</td>
|
3498
|
+
<td>The mark that is set</td>
|
3651
3499
|
</tr>
|
3652
3500
|
<tr>
|
3653
3501
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3657,10 +3505,10 @@ See also:
|
|
3657
3505
|
</table></div>
|
3658
3506
|
</div>
|
3659
3507
|
<hr>
|
3660
|
-
<div class="refsect2"
|
3508
|
+
<div class="refsect2">
|
3661
3509
|
<a name="GtkTextBuffer-modified-changed"></a><h3>The <code class="literal">"modified-changed"</code> signal</h3>
|
3662
3510
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3663
|
-
<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>
|
3511
|
+
<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>
|
3664
3512
|
<p>
|
3665
3513
|
The ::modified-changed signal is emitted when the modified bit of a
|
3666
3514
|
<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> flips.
|
@@ -3674,8 +3522,7 @@ See also:
|
|
3674
3522
|
<tbody>
|
3675
3523
|
<tr>
|
3676
3524
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3677
|
-
<td>the object which received the signal
|
3678
|
-
</td>
|
3525
|
+
<td>the object which received the signal</td>
|
3679
3526
|
</tr>
|
3680
3527
|
<tr>
|
3681
3528
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3685,11 +3532,11 @@ See also:
|
|
3685
3532
|
</table></div>
|
3686
3533
|
</div>
|
3687
3534
|
<hr>
|
3688
|
-
<div class="refsect2"
|
3535
|
+
<div class="refsect2">
|
3689
3536
|
<a name="GtkTextBuffer-paste-done"></a><h3>The <code class="literal">"paste-done"</code> signal</h3>
|
3690
3537
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3691
3538
|
<a class="link" href="gtk-Clipboards.html#GtkClipboard"><span class="type">GtkClipboard</span></a> *arg1,
|
3692
|
-
<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>
|
3539
|
+
<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>
|
3693
3540
|
<p>
|
3694
3541
|
The paste-done signal is emitted after paste operation has been completed.
|
3695
3542
|
This is useful to properly scroll the view to the end of the pasted text.
|
@@ -3700,8 +3547,7 @@ See <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-paste-clipboard" ti
|
|
3700
3547
|
<tbody>
|
3701
3548
|
<tr>
|
3702
3549
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3703
|
-
<td>the object which received the signal
|
3704
|
-
</td>
|
3550
|
+
<td>the object which received the signal</td>
|
3705
3551
|
</tr>
|
3706
3552
|
<tr>
|
3707
3553
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3712,13 +3558,13 @@ See <a class="link" href="GtkTextBuffer.html#gtk-text-buffer-paste-clipboard" ti
|
|
3712
3558
|
<p class="since">Since 2.16</p>
|
3713
3559
|
</div>
|
3714
3560
|
<hr>
|
3715
|
-
<div class="refsect2"
|
3561
|
+
<div class="refsect2">
|
3716
3562
|
<a name="GtkTextBuffer-remove-tag"></a><h3>The <code class="literal">"remove-tag"</code> signal</h3>
|
3717
3563
|
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a> *textbuffer,
|
3718
3564
|
<a class="link" href="GtkTextTag.html" title="GtkTextTag"><span class="type">GtkTextTag</span></a> *tag,
|
3719
|
-
<a class="link" href="
|
3720
|
-
<a class="link" href="
|
3721
|
-
<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>
|
3565
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *start,
|
3566
|
+
<a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a> *end,
|
3567
|
+
<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>
|
3722
3568
|
<p>
|
3723
3569
|
The ::remove-tag signal is emitted to remove all occurrences of <em class="parameter"><code>tag</code></em> from
|
3724
3570
|
a range of text in a <a class="link" href="GtkTextBuffer.html" title="GtkTextBuffer"><span class="type">GtkTextBuffer</span></a>.
|
@@ -3737,23 +3583,19 @@ See also:
|
|
3737
3583
|
<tbody>
|
3738
3584
|
<tr>
|
3739
3585
|
<td><p><span class="term"><em class="parameter"><code>textbuffer</code></em> :</span></p></td>
|
3740
|
-
<td>the object which received the signal
|
3741
|
-
</td>
|
3586
|
+
<td>the object which received the signal</td>
|
3742
3587
|
</tr>
|
3743
3588
|
<tr>
|
3744
3589
|
<td><p><span class="term"><em class="parameter"><code>tag</code></em> :</span></p></td>
|
3745
|
-
<td>the tag to be removed
|
3746
|
-
</td>
|
3590
|
+
<td>the tag to be removed</td>
|
3747
3591
|
</tr>
|
3748
3592
|
<tr>
|
3749
3593
|
<td><p><span class="term"><em class="parameter"><code>start</code></em> :</span></p></td>
|
3750
|
-
<td>the start of the range the tag is removed from
|
3751
|
-
</td>
|
3594
|
+
<td>the start of the range the tag is removed from</td>
|
3752
3595
|
</tr>
|
3753
3596
|
<tr>
|
3754
3597
|
<td><p><span class="term"><em class="parameter"><code>end</code></em> :</span></p></td>
|
3755
|
-
<td>the end of the range the tag is removed from
|
3756
|
-
</td>
|
3598
|
+
<td>the end of the range the tag is removed from</td>
|
3757
3599
|
</tr>
|
3758
3600
|
<tr>
|
3759
3601
|
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
|
@@ -3763,15 +3605,15 @@ See also:
|
|
3763
3605
|
</table></div>
|
3764
3606
|
</div>
|
3765
3607
|
</div>
|
3766
|
-
<div class="refsect1"
|
3608
|
+
<div class="refsect1">
|
3767
3609
|
<a name="GtkTextBuffer.see-also"></a><h2>See Also</h2>
|
3768
3610
|
<p>
|
3769
|
-
<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>, <a class="link" href="
|
3611
|
+
<a class="link" href="GtkTextView.html" title="GtkTextView"><span class="type">GtkTextView</span></a>, <a class="link" href="GtkTextIter.html" title="GtkTextIter"><span class="type">GtkTextIter</span></a>, <a class="link" href="GtkTextMark.html" title="GtkTextMark"><span class="type">GtkTextMark</span></a>
|
3770
3612
|
</p>
|
3771
3613
|
</div>
|
3772
3614
|
</div>
|
3773
3615
|
<div class="footer">
|
3774
3616
|
<hr>
|
3775
|
-
Generated by GTK-Doc V1.
|
3617
|
+
Generated by GTK-Doc V1.17</div>
|
3776
3618
|
</body>
|
3777
3619
|
</html>
|