forked from rentzsch/Blitz
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCounterView.h
More file actions
21 lines (19 loc) · 749 Bytes
/
CounterView.h
File metadata and controls
21 lines (19 loc) · 749 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#import <Cocoa/Cocoa.h>
#define UpdateSecondsElapsed @"UpdateSecondsElapsed"
#define kCounterViewRingForeground @"CounterViewRingForeground"
#define kCounterViewRingBackground @"CounterViewRingBackground"
#define kCounterViewWedgeForeground @"CounterViewWedgeForeground"
#define kCounterViewWedgeBackground @"CounterViewWedgeBackground"
@interface CounterView : NSView {
NSTimeInterval secondsElapsed;
NSColor *ringForeground;
NSColor *ringBackground;
NSColor *wedgeForeground;
NSColor *wedgeBackground;
}
@property NSTimeInterval secondsElapsed;
@property (retain) NSColor *ringForeground;
@property (retain) NSColor *ringBackground;
@property (retain) NSColor *wedgeForeground;
@property (retain) NSColor *wedgeBackground;
@end