2013-07-17 08:28:14 +00:00
|
|
|
var app = require('app');
|
2013-07-26 07:53:00 +00:00
|
|
|
var ipc = require('ipc');
|
2013-11-29 07:19:30 +00:00
|
|
|
var dialog = require('dialog');
|
2013-07-17 08:28:14 +00:00
|
|
|
var BrowserWindow = require('browser-window');
|
2013-10-05 06:31:30 +00:00
|
|
|
var Menu = require('menu');
|
2013-07-17 08:28:14 +00:00
|
|
|
|
|
|
|
var window = null;
|
2015-06-05 11:48:58 +00:00
|
|
|
process.port = 0; // will be used by crash-reporter spec.
|
2013-07-17 08:28:14 +00:00
|
|
|
|
2013-07-29 08:35:42 +00:00
|
|
|
app.commandLine.appendSwitch('js-flags', '--expose_gc');
|
2015-03-10 07:09:23 +00:00
|
|
|
app.commandLine.appendSwitch('ignore-certificate-errors');
|
2013-07-29 08:35:42 +00:00
|
|
|
|
2014-04-25 08:13:16 +00:00
|
|
|
ipc.on('message', function(event, arg) {
|
|
|
|
event.sender.send('message', arg);
|
2013-07-26 07:53:00 +00:00
|
|
|
});
|
|
|
|
|
2014-04-28 03:55:56 +00:00
|
|
|
ipc.on('console.log', function(event, args) {
|
2013-08-21 03:15:22 +00:00
|
|
|
console.log.apply(console, args);
|
|
|
|
});
|
|
|
|
|
2014-04-28 03:55:56 +00:00
|
|
|
ipc.on('console.error', function(event, args) {
|
2013-08-21 03:15:22 +00:00
|
|
|
console.log.apply(console, args);
|
|
|
|
});
|
|
|
|
|
2014-04-28 03:55:56 +00:00
|
|
|
ipc.on('process.exit', function(event, code) {
|
2013-08-21 03:15:22 +00:00
|
|
|
process.exit(code);
|
|
|
|
});
|
|
|
|
|
2014-04-28 03:55:56 +00:00
|
|
|
ipc.on('eval', function(event, script) {
|
|
|
|
event.returnValue = eval(script);
|
2013-08-25 04:36:06 +00:00
|
|
|
});
|
|
|
|
|
2014-04-28 03:55:56 +00:00
|
|
|
ipc.on('echo', function(event, msg) {
|
|
|
|
event.returnValue = msg;
|
2013-09-22 04:06:41 +00:00
|
|
|
});
|
|
|
|
|
2015-03-17 12:55:53 +00:00
|
|
|
if (process.argv[2] == '--ci') {
|
2014-05-25 08:16:29 +00:00
|
|
|
process.removeAllListeners('uncaughtException');
|
|
|
|
process.on('uncaughtException', function(error) {
|
|
|
|
console.error(error, error.stack);
|
|
|
|
process.exit(1);
|
|
|
|
});
|
|
|
|
}
|
2013-07-19 02:47:00 +00:00
|
|
|
|
|
|
|
app.on('window-all-closed', function() {
|
2014-04-10 07:08:14 +00:00
|
|
|
app.quit();
|
2013-07-19 02:47:00 +00:00
|
|
|
});
|
|
|
|
|
2013-12-27 03:08:26 +00:00
|
|
|
app.on('ready', function() {
|
2013-10-05 06:31:30 +00:00
|
|
|
var template = [
|
|
|
|
{
|
2013-10-10 06:33:42 +00:00
|
|
|
label: 'Atom',
|
|
|
|
submenu: [
|
|
|
|
{
|
|
|
|
label: 'Quit',
|
2013-11-29 08:14:44 +00:00
|
|
|
accelerator: 'CommandOrControl+Q',
|
2013-10-10 06:33:42 +00:00
|
|
|
click: function(item, window) { app.quit(); }
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
2013-11-29 08:21:43 +00:00
|
|
|
label: 'Edit',
|
2013-10-05 06:31:30 +00:00
|
|
|
submenu: [
|
|
|
|
{
|
2013-11-29 08:21:43 +00:00
|
|
|
label: 'Undo',
|
|
|
|
accelerator: 'CommandOrControl+Z',
|
|
|
|
selector: 'undo:',
|
2013-10-05 06:31:30 +00:00
|
|
|
},
|
|
|
|
{
|
2013-11-29 08:21:43 +00:00
|
|
|
label: 'Redo',
|
|
|
|
accelerator: 'CommandOrControl+Shift+Z',
|
|
|
|
selector: 'redo:',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'separator',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Cut',
|
|
|
|
accelerator: 'CommandOrControl+X',
|
|
|
|
selector: 'cut:',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Copy',
|
|
|
|
accelerator: 'CommandOrControl+C',
|
|
|
|
selector: 'copy:',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Paste',
|
|
|
|
accelerator: 'CommandOrControl+V',
|
|
|
|
selector: 'paste:',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Select All',
|
|
|
|
accelerator: 'CommandOrControl+A',
|
|
|
|
selector: 'selectAll:',
|
2013-10-05 06:31:30 +00:00
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'View',
|
|
|
|
submenu: [
|
|
|
|
{
|
|
|
|
label: 'Reload',
|
2013-11-29 08:14:44 +00:00
|
|
|
accelerator: 'CommandOrControl+R',
|
2013-10-05 06:31:30 +00:00
|
|
|
click: function(item, window) { window.restart(); }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Enter Fullscreen',
|
|
|
|
click: function(item, window) { window.setFullScreen(true); }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Toggle DevTools',
|
2013-11-29 08:14:44 +00:00
|
|
|
accelerator: 'Alt+CommandOrControl+I',
|
2013-10-05 06:31:30 +00:00
|
|
|
click: function(item, window) { window.toggleDevTools(); }
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2013-11-29 08:21:43 +00:00
|
|
|
{
|
|
|
|
label: 'Window',
|
|
|
|
submenu: [
|
|
|
|
{
|
|
|
|
label: 'Open',
|
|
|
|
accelerator: 'CommandOrControl+O',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'Close',
|
|
|
|
accelerator: 'CommandOrControl+W',
|
|
|
|
click: function(item, window) { window.close(); }
|
|
|
|
},
|
|
|
|
]
|
|
|
|
},
|
2013-10-05 06:31:30 +00:00
|
|
|
];
|
|
|
|
|
2013-10-05 13:05:59 +00:00
|
|
|
var menu = Menu.buildFromTemplate(template);
|
|
|
|
app.setApplicationMenu(menu);
|
|
|
|
|
2013-09-20 10:32:05 +00:00
|
|
|
// Test if using protocol module would crash.
|
2014-08-15 03:08:06 +00:00
|
|
|
require('protocol').registerProtocol('test-if-crashes', function() {});
|
2013-09-20 10:32:05 +00:00
|
|
|
|
2013-07-17 08:28:14 +00:00
|
|
|
window = new BrowserWindow({
|
2015-04-14 07:59:45 +00:00
|
|
|
title: 'Electron Tests',
|
2013-08-21 03:35:39 +00:00
|
|
|
show: false,
|
2013-07-17 08:28:14 +00:00
|
|
|
width: 800,
|
2014-07-21 05:08:52 +00:00
|
|
|
height: 600,
|
|
|
|
'web-preferences': {
|
|
|
|
javascript: true // Test whether web-preferences crashes.
|
|
|
|
},
|
2013-07-17 08:28:14 +00:00
|
|
|
});
|
|
|
|
window.loadUrl('file://' + __dirname + '/index.html');
|
2013-11-29 07:19:30 +00:00
|
|
|
window.on('unresponsive', function() {
|
|
|
|
var chosen = dialog.showMessageBox(window, {
|
|
|
|
type: 'warning',
|
|
|
|
buttons: ['Close', 'Keep Waiting'],
|
|
|
|
message: 'Window is not responsing',
|
|
|
|
detail: 'The window is not responding. Would you like to force close it or just keep waiting?'
|
|
|
|
});
|
|
|
|
if (chosen == 0) window.destroy();
|
|
|
|
});
|
2013-07-17 08:28:14 +00:00
|
|
|
});
|