-
-
Notifications
You must be signed in to change notification settings - Fork 376
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' into 8.1.0-Dev
- Loading branch information
Showing
45 changed files
with
1,515 additions
and
1,462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package flash.data; | ||
|
||
@:native("flash.data.SQLCollationType") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract SQLCollationType(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract SQLCollationType(String) | ||
{ | ||
var BINARY; | ||
var NO_CASE; | ||
var BINARY = "binary"; | ||
var NO_CASE = "noCase"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package flash.data; | ||
|
||
@:native("flash.data.SQLColumnNameStyle") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract SQLColumnNameStyle(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract SQLColumnNameStyle(String) | ||
{ | ||
var DEFAULT; | ||
var LONG; | ||
var SHORT; | ||
var DEFAULT = "default"; | ||
var LONG = "long"; | ||
var SHORT = "short"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package flash.data; | ||
|
||
@:native("flash.data.SQLMode") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract SQLMode(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract SQLMode(String) | ||
{ | ||
var CREATE; | ||
var READ; | ||
var UPDATE; | ||
var CREATE = "create"; | ||
var READ = "read"; | ||
var UPDATE = "update"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package flash.data; | ||
|
||
@:native("flash.data.SQLTransactionLockType") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract SQLTransactionLockType(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract SQLTransactionLockType(String) | ||
{ | ||
var DEFERRED; | ||
var EXCLUSIVE; | ||
var IMMEDIATE; | ||
var DEFERRED = "deferred"; | ||
var EXCLUSIVE = "exclusive"; | ||
var IMMEDIATE = "immediate"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package flash.desktop; | ||
|
||
@:native("flash.desktop.InvokeEventReason") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract InvokeEventReason(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract InvokeEventReason(String) | ||
{ | ||
var LOGIN; | ||
var NOTIFICATION; | ||
var OPEN_URL; | ||
var STANDARD; | ||
var LOGIN = "login"; | ||
var NOTIFICATION = "notification"; | ||
var OPEN_URL = "openUrl"; | ||
var STANDARD = "standard"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package flash.desktop; | ||
|
||
@:native("flash.desktop.NativeDragActions") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract NativeDragActions(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract NativeDragActions(String) | ||
{ | ||
var COPY; | ||
var LINK; | ||
var MOVE; | ||
var NONE; | ||
var COPY = "copy"; | ||
var LINK = "link"; | ||
var MOVE = "move"; | ||
var NONE = "none"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package flash.desktop; | ||
|
||
@:native("flash.desktop.NotificationType") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract NotificationType(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract NotificationType(String) | ||
{ | ||
var CRITICAL; | ||
var INFORMATIONAL; | ||
var CRITICAL = "critical"; | ||
var INFORMATIONAL = "informational"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package flash.desktop; | ||
|
||
@:native("flash.desktop.SystemIdleMode") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract SystemIdleMode(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract SystemIdleMode(String) | ||
{ | ||
var KEEP_AWAKE; | ||
var NORMAL; | ||
var KEEP_AWAKE = "keepAwake"; | ||
var NORMAL = "normal"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package flash.display; | ||
|
||
@:native("flash.display.NativeWindowDisplayState") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract NativeWindowDisplayState(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract NativeWindowDisplayState(String) | ||
{ | ||
var MAXIMIZED; | ||
var MINIMIZED; | ||
var NORMAL; | ||
var MAXIMIZED = "maximized"; | ||
var MINIMIZED = "minimized"; | ||
var NORMAL = "normal"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package flash.display; | ||
|
||
@:native("flash.display.NativeWindowRenderMode") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract NativeWindowRenderMode(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract NativeWindowRenderMode(String) | ||
{ | ||
var AUTO; | ||
var CPU; | ||
var DIRECT; | ||
var GPU; | ||
var AUTO = "auto"; | ||
var CPU = "cpu"; | ||
var DIRECT = "direct"; | ||
var GPU = "gpu"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
package flash.display; | ||
|
||
@:native("flash.display.NativeWindowResize") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract NativeWindowResize(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract NativeWindowResize(String) | ||
{ | ||
var BOTTOM; | ||
var BOTTOM_LEFT; | ||
var BOTTOM_RIGHT; | ||
var LEFT; | ||
var NONE; | ||
var RIGHT; | ||
var TOP; | ||
var TOP_LEFT; | ||
var TOP_RIGHT; | ||
var BOTTOM = "bottom"; | ||
var BOTTOM_LEFT = "bottomLeft"; | ||
var BOTTOM_RIGHT = "bottomRight"; | ||
var LEFT = "left"; | ||
var NONE = "none"; | ||
var RIGHT = "right"; | ||
var TOP = "top"; | ||
var TOP_LEFT = "topLeft"; | ||
var TOP_RIGHT = "topRight"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package flash.display; | ||
|
||
@:native("flash.display.NativeWindowSystemChrome") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract NativeWindowSystemChrome(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract NativeWindowSystemChrome(String) | ||
{ | ||
var ALTERNATE; | ||
var NONE; | ||
var STANDARD; | ||
var ALTERNATE = "alternate"; | ||
var NONE = "none"; | ||
var STANDARD = "standard"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package flash.display; | ||
|
||
@:native("flash.display.NativeWindowType") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract NativeWindowType(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract NativeWindowType(String) | ||
{ | ||
var LIGHTWEIGHT; | ||
var NORMAL; | ||
var UTILITY; | ||
var LIGHTWEIGHT = "lightweight"; | ||
var NORMAL = "normal"; | ||
var UTILITY = "utility"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package flash.display; | ||
|
||
@:native("flash.display.StageAspectRatio") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract StageAspectRatio(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract StageAspectRatio(String) | ||
{ | ||
var ANY; | ||
var LANDSCAPE; | ||
var PORTRAIT; | ||
var ANY = "any"; | ||
var LANDSCAPE = "landscape"; | ||
var PORTRAIT = "portrait"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
package flash.display; | ||
|
||
@:native("flash.display.StageOrientation") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract StageOrientation(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract StageOrientation(String) | ||
{ | ||
var DEFAULT; | ||
var ROTATED_LEFT; | ||
var ROTATED_RIGHT; | ||
var UNKNOWN; | ||
var UPSIDE_DOWN; | ||
var DEFAULT = "default"; | ||
var ROTATED_LEFT = "rotatedLeft"; | ||
var ROTATED_RIGHT = "rotatedRight"; | ||
var UNKNOWN = "unknown"; | ||
var UPSIDE_DOWN = "upsideDown"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
package flash.display3D; | ||
|
||
@:native("flash.display3D.Context3DProfile") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract Context3DProfile(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract Context3DProfile(String) | ||
{ | ||
var BASELINE; | ||
var BASELINE_CONSTRAINED; | ||
var BASELINE_EXTENDED; | ||
var STANDARD; | ||
var STANDARD_CONSTRAINED; | ||
var STANDARD_EXTENDED; | ||
var BASELINE = "baseline"; | ||
var BASELINE_CONSTRAINED = "baselineConstrained"; | ||
var BASELINE_EXTENDED = "baselineExtended"; | ||
var STANDARD = "standard"; | ||
var STANDARD_CONSTRAINED = "standardConstrained"; | ||
var STANDARD_EXTENDED = "standardExtended"; | ||
#if air | ||
var ENHANCED; | ||
var ENHANCED = "enhanced"; | ||
#end | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
package flash.errors; | ||
|
||
@:native("flash.errors.SQLErrorOperation") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract SQLErrorOperation(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract SQLErrorOperation(String) | ||
{ | ||
var ANALYZE; | ||
var ATTACH; | ||
var BEGIN; | ||
var CLOSE; | ||
var COMMIT; | ||
var COMPACT; | ||
var DEANALYZE; | ||
var DETACH; | ||
var EXECUTE; | ||
var OPEN; | ||
var REENCRYPT; | ||
var RELEASE_SAVEPOINT; | ||
var ROLLBACK; | ||
var ROLLBACK_TO_SAVEPOINT; | ||
var SCHEMA; | ||
var SET_SAVEPOINT; | ||
var ANALYZE = "analyze"; | ||
var ATTACH = "attach"; | ||
var BEGIN = "begin"; | ||
var CLOSE = "close"; | ||
var COMMIT = "commit"; | ||
var COMPACT = "compact"; | ||
var DEANALYZE = "deanalyze"; | ||
var DETACH = "detach"; | ||
var EXECUTE = "execute"; | ||
var OPEN = "open"; | ||
var REENCRYPT = "reencrypt"; | ||
var RELEASE_SAVEPOINT = "releaseSavepoint"; | ||
var ROLLBACK = "rollback"; | ||
var ROLLBACK_TO_SAVEPOINT = "rollbackToSavepoint"; | ||
var SCHEMA = "schema"; | ||
var SET_SAVEPOINT = "setSavepoint"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package flash.events; | ||
|
||
@:native("flash.events.TouchEventIntent") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract TouchEventIntent(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract TouchEventIntent(String) | ||
{ | ||
var ERASER; | ||
var PEN; | ||
var UNKNOWN; | ||
var ERASER = "eraser"; | ||
var PEN = "pen"; | ||
var UNKNOWN = "unknown"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
package flash.filesystem; | ||
|
||
@:native("flash.filesystem.FileMode") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract FileMode(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract FileMode(String) | ||
{ | ||
var APPEND; | ||
var READ; | ||
var UPDATE; | ||
var WRITE; | ||
var APPEND = "append"; | ||
var READ = "read"; | ||
var UPDATE = "update"; | ||
var WRITE = "write"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package flash.media; | ||
|
||
@:native("flash.media.AudioPlaybackMode") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract AudioPlaybackMode(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract AudioPlaybackMode(String) | ||
{ | ||
var AMBIENT; | ||
var MEDIA; | ||
var VOICE; | ||
var AMBIENT = "ambient"; | ||
var MEDIA = "media"; | ||
var VOICE = "voice"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
package flash.media; | ||
|
||
@:native("flash.media.CameraPosition") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract CameraPosition(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract CameraPosition(String) | ||
{ | ||
var BACK; | ||
var FRONT; | ||
var UNKNOWN; | ||
var BACK = "back"; | ||
var FRONT = "front"; | ||
var UNKNOWN = "unknown"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
package flash.media; | ||
|
||
@:native("flash.media.MediaType") | ||
#if (haxe_ver >= 4.0) extern #else @:extern #end enum abstract MediaType(String) | ||
#if (haxe_ver >= 4.0) extern enum #else @:extern @:enum #end abstract MediaType(String) | ||
{ | ||
var IMAGE; | ||
var VIDEO; | ||
var IMAGE = "image"; | ||
var VIDEO = "video"; | ||
} |
Oops, something went wrong.