File: DisplayObjectContainer.hx

package info (click to toggle)
haxe 1%3A4.3.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,520 kB
  • sloc: ml: 137,268; ansic: 2,491; makefile: 456; java: 386; cs: 336; cpp: 318; python: 318; sh: 75; objc: 64; php: 50; xml: 31; javascript: 11
file content (30 lines) | stat: -rw-r--r-- 1,643 bytes parent folder | download | duplicates (4)
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
package flash.display;

extern class DisplayObjectContainer extends InteractiveObject {
	@:flash.property var mouseChildren(get,set) : Bool;
	@:flash.property var numChildren(get,never) : Int;
	@:flash.property var tabChildren(get,set) : Bool;
	@:flash.property var textSnapshot(get,never) : flash.text.TextSnapshot;
	function new() : Void;
	function addChild(child : DisplayObject) : DisplayObject;
	function addChildAt(child : DisplayObject, index : Int) : DisplayObject;
	function areInaccessibleObjectsUnderPoint(point : flash.geom.Point) : Bool;
	function contains(child : DisplayObject) : Bool;
	function getChildAt(index : Int) : DisplayObject;
	function getChildByName(name : String) : DisplayObject;
	function getChildIndex(child : DisplayObject) : Int;
	function getObjectsUnderPoint(point : flash.geom.Point) : Array<DisplayObject>;
	private function get_mouseChildren() : Bool;
	private function get_numChildren() : Int;
	private function get_tabChildren() : Bool;
	private function get_textSnapshot() : flash.text.TextSnapshot;
	function removeChild(child : DisplayObject) : DisplayObject;
	function removeChildAt(index : Int) : DisplayObject;
	@:require(flash11) function removeChildren(beginIndex : Int = 0, endIndex : Int = 2147483647) : Void;
	function setChildIndex(child : DisplayObject, index : Int) : Void;
	private function set_mouseChildren(value : Bool) : Bool;
	private function set_tabChildren(value : Bool) : Bool;
	@:require(flash11_8) function stopAllMovieClips() : Void;
	function swapChildren(child1 : DisplayObject, child2 : DisplayObject) : Void;
	function swapChildrenAt(index1 : Int, index2 : Int) : Void;
}