mirror of
https://github.com/textmate/textmate.git
synced 2026-01-23 05:37:55 -05:00
13 lines
474 B
Objective-C
13 lines
474 B
Objective-C
@interface ProjectLayoutView : NSView
|
|
@property (nonatomic, retain) NSView* tabBarView;
|
|
@property (nonatomic, retain) NSView* documentView;
|
|
@property (nonatomic, retain) NSView* fileBrowserView;
|
|
@property (nonatomic, retain) NSView* htmlOutputView;
|
|
|
|
@property (nonatomic, assign) CGFloat fileBrowserWidth;
|
|
@property (nonatomic, assign) BOOL fileBrowserOnRight;
|
|
|
|
@property (nonatomic, assign) NSSize htmlOutputSize;
|
|
@property (nonatomic, assign) BOOL htmlOutputOnRight;
|
|
@end
|