1 /* ----====----====----====----====----====----====----====----====----====----
2 MyTimerView.m (jeweltoy)
4 JewelToy is a simple game played against the clock.
5 Copyright (C) 2001 Giles Williams
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License
9 as published by the Free Software Foundation; either version 2
10 of the License, or (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 ----====----====----====----====----====----====----====----====----====---- */
24 @implementation TimerView
26 - (id)initWithFrame:(NSRect)frame {
27 [super initWithFrame:frame];
30 color1 = [[NSColor redColor] retain];
31 color2 = [[NSColor yellowColor] retain];
32 colorOK = [[NSColor greenColor] retain];
33 backColor = [[NSColor blackColor] retain];
39 // dealloc is the method called when objects are being freed. (Note that "release"
40 // is called to release objects; when the number of release calls reduce the
41 // total reference count on an object to zero, dealloc is called to free
42 // the object. dealloc should free any memory allocated by the subclass
43 // and then call super to get the superclass to do additional cleanup.
53 // drawRect: should be overridden in subclassers of NSView to do necessary
54 // drawing in order to recreate the the look of the view. It will be called
55 // to draw the whole view or parts of it (pay attention the rect argument);
57 - (void)drawRect:(NSRect)rect {
61 NSRectFill([self bounds]); // Equiv to [[NSBezierPath bezierPathWithRect:[self bounds]] fill]
65 dotRect.size.width = meter * ([self bounds].size.width - 8);
66 dotRect.size.height = [self bounds].size.height - 8;
70 // another MW change...
74 if (meter < 0.3) [color2 set];
75 if (meter < 0.1) [color1 set];
78 NSRectFill(dotRect); // Equiv to [[NSBezierPath bezierPathWithRect:dotRect] fill]
86 - (void) setPaused:(BOOL) value
91 - (void) incrementMeter:(float) value
94 if (meter > 1) meter = 1;
95 [self setNeedsDisplay:YES];
98 - (void) setDecrement:(float) value
103 - (void) decrementMeter:(float) value
106 if (meter < 0) meter = 0;
107 [self setNeedsDisplay:YES];
110 - (void) setTimerRunningEvery:(NSTimeInterval) timeInterval
111 decrement:(float) value
113 whenRunOut:(SEL) runOutSel
114 whenRunOver:(SEL) runOverSel
118 runOutSelector = runOutSel;
119 runOverSelector = runOverSel;
124 timer = [NSTimer scheduledTimerWithTimeInterval:timeInterval
126 selector:@selector(runTimer)
139 [target performSelector:runOverSelector];
142 [self decrementMeter:decrement];
143 if (meter == 0 && decrement!=0) // MW change added '&& decrement'
146 [target performSelector:runOutSelector];
152 - (void) setTimer:(float)value
156 [self setNeedsDisplay:YES];