Class: Java::JavafxSceneControl::PopupControl

Inherits:
Object
  • Object
show all
Includes:
JRubyFX::DSL
Defined in:
lib/jrubyfx/core_ext/precompiled.rb

Constant Summary

Constants included from JRubyFX::DSL

JRubyFX::DSL::NAME_TO_CLASSES, JRubyFX::DSL::NAME_TO_CLASS_NAME

Constants included from JRubyFX::FXImports

JRubyFX::FXImports::JFX_CLASS_HIERARCHY, JRubyFX::FXImports::LOCAL_NAME_MAP

Constants included from JRubyFX

JRubyFX::VERSION

Instance Method Summary collapse

Methods included from JRubyFX::DSL

compile_dsl, included, load_dsl, #logical_lookup, #method_missing, #self_test_lookup, write_color_method_converter, write_enum_converter, write_enum_method_converter, write_event_method

Methods included from JRubyFX::FXImports

#const_missing

Methods included from JRubyFX

#build, included, load_fx, #run_later, #with

Methods included from JRubyFX::Utils::CommonUtils

#attempt_conversion, #populate_properties, #split_args_from_properties

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class JRubyFX::DSL

Instance Method Details

#on_auto_hide(&block) ⇒ Object



1439
1440
1441
1442
1443
1444
1445
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1439

def on_auto_hide(&block)
  if block_given?
    setOnAutoHide block
  else
    getOnAutoHide
  end
end

#on_close_request(&block) ⇒ Object



1446
1447
1448
1449
1450
1451
1452
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1446

def on_close_request(&block)
  if block_given?
    setOnCloseRequest block
  else
    getOnCloseRequest
  end
end

#on_hidden(&block) ⇒ Object



1453
1454
1455
1456
1457
1458
1459
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1453

def on_hidden(&block)
  if block_given?
    setOnHidden block
  else
    getOnHidden
  end
end

#on_hiding(&block) ⇒ Object



1460
1461
1462
1463
1464
1465
1466
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1460

def on_hiding(&block)
  if block_given?
    setOnHiding block
  else
    getOnHiding
  end
end

#on_showing(&block) ⇒ Object



1467
1468
1469
1470
1471
1472
1473
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1467

def on_showing(&block)
  if block_given?
    setOnShowing block
  else
    getOnShowing
  end
end

#on_shown(&block) ⇒ Object



1474
1475
1476
1477
1478
1479
1480
# File 'lib/jrubyfx/core_ext/precompiled.rb', line 1474

def on_shown(&block)
  if block_given?
    setOnShown block
  else
    getOnShown
  end
end