-
Notifications
You must be signed in to change notification settings - Fork 2
/
UKNibOwner.h
40 lines (27 loc) · 1.17 KB
/
UKNibOwner.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
/* =============================================================================
FILE: UKNibOwner.h
PROJECT: CocoaTADS
COPYRIGHT: (c) 2004-2006 M. Uli Kusterer, all rights reserved.
AUTHORS: M. Uli Kusterer - UK
Guenther Noack - GN
LICENSES: GPL, Modified BSD
REVISIONS:
2004-11-13 UK Created.
2006-08-17 GN Added -bundle method.
2006-08-18 GN Added -loadNib method, removed topLevelObjects field.
========================================================================== */
// -----------------------------------------------------------------------------
// Headers:
// -----------------------------------------------------------------------------
#import <Cocoa/Cocoa.h>
// -----------------------------------------------------------------------------
// Classes:
// -----------------------------------------------------------------------------
@interface UKNibOwner : NSObject
{
BOOL nibLoaded;
}
-(NSString*) nibFilename; // Defaults to name of the class.
-(NSBundle*) bundle; // Defaults to the bundle of the concrete UKNibOwner (sub)class.
-(BOOL) loadNib; // Loads Nib and returns YES on success.
@end