~ubuntu-branches/ubuntu/oneiric/haxe/oneiric

« back to all changes in this revision

Viewing changes to haxe/std/flash9/display/Stage.hx

  • Committer: Bazaar Package Importer
  • Author(s): Jens Peter Secher
  • Date: 2009-03-18 23:09:50 UTC
  • mfrom: (3.1.1 experimental)
  • Revision ID: james.westby@ubuntu.com-20090318230950-pgfuxg2ucolps74t
Tags: 1:2.2-2
* Use ocamlfind to locate and use the libraries xml-light and extlib
  which already exist in Debian as separate packages.
  (Closes: #519630)
* Fixed compile error with camlp4 3.11, thanks to Stéphane Glondu.
  (Closes: #519627)
* Use quilt instead of dpatch for patches, and describe how to use
  quilt in Debian.source (thanks to Russ Allbery).
* Added a Vcs-Hg control filed to indicate the location of the public
  repository.
* Bumped Standards-Version to 3.8.1.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
        var align : StageAlign;
5
5
        var focus : InteractiveObject;
6
6
        var frameRate : Float;
7
 
        function invalidate() : Void;
8
 
        function isFocusInaccessible() : Bool;
9
7
        var quality : StageQuality;
10
8
        var scaleMode : StageScaleMode;
11
9
        var showDefaultContextMenu : Bool;
12
10
        var stageFocusRect : Bool;
13
11
        var stageHeight : Int;
14
12
        var stageWidth : Int;
15
 
        private function requireOwnerPermissions() : Void;
16
 
 
 
13
 
 
14
        function invalidate() : Void;
 
15
        function isFocusInaccessible() : Bool;
 
16
 
 
17
        // FP9 - fullscreen support
17
18
        var displayState : StageDisplayState;
 
19
        var fullScreenHeight(default,null) : UInt;
 
20
        var fullScreenSourceRect : flash.geom.Rectangle;
 
21
        var fullScreenWidth(default,null) : UInt;
 
22
 
 
23
        #if flash10
 
24
        var enableColorCorrection : Bool;
 
25
        #end
18
26
}