Checking in new window effect frame, so I can begin moving the guts into it. Also...
[ITKit.git] / ITWindowEffect.m
1 //
2 //  ITWindowEffect.m
3 //  ITKit
4 //
5 //  Created by Matt L. Judy on Sat Mar 01 2003.
6 //  Copyright (c) 2003 NibFile.com. All rights reserved.
7 //
8
9 #import "ITWindowEffect.h"
10
11
12 @implementation ITWindowEffect
13
14
15 - (id)initWithWindow:(NSWindow *)window
16 {
17     _window = window;
18 }
19
20 - (NSWindow *)window
21 {
22     return _window;
23 }
24
25 - (void)setWindow:(NSWindow *)newWindow
26 {
27     _window = newWindow;
28 }
29
30 - (void)performAppear
31 {
32     NSLog("ITWindowEffect does not implement performAppear.");
33 }
34
35 - (void)performVanish
36 {
37     NSLog("ITWindowEffect does not implement performVanish.");
38 }
39
40
41 @end