Class: FX::App

Inherits:
Fox::FXApp
  • Object
show all
Defined in:
lib/libGUIb14.rb,
lib/libGUIb16.rb

Instance Method Summary collapse

Constructor Details

#initialize(a = "", b = "") ⇒ App

Returns a new instance of App.



21
22
23
24
25
# File 'lib/libGUIb14.rb', line 21

def initialize a = "", b = ""
  super
  @created = false
  $app = $fxapp = self
end

Instance Method Details

#create(*args) ⇒ Object



27
28
29
30
# File 'lib/libGUIb14.rb', line 27

def create(*args)
  super
  @created = true
end

#created?Boolean

Returns:

  • (Boolean)


32
33
34
# File 'lib/libGUIb14.rb', line 32

def created?
  @created
end