-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathIconUtils.m
293 lines (218 loc) · 7.53 KB
/
IconUtils.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
//----------------------------------------------------------------------------------------
// IconUtils.m - Common icon utilities
//
// Copyright © Chris, 2003 - 2010. All rights reserved.
//----------------------------------------------------------------------------------------
#import "IconUtils.h"
#import "NSString+MyAdditions.h"
//----------------------------------------------------------------------------------------
static IconRef gIconFolder = NULL,
gIconFile = NULL,
gIconRepo = NULL,
gIconWC = NULL;
static CFMutableDictionaryRef gCache = NULL;
//----------------------------------------------------------------------------------------
static NSImage*
getImageForIcon (IconRef iconRef, const NSRect* rect)
{
Assert(iconRef);
NSImage* image = [[NSImage alloc] initWithSize: rect->size];
[image lockFocus];
CGContextRef ctx = [[NSGraphicsContext currentContext] graphicsPort];
// CGContextSetInterpolationQuality(ctx, kCGInterpolationHigh);
WarnIf(PlotIconRefInContext(ctx, (CGRect*) rect, kAlignNone, kTransformNone,
NULL, kPlotIconRefNormalFlags, iconRef));
[image unlockFocus];
return image;
}
//----------------------------------------------------------------------------------------
static NSImage*
getImageForIconType (OSType iconType, GCoord size)
{
IconRef iconRef;
if (WarnIf(GetIconRef(kOnSystemDisk, kSystemIconsCreator, iconType, &iconRef)) == noErr)
{
NSImage* image = ImageFromIcon(iconRef, size);
WarnIf(ReleaseIconRef(iconRef));
return image;
}
return nil;
}
//----------------------------------------------------------------------------------------
static NSImage*
setImageForIconType (NSString* name, OSType iconType)
{
NSImage* image = getImageForIconType(iconType, 32);
if (image == nil || ![image setName: name])
dprintf("WARNING: init image '%@' FAILED", name);
return image;
}
//----------------------------------------------------------------------------------------
static void
loadIcon (IconRef* iconRef, NSString* name, OSType iconType, IconRef defaultIcon)
{
name = [[NSBundle mainBundle] pathForResource: name ofType: @"icns"];
FSRef fsRef;
char path[2048];
Boolean isDirectory;
if (!ToUTF8(name, path, sizeof(path)) ||
WarnIf(FSPathMakeRef((const UInt8*) path, &fsRef, &isDirectory)) ||
WarnIf(RegisterIconRefFromFSRef('svnX', iconType, &fsRef, iconRef)))
*iconRef = defaultIcon;
}
//----------------------------------------------------------------------------------------
static inline void
initIcon (IconRef* iconRef, OSType iconType)
{
WarnIf(GetIconRef(kOnSystemDisk, kSystemIconsCreator, iconType, iconRef));
}
//----------------------------------------------------------------------------------------
static inline void
retain (IconRef iconRef)
{
if (iconRef != NULL)
WarnIf(AcquireIconRef(iconRef));
}
//----------------------------------------------------------------------------------------
static inline void
release (IconRef iconRef)
{
if (iconRef != NULL)
WarnIf(ReleaseIconRef(iconRef));
}
//----------------------------------------------------------------------------------------
static void
releaseIconRef (CFAllocatorRef allocator, const void* value)
{
#pragma unused(allocator)
release((IconRef) value);
}
//----------------------------------------------------------------------------------------
static double
nanoseconds (UInt64 t)
{
Nanoseconds ns = AbsoluteToNanoseconds(*(AbsoluteTime*) &t);
return *(SInt64*) &ns;
}
//----------------------------------------------------------------------------------------
#pragma mark -
//----------------------------------------------------------------------------------------
void
InitIconCache ()
{
if (gIconFolder == NULL) // do only once
{
initIcon(&gIconFolder, kGenericFolderIcon);
initIcon(&gIconFile, kGenericDocumentIcon);
loadIcon(&gIconRepo, @"Repository", 'Repo', gIconFolder);
IconRef badge;
// WarnIf(GetIconRef(kOnAppropriateDisk, 'svnX', 'APPL', &badge));
loadIcon(&badge, @"svnBadge", 'APPL', NULL);
WarnIf(CompositeIconRef(gIconFolder, badge, &gIconWC));
// Named icons
if (![ImageFromIcon(gIconFolder, 32) setName: @"FolderRef"])
dprintf("WARNING: init image 'FolderRef' FAILED");
setImageForIconType(@"Finder", kFinderIcon);
setImageForIconType(@"delete", kToolbarDeleteIcon);
NSImage* image = setImageForIconType(@"mkdir", kGenericFolderIcon);
[image lockFocus];
[[NSImage imageNamed: @"PlusTopRight"] compositeToPoint: NSZeroPoint
operation: NSCompositeSourceOver];
[image unlockFocus];
// Cache
const CFDictionaryValueCallBacks valueCallBacks = {
0, NULL, &releaseIconRef, NULL, NULL
};
gCache = CFDictionaryCreateMutable(kCFAllocatorDefault, 0,
&kCFTypeDictionaryKeyCallBacks,
&valueCallBacks);
CFDictionaryAddValue(gCache, @"", gIconFile);
retain(gIconFile);
}
}
//----------------------------------------------------------------------------------------
IconRef
GetFileIcon (ConstCStr path, Boolean* isDirectory)
{
IconRef iconRef = NULL;
FSRef fsRef;
if (WarnIfNot(FSPathMakeRef((const UInt8*) path, &fsRef, isDirectory), fnfErr) == noErr)
WarnIf(GetIconRefFromFileInfo(&fsRef, 0, NULL,
kFSCatInfoNone, NULL,
kIconServicesNormalUsageFlag, &iconRef, NULL));
if (iconRef == NULL)
retain(iconRef = *isDirectory ? gIconFolder : gIconFile);
return iconRef;
}
//----------------------------------------------------------------------------------------
// Try to get the icon for the specified path.
// If we can't then use isDirectory & name's file extension.
// Returns a retained IconRef.
IconRef
GetFileOrTypeIcon (ConstCStr path, NSString* name, Boolean* isDirectory)
{
IconRef iconRef = NULL;
FSRef fsRef;
if (WarnIfNot(FSPathMakeRef((const UInt8*) path, &fsRef, isDirectory), fnfErr) == noErr)
WarnIf(GetIconRefFromFileInfo(&fsRef, 0, NULL,
kFSCatInfoNone, NULL,
kIconServicesNormalUsageFlag, &iconRef, NULL));
if (iconRef == NULL)
retain(iconRef = *isDirectory ? gIconFolder
: GetFileTypeIcon([name pathExtension]));
return iconRef;
}
//----------------------------------------------------------------------------------------
IconRef
GenericFolderIcon ()
{
Assert(gIconFolder);
return gIconFolder;
}
//----------------------------------------------------------------------------------------
IconRef
GenericFileIcon ()
{
Assert(gIconFile);
return gIconFile;
}
//----------------------------------------------------------------------------------------
IconRef
RepositoryIcon ()
{
Assert(gIconRepo);
return gIconRepo;
}
//----------------------------------------------------------------------------------------
IconRef
WorkingCopyIcon ()
{
Assert(gIconWC);
return gIconWC;
}
//----------------------------------------------------------------------------------------
IconRef
GetFileTypeIcon (NSString* fileType)
{
Assert(fileType != nil);
Assert(gCache != NULL);
IconRef iconRef = (IconRef) CFDictionaryGetValue(gCache, fileType);
if (iconRef == NULL)
{
WarnIf(GetIconRefFromTypeInfo(0, 0, (CFStringRef) fileType, NULL,
kIconServicesNormalUsageFlag, &iconRef));
if (iconRef == NULL)
retain(iconRef = gIconFile);
CFDictionarySetValue(gCache, fileType, iconRef);
}
return iconRef;
}
//----------------------------------------------------------------------------------------
NSImage*
ImageFromIcon (IconRef iconRef, GCoord size)
{
const NSRect rect = { 0, 0, size, size };
return getImageForIcon(iconRef, &rect);
}
//----------------------------------------------------------------------------------------
// End of IconUtils.m