ruby-****@sourc*****
ruby-****@sourc*****
2014年 6月 16日 (月) 15:24:16 JST
------------------------- REMOTE_ADDR = 106.188.103.9 REMOTE_HOST = URL = http://ruby-gnome2.sourceforge.jp/ja/hiki.cgi?Gtk%3A%3AListStore ------------------------- @@ -1,25 +1,28 @@ -= class Gtk::ListStore += Gtk::ListStore クラス The Gtk::ListStore object is a list 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::ListStore -== Included Modules +== インクルードされているモジュール + +* Gtk::Buildable +* Gtk::TreeSortable * Gtk::TreeDragDest * Gtk::TreeDragSource * Gtk::TreeModel -* Gtk::TreeSortable +* GLib::Interface -== Class Methods +== クラスメソッド --- Gtk::ListStore.new(type1, type2, type3, ...) Creates a new tree store as with columns each of the types passed in. As an example, Gtk::ListStore.new(Integer, String, Gdk::Pixbuf) will create a new Gtk::ListStore with three columns, of type Integer, String and Gdk::Pixbuf respectively. * type1, type2, type3, ... : Object.class value * Returns: A new Gtk::ListStore -== Instance Methods +== インスタンスメソッド --- set_column_types(type1, type2, type3, ...) This method is meant primarily for classes that inherit from Gtk::ListStore, and should only be used when constructing a new Gtk::ListStore. 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 value @@ -63,6 +66,28 @@ --- clear Removes all rows from the list store. * Returns: self + +--- set_values() + ((*要編集*)) + +--- move_after() + ((*要編集*)) + +--- move_before() + ((*要編集*)) + +--- swap() + ((*要編集*)) + +--- reorder() + ((*要編集*)) +--- iter_is_valid?() + ((*要編集*)) -- ((<Masao>)) +== 更新履歴 +* 2014-06-16 クラスのメンバで漏れていたものを追加。 - ((<きたがわ>)) +* - ((<Masao>))