2013-09-05 01:36:27 +00:00
|
|
|
var mainWindow = null;
|
|
|
|
|
2013-10-15 05:17:58 +00:00
|
|
|
var openWindow = function(launchData) {
|
2013-09-05 01:36:27 +00:00
|
|
|
|
|
|
|
if (mainWindow) {
|
|
|
|
mainWindow.contentWindow.launchData = launchData;
|
|
|
|
mainWindow.contentWindow.require(["command"], function(c) {
|
|
|
|
c.fire("session:open-launch");
|
|
|
|
});
|
2013-09-12 02:36:14 +00:00
|
|
|
mainWindow.focus();
|
|
|
|
mainWindow.drawAttention();
|
2013-09-05 01:36:27 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//launchData.items will contain files from file manager
|
|
|
|
chrome.storage.local.get("bounds", function(data) {
|
2013-10-02 23:12:35 +00:00
|
|
|
var defaults = {
|
2013-09-05 01:36:27 +00:00
|
|
|
width: 800,
|
|
|
|
height: 600,
|
2013-09-13 18:13:00 +00:00
|
|
|
left: 50,
|
|
|
|
top: 50
|
2013-09-05 01:36:27 +00:00
|
|
|
};
|
2013-10-02 23:12:35 +00:00
|
|
|
var bounds = data.bounds || defaults;
|
|
|
|
//sanity check the bounds information -- also need to add maximums
|
|
|
|
if (bounds.left < 0 || bounds.top < 0 || bounds.width < 0 || bounds.height < 0) {
|
|
|
|
bounds = defaults;
|
|
|
|
}
|
2013-09-05 01:36:27 +00:00
|
|
|
chrome.app.window.create("main.html", {
|
|
|
|
bounds: bounds
|
|
|
|
}, function(win) {
|
|
|
|
mainWindow = win;
|
|
|
|
win.contentWindow.launchData = launchData;
|
|
|
|
mainWindow.onClosed.addListener(function() {
|
|
|
|
mainWindow = null;
|
2013-08-23 23:03:46 +00:00
|
|
|
});
|
2013-08-20 00:53:03 +00:00
|
|
|
});
|
2013-09-05 01:36:27 +00:00
|
|
|
|
|
|
|
});
|
|
|
|
|
2013-10-15 05:17:58 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
chrome.app.runtime.onLaunched.addListener(openWindow);
|
|
|
|
chrome.app.runtime.onRestarted.addListener(openWindow);
|