mirror of
https://github.com/atom/atom.git
synced 2026-01-23 05:48:10 -05:00
34 lines
409 B
CoffeeScript
34 lines
409 B
CoffeeScript
# API Ideas
|
|
|
|
|
|
#
|
|
# Chrome
|
|
#
|
|
|
|
# View hierarchy
|
|
#
|
|
# App: has many Windows
|
|
# Window: has many Panes, contains a Document model
|
|
# Pane: has 0 or more Panes
|
|
#
|
|
# Model hieerarcy
|
|
#
|
|
# Document: holds all the data!
|
|
|
|
App =
|
|
windows: []
|
|
activeWindow: null
|
|
|
|
class Window
|
|
panes: []
|
|
document: null
|
|
activePane: null
|
|
|
|
class Pane
|
|
subPanes: []
|
|
window: null
|
|
activeSubPane: null
|
|
|
|
class Document
|
|
window: null
|