class Gtk::Application

Attributes

windows[R]

Public Class Methods

new(id, flags) click to toggle source
Calls superclass method
# File lib/rabbit/gtk.rb, line 118
def initialize(id, flags)
  super
  signal_connect_after("activate") do
    Gtk.main unless @windows.empty?
  end
  @windows = []
end