mirror of
https://github.com/atom/atom.git
synced 2026-04-06 03:02:13 -04:00
Packages now specify their dependencies in package.json so they should no longer rely on the availability of modules in the main node_modules folder.
138 lines
4.4 KiB
CoffeeScript
138 lines
4.4 KiB
CoffeeScript
BrowserWindow = require 'browser-window'
|
|
Menu = require 'menu'
|
|
MenuItem = require 'menu-item'
|
|
ContextMenu = require 'context-menu'
|
|
dialog = require 'dialog'
|
|
ipc = require 'ipc'
|
|
path = require 'path'
|
|
fs = require 'fs'
|
|
_ = require 'underscore'
|
|
|
|
# Private:
|
|
module.exports =
|
|
class AtomWindow
|
|
browserWindow: null
|
|
loaded: null
|
|
isSpec: null
|
|
|
|
constructor: (settings={}) ->
|
|
{@resourcePath, pathToOpen, initialLine, @isSpec} = settings
|
|
global.atomApplication.addWindow(this)
|
|
|
|
@setupNodePath(@resourcePath)
|
|
@browserWindow = new BrowserWindow show: false, title: 'Atom'
|
|
@browserWindow.restart = _.wrap _.bind(@browserWindow.restart, @browserWindow), (restart) =>
|
|
@setupNodePath(@resourcePath)
|
|
restart()
|
|
|
|
@handleEvents()
|
|
|
|
loadSettings = _.extend({}, settings)
|
|
loadSettings.windowState ?= ''
|
|
loadSettings.initialPath = pathToOpen
|
|
try
|
|
if fs.statSync(pathToOpen).isFile()
|
|
loadSettings.initialPath = path.dirname(pathToOpen)
|
|
|
|
@browserWindow.loadSettings = loadSettings
|
|
@browserWindow.once 'window:loaded', => @loaded = true
|
|
@browserWindow.loadUrl "file://#{@resourcePath}/static/index.html"
|
|
|
|
@openPath(pathToOpen, initialLine)
|
|
|
|
setupNodePath: (resourcePath) ->
|
|
process.env['NODE_PATH'] = path.resolve(resourcePath, 'exports')
|
|
|
|
getInitialPath: ->
|
|
@browserWindow.loadSettings.initialPath
|
|
|
|
containsPath: (pathToCheck) ->
|
|
initialPath = @getInitialPath()
|
|
if not initialPath
|
|
false
|
|
else if not pathToCheck
|
|
false
|
|
else if pathToCheck is initialPath
|
|
true
|
|
else if pathToCheck.indexOf(path.join(initialPath, path.sep)) is 0
|
|
true
|
|
else
|
|
false
|
|
|
|
handleEvents: ->
|
|
@browserWindow.on 'destroyed', =>
|
|
global.atomApplication.removeWindow(this)
|
|
|
|
@browserWindow.on 'unresponsive', =>
|
|
chosen = dialog.showMessageBox @browserWindow,
|
|
type: 'warning'
|
|
buttons: ['Close', 'Keep Waiting']
|
|
message: 'Editor is not responsing'
|
|
detail: 'The editor is not responding. Would you like to force close it or just keep waiting?'
|
|
@browserWindow.destroy() if chosen is 0
|
|
|
|
@browserWindow.on 'crashed', =>
|
|
chosen = dialog.showMessageBox @browserWindow,
|
|
type: 'warning'
|
|
buttons: ['Close Window', 'Reload', 'Keep It Open']
|
|
message: 'The editor has crashed'
|
|
detail: 'Please report this issue to https://github.com/atom/atom/issues'
|
|
switch chosen
|
|
when 0 then @browserWindow.destroy()
|
|
when 1 then @browserWindow.restart()
|
|
|
|
@browserWindow.on 'context-menu', (menuTemplate) =>
|
|
new ContextMenu(menuTemplate)
|
|
|
|
if @isSpec
|
|
# Spec window's web view should always have focus
|
|
@browserWindow.on 'blur', =>
|
|
@browserWindow.focusOnWebView()
|
|
|
|
openPath: (pathToOpen, initialLine) ->
|
|
if @loaded
|
|
@focus()
|
|
@sendCommand('window:open-path', {pathToOpen, initialLine})
|
|
@sendCommand('window:update-available', global.atomApplication.getUpdateVersion()) if global.atomApplication.getUpdateVersion()
|
|
else
|
|
@browserWindow.once 'window:loaded', => @openPath(pathToOpen, initialLine)
|
|
|
|
sendCommand: (command, args...) ->
|
|
if @handlesAtomCommands()
|
|
@sendAtomCommand(command, args...)
|
|
else
|
|
@sendNativeCommand(command)
|
|
|
|
sendAtomCommand: (command, args...) ->
|
|
action = if args[0]?.contextCommand then 'context-command' else 'command'
|
|
ipc.sendChannel @browserWindow.getProcessId(), @browserWindow.getRoutingId(), action, command, args...
|
|
|
|
sendNativeCommand: (command) ->
|
|
switch command
|
|
when 'core:undo' then Menu.sendActionToFirstResponder('undo:')
|
|
when 'core:redo' then Menu.sendActionToFirstResponder('redo:')
|
|
when 'core:copy' then Menu.sendActionToFirstResponder('copy:')
|
|
when 'core:cut' then Menu.sendActionToFirstResponder('cut:')
|
|
when 'core:paste' then Menu.sendActionToFirstResponder('paste:')
|
|
when 'core:select-all' then Menu.sendActionToFirstResponder('selectAll:')
|
|
when 'window:reload' then @reload()
|
|
when 'window:toggle-dev-tools' then @toggleDevTools()
|
|
when 'window:close' then @close()
|
|
|
|
close: -> @browserWindow.close()
|
|
|
|
focus: -> @browserWindow.focus()
|
|
|
|
handlesAtomCommands: ->
|
|
not @isSpecWindow() and @isWebViewFocused()
|
|
|
|
isFocused: -> @browserWindow.isFocused()
|
|
|
|
isWebViewFocused: -> @browserWindow.isWebViewFocused()
|
|
|
|
isSpecWindow: -> @isSpec
|
|
|
|
reload: -> @browserWindow.restart()
|
|
|
|
toggleDevTools: -> @browserWindow.toggleDevTools()
|