class Gtk::Label

Public Class Methods

new(title = "") click to toggle source
# File lib/knj/ironruby-gtk2/label.rb, line 2
def initialize(title = "")
  if Gtk.takeob
    @ob = Gtk.takeob
    Gtk.takeob = nil
  else
    splitted = self.class.to_s.split("::")
    @ob = RealGtk.const_get(splitted.last).new(title)
  end
  
  if !@ob
    raise "Object was not spawned: #{self.class.to_s}"
  end
end

Public Instance Methods

label=(newlabel) click to toggle source
# File lib/knj/ironruby-gtk2/label.rb, line 16
def label=(newlabel)
  @ob.label_prop = newlabel
end