[ruby-gnome2-doc-cvs] [Ruby-GNOME2 Project Website] update - Gtk::TextBuffer

Back to archive index

ruby-****@sourc***** ruby-****@sourc*****
2014年 6月 12日 (木) 09:33:16 JST


-------------------------
REMOTE_ADDR = 106.188.0.234
REMOTE_HOST = 
        URL = http://ruby-gnome2.sourceforge.jp/ja/hiki.cgi?Gtk%3A%3ATextBuffer
-------------------------
@@ -1,18 +1,23 @@
 = Gtk::TextBuffer クラス
+
 You may wish to begin by reading the ((<text widget conceptual overview>)) which gives an overview of all the objects and data types related to the text widget and how they work together.
+
 == オブジェクト階層
+
 * Object
   * GLib::Instantiatable
     * GLib::Object
       * Gtk::TextBuffer
 
 == クラスメソッド
+
 --- Gtk::TextBuffer.new
     Creates a new text buffer.
     * table: a tag table, or nil to create a new one 
     * Returns: a new text buffer 
 
 == インスタンスメソッド
+
 --- line_count
     Obtains the number of lines in the buffer. This value is cached, so the method is very fast.
     * Returns : number of lines in the buffer 
@@ -31,6 +36,12 @@
     Sets the Gtk::TextTagTable.
     * setting: a Gtk::TextTagTable
     * Returns: setting
+
 --- set_tag_table(setting)
     ((*存在しない?or上位階層クラスのページに要移動?*))
 
@@ -65,8 +71,16 @@
 
 --- insert_with_tags(iter, text, tag1, tag2, tag3, ...)
     Deprecated. Use insert(iter, text, tag1, tag2, tag3, ...) instead.
+
 --- insert_pixbuf(iter, pixbuf)
     Deprecated. Use insert(iter, pixbuf) instead.
+
 --- insert_child_anchor(iter, anchor)
     Deprecated. Use insert(iter, anchor) instead.
 
@@ -127,16 +135,27 @@
 --- text
     Same as Gtk::TextBuffer#get_text(nil, nil, false)
     * Returns: an UTF-8 string.
+
 --- get_text(start = nil, end = nil, include_hidden_chars = false)
     Returns the text in the range [start, end]. Excludes undisplayed text (text marked with tags that set the invisibility attribute) if include_hidden_chars is false. 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 with Gtk::TextBuffer#get_slice.
     * start: start of a range (Gtk::TextIter). If nil, set the first position in the text buffer. 
     * end: end of a range (Gtk::TextIter). If nil, set the last position in the text buffer.
     * include_hidden_chars: true if including invisible text 
     * Returns: an UTF-8 string 
+
 --- text=(text)
     Deletes current contents of buffer, and inserts text instead. text must be valid UTF-8.
     * text : UTF-8 text to insert 
     * Returns: text
+
 --- set_text(text)
     Same as Gtk::TextBuffer#text=.
     * Returns: self
@@ -144,6 +155,18 @@
 --- slice
     Same as Gtk::TextBuffer#get_slice(nil, nil, false)
     * Returns: an UTF-8 string.
+
 --- get_slice(start = nil, end = nil, include_hidden_chars = false)
     Returns the text in the range [start,end]. Excludes undisplayed text (text marked with tags that set the invisibility attribute) if include_hidden_chars is false. 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 Gtk::TextBuffer#get_text. 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.
     * start: start of a range (Gtk::TextIter)
@@ -263,10 +275,24 @@
 --- modified?
     Indicates whether the buffer has been modified since the last call to Gtk::TextBuffer#modified= set the modification flag to false. Used for example to enable a "save" function in a text editor.
     * Returns: true if the buffer has been modified 
+
 --- modified=(setting)
     Used to keep track of whether the buffer has been modified since the last time it was saved. Whenever the buffer is saved to disk, call Gtk::TextBuffer#modified=(false). When the buffer is modified, it will automatically toggled on the modified bit again. When the modified bit flips, the buffer emits a "modified_changed" signal.
     * setting: modification flag setting 
     * Returns: setting
+
 --- set_modified(setting)
     Same as Gtk::TextBuffer#modified=.
     * setting: modification flag setting 
@@ -309,6 +323,21 @@
     The "interactive" buffer mutation methods, such as Gtk::TextBuffer#insert_interactive, automatically call begin/end user action around the buffer operations they perform, so there's no need to add extra calls if you user action consists solely of a single call to one of those methods.
     * {...}: after the block, Gtk::TextBuffer#end_user_action is called automatically.
     * Returns: self
+
 --- end_user_action
     Should be paired with a call to Gtk::TextBuffer#begin_user_action. See that method for a full explanation.
     * Returns: self
@@ -324,80 +339,95 @@
     * Returns: self
 
 --- has_selection?
-    ((*更新中*))
+    ((*要編集*))
 
 --- cursor_position
-    ((*更新中*))
+    ((*要編集*))
 
 --- copy_target_list
-    ((*更新中*))
+    ((*要編集*))
 
 --- paste_target_list
-    ((*更新中*))
+    ((*要編集*))
 
 --- backspace
-    ((*更新中*))
+    ((*要編集*))
 
 --- add_mark
-    ((*更新中*))
+    ((*要編集*))
 
 --- select_range
-    ((*更新中*))
+    ((*要編集*))
 
 --- deserialize
-    ((*更新中*))
+    ((*要編集*))
 
 --- deserialize_can_create_tags?
-    ((*更新中*))
+    ((*要編集*))
 
 --- deserialize_set_can_create_tags
-    ((*更新中*))
+    ((*要編集*))
 
 --- deserialize_formats
-    ((*更新中*))
+    ((*要編集*))
 
 --- serialize_formats
-    ((*更新中*))
+    ((*要編集*))
 
 --- register_deserialize_format
-    ((*更新中*))
+    ((*要編集*))
 
 --- register_deserialize_target
-    ((*更新中*))
+    ((*要編集*))
 
 --- register_serialize_format
-    ((*更新中*))
+    ((*要編集*))
 
 --- register_serialize_target
-    ((*更新中*))
+    ((*要編集*))
 
 --- serialize
-    ((*更新中*))
+    ((*要編集*))
 
 --- unregister_deserialize_format
-    ((*更新中*))
+    ((*要編集*))
 
 --- unregister_serialize_format
-    ((*更新中*))
+    ((*要編集*))
 
 == プロパティ
 --- tag-table: Gtk::TextTagTable (Read/Write)
     Text Tag Table.
 
 --- text: 
-    
+    ((*要編集*))
 
 --- has-selection: 
-    
+    ((*要編集*))
 
 --- cursor-position: 
-    
+    ((*要編集*))
 
 --- copy-target-list: 
-    
+    ((*要編集*))
 
 --- paste-target-list: 
-    
+    ((*要編集*))
 
 
 == シグナル
@@ -460,8 +475,21 @@
 
 --- notify
     ((*存在しない?or上位階層クラスのページに要移動?*))
-
-    
 
 == こちらも参照してください
 Gtk::TextView, Gtk::TextIter, Gtk::TextMark




ruby-gnome2-cvs メーリングリストの案内
Back to archive index