forked from SquaredTiki/Xcode-Project-Reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXcodeProjReaderAppDelegate.h
More file actions
36 lines (27 loc) · 889 Bytes
/
Copy pathXcodeProjReaderAppDelegate.h
File metadata and controls
36 lines (27 loc) · 889 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
32
33
34
35
36
//
// XcodeProjReaderAppDelegate.h
// XcodeProjReader
//
// Created by Joshua Garnham on 08/05/2011.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <Cocoa/Cocoa.h>
#import "XCDProjectCoordinator.h"
@interface XcodeProjReaderAppDelegate : NSObject <NSApplicationDelegate> {
NSWindow *window;
NSString *filePath;
IBOutlet NSOutlineView *outlineView;
IBOutlet NSButton *browseButton;
IBOutlet NSButton *parseButton;
IBOutlet NSTextField *projLocField;
IBOutlet NSTextField *newItemTitleField;
IBOutlet NSTextField *newGroupTitleField;
XCDProjectCoordinator *projectCoordinator;
}
@property (assign) IBOutlet NSWindow *window;
- (IBAction)parseCurrentlyLocatedXcodeProject:(id)sender;
- (IBAction)browseForXcodeProject:(id)sender;
- (IBAction)remove:(id)sender;
- (IBAction)add:(id)sender;
- (IBAction)addGroup:(id)sender;
@end