ruby-****@sourc*****
ruby-****@sourc*****
2014年 6月 11日 (水) 17:31:38 JST
------------------------- REMOTE_ADDR = 106.188.0.234 REMOTE_HOST = URL = http://ruby-gnome2.sourceforge.jp/ja/hiki.cgi?Gtk%3A%3ATextIter ------------------------- @@ -12,12 +12,12 @@ * Comparable == Instance Methods ---- <=> (rhs) +--- <=>(rhs) Returns negative if self is less than rhs, positive if self is greater than rhs, and 0 if they're equal. Ordering is in character offset order, i.e. the first character in the buffer is less than the second character in the buffer. *rhs: a Gtk::TextIter * Returns: -1 if self is less than rhs, 1 if self is greater, 0 if they are equal ---- == (rhs) +--- ==(rhs) Tests whether two iterators are equal, using the fastest possible mechanism. This method is very fast; you can expect it to perform better than e.g. getting the character offset for each iterator and comparing the offsets yourself. Also, it's a bit faster than Gtk::TextIter#<=>. * rhs: a Gtk::TextIter * Returns: true if the iterators point to the same place in the buffer @@ -200,6 +200,8 @@ * Returns : true if self is at the end of a sentence. --- inside_sentence? + ((*存在しない?or上位階層クラスのページに要移動?*)) + Determines whether self is inside a sentence (as opposed to in between two sentences, e.g. after a period and before the first letter of the next sentence). Sentence boundaries are determined by Pango and should be correct for nearly any language (if not, the correct fix would be to the Pango text boundary algorithms). * Returns: true if iter is inside a sentence. @@ -325,6 +327,10 @@ * Returns: true if the iterator moved and is not the end iterator --- backward_visible_word_start + ((*このメソッドはbackword_visible_word_startという名前で実装されてしまっているようです*)) + Moves backward to the previous visible word end. (If the iterator is currently on a word start, moves backward to the next one after that.) Word breaks are determined by Pango and should be correct for nearly any language (if not, the correct fix would be to the Pango word break algorithms). ((*Since 2.4*)) * Returns: true if the iterator moved and is not the end iterator @@ -408,10 +412,25 @@ * Returns: whether we found a tag toggle before self == Constants +--- SOURCE_SEARCH_CASE_INSENSITIVE (Gtk::TextIter::SourceSearchFlags) + ((*要編集*)) + +--- SOURCE_SEARCH_TEXT_ONLY (Gtk::TextIter::SourceSearchFlags) + ((*要編集*)) + +--- SOURCE_SEARCH_VISIBLE_ONLY (Gtk::TextIter::SourceSearchFlags) + ((*要編集*)) + === GtkTextSearchFlags --- SEARCH_TEXT_ONLY --- SEARCH_VISIBLE_ONLY --- SEARCH_CASE_INSENSITIVE + ((*存在しない?or上位階層クラスのページに要移動?*)) + ((*Ruby/GtkSouceView*)) === GtkSourceSearchFlags @@ -419,9 +434,27 @@ --- SEARCH_TEXT_ONLY --- SEARCH_VISIBLE_ONLY --- SEARCH_CASE_INSENSITIVE + ((*存在しない?or上位階層クラスのページに要移動?*)) + == ChangeLog +* 2014-06-11 クラスのメンバ項目の存在チェック("存在しない?or上位階層クラスのページに要移動?"とマーク)。リストから漏れているものを追加。 * 2005-08-30 ((<gc>)): documented additions for Gtk+ 2.4 and Gtk+ 2.8. * 2003-08-07 ((<Masao>)): Revised. * 2003-04-07 ((<Masao>)): Move from The RWiki. And some modified.