Class: Gtk::CheckMenuItem
- Inherits:
-
Object
- Object
- Gtk::CheckMenuItem
- Extended by:
- GLib::Deprecatable
- Defined in:
- lib/gtk3/deprecated.rb,
lib/gtk3/check-menu-item.rb
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ CheckMenuItem
constructor
A new instance of CheckMenuItem.
- #initialize_raw ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ CheckMenuItem
Returns a new instance of CheckMenuItem.
20 21 22 23 24 25 26 27 28 29 30 31 32 |
# File 'lib/gtk3/check-menu-item.rb', line 20 def initialize(={}) label = [:label] if label if [:use_underline] initialize_new_with_mnemonic(label) else initialize_new_with_label(label) end else initialize_raw end end |
Instance Method Details
#initialize_raw ⇒ Object
19 |
# File 'lib/gtk3/check-menu-item.rb', line 19 alias_method :initialize_raw, :initialize |