class Widgets::Button
A generic button widget. It currently is exactly like the custom widget but styled as a button.
Public Class Methods
Source
# File src/widgets/button.rb, line 10 def initialize options super @proc = options[:proc] @button = Gtk::Button.new label: '' update_safe init_timer if options[:interval] append @button end
Calls superclass method
Widgets::Widget::new