-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathSvnFileStatusToColourTransformer.m
117 lines (83 loc) · 3 KB
/
SvnFileStatusToColourTransformer.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
#import "SvnFileStatusToColourTransformer.h"
#import "CommonUtils.h"
typedef enum { kColorModified = 0, kColorNew, kColorMissing, kColorConflict } FileStatusColor;
static NSColor* gColors[4] = { nil };
static NSString* const gKeys[4] = {
@"svnFileStatusModifiedColor",
@"svnFileStatusNewColor",
@"svnFileStatusMissingColor",
@"svnFileStatusConflictColor"
};
//----------------------------------------------------------------------------------------
@implementation SvnFileStatusToColourTransformer
//----------------------------------------------------------------------------------------
+ (void) initColor: (FileStatusColor) index
color: (NSColor*) color
prefs: (NSMutableDictionary*) prefs
{
NSString* const key = gKeys[index];
[prefs setObject: [NSArchiver archivedDataWithRootObject: color] forKey: key];
[[NSUserDefaultsController sharedUserDefaultsController] addObserver: self
forKeyPath: [@"values." stringByAppendingString: key]
options: NSKeyValueObservingOptionNew
context: (void*) index];
gColors[index] = [color retain];
}
//----------------------------------------------------------------------------------------
+ (void) initialize: (NSMutableDictionary*) prefs
{
[self initColor: kColorModified color: [NSColor blackColor ] prefs: prefs];
[self initColor: kColorNew color: [NSColor blueColor ] prefs: prefs];
[self initColor: kColorMissing color: [NSColor redColor ] prefs: prefs];
[self initColor: kColorConflict color: [NSColor magentaColor] prefs: prefs];
}
//----------------------------------------------------------------------------------------
+ (void) update: (unsigned int) color
{
Assert(color <= kColorConflict);
id data = GetPreference(gKeys[color]);
if ([data isKindOfClass: [NSData class]])
{
[gColors[color] release];
gColors[color] = [[NSUnarchiver unarchiveObjectWithData: data] retain];
}
}
//----------------------------------------------------------------------------------------
+ (void) update
{
for (unsigned int color = kColorModified; color <= kColorConflict; ++color)
[self update: color];
}
//----------------------------------------------------------------------------------------
+ (void) observeValueForKeyPath: (NSString*) keyPath
ofObject: (id) object
change: (NSDictionary*) change
context: (void*) context
{
#pragma unused(keyPath, object, change)
[self update: (unsigned int) context];
}
//----------------------------------------------------------------------------------------
+ (Class) transformedValueClass
{
return [NSColor class];
}
+ (BOOL) allowsReverseTransformation
{
return NO;
}
- (id) transformedValue: (id) aString
{
if ([aString length] == 1)
{
switch ([aString characterAtIndex: 0])
{
case 'M': return gColors[kColorModified];
case '?': return gColors[kColorNew];
case '!': return gColors[kColorMissing];
case 'C': return gColors[kColorConflict];
}
}
return [NSColor blackColor];
}
@end