class SB

this file is part of manqod manqod is distributed under the CDDL licence the author of manqod is Dobai-Pataky Balint(dpblnt@gmail.com)

Attributes

messaging[R]
parent_window[R]
progress[R]

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/SB.rb, line 8
def initialize
        super
        set_homogeneous(false)
        pack_start(@messaging=Messaging.instance,false,false)
        pack_start(Gtk::Label.new,true,true)
        pack_start(@progress=MultiProgress.new,false,false)
end

Public Instance Methods

set_parent_window(parent_window) click to toggle source
# File lib/SB.rb, line 17
def set_parent_window(parent_window)
        @parent_window=parent_window
end
show() click to toggle source
Calls superclass method
# File lib/SB.rb, line 21
def show
        super unless visible?
end
to_s() click to toggle source
# File lib/SB.rb, line 25
def to_s
        "SB"
end