1 //
2 //  PXLayerDetailsView.h
3 //  Pixen-XCode
4 //
5 //  Created by Joe Osborn on Thu Feb 05 2004.
6 //  Copyright (c) 2004 Open Sword Group. All rights reserved.
7 //
8 #import <AppKit/AppKit.h>
9 
10 @interface PXLayerDetailsView : NSView {
11 	IBOutlet id name;
12 	IBOutlet id thumbnail;
13 	IBOutlet id opacity;
14 	IBOutlet id opacityField;
15 	IBOutlet id opacityText;
16 	IBOutlet id view;
17 	id image;
18 	id timer;
19 	id layer;
20 	IBOutlet id visibility;
21 	BOOL isHidden; //for backwards compatibility with 10.2
22 	NSRect changedRect;
23 #ifndef __COCOA__
24    id window;
25 #endif
26 
27 }
28 - opacityText;
29 - initWithLayer:aLayer;
30 - (void)setLayer:aLayer;
31 - (void)invalidateTimer;
32 - (void)updatePreview:notification;
33 - (IBAction)opacityDidChange:sender;
34 - (IBAction)nameDidChange:sender;
35 - (IBAction)visibilityDidChange:sender;
36 - (BOOL)isHidden;
37 - (void)setHidden:(BOOL)shouldHide;
38 @end
39