class Gtk::Container
Public Class Methods
child_properties()
click to toggle source
# File lib/gtk3/container.rb, line 21 def child_properties child_properties_raw[0] end
Also aliased as: child_properties_raw
Public Instance Methods
<<(widget)
click to toggle source
# File lib/gtk3/container.rb, line 28 def <<(widget) add(widget) self end
child_get_property(child, name)
click to toggle source
# File lib/gtk3/container.rb, line 44 def child_get_property(child, name) property = self.class.find_child_property(name) value = GLib::Value.new(property.value_type) child_get_property_raw(child, name, value) value.value end
Also aliased as: child_get_property_raw
focus_chain()
click to toggle source
# File lib/gtk3/container.rb, line 34 def focus_chain set_explicitly, widgets = focus_chain_raw if set_explicitly widgets else nil end end
Also aliased as: focus_chain_raw