File: GSTextFinder.m

package info (click to toggle)
gnustep-gui 0.25.0-4
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 13,088 kB
  • ctags: 3,417
  • sloc: objc: 153,800; ansic: 18,239; cpp: 579; yacc: 462; makefile: 143; sh: 5
file content (529 lines) | stat: -rw-r--r-- 14,287 bytes parent folder | download | duplicates (6)
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
/** <title>GSTextFinder</title>

   Copyright (C) 2010 Free Software Foundation, Inc.

   Author: Wolfgang Lux <wolfgang.lux@gmail.com>
   Date: July 2010

   This file is part of the GNUstep GUI Library.

   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
   License as published by the Free Software Foundation; either
   version 2 of the License, or (at your option) any later version.

   This library is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.	 See the GNU
   Lesser General Public License for more details.

   You should have received a copy of the GNU Lesser General Public
   License along with this library; see the file COPYING.LIB.
   If not, see <http://www.gnu.org/licenses/> or write to the 
   Free Software Foundation, 51 Franklin Street, Fifth Floor, 
   Boston, MA 02110-1301, USA.
*/

#import "config.h"
#import <Foundation/NSString.h>
#import <Foundation/NSNotification.h>
#import "AppKit/NSApplication.h"
#import "AppKit/NSButton.h"
#import "AppKit/NSEvent.h"
#import "AppKit/NSGraphics.h"
#import "AppKit/NSMatrix.h"
#import "AppKit/NSNib.h"
#import "AppKit/NSNibLoading.h"
#import "AppKit/NSPanel.h"
#import "AppKit/NSPasteboard.h"
#import "AppKit/NSTextField.h"
#import "AppKit/NSTextView.h"
#import "AppKit/NSWindow.h"
#import "GSGuiPrivate.h"
#import "GSTextFinder.h"


@interface GSTextFinder(PrivateMethods)
- (BOOL) _loadPanel;
- (void) _applicationDidBecomeActive: (NSNotification *)notification;
- (void) _updateFindStringFromPanel: (unsigned *)options
		    putToPasteboard: (BOOL)flag;
- (void) _updateReplaceStringFromPanel;
- (void) _getFindStringFromPasteboard;
- (void) _putFindStringToPasteboard;
@end

@implementation GSTextFinder

static GSTextFinder *sharedTextFinder;

+ (GSTextFinder *) sharedTextFinder
{
  if (sharedTextFinder == nil)
    {
      sharedTextFinder = [[self alloc] init];
    }
  return sharedTextFinder;
}

- (id) init
{
  if ((self = [super init]) != nil)
    {
      // make sure our search and replace strings are never nil
      findString = @"";
      replaceString = @"";

      // update find string from pasteboard whenever the application is
      // activated
      [[NSNotificationCenter defaultCenter]
	addObserver: self
	   selector: @selector(_applicationDidBecomeActive:)
	       name: NSApplicationDidBecomeActiveNotification
	     object: NSApp];
      [self _applicationDidBecomeActive: nil];
    }
  return self;
}

- (void) dealloc
{
  [[NSNotificationCenter defaultCenter]
    removeObserver: self
	      name: NSApplicationDidBecomeActiveNotification
	    object: NSApp];

  DESTROY(findString);
  DESTROY(replaceString);
  [super dealloc];
}

// UI actions
- (void) findNext: (id)sender
{
  if ([self findStringInTextView: [self targetView: nil] forward: YES])
    {
      // Special case here: If the user edits the find string and then presses
      // the Return key while the find text field (rather the panel's field
      // editor) is first responder, close the panel when a match was found.
      // This behavior is compatible with OpenStep and Mac OS X. However, in
      // contrast to Mac OS X, this cannot be implemented by associating a
      // dedicated action with the find text field, since the event is already
      // processed by the panel's default button before the field editor has a
      // chance of looking at it.

      // NB I assume here that the only keyboard event that can trigger the
      // Next button's action while the field editor is active is a key down
      // event from the Return key.
      if ([[panel currentEvent] type] == NSKeyDown &&
	  [findText currentEditor] != nil)
	{
	  [panel close];
	}
    }
}

- (void) findPrevious: (id)sender
{
  [self findStringInTextView: [self targetView: nil] forward: NO];
}

- (void) replaceAndFind: (id)sender
{
  NSTextView *targetView = [self targetView: nil];
  [self replaceStringInTextView: targetView];
  [self findStringInTextView: targetView forward: YES];
}

- (void) replace: (id)sender
{
  [self replaceStringInTextView: [self targetView: nil]];
}
  
- (void) replaceAll: (id)sender
{
  // NB In contrast to -performFindPanelAction: this UI action takes the current
  // selection in the Replace All Scope matrix into account
  [self replaceAllInTextView: [self targetView: nil]
	     onlyInSelection: [replaceScopeMatrix selectedTag] != 0];
}

- (void) performFindPanelAction: (id)sender
{
  [self performFindPanelAction: sender withTextView: nil];
}

