1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
|
package flash.display;
extern class Stage extends DisplayObjectContainer {
@:flash.property var align(get,set) : StageAlign;
@:flash.property var allowsFullScreen(get,never) : Bool;
@:flash.property @:require(flash11_3) var allowsFullScreenInteractive(get,never) : Bool;
@:flash.property var browserZoomFactor(get,never) : Float;
@:flash.property @:require(flash10_2) var color(get,set) : UInt;
@:flash.property @:require(flash10) var colorCorrection(get,set) : ColorCorrection;
@:flash.property @:require(flash10) var colorCorrectionSupport(get,never) : ColorCorrectionSupport;
@:flash.property @:require(flash11_4) var contentsScaleFactor(get,never) : Float;
@:flash.property @:require(flash11) var displayContextInfo(get,never) : String;
@:flash.property var displayState(get,set) : StageDisplayState;
@:flash.property var focus(get,set) : InteractiveObject;
@:flash.property var frameRate(get,set) : Float;
@:flash.property var fullScreenHeight(get,never) : UInt;
@:flash.property var fullScreenSourceRect(get,set) : flash.geom.Rectangle;
@:flash.property var fullScreenWidth(get,never) : UInt;
@:flash.property @:require(flash11_2) var mouseLock(get,set) : Bool;
@:flash.property var quality(get,set) : StageQuality;
@:flash.property var scaleMode(get,set) : StageScaleMode;
@:flash.property var showDefaultContextMenu(get,set) : Bool;
@:flash.property @:require(flash11) var softKeyboardRect(get,never) : flash.geom.Rectangle;
@:flash.property @:require(flash11) var stage3Ds(get,never) : flash.Vector<Stage3D>;
@:flash.property var stageFocusRect(get,set) : Bool;
@:flash.property var stageHeight(get,set) : Int;
@:flash.property @:require(flash10_2) var stageVideos(get,never) : flash.Vector<flash.media.StageVideo>;
@:flash.property var stageWidth(get,set) : Int;
@:flash.property @:require(flash10_1) var wmodeGPU(get,never) : Bool;
private function get_align() : StageAlign;
private function get_allowsFullScreen() : Bool;
private function get_allowsFullScreenInteractive() : Bool;
private function get_browserZoomFactor() : Float;
private function get_color() : UInt;
private function get_colorCorrection() : ColorCorrection;
private function get_colorCorrectionSupport() : ColorCorrectionSupport;
private function get_constructor() : Dynamic;
private function get_contentsScaleFactor() : Float;
private function get_displayContextInfo() : String;
private function get_displayState() : StageDisplayState;
private function get_focus() : InteractiveObject;
private function get_frameRate() : Float;
private function get_fullScreenHeight() : UInt;
private function get_fullScreenSourceRect() : flash.geom.Rectangle;
private function get_fullScreenWidth() : UInt;
private function get_mouseLock() : Bool;
private function get_quality() : StageQuality;
private function get_scaleMode() : StageScaleMode;
private function get_showDefaultContextMenu() : Bool;
private function get_softKeyboardRect() : flash.geom.Rectangle;
private function get_stage3Ds() : flash.Vector<Stage3D>;
private function get_stageFocusRect() : Bool;
private function get_stageHeight() : Int;
private function get_stageVideos() : flash.Vector<flash.media.StageVideo>;
private function get_stageWidth() : Int;
private function get_wmodeGPU() : Bool;
function invalidate() : Void;
function isFocusInaccessible() : Bool;
private function set_align(value : StageAlign) : StageAlign;
private function set_color(value : UInt) : UInt;
private function set_colorCorrection(value : ColorCorrection) : ColorCorrection;
private function set_constructor(value : Dynamic) : Dynamic;
private function set_displayState(value : StageDisplayState) : StageDisplayState;
private function set_focus(value : InteractiveObject) : InteractiveObject;
private function set_frameRate(value : Float) : Float;
private function set_fullScreenSourceRect(value : flash.geom.Rectangle) : flash.geom.Rectangle;
private function set_mouseLock(value : Bool) : Bool;
private function set_quality(value : StageQuality) : StageQuality;
private function set_scaleMode(value : StageScaleMode) : StageScaleMode;
private function set_showDefaultContextMenu(value : Bool) : Bool;
private function set_stageFocusRect(value : Bool) : Bool;
private function set_stageHeight(value : Int) : Int;
private function set_stageWidth(value : Int) : Int;
}
|