2
0

IME.hx 881 B

12345678910111213141516
  1. package flash.system;
  2. extern class IME extends flash.events.EventDispatcher {
  3. @:flash.property static var conversionMode(get,set) : IMEConversionMode;
  4. @:flash.property static var enabled(get,set) : Bool;
  5. @:flash.property @:require(flash10_1) static var isSupported(get,never) : Bool;
  6. @:require(flash10_1) static function compositionAbandoned() : Void;
  7. @:require(flash10_1) static function compositionSelectionChanged(start : Int, end : Int) : Void;
  8. static function doConversion() : Void;
  9. private static function get_conversionMode() : IMEConversionMode;
  10. private static function get_enabled() : Bool;
  11. private static function get_isSupported() : Bool;
  12. static function setCompositionString(composition : String) : Void;
  13. private static function set_conversionMode(value : IMEConversionMode) : IMEConversionMode;
  14. private static function set_enabled(value : Bool) : Bool;
  15. }