|
Revision 754, 416 bytes
(checked in by dan, 2 years ago)
|
ony: Root.children; Crop();
Document.load/.instantiate.
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
package xinf.ony; |
|---|
| 3 |
|
|---|
| 4 |
interface Crop implements Group { |
|---|
| 5 |
|
|---|
| 6 |
var width(default,set_width):Float; |
|---|
| 7 |
var height(default,set_height):Float; |
|---|
| 8 |
|
|---|
| 9 |
function attach( o:Element, ?after:Element ) :Void; |
|---|
| 10 |
function detach( o:Element ) :Void; |
|---|
| 11 |
|
|---|
| 12 |
var children(get_children,null) :Iterator<Element>; |
|---|
| 13 |
|
|---|
| 14 |
function getChildByName( name:String ) :Element; |
|---|
| 15 |
function getTypedChildByName<T>( name:String, cl:Class<T> ) :T; |
|---|
| 16 |
} |
|---|