forked from grimmerk/svnX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMyWorkingCopyController.m
2052 lines (1615 loc) · 57.2 KB
/
MyWorkingCopyController.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
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
//----------------------------------------------------------------------------------------
// MyWorkingCopyController.m - Controller of the working copy browser
//
// Copyright © Chris, 2007 - 2010. All rights reserved.
//----------------------------------------------------------------------------------------
#import "MyWorkingCopyController.h"
#import "MyWorkingCopy.h"
#import "MyApp.h"
#import "MyDragSupportWindow.h"
#import "MyFileMergeController.h"
#import "DrawerLogView.h"
#import "NSString+MyAdditions.h"
#import "ReviewCommit.h"
#import "RepoItem.h"
#import "SvnInterface.h"
#import "CommonUtils.h"
#import "ViewUtils.h"
//----------------------------------------------------------------------------------------
enum {
vFlatTable = 2000,
vTreeTable = 2002,
vCmdButtons = 3000
};
enum {
kModeTree = 0,
kModeFlat = 1,
kModeSmart = 2
};
static ConstString keyWCWidows = @"wcWindows", // Deprecated
keyWidowFrame = @"winFrame",
keyViewMode = @"viewMode",
keyFilterMode = @"filterMode",
keyShowToolbar = @"showToolbar",
keyShowSidebar = @"showSidebar",
keySortDescs = @"sortDescs",
keyTreeWidth = @"treeWidth",
keyTreeSelPath = @"treeSelPath",
keyTreeExpanded = @"treeExpanded";
static const GCoord kMinFilesHeight = 96,
kMinTreeWidth = 140,
kMaxTreeWidthFract = 0.5,
kDefaultTreeWidth = 200;
static NSString* gInitName = nil;
extern BOOL Props_Toggle(void);
extern void Props_Reset(void);
extern void Props_Changed(id wc);
extern void Merge_Run (id wc, id svnFilesAC, RepoItem* repoItem);
extern void Update_Run (id wc, BOOL forSelection);
//----------------------------------------------------------------------------------------
// Subversion 1.4.6 commands that support recursive flags
// Add, Remove, Update, Revert, Resolved, Lock, Unlock, Copy, Move, Rename, Info
// Default: Y - Y N N - - - - - N
// Allow -R: N - N Y Y - - - - - Y
// Allow -N: Y - Y N N - - - - - N
//----------------------------------------------------------------------------------------
// Add, Delete, Update, Revert, Resolved, Lock, Unlock, Commit, Review
static ConstString gCommands[] = {
@"add", @"remove", @"update", @"revert", @"resolved", @"lock", @"unlock",
@"commit", @"review", @"resolve", @"cleanup", @"rename", @"copy", @"move", @"info"
};
static ConstString gVerbs[] = {
@"add", @"remove", @"update", @"revert", @"resolve", @"lock", @"unlock",
@"commit", @"review", @"resolve", @"cleanup", @"rename", @"copy", @"move", @"info"
};
// 0.add 1.remove 2.update 102.update-alt 3.revert 4.resolved 5.lock 6.unlock
// 7.commit 8.review 9.resolve 10.cleanup 11.rename 12.copy 13.move 14.info
enum SvnCommand {
cmdAdd = 0, cmdRemove, cmdUpdate, cmdRevert, cmdResolved, cmdLock, cmdUnlock,
cmdCommit, cmdReview, cmdResolve, cmdCleanup, cmdRename, cmdCopy, cmdMove, cmdInfo,
cmdUpdateAlt = 100 + cmdUpdate,
cmdReviewAlt = 100 + cmdReview,
cmdInfoRecursive = 100 + cmdInfo
};
typedef enum SvnCommand SvnCommand;
//----------------------------------------------------------------------------------------
static NSMutableDictionary*
makeCommand (NSString* command, NSString* verb, NSString* destination)
{
return [NSMutableDictionary dictionaryWithObjectsAndKeys: command, @"command",
verb, @"verb",
destination, @"destination",
nil];
}
//----------------------------------------------------------------------------------------
static NSMutableDictionary*
makeCommandDict (NSString* command, NSString* destination)
{
return makeCommand(command, command, destination);
}
//----------------------------------------------------------------------------------------
static bool
supportsRecursiveFlag (NSString* cmd)
{
return ([cmd isEqualToString: @"revert"] || [cmd isEqualToString: @"resolved"]);
}
//----------------------------------------------------------------------------------------
static bool
supportsNonRecursiveFlag (NSString* cmd)
{
return ([cmd isEqualToString: @"add"] || [cmd isEqualToString: @"update"]);
}
//----------------------------------------------------------------------------------------
static id
getRecursiveOption (NSString* cmd, bool isRecursive)
{
if (isRecursive)
return supportsRecursiveFlag(cmd) ? @"--recursive" : nil;
return supportsNonRecursiveFlag(cmd) ? @"--non-recursive" : nil;
}
//----------------------------------------------------------------------------------------
static NSString*
getPathPegRevision (RepoItem* repoItem)
{
return repoItem ? PathPegRevision([repoItem url], [repoItem revision]) : @"";
}
//----------------------------------------------------------------------------------------
static BOOL
containsLocalizedString (NSString* container, NSString* str)
{
return ([container rangeOfString: NSLocalizedString(str, nil)].location != NSNotFound);
}
//----------------------------------------------------------------------------------------
static NSString*
WCItemDesc (NSDictionary* item, BOOL isDir)
{
NSString* name;
if (item == nil || [(name = [item objectForKey: @"path"]) isEqualToString: @"."])
return isDir ? @"This working copy" : nil;
return [NSString stringWithFormat: @"%@ %C%@%C",
(isDir ? @"Directory" : @"File"), 0x201C, name, 0x201D];
}
//----------------------------------------------------------------------------------------
// Also returns the displayPath of the first match in firstName.
static NSArray*
getDirFullPaths (NSArray* wcItems, NSString** firstName)
{
NSString* displayPath = nil;
NSMutableArray* const paths = [NSMutableArray array];
for_each_obj(en, it, wcItems)
{
if ([[it objectForKey: @"isDir"] boolValue])
{
[paths addObject: [it objectForKey: @"fullPath"]];
if (displayPath == nil)
displayPath = [it objectForKey: @"displayPath"];
}
}
*firstName = displayPath;
return paths;
}
//----------------------------------------------------------------------------------------
static NSTableColumn*
setColumnSort (NSTableView* tableView, NSString* colId, Class sort)
{
NSTableColumn* col = [tableView tableColumnWithIdentifier: colId];
Assert(col != nil);
id desc = [[sort alloc] initWithKey: colId ascending: YES];
[col setSortDescriptorPrototype: desc];
[desc release];
return col;
}
//----------------------------------------------------------------------------------------
static inline NSString*
PrefKey (NSString* nameKey)
{
return [@"WC:" stringByAppendingString: nameKey];
}
//----------------------------------------------------------------------------------------
void
InitWCPreferences (void)
{
// Split svnX 1.1 array of dicts into separate dict prefs
NSDictionary* const wcWindows = GetPreference(keyWCWidows);
if (wcWindows)
{
for_each_key(en, key, wcWindows)
{
ConstString prefKey = PrefKey(key);
if (!GetPreference(prefKey))
SetPreference(prefKey, [wcWindows objectForKey: key]);
}
}
}
//----------------------------------------------------------------------------------------
#pragma mark -
//----------------------------------------------------------------------------------------
@interface SortPath : AlphaNumSortDesc @end
@implementation SortPath
- (NSComparisonResult) compareObject: (id) obj1 toObject: (id) obj2
{
NSComparisonResult result = [[obj1 objectForKey: @"path"]
compare: [obj2 objectForKey: @"path"]
options: NSCaseInsensitiveSearch | NSNumericSearch];
return fAscending ? result : -result;
}
@end // SortPath
//----------------------------------------------------------------------------------------
@interface SortRevision : AlphaNumSortDesc @end
@implementation SortRevision
- (NSComparisonResult) compareObject: (id) obj1 toObject: (id) obj2
{
NSComparisonResult result = [[obj1 objectForKey: @"revisionCurrent"]
compare: [obj2 objectForKey: @"revisionCurrent"]
options: NSNumericSearch];
return fAscending ? result : -result;
}
@end // SortRevision
//----------------------------------------------------------------------------------------
@interface SortLast : AlphaNumSortDesc @end
@implementation SortLast
- (NSComparisonResult) compareObject: (id) obj1 toObject: (id) obj2
{
NSComparisonResult result = [[obj1 objectForKey: @"revisionLastChanged"]
compare: [obj2 objectForKey: @"revisionLastChanged"]
options: NSNumericSearch];
return fAscending ? result : -result;
}
@end // SortLast
//----------------------------------------------------------------------------------------
#pragma mark -
//----------------------------------------------------------------------------------------
@interface MyWorkingCopyController (Private)
- (void) prefsChanged;
- (void) savePrefs;
- (IBAction) commitPanelValidate: (id) sender;
- (IBAction) commitPanelCancel: (id) sender;
- (IBAction) renamePanelValidate: (id) sender;
- (IBAction) switchPanelValidate: (id) sender;
- (IBAction) mergeSheetDoClick: (id) sender;
- (void) runAlertBeforePerformingAction: (NSDictionary*) command;
- (void) startCommitMessage: (NSString*) selectedOrAll;
- (void) renamePanelForCopy: (BOOL) isCopy
destination: (NSString*) destination;
- (void) requestNameSheet: (SvnCommand) cmd;
- (void) openSidebar;
- (void) svnCleanup_Request;
- (void) updateSheetSetKind: (id) updateKindView;
- (void) updateSheetDidEnd: (NSWindow*) sheet
returnCode: (int) returnCode
contextInfo: (void*) contextInfo;
- (int) mergeSheetSetKind: (id) mergeKindView;
- (void) mergeSheetDidEnd: (NSWindow*) sheet
returnCode: (int) returnCode
contextInfo: (void*) contextInfo;
- (NSArray*) selectedFilePaths;
@end // WorkingCopyCon (Private)
//----------------------------------------------------------------------------------------
#pragma mark -
//----------------------------------------------------------------------------------------
@implementation MyWorkingCopyController
//----------------------------------------------------------------------------------------
+ (void) presetDocumentName: name
{
gInitName = name;
}
//----------------------------------------------------------------------------------------
- (void) awakeFromNib
{
fTreeExpanded = [NSMutableArray new];
isDisplayingErrorSheet = NO;
suppressAutoRefresh = TRUE;
Assert(document != nil);
[window setDelegate: self]; // for windowDid*, windowShould* & windowWill* messages
int viewMode = kModeSmart,
filterMode = kFilterAll;
GCoord treeWidth = 0;
id sortDescsPref = nil;
ConstString prefKey = PrefKey(gInitName);
NSDictionary* const settings = GetPreference(prefKey);
if (settings != nil)
{
viewMode = [[settings objectForKey: keyViewMode] intValue];
filterMode = [[settings objectForKey: keyFilterMode] intValue];
// searchStr = [settings objectForKey: keySearchStr];
if (![[settings objectForKey: keyShowToolbar] boolValue])
[[window toolbar] setVisible: NO];
[window setFrameFromString: [settings objectForKey: keyWidowFrame]];
if ([[settings objectForKey: keyShowSidebar] boolValue])
[sidebar performSelector: @selector(open) withObject: nil afterDelay: 0.125];
ConstString treeSelPath = [settings objectForKey: keyTreeSelPath];
if (treeSelPath != nil)
[document setOutlineSelectedPath: treeSelPath];
id treeExpanded = [settings objectForKey: keyTreeExpanded];
if (treeExpanded)
[fTreeExpanded addObjectsFromArray: treeExpanded];
else
[fTreeExpanded addObject: @""];
treeWidth = [[settings objectForKey: keyTreeWidth] floatValue];
sortDescsPref = [settings objectForKey: keySortDescs];
}
[modeView setIntValue: viewMode];
[self performSelector: @selector(initMode:) withObject: [NSNumber numberWithInt: viewMode] afterDelay: 0];
[filterView selectItemWithTag: filterMode];
[document setFilterMode: filterMode];
[self setStatusMessage: @""];
[document addObserver: self forKeyPath: @"flatMode"
options: (NSKeyValueObservingOptionNew | NSKeyValueObservingOptionOld) context: NULL];
[drawerLogView setup: document forWindow: window];
// This also loads the table view's sorting so do it first (so we can overwrite it)
[tableResult setAutosaveName: prefKey];
// Try to load the table view's sorting from our pref
NSArray* sortDescs = nil;
if (sortDescsPref && ISA(sortDescsPref, NSData))
{
sortDescs = [NSUnarchiver unarchiveObjectWithData: sortDescsPref];
if (!ISA(sortDescs, NSArray))
sortDescs = nil;
}
// Otherwise set the table view's default sorting to status type & path columns
if (!sortDescs)
{
sortDescs = [NSArray arrayWithObjects:
[[[NSSortDescriptor alloc] initWithKey: @"col1" ascending: NO] autorelease],
[[[SortPath alloc] initWithKey: @"path" ascending: YES] autorelease], nil];
}
[svnFilesAC setSortDescriptors: sortDescs];
NSTableView* const tableView = tableResult;
setColumnSort(tableView, @"path", [SortPath class]);
setColumnSort(tableView, @"rev", [SortRevision class]);
setColumnSort(tableView, @"change", [SortLast class]);
if (GetPreferenceBool(@"compactWCColumns"))
{
NSFont* const font = [NSFont labelFontOfSize: 9];
for (int i = 1; i <= 8; ++i)
{
const unichar ch = '0' + i;
NSTableColumn* col = [tableView tableColumnWithIdentifier: [NSString stringWithCharacters: &ch length: 1]];
if (!col) continue;
NSCell* cell = [col dataCell];
[cell setAlignment: NSLeftTextAlignment];
[cell setFont: font];
[col setMinWidth: 9];
[col setWidth: 9];
[col setMaxWidth: 9];
}
}
[self setNextResponder: [tableView nextResponder]];
[tableView setNextResponder: self];
if (treeWidth <= 0)
treeWidth = kDefaultTreeWidth;
fTreeWidth = treeWidth;
[self adjustOutlineView];
fTreeWidth = treeWidth; // adjustTreeView may have overwritten this if it called closeTreeView
[[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(quitting:)
name: NSApplicationWillTerminateNotification object: nil];
}
//----------------------------------------------------------------------------------------
- (void) dealloc
{
// dprintf("%@", self);
[[NSNotificationCenter defaultCenter] removeObserver: self];
[savedSelection release];
[fTreeExpanded release];
[super dealloc];
}
//----------------------------------------------------------------------------------------
- (void) initMode: (NSNumber*) number
{
const int viewMode = [number intValue];
if (viewMode == [self currentMode]) // Force refresh if mode hasn't changed so won't auto-refresh
{
[document svnRefresh];
[self prefsChanged];
}
else
[self setCurrentMode: viewMode];
}
//----------------------------------------------------------------------------------------
- (void) windowDidBecomeMain: (NSNotification*) notification
{
#pragma unused(notification)
if (suppressAutoRefresh)
{
suppressAutoRefresh = FALSE;
}
else if (!svnStatusPending && GetPreferenceBool(@"autoRefreshWC"))
{
[document performSelector: @selector(svnRefresh) withObject: nil afterDelay: 0];
}
[self selectionChanged];
}
//----------------------------------------------------------------------------------------
- (void) windowDidResignMain: (NSNotification*) notification
{
#pragma unused(notification)
Props_Reset();
}
//----------------------------------------------------------------------------------------
- (BOOL) windowShouldClose: (id) sender
{
#pragma unused(sender)
// If there's a sub-controller then we can't close.
const id subController = [document anySubController];
if (subController)
{
// Focus the sub-controller's window
[[subController window] performSelector: @selector(makeKeyAndOrderFront:)
withObject: nil afterDelay: 0];
NSBeep();
return FALSE;
}
return TRUE;
}
//----------------------------------------------------------------------------------------
- (void) windowWillClose: (NSNotification*) notification
{
#pragma unused(notification)
[document removeObserver: self forKeyPath: @"flatMode"];
fPrefsChanged = TRUE;
[self savePrefs];
document = nil;
drawerLogView = nil;
}
//----------------------------------------------------------------------------------------
// Mark prefs as changed but defer saving for 5 secs.
- (void) prefsChanged
{
if (!fPrefsChanged)
{
fPrefsChanged = TRUE;
[self performSelector: @selector(savePrefs) withObject: nil afterDelay: 5];
}
}
//----------------------------------------------------------------------------------------
- (void) savePrefs
{
if (!fPrefsChanged || document == nil || ![window isVisible])
return;
fPrefsChanged = FALSE;
const GCoord treeWidth = [SubView(splitView, 0) frame].size.width;
if (treeWidth > 0)
fTreeWidth = treeWidth;
const id sortDescs = [NSArchiver archivedDataWithRootObject: [svnFilesAC sortDescriptors]];
SetPreference(PrefKey([document windowTitle]),
[NSDictionary dictionaryWithObjectsAndKeys:
[window stringWithSavedFrame], keyWidowFrame,
[NSNumber numberWithInt: [self currentMode]], keyViewMode,
[NSNumber numberWithInt: [document filterMode]], keyFilterMode,
NSBool([[window toolbar] isVisible]), keyShowToolbar,
NSBool(IsOpen(sidebar)), keyShowSidebar,
[NSNumber numberWithFloat: fTreeWidth], keyTreeWidth,
[document outlineSelectedPath], keyTreeSelPath,
fTreeExpanded, keyTreeExpanded,
sortDescs, keySortDescs,
nil]);
}
//----------------------------------------------------------------------------------------
- (void) quitting: (NSNotification*) notification
{
#pragma unused(notification)
fPrefsChanged = TRUE;
[self savePrefs];
}
//----------------------------------------------------------------------------------------
- (void) observeValueForKeyPath: (NSString*) keyPath
ofObject: (id) object
change: (NSDictionary*) change
context: (void*) context
{
#pragma unused(object, change, context)
if ([keyPath isEqualToString: @"flatMode"])
{
[self adjustOutlineView];
}
}
//----------------------------------------------------------------------------------------
- (void) keyDown: (NSEvent*) theEvent
{
ConstString chars = [theEvent charactersIgnoringModifiers];
const unichar ch = [chars characterAtIndex: 0];
const UInt32 modifiers = [theEvent modifierFlags];
if (ch == '\r' || ch == 3)
{
[self doubleClickInTableView: nil];
}
else if ((modifiers & (NSControlKeyMask | NSCommandKeyMask)) == NSControlKeyMask) // ctrl+<letter> => command button
{
for_each_obj(enumerator, cell, [WGetView(window, vCmdButtons) cells])
{
ConstString keys = [cell keyEquivalent];
if (keys != nil && [keys length] == 1 && ch == ([keys characterAtIndex: 0] | 0x20))
{
[cell performClick: self];
break;
}
}
}
else if (ch >= ' ' && ch < 0xF700 && (modifiers & NSCommandKeyMask) == 0)
{
NSTableView* const tableView = tableResult;
NSArray* const dataArray = [svnFilesAC arrangedObjects];
const int rows = [dataArray count];
int selRow = [svnFilesAC selectionIndex];
if (selRow == NSNotFound)
selRow = rows - 1;
const unichar ch0 = (ch >= 'a' && ch <= 'z') ? (ch - 32) : ch;
for (int i = 1; i <= rows; ++i)
{
const int index = (selRow + i) % rows;
NSString* name = [[dataArray objectAtIndex: index] objectForKey: @"displayPath"];
if ([name length] && ([name characterAtIndex: 0] & ~0x20) == ch0)
{
[tableView selectRow: index byExtendingSelection: FALSE];
[tableView scrollRowToVisible: index];
break;
}
}
}
else
[super keyDown: theEvent];
}
//----------------------------------------------------------------------------------------
- (void) saveSelection
{
if ([[svnFilesAC arrangedObjects] count] > 0)
{
SetVar(savedSelection, [self selectedFilePaths]);
}
// dprintf("savedSelection=%@", savedSelection);
}
//----------------------------------------------------------------------------------------
- (void) restoreSelection
{
// dprintf("savedSelection=%@ tree='%@'", savedSelection, [document outlineSelectedPath]);
if (savedSelection != nil)
{
NSArray* const wcFiles = [svnFilesAC arrangedObjects];
NSMutableIndexSet* sel = [NSMutableIndexSet indexSet];
for_each_obj(en, fullPath, savedSelection)
{
int index = 0;
for_each_obj(wcEn, wcIt, wcFiles)
{
if ([fullPath isEqualToString: [wcIt objectForKey: @"fullPath"]])
{
[sel addIndex: index];
break;
}
++index;
}
}
if ([sel count])
[svnFilesAC setSelectionIndexes: sel];
[savedSelection release];
savedSelection = nil;
[self selectionChanged];
}
}
//----------------------------------------------------------------------------------------
// Return TRUE if there is no sheet blocking this window, otherwise beep & return FALSE.
- (BOOL) noSheet
{
if ([window attachedSheet])
{
NSBeep();
return FALSE;
}
return TRUE;
}
//----------------------------------------------------------------------------------------
- (void) suppressAutoRefresh
{
suppressAutoRefresh = TRUE;
}
//----------------------------------------------------------------------------------------
- (void) selectionChanged
{
if ([window isVisible])
{
Props_Changed(self);
}
}
//----------------------------------------------------------------------------------------
#pragma mark -
#pragma mark IBActions
//----------------------------------------------------------------------------------------
- (IBAction) refresh: (id) sender
{
#pragma unused(sender)
if (!svnStatusPending && [self noSheet])
[document svnRefresh];
}
- (IBAction) toggleView: (id) sender
{
#pragma unused(sender)
//[[self document] setFlatMode: !([[self document] flatMode])];
// [self adjustOutlineView];
}
//----------------------------------------------------------------------------------------
- (IBAction) performAction: (id) sender
{
const BOOL isButton = ISA(sender, NSMatrix);
const SvnCommand action = isButton ? SelectedTag(sender) : [sender tag];
if (action == cmdReview || action == cmdReviewAlt)
{
const id subController = [document anySubController];
if (subController == nil || action == cmdReviewAlt || AltOrShiftPressed())
[ReviewController performSelector: @selector(openForDocument:) withObject: document afterDelay: 0];
else
[[subController window] makeKeyAndOrderFront: self];
}
else if (action == cmdUpdateAlt || (isButton && action == cmdUpdate && AltOrShiftPressed()))
{
if ([self noSheet])
Update_Run(self, TRUE);
}
else if (action == cmdCommit)
{
[self startCommitMessage: @"selected"];
}
else if (action == cmdResolve)
{
[document svnResolve: [self selectedFilePaths]];
}
else if (action == cmdCleanup)
{
[self svnCleanup_Request];
}
else if (action == cmdRename || action == cmdCopy)
{
[self requestNameSheet: action];
}
else if (action == cmdInfo || action == cmdInfoRecursive)
{
id paths = [self selectedFilePaths];
if ([paths count] == 0) // Use selected tree folder or nil => WC
paths = [document flatMode] ? nil : [document treeSelectedFullPath];
[self openSidebar];
[document svnInfo: paths options: (action == cmdInfoRecursive) ? @"--recursive" : nil];
}
else if (action < sizeof(gCommands) / sizeof(gCommands[0]))
{
[self performSelector: @selector(runAlertBeforePerformingAction:)
withObject: makeCommand(gCommands[action], gVerbs[action], nil)
afterDelay: 0];
}
else
dprintf("(%@): ERROR: action=%d", sender, action);
}
//----------------------------------------------------------------------------------------
// If there is a single selected item then return it else return nil.
// Private:
- (NSDictionary*) selectedItemOrNil
{
NSArray* const selectedObjects = [svnFilesAC selectedObjects];
return ([selectedObjects count] == 1) ? [selectedObjects objectAtIndex: 0] : nil;
}
//----------------------------------------------------------------------------------------
- (void) doubleClickInTableView: (id) sender
{
#pragma unused(sender)
NSArray* const filePaths = [self selectedFilePaths];
if ([filePaths count] != 0)
OpenFiles(filePaths);
}
//----------------------------------------------------------------------------------------
- (void) adjustOutlineView
{
[document setSvnFiles: nil];
NSView* view;
if ([document flatMode])
{
[self closeOutlineView];
view = tableResult;
}
else
{
[self openOutlineView];
view = outliner;
}
[window makeFirstResponder: view];
}
//----------------------------------------------------------------------------------------
- (void) openOutlineView
{
NSRect frame = [splitView frame];
GCoord width = [[splitView superview] frame].size.width;
frame.origin.x = 0;
frame.size.width = width;
[splitView setFrame: frame];
[SubView(splitView, 0) setHidden: NO];
width = [self splitView: splitView constrainMaxCoordinate: width - [splitView dividerThickness] ofSubviewAt: 0];
if (fTreeWidth > width)
fTreeWidth = width;
initSplitView(splitView, fTreeWidth, nil);
}
//----------------------------------------------------------------------------------------
- (void) closeOutlineView
{
NSView* const leftView = SubView(splitView, 0);
const GCoord kDivGap = [splitView dividerThickness];
NSRect frame = [splitView frame];
frame.origin.x = -kDivGap;
frame.size.width = [[splitView superview] frame].size.width + kDivGap;
[splitView setFrame: frame];
frame = [leftView frame];
if (frame.size.width > 0)
fTreeWidth = frame.size.width;
frame.size.width = 0;
[leftView setFrame: frame];
[leftView setHidden: YES];
[splitView adjustSubviews];
}
//----------------------------------------------------------------------------------------
- (void) fetchSvnStatus
{
[self startProgressIndicator];
[document fetchSvnStatus: AltOrShiftPressed()];
}
//----------------------------------------------------------------------------------------
- (void) fetchSvnInfo
{
[self startProgressIndicator];
[document fetchSvnInfo];
}
//----------------------------------------------------------------------------------------
- (void) fetchSvnStatusVerboseReceiveDataFinished
{
if (![window isVisible])
return;
[self stopProgressIndicator];
NSOutlineView* const tree = outliner;
if ([tree numberOfRows] != 0)
{
// Save the path of the selected tree item
ConstString selPath = [document outlineSelectedPath];
[tree reloadData];
Assert([tree numberOfRows] > 0);
// Restore the expanded tree items
UInt32 xIndex = 0, xCount = [fTreeExpanded count];
id xPath = nil, item;
for (int index = 0; (item = [tree itemAtRow: index]) != nil; ++index)
{
NSString* path = [item path];
if (xPath == nil && xIndex < xCount)
xPath = [fTreeExpanded objectAtIndex: xIndex++];
if (xPath != nil && [xPath isEqualToString: path])
{
[tree expandItem: item];
xPath = nil;
}
}
[self selectTreePath: selPath];
}
svnStatusPending = NO;
}
//----------------------------------------------------------------------------------------
// Filter mode
- (void) setFilterMode: (int) mode
{
[document setFilterMode: mode];
[svnFilesAC rearrangeObjects];
[self prefsChanged];
}
//----------------------------------------------------------------------------------------
// The Filter toolbar pop-up menu has changed
- (IBAction) changeFilter: (id) sender
{
if ([self noSheet])
[self setFilterMode: [[sender selectedItem] tag]];
else
[sender selectItemWithTag: [document filterMode]];
}
//----------------------------------------------------------------------------------------
- (IBAction) openRepository: (id) sender
{
#pragma unused(sender)
if ([self noSheet])
{
[[NSApp delegate] openRepository: [document repositoryUrl] user: [document user] pass: [document pass]];
}
}
//----------------------------------------------------------------------------------------
- (IBAction) toggleSidebar: (id) sender
{
if ([self noSheet])
{
[sidebar toggle: sender];
[self prefsChanged];
}
}