forked from ttscoff/nv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BookmarksController.m
executable file
·573 lines (450 loc) · 17.1 KB
/
BookmarksController.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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
//
// BookmarksController.m
// Notation
//
// Created by Zachary Schneirov on 1/21/07.
/*Copyright (c) 2010, Zachary Schneirov. All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted
provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions
and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of
conditions and the following disclaimer in the documentation and/or other materials provided with
the distribution.
- Neither the name of Notational Velocity nor the names of its contributors may be used to endorse
or promote products derived from this software without specific prior written permission. */
#import "BookmarksController.h"
#import "NoteObject.h"
#import "GlobalPrefs.h"
#import "AppController.h"
#import "NSString_NV.h"
#import "NSCollection_utils.h"
static NSString *BMSearchStringKey = @"SearchString";
static NSString *BMNoteUUIDStringKey = @"NoteUUIDString";
@implementation NoteBookmark
- (id)initWithDictionary:(NSDictionary*)aDict {
if (aDict) {
NSString *uuidString = [aDict objectForKey:BMNoteUUIDStringKey];
if (uuidString) {
[self initWithNoteUUIDBytes:[uuidString uuidBytes] searchString:[aDict objectForKey:BMSearchStringKey]];
} else {
NSLog(@"NoteBookmark init: supplied nil uuidString");
}
} else {
NSLog(@"NoteBookmark init: supplied nil dictionary; couldn't init");
return nil;
}
return self;
}
- (id)initWithNoteUUIDBytes:(CFUUIDBytes)bytes searchString:(NSString*)aString {
if ([super init]) {
uuidBytes = bytes;
searchString = [aString copy];
}
return self;
}
- (id)initWithNoteObject:(NoteObject*)aNote searchString:(NSString*)aString {
if ([super init] && aNote) {
noteObject = [aNote retain];
searchString = [aString copy];
CFUUIDBytes *bytes = [aNote uniqueNoteIDBytes];
if (!bytes) {
NSLog(@"NoteBookmark init: no cfuuidbytes pointer from note %@", titleOfNote(aNote));
return nil;
}
uuidBytes = *bytes;
} else {
NSLog(@"NoteBookmark init: supplied nil note");
return nil;
}
return self;
}
- (void)dealloc {
[searchString release];
[noteObject release];
[super dealloc];
}
- (NSString*)searchString {
return searchString;
}
- (void)validateNoteObject {
NoteObject *newNote = nil;
//if we already had a valid note and our uuidBytes don't resolve to the same note
//then use that new note from the delegate. in 100% of the cases newNote should be nil
if (noteObject && (newNote = [delegate noteWithUUIDBytes:uuidBytes]) != noteObject) {
[noteObject release];
noteObject = [newNote retain];
}
}
- (NoteObject*)noteObject {
if (!noteObject) noteObject = [[delegate noteWithUUIDBytes:uuidBytes] retain];
return noteObject;
}
- (NSDictionary*)dictionaryRep {
return [NSDictionary dictionaryWithObjectsAndKeys:searchString, BMSearchStringKey,
[NSString uuidStringWithBytes:uuidBytes], BMNoteUUIDStringKey, nil];
}
- (NSString *)description {
NoteObject *note = [self noteObject];
if (note) {
return [searchString length] ? [NSString stringWithFormat:@"%@ [%@]", titleOfNote(note), searchString] : titleOfNote(note);
}
return nil;
}
- (void)setDelegate:(id)aDelegate {
delegate = aDelegate;
}
- (id)delegate {
return delegate;
}
- (BOOL)isEqual:(id)anObject {
return noteObject == [anObject noteObject];
}
- (NSUInteger)hash {
return (NSUInteger)noteObject;
}
@end
#define MovedBookmarksType @"NVMovedBookmarksType"
@implementation BookmarksController
- (id)init {
if ([super init]) {
bookmarks = [[NSMutableArray alloc] init];
isSelectingProgrammatically = isRestoringSearch = NO;
prefsController = [GlobalPrefs defaultPrefs];
}
return self;
}
- (void)awakeFromNib {
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tableViewSelectionDidChange:)
name:NSTableViewSelectionDidChangeNotification object:bookmarksTableView];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(tableViewSelectionDidChange:)
name:NSTableViewSelectionIsChangingNotification object:bookmarksTableView];
// [window setFloatingPanel:YES];
[window setDelegate:self];
[bookmarksTableView setDelegate:self];
[bookmarksTableView setTarget:self];
[bookmarksTableView setDoubleAction:@selector(doubleClicked:)];
[bookmarksTableView registerForDraggedTypes:[NSArray arrayWithObjects:MovedBookmarksType, nil]];
}
- (void)dealloc {
[window setDelegate:nil];
[bookmarksTableView setDelegate:nil];
[bookmarks makeObjectsPerformSelector:@selector(setDelegate:) withObject:nil];
[bookmarks release];
[super dealloc];
}
- (id)initWithBookmarks:(NSArray*)array {
if ([self init]) {
unsigned int i;
for (i=0; i<[array count]; i++) {
NSDictionary *dict = [array objectAtIndex:i];
NoteBookmark *bookmark = [[NoteBookmark alloc] initWithDictionary:dict];
[bookmark setDelegate:self];
[bookmarks addObject:bookmark];
[bookmark release];
}
}
return self;
}
- (NSArray*)dictionaryReps {
NSMutableArray *array = [NSMutableArray arrayWithCapacity:[bookmarks count]];
unsigned int i;
for (i=0; i<[bookmarks count]; i++) {
NSDictionary *dict = [[bookmarks objectAtIndex:i] dictionaryRep];
if (dict) [array addObject:dict];
}
return array;
}
- (id)dataSource {
return dataSource;
}
- (void)setDataSource:(id)aDataSource {
dataSource = aDataSource;
[bookmarks makeObjectsPerformSelector:@selector(validateNoteObject)];
}
- (NoteObject*)noteWithUUIDBytes:(CFUUIDBytes)bytes {
return [dataSource noteForUUIDBytes:&bytes];
}
- (void)removeBookmarkForNote:(NoteObject*)aNote {
unsigned int i;
for (i=0; i<[bookmarks count]; i++) {
if ([[bookmarks objectAtIndex:i] noteObject] == aNote) {
[bookmarks removeObjectAtIndex:i];
[self updateBookmarksUI];
break;
}
}
}
- (void)regenerateBookmarksMenu {
NSMenu *menu = [NSApp mainMenu];
NSMenu *bookmarksMenu = [[menu itemWithTag:103] submenu];
while ([bookmarksMenu numberOfItems]) {
[bookmarksMenu removeItemAtIndex:0];
}
NSMenu *menu2 = [appController statBarMenu];
NSMenu *bkSubMenu = [[menu2 itemWithTag:901] submenu];
while ([bkSubMenu numberOfItems]) {
[bkSubMenu removeItemAtIndex:0];
}
NSMenuItem *theMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Show Bookmarks",@"menu item title for showing bookmarks")
action:@selector(showBookmarks:) keyEquivalent:@"0"] autorelease];
[theMenuItem setTarget:self];
[bookmarksMenu addItem:theMenuItem];
theMenuItem = [theMenuItem copy];
[bkSubMenu addItem:theMenuItem];
[theMenuItem release];
[bookmarksMenu addItem:[NSMenuItem separatorItem]];
[bkSubMenu addItem:[NSMenuItem separatorItem]];
theMenuItem = [[[NSMenuItem alloc] initWithTitle:NSLocalizedString(@"Add to Bookmarks",@"menu item title for bookmarking a note")
action:@selector(addBookmark:) keyEquivalent:@"D"] autorelease];
[theMenuItem setTarget:self];
[bookmarksMenu addItem:theMenuItem];
theMenuItem = [theMenuItem copy];
[bkSubMenu addItem:theMenuItem];
[theMenuItem release];
if ([bookmarks count] > 0) {
[bookmarksMenu addItem:[NSMenuItem separatorItem]];
[bkSubMenu addItem:[NSMenuItem separatorItem]];
}
unsigned int i;
for (i=0; i<[bookmarks count]; i++) {
NoteBookmark *bookmark = [bookmarks objectAtIndex:i];
NSString *description = [bookmark description];
if (description) {
theMenuItem = [[[NSMenuItem alloc] initWithTitle:description action:@selector(restoreBookmark:)
keyEquivalent:[NSString stringWithFormat:@"%d", (i % 9) + 1]] autorelease];
if (i > 8) [theMenuItem setKeyEquivalentModifierMask:NSCommandKeyMask | NSShiftKeyMask];
if (i > 17) [theMenuItem setKeyEquivalentModifierMask:NSCommandKeyMask | NSShiftKeyMask | NSControlKeyMask];
[theMenuItem setRepresentedObject:bookmark];
[theMenuItem setTarget:self];
[bookmarksMenu addItem:theMenuItem];
theMenuItem = [theMenuItem copy];
[bkSubMenu addItem:theMenuItem];
[theMenuItem release];
}
}
}
- (void)updateBookmarksUI {
[prefsController saveCurrentBookmarksFromSender:self];
[self regenerateBookmarksMenu];
[bookmarksTableView reloadData];
}
- (void)selectBookmarkInTableView:(NoteBookmark*)bookmark {
if (bookmarksTableView && bookmark) {
//find bookmark index and select
NSUInteger bmIndex = [bookmarks indexOfObjectIdenticalTo:bookmark];
if (bmIndex != NSNotFound) {
isSelectingProgrammatically = YES;
[bookmarksTableView selectRowIndexes:[NSIndexSet indexSetWithIndex:bmIndex] byExtendingSelection:NO];
isSelectingProgrammatically = NO;
[removeBookmarkButton setEnabled:YES];
}
}
}
- (BOOL)validateMenuItem:(NSMenuItem*)menuItem {
//need to fix this for better style detection
SEL action = [menuItem action];
if (action == @selector(addBookmark:)) {
return ([bookmarks count] < 27 && [appController selectedNoteObject]);
}
return YES;
}
- (BOOL)restoreNoteBookmark:(NoteBookmark*)bookmark inBackground:(BOOL)inBG{
if (bookmark) {
if (currentBookmark != bookmark) {
[currentBookmark autorelease];
currentBookmark = [bookmark retain];
}
//communicate with revealer here--tell it to search for this string and highlight note
isRestoringSearch = YES;
//BOOL inBG = ([[window currentEvent] modifierFlags] & NSCommandKeyMask) == 0;
[appController bookmarksController:self restoreNoteBookmark:bookmark inBackground:inBG];
[self selectBookmarkInTableView:bookmark];
isRestoringSearch = NO;
return YES;
}
return NO;
}
- (void)restoreBookmark:(id)sender {
[self restoreNoteBookmark:[sender representedObject] inBackground:NO];
}
- (id)tableView:(NSTableView *)aTableView objectValueForTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex {
if ([[aTableColumn identifier] isEqualToString:@"description"]) {
NSString *description = [[bookmarks objectAtIndex:rowIndex] description];
if (description)
return description;
return [NSString stringWithFormat:NSLocalizedString(@"(Unknown Note) [%@]",nil), [[bookmarks objectAtIndex:rowIndex] searchString]];
}
static NSString *shiftCharStr = nil, *cmdCharStr = nil, *ctrlCharStr = nil;
if (!cmdCharStr) {
unichar ch = 0x2318;
cmdCharStr = [[NSString stringWithCharacters:&ch length:1] retain];
ch = 0x21E7;
shiftCharStr = [[NSString stringWithCharacters:&ch length:1] retain];
ch = 0x2303;
ctrlCharStr = [[NSString stringWithCharacters:&ch length:1] retain];
}
return [NSString stringWithFormat:@"%@%@%@ %d", rowIndex > 17 ? ctrlCharStr : @"", rowIndex > 8 ? shiftCharStr : @"", cmdCharStr, (rowIndex % 9) + 1];
}
- (NSInteger)numberOfRowsInTableView:(NSTableView *)aTableView {
return dataSource ? [bookmarks count] : 0;
}
- (BOOL)tableView:(NSTableView *)aTableView shouldEditTableColumn:(NSTableColumn *)aTableColumn row:(NSInteger)rowIndex {
return NO;
}
- (void)doubleClicked:(id)sender {
int row = [bookmarksTableView selectedRow];
if (row > -1) [self restoreNoteBookmark:[bookmarks objectAtIndex:row] inBackground:NO];
}
- (void)tableViewSelectionDidChange:(NSNotification *)aNotification {
if (!isRestoringSearch && !isSelectingProgrammatically) {
int row = [bookmarksTableView selectedRow];
if (row > -1) {
if ([bookmarks objectAtIndex:row] != currentBookmark) {
[self restoreNoteBookmark:[bookmarks objectAtIndex:row] inBackground:YES];
}
}
[removeBookmarkButton setEnabled: row > -1];
}
}
- (BOOL)tableView:(NSTableView *)tv writeRows:(NSArray*)rows toPasteboard:(NSPasteboard*)pboard {
NSArray *typesArray = [NSArray arrayWithObject:MovedBookmarksType];
[pboard declareTypes:typesArray owner:self];
[pboard setPropertyList:rows forType:MovedBookmarksType];
return YES;
}
- (NSDragOperation)tableView:(NSTableView*)tv validateDrop:(id <NSDraggingInfo>)info proposedRow:(NSInteger)row
proposedDropOperation:(NSTableViewDropOperation)op {
NSDragOperation dragOp = ([info draggingSource] == bookmarksTableView) ? NSDragOperationMove : NSDragOperationCopy;
[tv setDropRow:row dropOperation:NSTableViewDropAbove];
return dragOp;
}
- (BOOL)tableView:(NSTableView*)tv acceptDrop:(id <NSDraggingInfo>)info row:(NSInteger)row dropOperation:(NSTableViewDropOperation)op {
if (row < 0)
row = 0;
if ([info draggingSource] == bookmarksTableView) {
NSArray *rows = [[info draggingPasteboard] propertyListForType:MovedBookmarksType];
NSInteger theRow = [[rows objectAtIndex:0] intValue];
id object = [[bookmarks objectAtIndex:theRow] retain];
if (row != theRow + 1 && row != theRow) {
NoteBookmark* selectedBookmark = nil;
int selRow = [bookmarksTableView selectedRow];
if (selRow > -1) selectedBookmark = [bookmarks objectAtIndex:selRow];
if (row < theRow)
[bookmarks removeObjectAtIndex:theRow];
if (row <= (int)[bookmarks count])
[bookmarks insertObject:object atIndex:row];
else
[bookmarks addObject:object];
if (row > theRow)
[bookmarks removeObjectAtIndex:theRow];
[object release];
[self updateBookmarksUI];
[self selectBookmarkInTableView:selectedBookmark];
return YES;
}
[object release];
return NO;
}
return NO;
}
- (NSRect)windowWillUseStandardFrame:(NSWindow *)sender defaultFrame:(NSRect)defaultFrame {
float oldHeight = 0.0;
float newHeight = 0.0;
NSRect newFrame = [sender frame];
NSSize intercellSpacing = [bookmarksTableView intercellSpacing];
newHeight = MAX(1, [bookmarksTableView numberOfRows]) * ([bookmarksTableView rowHeight] + intercellSpacing.height);
oldHeight = [[[bookmarksTableView enclosingScrollView] contentView] frame].size.height;
newHeight = [sender frame].size.height - oldHeight + newHeight;
//adjust origin so the window sticks to the upper left
newFrame.origin.y = newFrame.origin.y + newFrame.size.height - newHeight;
newFrame.size.height = newHeight;
return newFrame;
}
- (void)windowWillClose:(NSNotification *)notification {
[showHideBookmarksItem setAction:@selector(showBookmarks:)];
[showHideBookmarksItem setTitle:NSLocalizedString(@"Show Bookmarks",@"menu item title")];
}
- (BOOL)isVisible {
return [window isVisible];
}
- (void)hideBookmarks:(id)sender {
[window close];
}
- (void)restoreWindowFromSave {
if ([[NSUserDefaults standardUserDefaults] boolForKey:@"BookmarksVisible"]) {
[self loadWindowIfNecessary];
[window orderBack:nil];
}
}
- (void)loadWindowIfNecessary {
if (!window) {
if (![NSBundle loadNibNamed:@"SavedSearches" owner:self]) {
NSLog(@"Failed to load SavedSearches.nib");
NSBeep();
return;
}
[bookmarksTableView setDataSource:self];
[bookmarksTableView reloadData];
}
}
- (void)showBookmarks:(id)sender {
[self loadWindowIfNecessary];
[bookmarksTableView reloadData];
[window makeKeyAndOrderFront:self];
[showHideBookmarksItem release];
showHideBookmarksItem = [sender retain];
[sender setAction:@selector(hideBookmarks:)];
[sender setTitle:NSLocalizedString(@"Hide Bookmarks",@"menu item title")];
//highlight searches as appropriate while the window is open
//selecting a search restores it
}
- (void)clearAllBookmarks:(id)sender {
if (NSRunAlertPanel(NSLocalizedString(@"Remove all bookmarks?",@"alert title when clearing bookmarks"),
NSLocalizedString(@"You cannot undo this action.",nil),
NSLocalizedString(@"Remove All Bookmarks",nil), NSLocalizedString(@"Cancel",nil), NULL) == NSAlertDefaultReturn) {
[bookmarks removeAllObjects];
[self updateBookmarksUI];
}
}
- (void)addBookmark:(id)sender {
if (![appController selectedNoteObject]) {
NSRunAlertPanel(NSLocalizedString(@"No note selected.",@"alert title when bookmarking no note"), NSLocalizedString(@"You must select a note before it can be added as a bookmark.",nil), NSLocalizedString(@"OK",nil), nil, NULL);
} else if ([bookmarks count] < 27) {
NSString *newString = [[appController fieldSearchString] stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceAndNewlineCharacterSet]];
NoteBookmark *bookmark = [[NoteBookmark alloc] initWithNoteObject:[appController selectedNoteObject] searchString:newString];
if (bookmark) {
NSUInteger existingIndex = [bookmarks indexOfObject:bookmark];
if (existingIndex != NSNotFound) {
//show them what they've already got
NoteBookmark *existingBookmark = [bookmarks objectAtIndex:existingIndex];
if ([window isVisible]) [self selectBookmarkInTableView:existingBookmark];
} else {
[bookmark setDelegate:self];
[bookmarks addObject:bookmark];
[self updateBookmarksUI];
if ([window isVisible]) [self selectBookmarkInTableView:bookmark];
}
}
[bookmark release];
} else {
//there are only so many numbers and modifiers
NSRunAlertPanel(NSLocalizedString(@"Too many bookmarks.",nil), NSLocalizedString(@"You cannot create more than 26 bookmarks. Try removing some first.",nil), NSLocalizedString(@"OK",nil), nil, NULL);
}
}
- (void)removeBookmark:(id)sender {
NoteBookmark *bookmark = nil;
int row = [bookmarksTableView selectedRow];
if (row > -1) {
bookmark = [bookmarks objectAtIndex:row];
[bookmarks removeObjectIdenticalTo:bookmark];
[self updateBookmarksUI];
}
}
- (AppController*)appController {
return appController;
}
- (void)setAppController:(id)aDelegate {
appController = aDelegate;
}
@end