blob: f6cbd69fbca42557c293cc7e6951f1f8a9d8b4b2 (
plain)
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
|
//
// LiInspectorView.h
// Liaison
//
// Created by Brian Cully on Wed May 21 2003.
// Copyright (c) 2003 Brian Cully. All rights reserved.
//
@interface LiInspectorView : NSObject
{
id theIdentifier;
NSString *theName;
NSImage *theImage;
NSView *theView;
BOOL theViewIsHorizontallyResizable, theViewisVerticallyResizable;
NSSize theViewSize;
}
@property (retain,getter=image) NSImage *theImage;
@property (retain,getter=view) NSView *theView;
@property (retain,getter=identifier) id theIdentifier;
@property (retain,getter=name) NSString *theName;
@end
@interface LiInspectorView (Accessors)
- (id)identifier;
- (void)setIdentifier: (id)anIdentifier;
- (NSString *)name;
- (void)setName: (NSString *)aName;
- (NSImage *)image;
- (void)setImage: (NSImage *)anImage;
- (NSView *)view;
- (void)setView: (NSView *)aView;
- (BOOL)isHorizontallyResizable;
- (void)setIsHorizontallyResizable: (BOOL)resizable;
- (BOOL)isVerticallyResizable;
- (void)setIsVerticallyResizable: (BOOL)resizable;
- (NSSize)viewSize;
- (void)setViewSize: (NSSize)aSize;
@end
|