Uses of Class
org.gnu.gtk.TextIter

Packages that use TextIter
org.gnu.gtk   
 

Uses of TextIter in org.gnu.gtk
 

Methods in org.gnu.gtk that return TextIter
 TextIter TextBuffer.getIter(int lineNumber, int charOffset)
          Obtains an iterator pointing to charOffset within the given line.
 TextIter TextBuffer.getIter(int charOffset)
          Obtains an iterator pointing to charOffset within the entire string, statring from the beginning
 TextIter TextBuffer.getLineIter(int line)
          Obtains an iterator pointing to the start of the given line
 TextIter TextBuffer.getIter(TextMark mark)
          Returns an iter at the given mark
 TextIter TextBuffer.getIter(TextChildAnchor anchor)
          Obtains the location of anchor within buffer.
 TextIter TextBuffer.getStartIter()
          Returns an iterator for the start of the text
 TextIter TextBuffer.getEndIter()
          Returns Iterator for the end of the text
 TextIter TextBuffer.getSelectionStart()
          Returns an iterator for the start of the selected text, or null if no text is selected.
 TextIter TextBuffer.getSelectionEnd()
          Returns an iterator for the end of the selection, or null if no text is selected.
 

Methods in org.gnu.gtk with parameters of type TextIter
 boolean TextIter.searchForward(java.lang.String str, TextSearchFlags flags, TextIter matchStart, TextIter matchEnd, TextIter limit)
          Searches forward for str.
 boolean TextIter.searchForward(java.lang.String str, TextSearchFlags flags, TextIter matchStart, TextIter matchEnd, TextIter limit)
          Searches forward for str.
 boolean TextIter.searchForward(java.lang.String str, TextSearchFlags flags, TextIter matchStart, TextIter matchEnd, TextIter limit)
          Searches forward for str.
 boolean TextIter.searchBackward(java.lang.String str, TextSearchFlags flags, TextIter matchStart, TextIter matchEnd, TextIter limit)
          Same as searchForward(String, TextSearchFlags, TextIter , TextIter , TextIter), but moves backward.
 boolean TextIter.searchBackward(java.lang.String str, TextSearchFlags flags, TextIter matchStart, TextIter matchEnd, TextIter limit)
          Same as searchForward(String, TextSearchFlags, TextIter , TextIter , TextIter), but moves backward.
 boolean TextIter.searchBackward(java.lang.String str, TextSearchFlags flags, TextIter matchStart, TextIter matchEnd, TextIter limit)
          Same as searchForward(String, TextSearchFlags, TextIter , TextIter , TextIter), but moves backward.
 boolean TextIter.equals(TextIter other)
          Tests whether two iterators are equal, using the fastest possible mechanism.
 int TextIter.cmp(TextIter other)
          A qsort()-style function that returns negative if lhs is less than rhs, positive if lhs is greater than rhs, and 0 if they're equal.
 boolean TextIter.inRange(TextIter start, TextIter end)
          Checks whether iter falls in the range [start, end).
 boolean TextIter.inRange(TextIter start, TextIter end)
          Checks whether iter falls in the range [start, end).
 boolean TextView.scrollToIter(TextIter iter, double withinMargin, double xAlign, double yAlign)
          Scrolls text view so that iter is on the screen in the position indicated by xalign and yalign.
 boolean TextView.scrollToIter(TextIter iter, double withinMargin)
          Scrolls text view so that iter is on the screen.
 void TextBuffer.insertText(TextIter iter, java.lang.String text)
          Inserts text at position iter.
 boolean TextBuffer.insertTextInteractive(TextIter iter, java.lang.String text, boolean defaultEditable)
          Like TextBuffer.insertText(TextIter, String), but the insertion will not occur if iter is at a non-editable location in the buffer.
 void TextBuffer.insertRange(TextIter iter, TextIter start, TextIter end)
          Copies text, tags, and pixbufs between start and end (the order of start and end doesn't matter) and inserts the copy at iter.
 void TextBuffer.insertRange(TextIter iter, TextIter start, TextIter end)
          Copies text, tags, and pixbufs between start and end (the order of start and end doesn't matter) and inserts the copy at iter.
 void TextBuffer.insertRange(TextIter iter, TextIter start, TextIter end)
          Copies text, tags, and pixbufs between start and end (the order of start and end doesn't matter) and inserts the copy at iter.
 void TextBuffer.insertText(TextIter iter, java.lang.String text, java.lang.String tag)
          Inserts text and applies a tag to that text.
 void TextBuffer.insertText(TextIter iter, java.lang.String text, java.lang.String[] tags)
          Inserts text and applies tags to that text.
 boolean TextBuffer.insertRangeInteractive(TextIter iter, TextIter start, TextIter end, boolean defaultEditable)
          Same as TextBuffer.insertRange(TextIter, TextIter, TextIter), but does nothing if the insertion point isn't editable.
 boolean TextBuffer.insertRangeInteractive(TextIter iter, TextIter start, TextIter end, boolean defaultEditable)
          Same as TextBuffer.insertRange(TextIter, TextIter, TextIter), but does nothing if the insertion point isn't editable.
 boolean TextBuffer.insertRangeInteractive(TextIter iter, TextIter start, TextIter end, boolean defaultEditable)
          Same as TextBuffer.insertRange(TextIter, TextIter, TextIter), but does nothing if the insertion point isn't editable.
 void TextBuffer.deleteText(TextIter start, TextIter end)
          Deletes text between start and end.
 void TextBuffer.deleteText(TextIter start, TextIter end)
          Deletes text between start and end.
 boolean TextBuffer.deleteTextInteractive(TextIter start, TextIter end, boolean defaultEditable)
          Deletes all editable text in the given range.
 boolean TextBuffer.deleteTextInteractive(TextIter start, TextIter end, boolean defaultEditable)
          Deletes all editable text in the given range.
 java.lang.String TextBuffer.getText(TextIter start, TextIter end, boolean includeHiddenChars)
          Returns the text in the range start,end.
 java.lang.String TextBuffer.getText(TextIter start, TextIter end, boolean includeHiddenChars)
          Returns the text in the range start,end.
 java.lang.String TextBuffer.getSlice(TextIter start, TextIter end, boolean includeHiddenChars)
          Returns the text in the range start,end.
 java.lang.String TextBuffer.getSlice(TextIter start, TextIter end, boolean includeHiddenChars)
          Returns the text in the range start,end.
 void TextBuffer.insertPixbuf(TextIter iter, Pixbuf pixbuf)
          Inserts an image into the text buffer at iter.
 void TextBuffer.inserChildAnchor(TextIter iter, TextChildAnchor anchor)
          Inserts a child widget anchor into the text buffer at iter.
 TextChildAnchor TextBuffer.createChildAnchor(TextIter iter)
          This is a convenience function which simply creates a child anchor with {link TextChildAnchor#TextChildAnchor()} and inserts it into the buffer
 TextMark TextBuffer.createMark(java.lang.String markName, TextIter where, boolean leftGravity)
          Creates a mark at position where.
 void TextBuffer.moveMark(TextMark mark, TextIter where)
          Moves mark to the new location where.
 void TextBuffer.moveMark(java.lang.String name, TextIter where)
          Moves the mark named name (which must exist) to location where
 void TextBuffer.placeCursor(TextIter where)
          This function moves the "insert" and "selection_bound" marks simultaneously.
 void TextBuffer.applyTag(TextTag tag, TextIter start, TextIter end)
          Emits the "apply_tag" signal on buffer.
 void TextBuffer.applyTag(TextTag tag, TextIter start, TextIter end)
          Emits the "apply_tag" signal on buffer.
 void TextBuffer.removeTag(TextTag tag, TextIter start, TextIter end)
          Emits the "remove_tag" signal.
 void TextBuffer.removeTag(TextTag tag, TextIter start, TextIter end)
          Emits the "remove_tag" signal.
 void TextBuffer.applyTag(java.lang.String name, TextIter start, TextIter end)
          Looks up a tag by name and then applies it.
 void TextBuffer.applyTag(java.lang.String name, TextIter start, TextIter end)
          Looks up a tag by name and then applies it.
 void TextBuffer.removeTag(java.lang.String name, TextIter start, TextIter end)
          Removes a tag based on it's name.
 void TextBuffer.removeTag(java.lang.String name, TextIter start, TextIter end)
          Removes a tag based on it's name.
 void TextBuffer.pasteClipboard(Clipboard clipboard, TextIter location, boolean defaultEditable)
          Pastes the contents of a clipboard at location.
 


Please send any bug reports, comments, or suggestions for the API or documentation to java-gnome-developer@lists.sf.net