class Fzeet::ProgressBar
Constants
- Prefix
Public Class Methods
crackNotification(args)
click to toggle source
# File lib/fzeet/windows/comctl/ProgressBar.rb, line 71 def self.crackNotification(args) end
new(parent, id, opts = {}, &block)
click to toggle source
Calls superclass method
# File lib/fzeet/windows/comctl/ProgressBar.rb, line 73 def initialize(parent, id, opts = {}, &block) super('msctls_progress32', parent, id, opts) @marquee = false @parent.on(:notify, @id, &block) if block end
Public Instance Methods
on(notification, &block)
click to toggle source
# File lib/fzeet/windows/comctl/ProgressBar.rb, line 81 def on(notification, &block) @parent.on(:notify, @id, Fzeet.constant(notification, *self.class::Prefix[:notification]), &block) self end