At Wed, 29 Nov 2000 22:00:24 +0900,
DaVinci wrote:
>  That is easy. But how can I do the same with classes of type Gtk::Window? I
>  don't know if it is possible.

module Gtk
  class Window
    def new_method
      :
    end
  end
end

ToDo has easier way to extend: (not yet implemtned AFAIK)

class Gtk::Window
  def new_method
     :
  end
end
--
          yashi