mirror of
https://github.com/somegeekintn/SimDirs.git
synced 2026-06-29 05:29:30 +00:00
30 lines
730 B
Objective-C
30 lines
730 B
Objective-C
//
|
|
// QSSimViewController.h
|
|
// SimDirs
|
|
//
|
|
// Created by Casey Fleser on 10/31/14.
|
|
// Copyright (c) 2014 Quiet Spark. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@protocol QSOutlineProvider <NSObject>
|
|
|
|
- (NSInteger) outlineChildCount;
|
|
- (id) outlineChildAtIndex: (NSInteger) inIndex;
|
|
- (BOOL) outlineItemIsExpanable;
|
|
- (NSString *) outlineItemTitle;
|
|
- (NSImage *) outlineItemImage;
|
|
|
|
- (BOOL) outlineItemPerformAction;
|
|
- (BOOL) outlineItemPerformActionForChild: (id) inChild;
|
|
|
|
@end
|
|
|
|
@interface QSSimViewController : NSObject
|
|
|
|
- (IBAction) openSelectedDeviceLocation: (id) inSender;
|
|
- (IBAction) openSelectedAppBundleLoc: (id) inSender;
|
|
- (IBAction) openSelectedAppSandboxLoc: (id) inSender;
|
|
|
|
@end
|