-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAppController.m
637 lines (536 loc) · 17 KB
/
AppController.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
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
/*
* Dictionary Reader - A Dict client for GNUstep
* Copyright (C) 2006, 2007 Guenther Noack
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See COPYING.
*/
#import <AppKit/AppKit.h>
#import "AppController.h"
#import "GNUstep.h"
#import "DictionaryHandle.h"
#import "DictConnection.h"
#import "LocalDictionary.h"
#import "NSString+Clickable.h"
#import "Preferences.h"
NSDictionary* bigHeadlineAttributes;
NSDictionary* headlineAttributes;
NSDictionary* normalAttributes;
@interface AppController (DefinitionWriter)
- (void) writeBigHeadline: (NSString*) aString;
- (void) writeDefinition: (Definition *) definition;
- (void) writeString: (NSString*) aString
attributes: (NSDictionary*) attributes;
- (void) writeString: (NSString*) aString link: (id) aClickable;
- (void) renderDefinitions;
@end
@implementation AppController (HistoryManagerDelegate)
- (BOOL) historyManager: (HistoryManager *) aHistoryManager
needsBrowseTo: (id) aLocation
{
if ([[aLocation class] isSubclassOfClass: [NSString class]])
{
[self defineWord: (NSString*) aLocation];
}
return YES;
}
@end
@implementation AppController (DefinitionWriter)
- (void) renderDefinitions
{
int i;
// We need space for new content
[searchResultView setString: @""];
if ([definitions count] == 0)
{
NSString *word = [searchField stringValue];
if ((word == nil) || ([word length] == 0))
return;
[self writeBigHeadline: [NSString stringWithFormat: @"Cannot find definition for '%@'\n", word]];
NSArray *guesses = [[NSSpellChecker sharedSpellChecker] guessesForWord: word];
if ((guesses != nil) && ([guesses count] > 0))
{
[self writeString: @"Do you means any of these:\n\n" attributes: headlineAttributes];
for (i = 0; i < [guesses count]; i++)
{
NSString *guess = [guesses objectAtIndex: i];
[self writeString: guess link: guess];
[self writeString: @"\n" attributes: normalAttributes];
}
}
}
else
{
for (i = 0; i < [definitions count]; i++)
{
[self writeDefinition: [definitions objectAtIndex: i]];
}
}
}
- (void) writeBigHeadline: (NSString *) aString
{
[self writeString: [NSString stringWithFormat: @"\n%@\n", aString]
attributes: bigHeadlineAttributes];
}
- (void) writeDefinition: (Definition *) def
{
[self writeString: [NSString stringWithFormat: @"\n%@\n\n", [def database]]
attributes: headlineAttributes];
NSString *aString = [def definition];
// the index of the next character to write
unsigned index = 0;
unsigned strLength = [aString length];
// YES if and only if we are inside a link
BOOL inLink = NO;
NSInteger nextBracketIdx;
while (index < strLength)
{
if (inLink == YES)
{
nextBracketIdx = [aString firstIndexOf: (unichar)'}'
fromIndex: index];
if (nextBracketIdx == NSNotFound)
{
/* treat as if the next bracket started right after the
last character in the string */
nextBracketIdx = strLength;
// FIXME: Handle multiline links, too!
NSLog(@"multiline link detected!");
}
// crop text out of the input string
NSString* linkContent = [aString substringWithRange: NSMakeRange(index, nextBracketIdx-index)];
// next index is right after the found bracket
index = nextBracketIdx + 1;
// we're not in the link any more
inLink = NO;
// write link!
[self writeString: linkContent link: linkContent];
}
else
{ // inLink == FALSE
nextBracketIdx = [aString firstIndexOf: (unichar)'{'
fromIndex: index];
if (nextBracketIdx == NSNotFound)
{
/* treat as if the next bracket was right after the
last character in the string */
nextBracketIdx = strLength;
}
// crop text
NSString* text = [aString substringWithRange: NSMakeRange(index, nextBracketIdx-index)];
// proceed right after the bracket
index = nextBracketIdx + 1;
// now we're in a link
inLink = YES;
// write text!
[self writeString: text attributes: normalAttributes];
} // end if(inLink)
} // end while(index < strLength)
// after everything is done, write a newline!
[self writeString: @"\n" attributes: normalAttributes];
}
- (void) writeString: (NSString *) aString
attributes: (NSDictionary*) attributes
{
NSAttributedString* as = [[NSAttributedString alloc] initWithString: aString
attributes: attributes];
[[searchResultView textStorage] appendAttributedString: as];
DESTROY(as);
}
- (void) writeString: (NSString*) aString link: (id) aClickable
{
// fall back to 'no link'
NSDictionary* attributes = normalAttributes;
// if it's a valid link, use special attributes!
if ([aClickable respondsToSelector: @selector(click)])
{
attributes = [NSDictionary dictionaryWithObjectsAndKeys:
// the link itself
aClickable, NSLinkAttributeName,
// font
[attributes objectForKey: NSFontAttributeName],
NSFontAttributeName,
// underlining
[NSNumber numberWithInt: NSSingleUnderlineStyle],
NSUnderlineStyleAttributeName,
// color
[NSColor blueColor],
NSForegroundColorAttributeName,
nil];
}
// write
[self writeString: aString attributes: attributes];
}
@end // AppController (DefinitionWriter)
@implementation AppController
- (id) init
{
self = [super init];
if (self == nil)
{
[self dealloc];
return nil;
}
#if 0
// create toolbar items
forwardItem = [[NSToolbarItem alloc] initWithItemIdentifier: @"Forward"];
[forwardItem setImage: [NSImage imageNamed: @"etoile_forward"]];
[forwardItem setAction: @selector(browseForwardClicked:)];
[forwardItem setLabel: @"Forward"];
[forwardItem setTarget: self];
[forwardItem setEnabled: NO];
backItem = [[NSToolbarItem alloc] initWithItemIdentifier: @"Back"];
[backItem setImage: [NSImage imageNamed: @"etoile_back"]];
[backItem setAction: @selector(browseBackClicked:)];
[backItem setLabel: @"Back"];
[backItem setTarget: self];
[backItem setEnabled: NO];
searchItem = [[NSToolbarItem alloc] initWithItemIdentifier: @"Search"];
searchField = [[NSSearchField alloc] initWithFrame: NSMakeRect(0, 0, 150, 22)];
[searchField setRecentsAutosaveName: @"recentDictionaryLookups"];
[searchField setAction: @selector(searchAction:)];
[[searchField cell] setSendsWholeSearchString: YES];
[searchItem setView: searchField];
[searchItem setLabel: @"Search"];
[searchItem setMinSize: NSMakeSize(150, 22)];
#endif
// create mutable dictionaries array
dictionaries = [[NSMutableArray alloc] initWithCapacity: 2];
// create history manager
historyManager = [[HistoryManager alloc] init];
[historyManager setDelegate: self];
// create fonts
if (bigHeadlineAttributes == nil)
{
bigHeadlineAttributes = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSFont titleBarFontOfSize: 16], NSFontAttributeName, nil];
}
if (headlineAttributes == nil)
{
headlineAttributes = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSFont boldSystemFontOfSize: 12], NSFontAttributeName, nil];
}
if (normalAttributes == nil)
{
normalAttributes = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSFont userFixedPitchFontOfSize: 10], NSFontAttributeName, nil];
}
// Notifications --------------
NSNotificationCenter* defaultCenter = [NSNotificationCenter defaultCenter];
// Register in the default notification center to receive link clicked events
[defaultCenter addObserver: self
selector: @selector(clickSearchNotification:)
name: WordClickedNotificationType
object: nil];
return self;
}
- (void) dealloc
{
DESTROY(dictionaries);
DESTROY(historyManager);
#if 0
DESTROY(backItem);
DESTROY(forwardItem);
DESTROY(searchItem);
#endif
#if 0
DESTROY(searchField);
#endif
DESTROY(definitions);
[super dealloc];
}
- (void) awakeFromNib
{
[searchField setRecentsAutosaveName: @"recentDictionaryLookups"];
// [searchField setAction: @selector(searchAction:)];
[[searchField cell] setSendsWholeSearchString: YES];
#ifdef GNUSTEP
[forwardButton setImage: [NSImage imageNamed: @"etoile_forward"]];
[backButton setImage: [NSImage imageNamed: @"etoile_back"]];
#endif
#if 0
NSToolbar *toolbar =
[[NSToolbar alloc] initWithIdentifier: @"DictionaryContentToolbar"];
// create toolbar
[toolbar setDelegate:self];
[dictionaryContentWindow setToolbar:toolbar];
DESTROY(toolbar);
#endif
// find available dictionaries
[[Preferences shared] setDictionaries: dictionaries];
[[Preferences shared] rescanDictionaries: self];
// FIXME: Don't really know what to do with this code. May be useful for
// debugging if -rescanDictionaries above is commented out.
#ifdef PREDEFINED_DICTIONARIES // predefined dictionaries
// create local dictionary object
dict = [[LocalDictionary alloc] initWithResourceName: @"jargon"];
[dictionaries addObject: dict];
[dict release];
#ifdef REMOTE_DICTIONARIES // remote dictionaries
// create remote dictionary object
dict = [[DictConnection alloc] init];
[dictionaries addObject: dict];
[dict release];
#endif // end remote dictionaries block
#endif // end predefined dictionaries
}
#if 0
// ---- Toolbar delegate methods
- (NSToolbarItem *) toolbar: (NSToolbar *) toolbar
itemForItemIdentifier: (NSString*) identifier
willBeInsertedIntoToolbar: (BOOL) willBeInserted
{
NSToolbarItem* toolbarItem;
if ([identifier isEqual: @"Back"])
{
toolbarItem = backItem;
}
else if ([identifier isEqual: @"Forward"])
{
toolbarItem = forwardItem;
}
else
{
NSAssert1(
[identifier isEqual: @"Search"],
@"Bad toolbar item requested: %@", identifier
);
toolbarItem = searchItem;
}
NSAssert1(
toolbarItem != nil,
@"nil toolbar item returned for %@ identifier",
identifier
);
return toolbarItem;
}
- (NSArray *) toolbarDefaultItemIdentifiers: (NSToolbar *) toolbar
{
return [self toolbarAllowedItemIdentifiers: toolbar];
}
- (NSArray *) toolbarAllowedItemIdentifiers: (NSToolbar *) toolbar
{
NSArray *identifiers = [NSArray arrayWithObjects: /*@"Back", @"Forward",*/
NSToolbarFlexibleSpaceItemIdentifier, @"Search", nil];
return identifiers;
}
#endif
// ---- Some methods called by the GUI
- (void) browseBackClicked: (id) sender
{
[historyManager browseBack];
}
- (void) browseForwardClicked: (id) sender
{
[historyManager browseForward];
}
- (void) orderFrontPreferencesPanel: (id)sender
{
[[Preferences shared] setDictionaries: dictionaries];
[[Preferences shared] show];
}
- (void) updateGUI
{
#if 1
[backButton setEnabled: [historyManager canBrowseBack]];
[forwardButton setEnabled: [historyManager canBrowseForward]];
#else
[backItem setEnabled: [historyManager canBrowseBack]];
[forwardItem setEnabled: [historyManager canBrowseForward]];
#endif
}
// ---- This object is the delegate for the result view, too.
- (BOOL) textView: (NSTextView*) textView clickedOnLink: (id) link
atIndex: (unsigned) charIndex
{
if ([link respondsToSelector: @selector(click)])
{
NS_DURING
[link click];
NS_HANDLER
NSRunAlertPanel(@"Link click failed!", [localException reason],
@"Oh no!", nil, nil);
return NO;
NS_ENDHANDLER;
return YES;
}
else
{
NSLog(@"Link %@ clicked, but it doesn't respond to 'click'", link);
return NO;
}
}
- (void) increaseFontSize: (id) sender
{
int size = 0;
NSDictionary *dict = nil;
size = [[bigHeadlineAttributes objectForKey: NSFontAttributeName] pointSize] + 2;
dict = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSFont titleBarFontOfSize: size], NSFontAttributeName, nil];
ASSIGN(bigHeadlineAttributes, dict);
size = [[headlineAttributes objectForKey: NSFontAttributeName] pointSize] + 2;
dict = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSFont boldSystemFontOfSize: size], NSFontAttributeName, nil];
ASSIGN(headlineAttributes, dict);
size = [[normalAttributes objectForKey: NSFontAttributeName] pointSize] + 2;
dict = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSFont userFixedPitchFontOfSize: size], NSFontAttributeName, nil];
ASSIGN(normalAttributes, dict);
[self renderDefinitions];
}
- (void) decreaseFontSize: (id) sender
{
int size = 0;
NSDictionary *dict = nil;
size = [[bigHeadlineAttributes objectForKey: NSFontAttributeName] pointSize] - 2;
dict = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSFont titleBarFontOfSize: size], NSFontAttributeName, nil];
ASSIGN(bigHeadlineAttributes, dict);
size = [[headlineAttributes objectForKey: NSFontAttributeName] pointSize] - 2;
dict = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSFont boldSystemFontOfSize: size], NSFontAttributeName, nil];
ASSIGN(headlineAttributes, dict);
size = [[normalAttributes objectForKey: NSFontAttributeName] pointSize] - 2;
dict = [[NSDictionary alloc] initWithObjectsAndKeys:
[NSFont userFixedPitchFontOfSize: size], NSFontAttributeName, nil];
ASSIGN(normalAttributes, dict);
[self renderDefinitions];
}
// ---- Searching
/**
* Responds to a search action invoked from the GUI by clicking the
* search button or hitting enter when the search field is focused.
*/
- (void) searchAction: (id) sender
{
// define the word that's written in the search field
[self defineWord: [searchField stringValue]];
}
/**
* Responds to a search action invoked by clicking a word
* reference in the text view.
*/
- (void) clickSearchNotification: (NSNotification*) not
{
NSParameterAssert(not != nil);
// fetch string from notification
NSString* searchString = [not object];
NSAssert1(
searchString != nil,
@"Search string encapsuled in %@ notification was nil", not
);
if ( ![[searchField stringValue] isEqualToString: searchString] )
{
// invoke search
[self defineWord: searchString];
}
}
/**
* Searches for definitions of the word given in the aWord
* parameter and shows the results in the text view.
*
* @param aWord the word to define
*/
- (void) defineWord: (NSString *) aWord
{
if ( ![[searchField stringValue] isEqualToString: aWord] )
{
// set string in search field
[searchField setStringValue: aWord];
}
// Iterate over all dictionaries, query them!
NSMutableArray *result = [[NSMutableArray alloc] init];
int i;
for (i = 0; i < [dictionaries count]; i++)
{
DictionaryHandle *dict = [dictionaries objectAtIndex: i];
if ([dict isActive])
{
NSArray *array = nil;
NSString *error = nil;
NS_DURING
{
[dict open];
array = [dict definitionsFor: aWord error: &error];
if (array)
[result addObjectsFromArray: array];
else
NSLog(@"Error: %@", error);
// [dict close];
}
NS_HANDLER
{
NSRunAlertPanel (
@"Word definition failed.",
[NSString stringWithFormat:
@"The definition of %@ failed because of this exception:\n%@",
aWord, [localException reason]],
@"Argh", nil, nil);
}
NS_ENDHANDLER;
}
}
ASSIGN(definitions, result);
DESTROY(result);
[self renderDefinitions];
/* Tell the search result view to scroll to the top,
select nothing and redraw */
[searchResultView scrollRangeToVisible: NSMakeRange(0.0,0.0)];
[searchResultView setSelectedRange: NSMakeRange(0.0,0.0)];
[searchResultView setNeedsDisplay: YES];
[historyManager browser: self didBrowseTo: aWord];
[self updateGUI];
[dictionaryContentWindow orderFront: self];
}
- (void) applicationWillTerminate: (NSNotification*) theNotification
{
int i;
NSMutableArray* mut = [NSMutableArray arrayWithCapacity: [dictionaries count]];
for (i = 0; i < [dictionaries count]; i++)
{
[mut addObject: [[dictionaries objectAtIndex: i] shortPropertyList]];
}
[mut writeToFile: [[Preferences shared] dictionaryStoreFile] atomically: YES];
}
- (void) applicationDidFinishLaunching: (NSNotification *) theNotification
{
[NSApp setServicesProvider: self];
[self updateGUI];
}
- (void) applicationDidBecomeActive: (NSNotification *) aNotification
{
// show dictionary window when clicking the app icon
[dictionaryContentWindow makeKeyAndOrderFront: self];
[dictionaryContentWindow makeFirstResponder: searchField];
}
/**
* The Dictionary Lookup service:
* Takes a string from the calling application and looks it up.
* Written by Chris B. Vetter
*/
- (void) lookupInDictionary: (NSPasteboard *) pboard
userData: (NSString *) userData
error: (NSString **) error
{
NSString *aString = nil;
NSArray *allTypes = nil;
allTypes = [pboard types];
if ( ![allTypes containsObject: NSStringPboardType] )
{
*error = @"No string type supplied on pasteboard";
return;
}
aString = [pboard stringForType: NSStringPboardType];
if (aString == nil)
{
*error = @"No string value supplied on pasteboard";
return;
}
NSRunLoop* runLoop = [NSRunLoop currentRunLoop];
[runLoop performSelector: @selector(defineWord:)
target: self
argument: aString
order: 1 //whatever
modes: [NSArray arrayWithObject: [runLoop currentMode]]];
}
@end