-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBookmark.m
420 lines (306 loc) · 7.88 KB
/
Bookmark.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
/*
*****************************
The DeskBrowse source code is the legal property of its developers, Joel Levin and Ian Elseth
*****************************
*/
#import "Bookmark.h"
#import "NSBezierPathRoundRects.h"
#import "NSStringAdditions.h"
#import "BookmarkActionCell.h"
#import "BookmarkMenuCell.h"
NSString* kDBLoadURLNotification = @"DBLoadURLNotification";
NSString* kDBDeleteBookmarkNotification = @"DBDeleteBookmarkNotification";
NSString* kBookmarkInfoURLStringKey = @"URLString";
NSString* kBookmarkInfoTitleKey = @"TitleString";
NSString* kBookmarkInfoMoreBookmarksKey = @"Bookmarks";
@implementation Bookmark
- (id) initWithDictionary: (NSDictionary*) dictionary
{
NSArray* subBookmarks = [dictionary objectForKey: kBookmarkInfoMoreBookmarksKey];
if (subBookmarks != nil)
{
[self release];
self = [[BookmarkFolder alloc] initWithDictionary: dictionary];
}
else
{
NSString* urlString = [dictionary objectForKey: kBookmarkInfoURLStringKey];
NSURL* url = nil;
NSString* title = [dictionary objectForKey: kBookmarkInfoTitleKey];
if (urlString != nil)
{
url = [NSURL URLWithString: urlString];
}
self = [self initWithURL: url title: title];
}
return self;
}
- (id) initWithURL: (NSURL*) URL title: (NSString*) title
{
NSRect newFrame = NSMakeRect(0, 0, 100, 15);
if (self = [super initWithFrame: newFrame])
{
mURL = [URL retain];
mTitle = [title retain];
}
return self;
}
- (void) dealloc
{
[mURL release];
[mTitle release];
[super dealloc];
}
#pragma mark -
- (id) copyWithZone: (NSZone*) zone
{
Bookmark* copyOfSelf = [[Bookmark alloc] init];
NSLog(@"Copy!!!");
[copyOfSelf setURL: mURL];
[copyOfSelf setTitle: mTitle];
return copyOfSelf;
}
#pragma mark -
- (void) load
{
if (mURL != nil)
{
NSDictionary* userInfo = [NSDictionary dictionaryWithObject: [mURL absoluteString] forKey: kBookmarkInfoURLStringKey];
[[NSNotificationCenter defaultCenter] postNotificationName: kDBLoadURLNotification object: self userInfo: userInfo];
}
}
- (void) remove
{
[[NSNotificationCenter defaultCenter] postNotificationName: kDBDeleteBookmarkNotification object: self userInfo: nil];
}
#pragma mark -
- (NSMutableDictionary*) dictionary
{
NSMutableDictionary* dictionary = nil;
if (mTitle != nil)
{
dictionary = [NSMutableDictionary dictionary];
[dictionary setObject: mTitle forKey: kBookmarkInfoTitleKey];
if (mURL != nil)
{
[dictionary setObject: [mURL absoluteString] forKey: kBookmarkInfoURLStringKey];
}
}
return dictionary;
}
- (NSURL*) URL
{
return mURL;
}
- (void) setURL: (NSURL*) url
{
if (url != mURL)
{
[url retain];
[mURL release];
mURL = url;
}
}
- (NSString*) URLString
{
return [mURL absoluteString];
}
- (void) setURLString: (NSString*) urlString
{
[mURL release];
mURL = [[NSURL URLWithString: urlString] retain];
}
- (NSString*) title
{
return mTitle;
}
- (void) setTitle: (NSString*) title
{
if (title != mTitle)
{
[mTitle release];
mTitle = [title copy];
[mBookmarkBarCell setStringValue: mTitle];
}
}
// -----------------------------
//
// Bookmark Bar related
//
// -----------------------------
#pragma mark -
#pragma mark Bookmark Bar
- (id <BookmarkBarCell>) cell
{
if (mBookmarkBarCell == nil)
{
mBookmarkBarCell = [[BookmarkActionCell alloc] initWithTarget: self action: @selector(load)];
[mBookmarkBarCell setStringValue: mTitle];
}
return mBookmarkBarCell;
}
#pragma mark -
- (void) setUpMenu
{
NSMenu* bookmarkMenu = [[NSMenu alloc] initWithTitle: @"Bookmark"];
NSMenuItem* loadMenuItem = [[NSMenuItem alloc] initWithTitle: @"Load" action: @selector(load) keyEquivalent: @""];
NSMenuItem* deleteMenuItem = [[NSMenuItem alloc] initWithTitle: @"Delete" action: @selector(remove) keyEquivalent: @""];
[bookmarkMenu addItem: loadMenuItem];
[bookmarkMenu addItem: deleteMenuItem];
[self setMenu: bookmarkMenu];
[bookmarkMenu release];
[loadMenuItem release];
[deleteMenuItem release];
}
#pragma mark -
#pragma mark Sorting
- (NSComparisonResult) compare: (Bookmark*) otherBookmark
{
NSComparisonResult result = NSOrderedSame;
if (otherBookmark != nil)
{
NSString* stringToCompare1 = mTitle;
NSString* stringToCompare2 = [otherBookmark title];
if (stringToCompare1 == nil)
{
stringToCompare1 = [mURL absoluteString];
}
if (stringToCompare2 == nil)
{
stringToCompare2 = [[otherBookmark URL] absoluteString];
}
result = [stringToCompare1 caseInsensitiveCompare: stringToCompare2];
}
return result;
}
@end
#pragma mark -
@implementation BookmarkFolder
- (id) initWithDictionary: (NSDictionary*) dictionary
{
NSString* title = [dictionary objectForKey: kBookmarkInfoTitleKey];
if (self = [super initWithURL: nil title: title])
{
NSArray* subBookmarks = [dictionary objectForKey: kBookmarkInfoMoreBookmarksKey];
NSEnumerator* bookmarkEnumerator = [subBookmarks objectEnumerator];
NSDictionary* currentInfoDict = nil;
while ((currentInfoDict = [bookmarkEnumerator nextObject]) != nil)
{
Bookmark* newBookmark = [[Bookmark alloc] initWithDictionary: currentInfoDict];
[self addBookmark: newBookmark];
[newBookmark release];
}
}
return self;
}
- (void) dealloc
{
[mContainedBookmarks release];
[super dealloc];
}
#pragma mark -
- (id) copyWithZone: (NSZone*) zone
{
BookmarkFolder* copyOfSelf = [[BookmarkFolder alloc] init];
NSLog(@"Folder copy: %@ %@", self, mTitle);
[copyOfSelf setURL: mURL];
[copyOfSelf setTitle: mTitle];
[copyOfSelf setSubBookmarks: mContainedBookmarks];
return copyOfSelf;
}
#pragma mark -
- (NSMutableDictionary*) dictionary
{
NSMutableDictionary* dictionary = [super dictionary];
NSMutableArray* subBookmarks = nil;
if (dictionary != nil && mContainedBookmarks != nil)
{
subBookmarks = [NSMutableArray array];
NSEnumerator* bookmarkEnumerator = [mContainedBookmarks objectEnumerator];
Bookmark* currentBookmark = nil;
while ((currentBookmark = [bookmarkEnumerator nextObject]) != nil)
{
NSDictionary* bookmarkDictionaryInfo = [currentBookmark dictionary];
if (bookmarkDictionaryInfo != nil)
{
[subBookmarks addObject: bookmarkDictionaryInfo];
}
}
if (subBookmarks != nil && [subBookmarks count] > 0)
{
[dictionary setObject: subBookmarks forKey: kBookmarkInfoMoreBookmarksKey];
}
}
return dictionary;
}
#pragma mark -
- (unsigned) numberOfBookmarks
{
return [mContainedBookmarks count];
}
#pragma mark -
- (NSArray*) subBookmarks
{
return mContainedBookmarks;
}
- (void) setSubBookmarks: (NSArray*) bookmarks
{
if (bookmarks != mContainedBookmarks)
{
[mContainedBookmarks release];
mContainedBookmarks = [bookmarks mutableCopy];
}
}
#pragma mark -
- (void) addBookmark: (Bookmark*) bookmark
{
if (mContainedBookmarks == nil)
{
mContainedBookmarks = [[NSMutableArray alloc] init];
}
if (bookmark != nil)
{
[mContainedBookmarks addObject: bookmark];
[self reloadCellMenu];
}
}
- (void) removeBookmark: (Bookmark*) bookmark
{
if (bookmark != nil && mContainedBookmarks != nil)
{
[mContainedBookmarks removeObject: bookmark];
[self reloadCellMenu];
}
}
#pragma mark -
- (id <BookmarkBarCell>) cell
{
if (mBookmarkBarCell == nil)
{
if ([mContainedBookmarks count] > 0)
{
mBookmarkBarCell = [[BookmarkMenuCell alloc] init];
[self reloadCellMenu];
[mBookmarkBarCell setStringValue: mTitle];
}
}
return mBookmarkBarCell;
}
- (void) reloadCellMenu
{
NSMenu* cellMenu = [[NSMenu alloc] initWithTitle: @""];
NSEnumerator* bookmarkEnumerator = [mContainedBookmarks objectEnumerator];
Bookmark* currentBookmark = nil;
[cellMenu addItem: [NSMenuItem separatorItem]];
while ((currentBookmark = [bookmarkEnumerator nextObject]) != nil)
{
NSMenuItem* bookmarkMenuItem = [[currentBookmark cell] menuItem];
if (bookmarkMenuItem != nil)
{
[cellMenu addItem: bookmarkMenuItem];
}
}
[mBookmarkBarCell setMenu: cellMenu];
[cellMenu release];
}
@end