From 11f2c25305c7044faa259124b0c0709bbcd18359 Mon Sep 17 00:00:00 2001 From: Mike Kestner Date: Mon, 7 Aug 2006 20:56:25 +0000 Subject: [PATCH] text buffer API changes svn path=/trunk/gtk-sharp/; revision=63449 --- doc/en/Gtk/TextBuffer.xml | 287 +++++++++++++++++++++++++++++++++++++- 1 file changed, 285 insertions(+), 2 deletions(-) diff --git a/doc/en/Gtk/TextBuffer.xml b/doc/en/Gtk/TextBuffer.xml index f3c6218a2..1412d21be 100644 --- a/doc/en/Gtk/TextBuffer.xml +++ b/doc/en/Gtk/TextBuffer.xml @@ -16,8 +16,7 @@ GLib.Object - - + @@ -1885,5 +1884,289 @@ This overload is obsolete, replaced by ref TextIter overloads since the iters passed in are updated by the caller. + + + Method + + System.Void + + + + + + format to unregister. + Removes a Serialization format from the registry. + + + + + + + Method + + Gdk.Atom + + + + + + name of tagset, or . + Registers TextBuffer's internal serialization format. + The newly registered format's mime type. + + + + + + + Method + + Gdk.Atom + + + + + + + A MIME type target. + Serialization formatter for the specified . + Registers a serialization formatter for a given MIME type. + + + + + + + + Method + + Gdk.Atom + + + + + + name of tagset, or . + Registers TextBuffer's internal serialization format. + The newly registered format's mime type. + + + + + + + Method + + Gdk.Atom + + + + + + + a MIME type target. + Serialization formatter for the specified . + Registers a deserialization handler for a given MIME type. + an atom representing the MIME type. + + + + + + + Method + + System.Void + + + + + + format Atom for a MIME type. + Removes a registered MIME type handler from the buffer. + + + + + + + Method + + System.Boolean + + + + + + a MIME type Atom. + Determines if tag creation is supported for a MIME type deserializer. + if , tag creation is supported. + + + + + + + Method + + System.Void + + + + + + + a MIME type Atom. + a . + Enables or disables arbitrary tag creation. + In most cases, you don't want to do this, as it will put arbitrary tags in the buffer. + + + + + + Property + + + GLib.Property(Name="cursor-position") + + + + System.Int32 + + + Position of the insert mark. + a representing the offset to the cursor from the beginning of the buffer. + + + + + + + Property + + + GLib.Property(Name="paste-target-list") + + + + Gtk.TargetList + + + Obtains the paste TargetList. + a . + + + + + + + Property + + + GLib.Property(Name="has-selection") + + + + System.Boolean + + + Indicates presence of a selection. + if , there is text selected currently. + + + + + + + Property + + + GLib.Property(Name="copy-target-list") + + + + Gtk.TargetList + + + Obtains the copy TargetList. + a . + + + + + + + Method + + System.Boolean + + + + + + + + + + buffer to deserialize content. + MIME type format. + insertion point. + serialized data. + length of serialized data. + Deserialize content. + a . + + + + + + + Method + + System.Byte[] + + + + + + + + + buffer containing text to serialize. + MIME type format. + beginning of desired text. + end of desired text. + Serializes a range of text. + the serialized data stream. + + + + + + + Property + + Gdk.Atom[] + + + The supported MIME type formats for deserialization. + an array of MIME type Atoms. + + + + + + Property + + Gdk.Atom[] + + + The supported MIME type formats for Serialization. + an array of MIME type Atoms. + + + +