mirror of
https://github.com/atom/atom.git
synced 2026-02-16 01:25:13 -05:00
120 lines
3.2 KiB
CoffeeScript
120 lines
3.2 KiB
CoffeeScript
Browser = require 'browser'
|
|
Editor = require 'editor'
|
|
|
|
fs = require 'fs'
|
|
_ = require 'underscore'
|
|
|
|
# This a weirdo file. We don't create a Window class, we just add stuff to
|
|
# the DOM window.
|
|
windowAdditions =
|
|
editor: null
|
|
|
|
browser: null
|
|
|
|
extensions: {}
|
|
|
|
appRoot: OSX.NSBundle.mainBundle.resourcePath
|
|
|
|
path: null
|
|
|
|
startup: ->
|
|
atom.keybinder.register "window", window
|
|
|
|
@path = $atomController.path
|
|
@setTitle _.last @path.split '/'
|
|
|
|
# Remember sizing!
|
|
defaultFrame = x: 0, y: 0, width: 600, height: 800
|
|
frame = atom.storage.get "window.frame.#{@path}", defaultFrame
|
|
rect = OSX.CGRectMake(frame.x, frame.y, frame.width, frame.height)
|
|
$atomController.window.setFrame_display rect, true
|
|
|
|
@editor = new Editor
|
|
@browser = new Browser
|
|
|
|
@loadExtensions()
|
|
@loadKeyBindings()
|
|
@loadSettings()
|
|
|
|
$atomController.window.makeKeyWindow
|
|
|
|
shutdown: ->
|
|
extension.shutdown() for name, extension of @extensions
|
|
|
|
frame = $atomController.window.frame
|
|
x = frame.origin.x
|
|
y = frame.origin.y
|
|
width = frame.size.width
|
|
height = frame.size.height
|
|
|
|
atom.storage.set "window.frame.#{@path}", {x:x, y:y, width:width, height:height}
|
|
|
|
loadExtensions: ->
|
|
extension.shutdown() for name, extension of @extensions
|
|
@extensions = {}
|
|
|
|
extensionPaths = fs.list require.resourcePath + "/extensions"
|
|
for extensionPath in extensionPaths when fs.isDirectory extensionPath
|
|
try
|
|
extension = require extensionPath
|
|
@extensions[extension.name] = new extension
|
|
catch error
|
|
console.warn "window: Loading Extension '#{fs.base extensionPath}' failed."
|
|
console.warn error
|
|
|
|
# After all the extensions are created, start them up.
|
|
for name, extension of @extensions
|
|
try
|
|
extension.startup()
|
|
catch error
|
|
console.warn "window: Extension #{extension.constructor.name} failed to startup."
|
|
console.warn error
|
|
|
|
atom.trigger 'extensions:loaded'
|
|
|
|
loadKeyBindings: ->
|
|
atom.keybinder.load require.resolve "key-bindings.coffee"
|
|
if fs.isFile "~/.atomicity/key-bindings.coffee"
|
|
atom.keybinder.load "~/.atomicity/key-bindings.coffee"
|
|
|
|
loadSettings: ->
|
|
if fs.isFile "~/.atomicity/settings.coffee"
|
|
require "~/.atomicity/settings.coffee"
|
|
|
|
showConsole: ->
|
|
$atomController.webView.inspector.showConsole true
|
|
|
|
setTitle: (title) ->
|
|
$atomController.window.title = title
|
|
|
|
reload: ->
|
|
@shutdown()
|
|
$atomController.close
|
|
OSX.NSApp.createController @path
|
|
|
|
open: (path) ->
|
|
$atomController.window.makeKeyAndOrderFront $atomController
|
|
atom.trigger 'window:open', path
|
|
|
|
close: (path) ->
|
|
@shutdown()
|
|
$atomController.close
|
|
atom.trigger 'window:close', path
|
|
|
|
handleKeyEvent: ->
|
|
atom.keybinder.handleEvent.apply atom.keybinder, arguments
|
|
|
|
triggerEvent: ->
|
|
atom.trigger arguments...
|
|
|
|
canOpen: (path) ->
|
|
parent = @path.replace(/([^\/])$/, "$1/")
|
|
child = path.replace(/([^\/])$/, "$1/")
|
|
|
|
# If the child is contained by the parent, it can be opened by this window
|
|
child.match "^" + parent
|
|
|
|
for key, value of windowAdditions
|
|
console.warn "DOMWindow already has a key named `#{key}`" if window[key]
|
|
window[key] = value
|