FocusEvent.hx 1.1 KB

123456789101112131415161718192021
  1. package flash.events;
  2. extern class FocusEvent extends Event {
  3. @:flash.property @:require(flash10) var isRelatedObjectInaccessible(get,set) : Bool;
  4. @:flash.property var keyCode(get,set) : UInt;
  5. @:flash.property var relatedObject(get,set) : flash.display.InteractiveObject;
  6. @:flash.property var shiftKey(get,set) : Bool;
  7. function new(type : String, bubbles : Bool = true, cancelable : Bool = false, ?relatedObject : flash.display.InteractiveObject, shiftKey : Bool = false, keyCode : UInt = 0) : Void;
  8. private function get_isRelatedObjectInaccessible() : Bool;
  9. private function get_keyCode() : UInt;
  10. private function get_relatedObject() : flash.display.InteractiveObject;
  11. private function get_shiftKey() : Bool;
  12. private function set_isRelatedObjectInaccessible(value : Bool) : Bool;
  13. private function set_keyCode(value : UInt) : UInt;
  14. private function set_relatedObject(value : flash.display.InteractiveObject) : flash.display.InteractiveObject;
  15. private function set_shiftKey(value : Bool) : Bool;
  16. static final FOCUS_IN : String;
  17. static final FOCUS_OUT : String;
  18. static final KEY_FOCUS_CHANGE : String;
  19. static final MOUSE_FOCUS_CHANGE : String;
  20. }