Remove hxelectron dependency
This commit is contained in:
@@ -1,13 +1,12 @@
|
|||||||
import electron.main.App;
|
package;
|
||||||
import electron.main.BrowserWindow;
|
|
||||||
|
|
||||||
class ElectronSetup
|
class ElectronSetup
|
||||||
{
|
{
|
||||||
public static var window:BrowserWindow;
|
public static var window:ElectronBrowserWindow;
|
||||||
|
|
||||||
static function main()
|
static function main()
|
||||||
{
|
{
|
||||||
electron.main.App.commandLine.appendSwitch('ignore-gpu-blacklist', 'true');
|
ElectronApp.commandLine.appendSwitch('ignore-gpu-blacklist', 'true');
|
||||||
|
|
||||||
var windows:Array<OpenFLWindow> = [
|
var windows:Array<OpenFLWindow> = [
|
||||||
::foreach windows::
|
::foreach windows::
|
||||||
@@ -46,9 +45,9 @@ class ElectronSetup
|
|||||||
if (height == 0) height = 600;
|
if (height == 0) height = 600;
|
||||||
var frame:Bool = window.borderless == false;
|
var frame:Bool = window.borderless == false;
|
||||||
|
|
||||||
electron.main.App.commandLine.appendSwitch('--autoplay-policy', 'no-user-gesture-required');
|
ElectronApp.commandLine.appendSwitch('--autoplay-policy', 'no-user-gesture-required');
|
||||||
|
|
||||||
electron.main.App.on('ready', function(e)
|
ElectronApp.on('ready', function(e)
|
||||||
{
|
{
|
||||||
var config:Dynamic =
|
var config:Dynamic =
|
||||||
{
|
{
|
||||||
@@ -60,13 +59,13 @@ class ElectronSetup
|
|||||||
height: height,
|
height: height,
|
||||||
webgl: window.hardware
|
webgl: window.hardware
|
||||||
};
|
};
|
||||||
ElectronSetup.window = new BrowserWindow(config);
|
ElectronSetup.window = new ElectronBrowserWindow(config);
|
||||||
|
|
||||||
ElectronSetup.window.on(closed, function()
|
ElectronSetup.window.on('closed', function()
|
||||||
{
|
{
|
||||||
if (js.Node.process.platform != 'darwin')
|
if (js.Node.process.platform != 'darwin')
|
||||||
{
|
{
|
||||||
electron.main.App.quit();
|
ElectronApp.quit();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -104,3 +103,20 @@ typedef OpenFLWindow =
|
|||||||
x:Int,
|
x:Int,
|
||||||
y:Int
|
y:Int
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Externs to compile without requiring hxelectron
|
||||||
|
|
||||||
|
@:jsRequire("electron", "app") extern class ElectronApp
|
||||||
|
{
|
||||||
|
public static var commandLine:Dynamic;
|
||||||
|
public static function on(type:Dynamic, callback:Dynamic):Dynamic;
|
||||||
|
public static function quit():Void;
|
||||||
|
}
|
||||||
|
|
||||||
|
@:jsRequire("electron", "BrowserWindow") extern class ElectronBrowserWindow
|
||||||
|
{
|
||||||
|
public var webContents:Dynamic;
|
||||||
|
public function new(?options:Dynamic);
|
||||||
|
public function loadURL(url:String, ?options:Dynamic):Dynamic;
|
||||||
|
public function on(type:Dynamic, callback:Dynamic):Dynamic;
|
||||||
|
}
|
||||||
|
|||||||
@@ -12,7 +12,6 @@
|
|||||||
--next
|
--next
|
||||||
-js ::OUTPUT_DIR::/bin/ElectronSetup.js
|
-js ::OUTPUT_DIR::/bin/ElectronSetup.js
|
||||||
-cp ::OUTPUT_DIR::/haxe
|
-cp ::OUTPUT_DIR::/haxe
|
||||||
-lib electron
|
|
||||||
-main ElectronSetup
|
-main ElectronSetup
|
||||||
-dce full
|
-dce full
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,6 @@
|
|||||||
--next
|
--next
|
||||||
-js ::OUTPUT_DIR::/bin/ElectronSetup.js
|
-js ::OUTPUT_DIR::/bin/ElectronSetup.js
|
||||||
-cp ::OUTPUT_DIR::/haxe
|
-cp ::OUTPUT_DIR::/haxe
|
||||||
-lib electron
|
|
||||||
-main ElectronSetup
|
-main ElectronSetup
|
||||||
-dce full
|
-dce full
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,6 @@
|
|||||||
--next
|
--next
|
||||||
-js ::OUTPUT_DIR::/bin/ElectronSetup.js
|
-js ::OUTPUT_DIR::/bin/ElectronSetup.js
|
||||||
-cp ::OUTPUT_DIR::/haxe
|
-cp ::OUTPUT_DIR::/haxe
|
||||||
-lib electron
|
|
||||||
-main ElectronSetup
|
-main ElectronSetup
|
||||||
-dce full
|
-dce full
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user