- (void) performFindPanelAction: (id)sender
		   withTextView: (NSTextView *)aTextView
{
  aTextView = [self targetView: aTextView];
  switch ([sender tag])
    {
    case NSFindPanelActionShowFindPanel:
      [self showFindPanel];
      break;

    case NSFindPanelActionNext:
      [self findStringInTextView: aTextView forward: YES];
      break;
    case NSFindPanelActionPrevious:
      [self findStringInTextView: aTextView forward: NO];
      break;

    case NSFindPanelActionReplaceAll:
      [self replaceAllInTextView: aTextView onlyInSelection: NO];	
      break;

    case NSFindPanelActionReplace:
      [self replaceStringInTextView: aTextView];
      break;

    case NSFindPanelActionReplaceAndFind:
      [self replaceStringInTextView: aTextView];
      [self findStringInTextView: aTextView forward: YES];
      break;

    case NSFindPanelActionSetFindString:
      [self takeFindStringFromTextView: aTextView];
      break;

    case NSFindPanelActionReplaceAllInSelection:
      [self replaceAllInTextView: aTextView onlyInSelection: YES];
      break;

    case NSFindPanelActionSelectAll:
      NSLog(@"NSFindPanelActionSelectAll not supported");
      break;

    case NSFindPanelActionSelectAllInSelection:
      NSLog(@"NSFindPanelActionSelectAllInSelection not supported");
      break;

    default:
      NSLog(@"Unknown find panel action (%ld)", (long)[sender tag]);
    }
}

- (BOOL) validateFindPanelAction: (id)sender
		    withTextView: (NSTextView *)aTextView
{
  aTextView = [self targetView: aTextView];
  switch ([sender tag])
    {
    case NSFindPanelActionShowFindPanel:
      return YES;

    case NSFindPanelActionReplace:
      return aTextView != nil;

    case NSFindPanelActionSetFindString:
      return aTextView && [aTextView selectedRange].length > 0;

    case NSFindPanelActionNext:
    case NSFindPanelActionPrevious:
    case NSFindPanelActionReplaceAll:
    case NSFindPanelActionReplaceAndFind:
#if 0 // NSTextView does not support discontinuous selections at present
    case NSFindPanelActionSelectAll:
#endif
      return aTextView && [findString length] > 0;

    case NSFindPanelActionReplaceAllInSelection:
#if 0 // NSTextView does not support discontinuous selections at present
    case NSFindPanelActionSelectAllInSelection:
#endif
      return [findString length] > 0
	  && aTextView && [aTextView selectedRange].length > 0;

    default:
      break;
    }

  // disable everything else
  return NO;
}

// text finder methods
- (void) showFindPanel
{
  if (panel == nil && [self _loadPanel] == NO)
    {
      return;
    }

  [messageText setStringValue: @""];
  [panel makeKeyAndOrderFront: self];
  [findText selectText: self];
}

- (void) takeFindStringFromTextView: (NSText *)aTextView
{
  [messageText setStringValue: @""];
  if (aTextView != nil)
    {
      NSRange range = [aTextView selectedRange];
      if (range.length)
	{
	  NSString *string = [[aTextView string] substringFromRange: range];
	  ASSIGNCOPY(findString, string);
	  [findText setStringValue: string];
	  [findText selectText: self];
	  [self _putFindStringToPasteboard];
	}
    }
}

- (BOOL) findStringInTextView: (NSText *)aTextView
		      forward: (BOOL)forward
{
  NSRange range;
  NSRange selectedRange;
  NSString *string;
  unsigned int options = NSLiteralSearch | NSCaseInsensitiveSearch;

  [messageText setStringValue: @""];
  if (aTextView == nil)
    {
      return NO;
    }

  string = [aTextView string];
  selectedRange = [aTextView selectedRange];
  [self _updateFindStringFromPanel: &options putToPasteboard: YES];
  if (forward)
    {
      range = NSMakeRange(NSMaxRange(selectedRange),
			  [string length] - NSMaxRange(selectedRange));
      range = [string rangeOfString: findString
			    options: options
			      range: range];
      if (range.location == NSNotFound)
	{
	  range = NSMakeRange(0, selectedRange.location);
	  range = [string rangeOfString: findString
				options: options
				  range: range];
	}
    }
  else
    {
      options |= NSBackwardsSearch;
      range = NSMakeRange(0, selectedRange.location);
      range = [string rangeOfString: findString
			    options: options
			      range: range];
      if (range.location == NSNotFound)
	{
	  range = NSMakeRange(NSMaxRange(selectedRange),
			      [string length] - NSMaxRange(selectedRange));
	  range = [string rangeOfString: findString
				options: options
				  range: range];
	}
    }

  if (range.location != NSNotFound)
    {
      [aTextView setSelectedRange: range];
      [aTextView scrollRangeToVisible: range];
    }
  else
    {
      [messageText setStringValue: _(@"Not found")];
      NSBeep();
    }
  return range.location != NSNotFound;
}

- (void) replaceStringInTextView: (NSTextView *)aTextView
{
  [messageText setStringValue: @""];
  if (aTextView != nil)
    {
      NSRange range = [aTextView selectedRange];

      if ([aTextView shouldChangeTextInRange: range
			   replacementString: replaceString])
	{
	  [self _updateReplaceStringFromPanel];
	  [aTextView replaceCharactersInRange: range
				   withString: replaceString];
	  [aTextView didChangeText];
	  [aTextView scrollRangeToVisible: range];
	}
    }
}

