-
Notifications
You must be signed in to change notification settings - Fork 1
/
DocumentMakerController.h
45 lines (33 loc) · 1.13 KB
/
DocumentMakerController.h
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
37
38
39
40
41
42
43
44
45
//
// DocumentMakerController.h
// SproutedInterface
//
// Created by Philip Dow on 9/28/07.
// Copyright Sprouted. All rights reserved.
// Inquiries should be directed to [email protected]
//
#import <Cocoa/Cocoa.h>
extern NSString *kSproutedAppHelperURL;
extern NSString *kSproutedAppHelperFlags;
extern NSString *kSproutedAppHelperMetadata;
extern NSString *kSproutedAppHelperIcon;
extern NSString *kSproutedAppHelperEntityName;
@interface DocumentMakerController : NSObject {
id delegate;
id representedObject;
NSManagedObjectContext *managedObjectContext;
}
- (id) initWithOwner:(id)anObject managedObjectContext:(NSManagedObjectContext*)moc;
- (int) numberOfViews;
- (NSView*) contentViewAtIndex:(int)index;
- (void) willSelectViewAtIndex:(int)index;
- (void) didSelectViewAtIndex:(int)index;
- (NSString*) titleOfViewAtIndex:(int)index;
- (id) delegate;
- (void) setDelegate:(id)anObject;
- (NSManagedObjectContext*) managedObjectContext;
- (void) setManagedObjectContext:(NSManagedObjectContext*)moc;
- (id) representedObject;
- (void) setRepresentedObject:(id)anObject;
- (NSArray*) documentDictionaries:(NSError**)error;
@end