-
Notifications
You must be signed in to change notification settings - Fork 1
/
EmptyView.m
executable file
·45 lines (33 loc) · 931 Bytes
/
EmptyView.m
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
41
42
43
44
45
#import "EmptyView.h"
#import "AppController.h"
@implementation EmptyView
- (id)initWithFrame:(NSRect)frameRect {
if ((self = [super initWithFrame:frameRect]) != nil) {
// Add initialization code here
lastNotesNumber = -1;
}
return self;
}
- (void)awakeFromNib {
outletObjectAwoke(self);
}
- (void)setLabelStatus:(int)notesNumber {
if (notesNumber != lastNotesNumber) {
NSString *statusString = nil;
if (notesNumber > 1) {
statusString = [NSString stringWithFormat:NSLocalizedString(@"%d Notes Selected",nil), notesNumber];
} else {
statusString = NSLocalizedString(@"No Note Selected",nil); //\nPress return to create one.";
}
[labelText setStringValue:statusString];
lastNotesNumber = notesNumber;
}
}
- (void)drawRect:(NSRect)rect {
NSRect bounds = [self bounds];
[[NSColor whiteColor] set];
NSRectFill(bounds);
[[NSColor grayColor] set];
NSFrameRect(bounds);
}
@end