- (void) replaceAllInTextView: (NSTextView *)aTextView
	      onlyInSelection: (BOOL)flag
{
  int n;
  NSRange range, replaceRange;
  NSString *format;
  NSString *string;
  unsigned int options = NSLiteralSearch | NSCaseInsensitiveSearch;
  [messageText setStringValue: @""];
  if (aTextView == nil)
    return;

  [self _updateFindStringFromPanel: &options putToPasteboard: YES];
  [self _updateReplaceStringFromPanel];
  string = [aTextView string];
  replaceRange =
    flag ? [aTextView selectedRange] : NSMakeRange(0, [string length]);

  // look for a first match in the range
  range = [string rangeOfString: findString
			options: options
			  range: replaceRange];
  if (range.location == NSNotFound)
    {
      [messageText setStringValue: _(@"Not found")];
      NSBeep();
      return;
    }

  n = 0;
  do
    {
      if ([aTextView shouldChangeTextInRange: range
			   replacementString: replaceString])
	{
	  [aTextView replaceCharactersInRange: range
				   withString: replaceString];
	  [aTextView didChangeText];
	  n++;
	}

      replaceRange =
	NSMakeRange(range.location + [replaceString length],
		    NSMaxRange(replaceRange) -
		    (range.location + [findString length]));
      range = [string rangeOfString: findString
			    options: options
			      range: replaceRange];
    }
  while (range.location != NSNotFound);

  format = _(@"%d replaced");
  [messageText setStringValue: [NSString stringWithFormat: format, n]];

  // set insertion point to the end of the last match
  range = NSMakeRange(replaceRange.location, 0);
  [aTextView setSelectedRange: range];
  [aTextView scrollRangeToVisible: range];
}

- (NSTextView *) targetView: (NSTextView *)aTextView
{
  // If aTextView is equal to the find panel's field editor use the default
  // target view
  if (aTextView == [panel fieldEditor: NO forObject: [panel firstResponder]])
    {
      aTextView = nil;
    }

  if (aTextView == nil)
    {
      // The default target is the first responder of the main window
      // provided that it is a text view
      id aResponder = [[NSApp mainWindow] firstResponder];
      if ([aResponder isKindOfClass: [NSTextView class]])
	{
	  aTextView = aResponder;
	}
    }
  return aTextView;
}

@end

@implementation GSTextFinder(PrivateMethods)

- (void) _applicationDidBecomeActive: (NSNotification *)notification
{
  [self _getFindStringFromPasteboard];
}

- (BOOL) _loadPanel
{
  NSDictionary *table =
    [NSDictionary dictionaryWithObject: self forKey: NSNibOwner];
  if (![GSGuiBundle() loadNibFile: @"GSFindPanel"
		externalNameTable: table
			 withZone: [self zone]])
    {
      NSLog(@"Model file load failed for GSFindPanel");
      return NO;
    }

  [findText setStringValue: findString];
  [replaceText setStringValue: replaceString];
  [messageText setStringValue: @""];

  // FIXME Setting this in gorm does not have an effect
  [panel setFrameAutosaveName: @"NSFindPanel"];

  // Make sure the Find menu is enabled when the panel's field editor is
  // first responder
  [(NSTextView *)[panel fieldEditor: YES forObject: nil] setUsesFindPanel: YES];

  return YES;
}

- (void) _updateFindStringFromPanel: (unsigned int *)options
		    putToPasteboard: (BOOL)flag
{
  if (panel)
    {
      ASSIGN(findString, [findText stringValue]);
      if ([ignoreCaseButton state] != NSOffState)
	{
	  *options |= NSCaseInsensitiveSearch;
          // literal search is always case-sensitive, so it must be removed in this case
	  *options &= ~NSLiteralSearch;
	}
      else
	{
	  *options &= ~NSCaseInsensitiveSearch;
	}
    }

  if (flag)
    {
      [self _putFindStringToPasteboard];
    }
}

- (void) _updateReplaceStringFromPanel
{
  if (panel)
    {
      ASSIGN(replaceString, [replaceText stringValue]);
    }
}

- (void) _getFindStringFromPasteboard
{
  NSPasteboard *pboard = [NSPasteboard pasteboardWithName:NSFindPboard];
  if ([[pboard types] containsObject:NSStringPboardType])
    {
      NSString *string = [pboard stringForType:NSStringPboardType];
      if ([string length] && ![string isEqualToString:findString])
	{
	  ASSIGN(findString, string);
	  [findText setStringValue: string];
	  [findText selectText: self];
	}
    }
}

- (void) _putFindStringToPasteboard
{
    NSPasteboard *pboard = [NSPasteboard pasteboardWithName:NSFindPboard];
    [pboard declareTypes: [NSArray arrayWithObject:NSStringPboardType]
		   owner: nil];
    [pboard setString: findString forType: NSStringPboardType];
}

@end