ruby-****@sourc*****
ruby-****@sourc*****
2014年 6月 16日 (月) 18:10:31 JST
------------------------- REMOTE_ADDR = 106.188.103.9 REMOTE_HOST = URL = http://ruby-gnome2.sourceforge.jp/ja/hiki.cgi?Gtk%3A%3AToggleAction ------------------------- @@ -1,14 +1,19 @@ -= class Gtk::ToggleAction += Gtk::ToggleAction クラス A Gtk::ToggleAction corresponds roughly to a Gtk::CheckMenuItem. It has an "active" state specifying whether the action has been checked or not. -== Object Hierarchy +== オブジェクト階層 * Object * GLib::Instantiatable * GLib::Object * Gtk::Action * Gtk::ToggleAction -== Class Methods +== インクルードされているモジュール + +* Gtk::Buildable +* GLib::Interface + +== クラスメソッド --- Gtk::ToggleAction.new(name, label, tooltip, stock_id) Creates a new Gtk::ToggleAction object. To add the action to a Gtk::ActionGroup and set the accelerator for the action, call Gtk::ActionGroup#add_action. ((* Since 2.4 *)) * name: A unique name for the action @@ -17,7 +22,12 @@ * stock_id: The stock icon to display in widgets representing the action(Gtk::Stock constants). * Returns: a new Gtk::ToggleAction -== Instance Methods +== インスタンスメソッド --- toggled Emits the "toggled" signal on the toggle action. ((* Since 2.4 *)) * Returns: self @@ -47,15 +52,23 @@ * Returns: self -== Properties +== プロパティ --- draw-as-radio: true or false (Read/Write) Whether the proxies for this action look like radio action proxies. ((* Since 2.4 *)) * Default value: false -== Signals +--- active: + ((*要編集*)) + +== シグナル --- toggled: self * self: - -== ChangeLog +== 更新履歴 +* 2014-06-16 クラスのメンバで漏れていたものを追加。 - ((<きたがわ>)) * 2005-1-27 Added. - Masao