gtk-sharp 2.6.0.0 Gtk# is thread aware, but not thread safe; See the Gtk# Thread Programming for details. This is a store for formatted text for display in a . GLib.Object Method System.Void Clears the contents of the buffer Method System.Void Deletes the mark named ; the mark must exist. the name of a mark in buffer See for more details. Method System.Void Retrieves the first and last iterators in the buffer, i.e. the entire buffer. A object to store the location of the beginning of the buffer. A object to store the location of the end of the buffer. Method System.Void Fires the events and removes all occurrences of from the given range the to remove the beginning of the range the end of the range Fires the event. The default handler for the signal removes all occurrences of tag from the given range. and . Method System.Void Removes all tags in the range between and . The beginning of the range The end of the range Removes all tags in the range between start and end. Be careful with this function; it could remove tags added in code unrelated to the code you are currently writing. That is, calling this method is probably a bad idea if you have two or more unrelated code sections that add tags. Method Gtk.TextMark Returns the mark named name in buffer buffer, or if no such mark exists in the buffer. the name of a mark Returns the mark named name in buffer buffer, or if no such mark exists in the buffer. Method System.Void Should be paired with a call to . See for an explanation. Method System.Void Inserts a child widget anchor into the text buffer. location to insert the anchor a . Inserts a child widget anchor into the text buffer at . The anchor will be counted as one character in character counts, and when obtaining the buffer contents as a string, will be represented by the Unicode "object replacement character" 0xFFFC. Note that the "slice" variants for obtaining portions of the buffer as a string include this character for pixbufs, but the "text" variants do not. e.g. see and ). Consider as a more convenient alternative to this function. The buffer will add a reference to the anchor, so you can unref it after insertion. Method System.Boolean Returns if some text is selected the location of the beginning of the selection the location of the end of the selection Returns if the selection has nonzero length Returns if some text is selected; and sets the bounds of the selection in and (if the selection has length 0, then start and end are filled in with the same value). and will be in ascending order. If and are , then they are not filled in, but the return value still indicates whether text is selected. Method System.Void Called to indicate that the buffer operations between here and a call to are part of a single user-visible operation. The operations between and can then be grouped when creating an undo stack. maintains a count of calls to that have not been closed with a call to , and emits and signals only for the outermost pair of calls. This allows you to build user actions from other user actions. The "interactive" buffer mutation functions, such as , automatically call begin/end user action around the buffer operations they perform, so there is no need to add extra calls if you user action consists solely of a single call to one of those functions. Method System.Void Pastes the contents of a clipboard at the insertion point, or at . the to paste from the location to insert pasted text, or for at the cursor whether the buffer is editable by default Pastes the contents of a clipboard at the insertion point, or at . (Note: pasting is asynchronous, that is, we will ask for the paste data and return, and at some point later after the main loop runs, the paste data will be inserted.) Method System.Void Moves mark to the new location . a . the new location for mark in buffer Moves mark to the new location where. Fires the event as notification of the move. Method System.String Returns the text from to . the start of a range the end of the range whether to include invisible text a string containing the text from to Returns the text in the range from to . Excludes undisplayed text (text marked with tags that set the invisibility attribute) if is . The returned string includes a 0xFFFC character whenever the buffer contains embedded images, so byte and character indexes into the returned string do correspond to byte and character indexes into the buffer. Contrast with . Note that 0xFFFC can occur in normal text as well, so it is not a reliable indicator that a pixbuf or widget is in the buffer. Method Gtk.TextChildAnchor This is a convenience function which simply creates a child anchor with and inserts it into the buffer with . the location in the buffer the created child anchor This is a convenience function which simply creates a child anchor with and inserts it into the buffer with . The new anchor is owned by the buffer; no reference count is returned to the caller of . Method System.Void Fires the events on buffer. a the beginning of the range to be tagged the end of the range to be tagged The default handler for the signal applies tag to the given range. and do not have to be in order. Method System.Void Copies text, tags, and pixbufs between and and inserts the copy at . a position in buffer a position in the source a position in the source Copies text, tags, and pixbufs between and (the order does not matter) and inserts the copy at . Used instead of simply getting/inserting text because it preserves images and tags. If and are in a different buffer from buffer, the two buffers must share the same tag table. This method is implemented with the and events. Method System.Void Calls on the buffer's tag table to get a , then calls the name of the tag the beginning of the buffer to be untagged the end of the buffer to be untagged Method System.Boolean Deletes the currently-selected text whether the deletion is caused by user interaction whether the buffer is editable by default whether there was a non-empty selection to delete Deletes the range between the "insert" and "selection_bound" marks, that is, the currently-selected text. If is , the editability of the selection will be considered (users can't delete uneditable text). Method System.Boolean Deletes all editable text in the given range. the beginning of range to delete the end of the range to delete whether the buffer is editable by default whether some text was actually deleted Deletes all editable text in the given range. Calls for each editable sub-range of and . and are revalidated to point to the location of the last deleted range, or left untouched if no text was deleted. Method System.Void Removes a added with . an object of type Method System.Void Deletes text between and . a position in the buffer a position in the buffer Deletes text between and . The order of the two is not actually relevant, as they will be reordered. This function actually fires off the event, and the default handler of that signal deletes the text. Because the buffer is modified, all outstanding iterators become invalid after calling this function; however, and will be re-initialized to point to the location where text was deleted. Method System.Void Moves the "insert" and "selection_bound" marks simultaneously. where to put the cursor This function moves the "insert" and "selection_bound" marks simultaneously. If you move them to the same place in two steps with , you will temporarily select a region in between their old and new locations, which can be pretty inefficient since the temporarily-selected region will force stuff to be recalculated. This function moves them as a unit, which can be optimized. Method System.Void Adds to the list of clipboards in which the selection contents of buffer are available. an object of type In most cases, clipboard will be the of type for a view of buffer. Method System.Void Deletes mark, so that it is no longer located anywhere in the buffer. a in the buffer to be deleted. Deletes mark, so that it is no longer located anywhere in the buffer. There is no way to undelete a mark. will return after this function has been called on a mark; indicates that a mark no longer belongs to a buffer. The event will be raised as notification after the mark is deleted. Method Gtk.TextMark Creates a mark at position . name for mark, or . location to place mark whether the mark has left gravity a new object Creates a mark at position . If is , the mark is anonymous; otherwise, the mark can be retrieved by name using . If a mark has left gravity, and text is inserted at the current location of the mark, the mark will be moved to the left of the newly-inserted text. If the mark has right gravity (ie. = ), the mark will end up on the right of newly-inserted text. The standard left-to-right cursor is a mark with right gravity (when you type, the cursor stays on the right side of the text you are typing). Fires the event as notification of the initial placement of the mark. Method System.Void Copies the buffer's selected text to the given . The to copy the text to. Copying a 's selected text: void Copy (Gtk.TextView view) { Gtk.TextBuffer buffer = view.Buffer; Gtk.Clipboard board = Clipboard.Get (Gdk.Selection.Clipboard); buffer.CopyClipboard (board); } Method System.Void Moves the mark named (which must exist) to location . the name of the mark the new location for mark It is possible to use built-in marks to implement a "Select All" method on a buffer (e.g. ). private void SelectAll (TextBuffer buffer) { buffer.MoveMark ("insert", buffer.StartIter); buffer.MoveMark ("selection_bound", buffer.EndIter); } See for more details. Method System.Boolean Same as , but does nothing if the insertion point is not editable. a position in buffer a position in the source a position in the source whether the text is editable at if no tags enclosing iter affect editability if an insertion was possible at Same as , but does nothing if the insertion point is not editable. The parameter indicates whether the text is editable at if no tags enclosing iter affect editability. Typically the result of is appropriate here. Method System.String Returns the text from a specified range the beginning of the specified range the end of the specified range whether to include invisible text a string containing the text from the specified range Returns the text in the range specified by and . Excludes undisplayed text (text marked with tags that set the invisibility attribute) if is . Does not include characters representing embedded images, so byte and character indexes into the returned string do not correspond to byte and character indexes into the buffer. Contrast this with . Method System.Void Fires the event on buffer. The default handler for the signal applies tag to the given range. the name of the tag the location of the beginning of the range the location of the end of the range The order for and is not important. Method System.Void Inserts an image into the text buffer at . The location to insert the image The image to be inserted Inserts an image into the text buffer at . The image will be counted as one character in character counts, and when obtaining the buffer contents as a string, will be represented by the Unicode "object replacement character" 0xFFFC. Note that the "slice" variants for obtaining portions of the buffer as a string include this character for pixbufs, but the "text" variants do not. e.g. see and . Method System.Void Copies the currently-selected text to a clipboard, then deletes said text if it is editable. an object of type an object of type Constructor Internal constructor Pointer to the C object. This is an internal constructor, and should not be used by user code. Constructor Creates a new text buffer. a tag table, or to create a new one Property System.String The complete contents of the buffer The contents of the current buffer Property System.Int32 Obtains the number of lines in the buffer. The number of lines in the buffer The results of this method is cached, so this is very fast. Property Gtk.TextIter The end of the buffer The location of the end of the buffer Property System.Boolean Whether or not the buffer has been modified if the buffer has been modified, otherwise. Whenever the buffer is saved to disk, set this property to . When the buffer is modified, it will automatically toggled to . Whenever this property is changed, the event is raised. Property Gtk.TextTagTable The tag table of the current buffer The current of the buffer GLib.Property(Name="tag_table") Property Gtk.TextMark Returns the mark that represents the selection bound. a Returns the mark that represents the selection bound. Equivalent to calling to get the mark named "selection_bound", but very slightly more efficient, and involves less typing. The currently-selected text in buffer is the region between the "selection_bound" and "insert" marks. If "selection_bound" and "insert" are in the same place, then there is no current selection. is another convenient function for handling the selection, if you just want to know whether there is a selection and what its bounds are. Property Gtk.TextMark Returns the mark that represents the cursor (insertion point). The mark of the insert point. This is equivelant to calling for the mark named "insert". Property System.Int32 The number of characters in the buffer The number of characters in the buffer The result of this method is cached, so it is very fast. Property Gtk.TextIter The location of the beginning of the buffer The location of the beginning of the buffer This is the equivelant to calling to get the iter at character offset 0. Event System.EventHandler Emitted when a UserAction ends on the buffer. GLib.Signal(CName="end_user_action") Event Gtk.TagRemovedHandler Emitted when a tag is removed from the buffer. GLib.Signal(CName="remove_tag") Event System.EventHandler Emitted when a UserAction is begun on the buffer. GLib.Signal(CName="begin_user_action") Event Gtk.MarkSetHandler Emitted when a mark is set in the buffer. GLib.Signal(CName="mark_set") Event Gtk.TagAppliedHandler Emitted when a tag is applied to the buffer. GLib.Signal(CName="apply_tag") Event Gtk.ChildAnchorInsertedHandler Emitted when a ChildAnchor has been inserted in the buffer. GLib.Signal(CName="insert_child_anchor") Event Gtk.MarkDeletedHandler Emitted when a mark has been deleted from the buffer. GLib.Signal(CName="mark_deleted") Event Gtk.DeleteRangeHandler Emitted when a range of text has been deleted from the buffer. GLib.Signal(CName="delete_range") Event Gtk.PixbufInsertedHandler Emitted when a Pixbuf is inserted into the buffer. GLib.Signal(CName="insert_pixbuf") Event System.EventHandler Emitted when the text in the buffer has been changed. GLib.Signal(CName="changed") Event Gtk.InsertTextHandler Emitted when text is inserted into the buffer. GLib.Signal(CName="insert_text") Event System.EventHandler Emitted when the Modified status of the buffer is changed. GLib.Signal(CName="modified_changed") Method Gtk.TextIter Returns the location at a particular character offset The requested character offset The location at Method System.Void Insert text into the current cursor position The text to be inserted The event is raised when a call to this method is made. Method System.Void Insert text at a specific point The location for to be inserted The text to be inserted Method System.Boolean Insert text at cursor position if the location is editable The text to be inserted The default editability of the buffer Whether or not was inserted See for more details. Method System.Boolean Insert text if the cursor is at an editable point in the buffer a location in the buffer the text to be inserted the default editability of buffer whether text was actually inserted Similar to , but the insertion will not occur if is at a non-editable location in the buffer. Usually you want to prevent insertions at ineditable locations if the insertion results from a user action (is interactive). indicates the editability of text that does not have a tag affecting editability applied to it. Typically the result of is appropriate here. Method System.Void Set the contents of the buffer The new contents of the buffer This is equivelant to using the setter of the property. Method System.Void Pastes the contents of a clipboard at the insertion point. a Property GLib.GType GType Property. a Returns the native value for . Method System.Void Default handler for the event. Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. a a Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. a a Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. a a Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. a Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. a a Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. a a a Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. a a Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. a a a Override this method in a subclass to provide a default handler for the event. Method System.Void Default handler for the event. Override this method in a subclass to provide a default handler for the event. Constructor Protected Constructor. a Chain to this constructor if you have manually registered a native value for your subclass. System.Obsolete(Message=null, IsError=False) Method Gtk.TextIter Gets the location of a specific point. a a The location at the location specified by and . Method Gtk.TextIter Gets the location of a particular line. The specified line number. The location at the beginning fo the line as specified by . Method Gtk.TextIter Gets the location of the specified mark. The specified mark. The location of . Method Gtk.TextIter Gets the location of the specific anchor. A at the current buffer. The location at . Method Gtk.TextIter Obtains an iterator pointing to within the given line. A line number for the current buffer, counting from 0. The byte index from start of line. The location as specified by and . must be the start of a UTF-8 character, and must not be beyond the end of the line. Note bytes, not characters; UTF-8 may encode one character as multiple bytes. Method System.Void System.ParamArray Inserts into buffer at , applying the list of to the newly-inserted text. location to insert the text text to insert tags to apply to Equivalent to calling , then on the inserted text; It is just a convenience function. Method System.Void System.ParamArray Inserts into buffer at , applying the list of tags with names to the newly-inserted text. location to insert the text text to insert names of the tags to apply to Equivalent to calling , then on the inserted text; It is just a convenience function. Method System.Void This function moves the and marks simultaneously. a a If you move them in two steps with , you will temporarily select a region in between their old and new locations, which can be pretty inefficient since the temporarily-selected region will force stuff to be recalculated. This function moves them as a unit, which can be optimized. Method System.Boolean To be added a a a a To be added Method System.Void System.ParamArray To be added. To be added. To be added. Inserts text with tag information. The overload is obsolete, replace by the ref TextIter overload. Method System.Void To be added. To be added. Inserts text. The overload is obsolete, replace by the ref TextIter overload. Method System.Void To be added. To be added. To be added. Inserts a range of text. This overload is obsolete, replaced by ref TextIter overloads since the iters passed in are updated by the caller. Method System.Void To be added. To be added. Delete text between two iterators. This overload is obsolete, replaced by ref TextIter overloads since the iters passed in are updated by the caller.