Oolite 1.91.0.7604-240417-a536cbe
Loading...
Searching...
No Matches
OODebugInspectorModule.h
Go to the documentation of this file.
1/*
2
3OODebugInspectorModule.h
4
5
6Oolite Debug Bundle
7
8Copyright © 2007-2013 Jens Ayton
9
10Permission is hereby granted, free of charge, to any person obtaining a copy
11of this software and associated documentation files (the “Software”), to deal
12in the Software without restriction, including without limitation the rights
13to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14copies of the Software, and to permit persons to whom the Software is
15furnished to do so, subject to the following conditions:
16
17The above copyright notice and this permission notice shall be included in all
18copies or substantial portions of the Software.
19
20THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26SOFTWARE.
27
28*/
29
30#import <Cocoa/Cocoa.h>
31#import "OOWeakReference.h"
32
33
34@interface OODebugInspectorModule: NSObject
35{
36@private
38 IBOutlet NSView *_rootView;
39
40}
41
42- (id) initWithObject:(id <OOWeakReferenceSupport>)object;
43- (BOOL) loadUserInterface; // Called to load UI; subclasses should generally override -awakeFromNib and optionally -nibName instead.
44
45- (NSString *) nibName; // Default: class name
46- (NSView *) rootView;
47
48- (id) object;
49- (void) update;
50
51@end
52
53
54@interface NSObject (OODebugInspectorSupport)
55
56- (NSArray *) debugInspectorModules; // Array of OODebugInspectorModule subclasses.
57
58@end
59
60
61@interface NSArray (OODebugInspectorSupportUtilities)
62
63// Utility for implementing -debugInspectorModules.
64- (NSArray *) arrayByAddingInspectorModuleOfClass:(Class)theClass
65 forObject:(id <OOWeakReferenceSupport>)object;
66
67@end
68
69
70// Em dash
71NSString *InspectorUnknownValueString(void);
NSString * InspectorUnknownValueString(void)