ruby-****@sourc*****
ruby-****@sourc*****
2014年 6月 16日 (月) 19:03:07 JST
------------------------- REMOTE_ADDR = 106.188.103.9 REMOTE_HOST = URL = http://ruby-gnome2.sourceforge.jp/ja/hiki.cgi?Gtk%3A%3ATreeStore ------------------------- @@ -1,25 +1,28 @@ -= class Gtk::TreeStore += Gtk::TreeStore クラス The Gtk::TreeStore object is a tree model for use with a Gtk::TreeView widget. It implements the Gtk::TreeModel interface, and consequentialy, can use all of the methods available there. It also implements the Gtk::TreeSortable interface so you can sort the list using the view. Finally, it also implements the tree drag and drop interfaces. -== Object Hierarchy +== オブジェクト階層 * Object * GLib::Instantiatable * GLib::Object * Gtk::TreeStore -== Included Modules +== インクルードされているモジュール + +* Gtk::Buildable +* Gtk::TreeSortable * Gtk::TreeDragDest * Gtk::TreeDragSource * Gtk::TreeModel -* Gtk::TreeSortable +* GLib::Interface -== Class Methods +== クラスメソッド --- Gtk::TreeStore.new(type1, type2, type3, ...) Creates a new tree store as with columns each of the types passed in. As an example, Gtk::TreeStore.new(Integer, String, Gdk::Pixbuf) will create a new Gtk::TreeStore with three columns, of type Integer, String and Gdk::Pixbuf respectively. * type1, type2, type3, ... : Object.class * Returns: A new Gtk::TreeStore -== Instance Methods +== インスタンスメソッド --- set_column_types(type1, type2, type3, ...) This method is meant primarily for classes that inherit from Gtk::TreeStore, and should only be used when constructing a new Gtk::TreeStore. It will not function after a row has been added, or a method on the Gtk::TreeModel interface is called. * type1, type2, type3, ... : Object.class @@ -79,8 +82,25 @@ --- clear Removes all rows from tree_store * Returns: self + +--- move_after() + ((*要編集*)) + +--- move_before() + ((*要編集*)) +--- swap() + ((*要編集*)) +--- reorder() + ((*要編集*)) --((<Masao>)) +--- iter_is_valid?() + ((*要編集*)) +== 更新履歴 +* 2014-06-16 クラスのメンバで漏れているものを追加。 - ((<きたがわ>)) +* -((<Masao>))