class Fzeet::ComboBox
Constants
- Prefix
Public Class Methods
new(parent, id, opts = {}, &block)
click to toggle source
Calls superclass method
# File lib/fzeet/windows/user/Control/ComboBox.rb, line 125 def initialize(parent, id, opts = {}, &block) super('ComboBox', parent, id, opts) @parent.on(:command, @id, &block) if block end
Public Instance Methods
on(notification, &block)
click to toggle source
# File lib/fzeet/windows/user/Control/ComboBox.rb, line 131 def on(notification, &block) @parent.on(:command, @id, Fzeet.constant(notification, *self.class::Prefix[:notification]), &block) self end