Cappuccino  1.0.0
 All Classes Files Functions Variables Typedefs Macros Groups Pages
CPDocument.h
Go to the documentation of this file.
1 
2 @interface CPDocument : CPResponder
3 {
4  CPWindow _window; // For outlet purposes.
5  CPView _view; // For outlet purposes
6  CPDictionary _viewControllersForWindowControllers;
7 
8  CPURL _fileURL;
9  CPString _fileType;
10  CPArray _windowControllers;
11  unsigned _untitledDocumentIndex;
12 
13  BOOL _hasUndoManager;
14  CPUndoManager _undoManager;
15 
16  int _changeCount;
17 
18  CPURLConnection _readConnection;
19  CPURLRequest _writeRequest;
20 
21  CPAlert _canCloseAlert;
22 }
23 @end