-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathXcodeProjReaderAppDelegate.h
More file actions
31 lines (23 loc) · 985 Bytes
/
XcodeProjReaderAppDelegate.h
File metadata and controls
31 lines (23 loc) · 985 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// XcodeProjReaderAppDelegate.h * XcodeProjReader
// Created by Joshua Garnham on 08/05/2011. Edited by Alex Gray on 10/7/13
#import <Cocoa/Cocoa.h>
@class XcodeObject;
@interface ColorTableRowView : NSTableRowView
@property (readonly) XcodeObject *x;
@end
@class XCDProjectCoordinator;
@interface XcodeProjReaderAppDelegate : NSObject <NSApplicationDelegate> {
BOOL _initialized;
}
@property (assign) IBOutlet NSWindow *window;
@property (weak) IBOutlet NSOutlineView *outlineView;
@property (weak) IBOutlet NSButton *parseButton;
@property (weak) IBOutlet NSSegmentedControl *actions;
@property (weak) IBOutlet NSPathControl *projLocField;
@property (weak) IBOutlet NSTextField *titleField;
@property NSMutableArray *expandedItems;
@property XCDProjectCoordinator *projectCoordinator;
- (IBAction) parseCurrentlyLocatedXcodeProject: (id)sender;
- (IBAction) browseForXcodeProject: (id)sender;
- (IBAction) segmentAction: (id)sender;
@end