-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathController_input.m
3116 lines (2933 loc) · 79.4 KB
/
Controller_input.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
#import "Controller.h"
#import "CustomWindow.h"
#import "BookmarkController.h"
#import "CustomImageView.h"
#import "FullImagePanel.h"
@implementation Controller (Input)
static BOOL appleRemoteHoldDown = NO;
#pragma mark action
- (void)remoteButton:(RemoteControlEventIdentifier)buttonIdentifier pressedDown: (BOOL) pressedDown clickCount: (unsigned int)clickCount
{
appleRemoteHoldDown = NO;
if (!pressedDown) {
return;
}
UpdateSystemActivity( OverallAct );
//UpdateSystemActivity(UsrActivity);
unichar character = buttonIdentifier;
switch(buttonIdentifier) {
case kRemoteButtonRight_Hold:
appleRemoteHoldDown = YES;
character = kRemoteButtonRight;
break;
case kRemoteButtonLeft_Hold:
appleRemoteHoldDown = YES;
character = kRemoteButtonLeft;
break;
case kRemoteButtonPlus_Hold:
appleRemoteHoldDown = YES;
character = kRemoteButtonPlus;
break;
case kRemoteButtonMinus_Hold:
appleRemoteHoldDown = YES;
character = kRemoteButtonMinus;
break;
case kRemoteButtonPlay_Hold:
appleRemoteHoldDown = YES;
character = kRemoteButtonPlay;
break;
case kRemoteButtonMenu_Hold:
appleRemoteHoldDown = YES;
character = kRemoteButtonMenu;
break;
default:
break;
}
NSString *characters = [NSString stringWithCharacters:&character length:1];
if (![window isVisible] || ![window isKeyWindow]) {
if ([prefController inKeyEdit]) {
[prefController setKeyCharacters:characters];
appleRemoteHoldDown = NO;
return;
}
if (![thumController isVisible]) {
appleRemoteHoldDown = NO;
return;
}
}
[self timeredRemoteButtonEvent:characters];
}
- (void)timeredRemoteButtonEvent:(NSString*)characters;
{
if ([thumController isVisible]) {
[thumController appleRemoteAction:characters];
} else {
BOOL slideshow = NO;
if (timerSwitch) {
[timer invalidate];
timerSwitch = NO;
slideshow = YES;
[imageView setSlideshow:NO];
}
useComposedImage = NO;
threadStop = NO;
unichar character = [characters characterAtIndex:0];
unsigned int cMod = 100;
if (fitScreenMode == 0) {
[self getKeyAction:character mod:cMod mode:0 slideshow:slideshow];
} else if (fitScreenMode == 1) {
if (![self getKeyAction:character mod:cMod mode:1 slideshow:slideshow]) {
[self getKeyAction:character mod:cMod mode:0 slideshow:slideshow];
}
} else if (fitScreenMode == 2 || fitScreenMode == 3) {
if (![self getKeyAction:character mod:cMod mode:2 slideshow:slideshow]) {
[self getKeyAction:character mod:cMod mode:0 slideshow:slideshow];
}
}
}
if (!appleRemoteHoldDown) return;
[self performSelector:@selector(timeredRemoteButtonEvent:) withObject:characters afterDelay:0.1];
}
- (void)keyAction:(NSEvent*)sender
{
BOOL slideshow = NO;
if (timerSwitch) {
[timer invalidate];
timerSwitch = NO;
slideshow = YES;
[imageView setSlideshow:NO];
//return;
}
useComposedImage = NO;
threadStop = NO;
NSString *characters = [sender charactersIgnoringModifiers];
unichar character = [characters characterAtIndex: 0];
if ([[NSCharacterSet decimalDigitCharacterSet] characterIsMember:character]){
if ([imageView pageMover]) {
if ([imageView tempPageNum] > 99999) {
return;
}
[imageView drawPageMover:[characters intValue]];
return;
}
} else if (character == 0x1B) {
//esc
if ([imageView pageMover]) {
[imageView drawPageMover:-1];
return;
} else {
threadStop = YES;
[lock lock];
[lock unlock];
threadStop = NO;
[window performClose:self];
return;
}
} else if (character == NSDeleteCharacter) {
if ([imageView pageMover]) {
if ([imageView tempPageNum]<=0) {
return;
} else {
[imageView drawPageMover:-2];
return;
}
}
}
unsigned int cMod = 0;
BOOL shift = ([sender modifierFlags] & NSShiftKeyMask) ? YES : NO;
BOOL option = ([sender modifierFlags] & NSAlternateKeyMask) ? YES : NO;
BOOL control = ([sender modifierFlags] & NSControlKeyMask) ? YES : NO;
BOOL numeric = ([sender modifierFlags] & NSNumericPadKeyMask) ? YES : NO;
if (shift) cMod += 1;
if (option) cMod += 2;
if (control) cMod += 4;
if (numeric) {
if (character == NSLeftArrowFunctionKey||character == NSRightArrowFunctionKey||character == NSUpArrowFunctionKey||character == NSDownArrowFunctionKey) {
} else {
cMod += 8;
}
}
if (fitScreenMode == 0) {
[self getKeyAction:character mod:cMod mode:0 slideshow:slideshow];
} else if (fitScreenMode == 1) {
if (![self getKeyAction:character mod:cMod mode:1 slideshow:slideshow]) {
[self getKeyAction:character mod:cMod mode:0 slideshow:slideshow];
}
} else if (fitScreenMode == 2 || fitScreenMode == 3) {
if (![self getKeyAction:character mod:cMod mode:2 slideshow:slideshow]) {
[self getKeyAction:character mod:cMod mode:0 slideshow:slideshow];
}
}
}
- (BOOL)getKeyAction:(unichar)character mod:(int)cMod mode:(int)mode slideshow:(BOOL)slideshow
{
NSEnumerator *enu = nil;
switch (mode) {
case 0:
enu = [keyArray objectEnumerator];
break;
case 1:
enu = [keyArrayMode2 objectEnumerator];
break;
case 2:
enu = [keyArrayMode3 objectEnumerator];
break;
default:break;
}
id dic;
while (dic = [enu nextObject]) {
if (character == [[dic objectForKey:@"key"] characterAtIndex:0] && cMod == [[dic objectForKey:@"modifier"] intValue]){
int action = [[dic objectForKey:@"action"] intValue];
if ([[dic objectForKey:@"switchAction"] boolValue] == YES && [self readFromLeft]) {
switch (action) {
case 0: action=1; break;
case 1: action=0; break;
case 2: action=3; break;
case 3: action=2; break;
case 4: action=5; break;
case 5: action=4; break;
case 6: action=7; break;
case 7: action=6; break;
case 8: action=9; break;
case 9: action=8; break;
case 13: action=14; break;
case 14: action=13; break;
case 26: action=27; break;
case 27: action=26; break;
case 35: action=36; break;
case 36: action=35; break;
default:
break;
}
}
switch (action) {
case 0:
//nextpage
[lock lock];
[lock unlock];
useComposedImage = YES;
[self imageDisplay];
break;
case 1:
//prevpage
//[lock lock];
//[lock unlock];
[self prevPage];
break;
case 2:
//halfnext
[lock lock];
[lock unlock];
if (nowPage < [completeMutableArray count]) {
if (secondImage){
nowPage--;
[lock lock];
[lock unlock];
[imageMutableArray insertObject:[self loadImage:nowPage] atIndex:0];
//[imageMutableArray insertObject:secondImage atIndex:0];
}
}
[self imageDisplay];
break;
case 3:
//halfprev
[lock lock];
[lock unlock];
[self halfprevPage];
break;
case 4:
//lastpage
[self goToLast];
break;
case 5:
//toppage
if (secondImage) {
if (nowPage > 2) {
threadStop = YES;
[lock lock];
[lock unlock];
threadStop = NO;
[imageMutableArray removeAllObjects];
nowPage = 0;
[self lookahead];
[self imageDisplay];
}
} else {
if (nowPage > 1) {
threadStop = YES;
[lock lock];
[lock unlock];
threadStop = NO;
[imageMutableArray removeAllObjects];
nowPage = 0;
[self lookahead];
[self imageDisplay];
}
}
break;
case 6:
//nextbookmark
[lock lock];
[lock unlock];
[self nextBookmark];
break;
case 7:
//prevbookmark
[lock lock];
[lock unlock];
[self backBookmark];
break;
case 8:
//nextfolder
[lock lock];
[lock unlock];
[self nextFolder];
break;
case 9:
//prevfolder
[lock lock];
[lock unlock];
[self backFolder];
break;
case 10:
//add/removebookmark
if ([self removeBookmark]) {
} else {
[self addBookmark];
}
break;
case 11:
//switchSingle
[lock lock];
[lock unlock];
[self switchSingle:nil];
break;
case 12:
//shownumber
if (numberSwitch) {
[imageView setPageString:nil];
numberSwitch = NO;
[defaults setBool:numberSwitch forKey:@"ShowNumber"];
} else {
if (!secondImage) {
int i = nowPage - 1;
[imageView setPageString:[NSString stringWithFormat:@"#%d/%d (%@)",nowPage,(int)[completeMutableArray count],[[completeMutableArray objectAtIndex:i] lastPathComponent]]];
numberSwitch = YES;
} else if (secondImage) {
int i = nowPage - 1;
int iS = i - 1;
[imageView setPageString:[NSString stringWithFormat:@"#%d-%d/%d (%@ / %@)",i,nowPage,(int)[completeMutableArray count],[[completeMutableArray objectAtIndex:iS] lastPathComponent],[[completeMutableArray objectAtIndex:i] lastPathComponent]]];
numberSwitch = YES;
}
[defaults setBool:numberSwitch forKey:@"ShowNumber"];
}
//[imageView setNeedsDisplay];
break;
case 13:
//skip
threadStop = YES;
[lock lock];
[lock unlock];
threadStop = NO;
[imageMutableArray removeAllObjects];
int skipI = [[dic objectForKey:@"value"] intValue];
skipI -= 2;
if (!secondImage) {
//skipI += 1;
}
nowPage += skipI;
if (nowPage >= [completeMutableArray count]) {
nowPage = (int)[completeMutableArray count];
nowPage -= 2;
}
[self lookahead];
if ([imageMutableArray count] > 1) {
if ([self isSmallImage:[imageMutableArray objectAtIndex:0] page:nowPage+1] == NO) {
[imageMutableArray removeObjectAtIndex:0];
nowPage++;
} else if ([self isSmallImage:[imageMutableArray objectAtIndex:1] page:nowPage+2] == NO) {
[imageMutableArray removeObjectAtIndex:0];
nowPage++;
}
}
[self imageDisplay];
break;
case 14:
//backskip
threadStop = YES;
[lock lock];
[lock unlock];
threadStop = NO;
[imageMutableArray removeAllObjects];
int bskipI = [[dic objectForKey:@"value"] intValue];
bskipI += 2;
if (!secondImage) {
//bskipI -= 1;
}
nowPage -= bskipI;
if (nowPage < 0) {
nowPage = 0;
}
[self lookahead];
[self imageDisplay];
break;
case 15:
//origRight
switch (readMode) {
case 0:
[self viewAtOriginalSizeFirst:self];
break;
case 1:
[self viewAtOriginalSizeSecond:self];
break;
case 2:
[self viewAtOriginalSizeFirst:self];
break;
case 3:
[self viewAtOriginalSizeSecond:self];
break;
default:
break;
}
break;
case 16:
//origLeft
switch (readMode) {
case 0:
[self viewAtOriginalSizeSecond:self];
break;
case 1:
[self viewAtOriginalSizeFirst:self];
break;
case 2:
[self viewAtOriginalSizeSecond:self];
break;
case 3:
[self viewAtOriginalSizeFirst:self];
break;
default:
break;
}
break;
case 17:
//slideshow
if (!slideshow) {
[self slideshow:nil];
}
[self setPageTextField];
break;
case 18:
//showThumbnail
if (secondImage) {
int temp = nowPage;
temp--;
[thumController showThumbnail:temp];
} else {
[thumController showThumbnail:nowPage];
}
break;
case 19:
//changeReadMode
[lock lock];
[lock unlock];
if (readMode == 0) {
[self changeReadMode:1];
} else if (readMode == 1) {
[self changeReadMode:2];
} else if (readMode == 2) {
[self changeReadMode:3];
} else if (readMode == 3) {
[self changeReadMode:0];
}
break;
case 20:
//showPageBar
if (pageBar) {
pageBar = NO;
} else {
pageBar = YES;
}
[defaults setBool:pageBar forKey:@"ShowPageBar"];
[imageView drawPageBar];
break;
case 21:
//showPageMover
if (![imageView pageMover]) {
[imageView drawPageMover:0];
} else {
if ([imageView tempPageNum]<=0) {
[imageView drawPageMover:-1];
break;
} else {
[lock lock];
[lock unlock];
int tempPageNum = [imageView tempPageNum];
tempPageNum--;
[self goTo:tempPageNum array:nil];
[imageView drawPageMover:-1];
}
}
break;
case 22:
//show in finder R
switch (readMode) {
case 0:
[self showInFinderFirst:self];
break;
case 1:
[self showInFinderSecond:self];
break;
case 2:
[self showInFinderFirst:self];
break;
case 3:
[self showInFinderSecond:self];
break;
default:
break;
}
break;
case 23:
//showInFinderL
switch (readMode) {
case 0:
[self showInFinderSecond:self];
break;
case 1:
[self showInFinderFirst:self];
break;
case 2:
[self showInFinderSecond:self];
break;
case 3:
[self showInFinderFirst:self];
break;
default:
break;
}
break;
case 24:
//PageUp
[imageView scrollUp];
break;
case 25:
//PageDown
[imageView scrollDown];
break;
case 26:
//PageUp + PrevPage
if ([imageView prev] == YES) {
//[lock lock];
//[lock unlock];
if (prevPageMode == 1) [imageView setStartFromEnd:YES];
[self prevPage];
}
break;
case 27:
//PageDown + NextPage
if ([imageView next] == YES) {
[lock lock];
[lock unlock];
useComposedImage = YES;
[self imageDisplay];
}
break;
case 28:
//ScrollToTop
[imageView scrollToTop];
break;
case 29:
//ScrollToEnd
[imageView scrollToLast];
break;
case 30:
//ScrollUp
[imageView scrollTo:NSMakePoint(0,-1*([[dic objectForKey:@"value"] intValue]))];
break;
case 31:
//ScrollDown
[imageView scrollTo:NSMakePoint(0,[[dic objectForKey:@"value"] intValue])];
break;
case 32:
//ScrollLeft
[imageView scrollTo:NSMakePoint([[dic objectForKey:@"value"] intValue],0)];
break;
case 33:
//ScrollRight
[imageView scrollTo:NSMakePoint((-1*[[dic objectForKey:@"value"] intValue]),0)];
break;
case 34:
//loupe
[imageView setLoupe];
break;
case 35:
//nextSubFolder
[self nextSubFolder];
break;
case 36:
//prevSubFolder
[self prevSubFolder];
break;
case 37:
//loupeRatePlus
[defaults setFloat:[defaults floatForKey:@"LoupeRate"]+[[dic objectForKey:@"value"] floatValue] forKey:@"LoupeRate"];
[imageView setLoupeRate];
break;
case 38:
//loupeRateMinus
if ([defaults floatForKey:@"LoupeRate"]-[[dic objectForKey:@"value"] floatValue]>1.0) {
[defaults setFloat:[defaults floatForKey:@"LoupeRate"]-[[dic objectForKey:@"value"] floatValue] forKey:@"LoupeRate"];
} else {
[defaults setFloat:1.0 forKey:@"LoupeRate"];
}
[imageView setLoupeRate];
break;
case 39:
//goto%
[self goToPar:([[dic objectForKey:@"value"] floatValue]/100)];
break;
case 40:
//rotateRight
[self rotateRight:nil];
break;
case 41:
//rotateLeft
[self rotateLeft:nil];
break;
case 42:
//changeViewMode
[self setPageTextField];
switch (fitScreenMode) {
case 0:
[self fitToScreenWidth:nil];
break;
case 1:
[self fitToScreenWidthDivide:nil];
break;
case 2:
[self fitToScreen:nil];
break;
case 3:
[self noScale:nil];
break;
default:
break;
}
break;
case 51:
//enlargeViewMode
[self setPageTextField];
switch (fitScreenMode) {
case 0:
[self fitToScreenWidth:nil];
break;
case 1:
[self fitToScreenWidthDivide:nil];
break;
case 3:
[self noScale:nil];
break;
default:
break;
}
break;
case 52:
//reduceViewMode
[self setPageTextField];
switch (fitScreenMode) {
case 1:
[self fitToScreen:nil];
break;
case 2:
[self fitToScreenWidthDivide:nil];
break;
case 3:
[self fitToScreenWidth:nil];
break;
default:
break;
}
break;
case 43:
//trashRight
[self trashRight];
break;
case 44:
//trashLeft
[self trashLeft];
break;
case 45:
//changeSortMode
if ([imageLoader canSortByDate]) {
switch (sortMode) {
case 0:sortMode = 2;break;
case 1:sortMode = 0;break;
case 2:sortMode = 3;break;
case 3:sortMode = 1;break;
default:break;
}
[self setSortMode:sortMode page:0];
} else {
switch (sortMode) {
case 0:sortMode = 1;break;
case 1:sortMode = 0;break;
case 2:sortMode = 0;break;
case 3:sortMode = 0;break;
default:break;
}
[self setSortMode:sortMode page:0];
}
break;
case 46:
//close
threadStop = YES;
[lock lock];
[lock unlock];
threadStop = NO;
[window performClose:self];
break;
case 47:
//randam
[self setSortMode:1 page:0];
break;
case 48:
//openTheLastPage
{
NSMenu *menu = [[[NSApp mainMenu] itemWithTitle:NSLocalizedString(@"File", @"")] submenu];
NSMenuItem *item = [menu itemWithTitle:NSLocalizedString(@"Open the last page", @"")];
if ([item isEnabled]) {
[menu performActionForItemAtIndex:[menu indexOfItem:item]];
}
}
break;
case 49:
//switchFullScreen
{
NSMenu *menu = [[[NSApp mainMenu] itemWithTitle:NSLocalizedString(@"Window", @"")] submenu];
NSMenuItem *item = [menu itemWithTitle:NSLocalizedString(@"Fullscreen", @"")];
if ([item isEnabled]) {
[menu performActionForItemAtIndex:[menu indexOfItem:item]];
}
}
break;
case 50:
//minimizeWindow
{
NSMenu *menu = [[[NSApp mainMenu] itemWithTitle:NSLocalizedString(@"Window", @"")] submenu];
NSMenuItem *item = [menu itemWithTitle:NSLocalizedString(@"Minimize", @"")];
if ([item isEnabled]) {
[menu performActionForItemAtIndex:[menu indexOfItem:item]];
}
}
break;
default:
break;
}
return YES;
}
}
return NO;
}
- (void)mouseAction:(NSEvent*)sender
{
if (timerSwitch) {
[timer invalidate];
timerSwitch=NO;
[imageView setSlideshow:NO];
}
int button = (int)[sender buttonNumber];
unsigned int cMod = 0;
BOOL shift = ([sender modifierFlags] & NSShiftKeyMask) ? YES : NO;
BOOL option = ([sender modifierFlags] & NSAlternateKeyMask) ? YES : NO;
BOOL control = ([sender modifierFlags] & NSControlKeyMask) ? YES : NO;
if (shift) {
cMod += 1;
}
if (option) {
cMod += 2;
}
if (control) {
cMod += 4;
}
useComposedImage = NO;
threadStop = NO;
NSRect left,right;
switch (readMode) {
case 0:
NSDivideRect ([[window contentView] frame], &left, &right, [[window contentView] frame].size.width/2, NSMinXEdge);
break;
case 1:
NSDivideRect ([[window contentView] frame], &right, &left, [[window contentView] frame].size.width/2, NSMinXEdge);
break;
case 2:
NSDivideRect ([[window contentView] frame], &left, &right, [[window contentView] frame].size.width/2, NSMinXEdge);
break;
case 3:
NSDivideRect ([[window contentView] frame], &right, &left, [[window contentView] frame].size.width/2, NSMinXEdge);
break;
default:
NSDivideRect ([[window contentView] frame], &left, &right, [[window contentView] frame].size.width/2, NSMinXEdge);
break;
}
BOOL leftBool = NSPointInRect([sender locationInWindow], left);
if (fitScreenMode == 0) {
[self getMouseAction:button mod:cMod mode:0 left:leftBool];
} else if (fitScreenMode == 1 || fitScreenMode == 3) {
if (![self getMouseAction:button mod:cMod mode:1 left:leftBool]) {
[self getMouseAction:button mod:cMod mode:0 left:leftBool];
}
} else if (fitScreenMode == 2) {
if (![self getMouseAction:button mod:cMod mode:2 left:leftBool]) {
[self getMouseAction:button mod:cMod mode:0 left:leftBool];
}
}
}
- (void)multiTouchAction:(NSEvent*)sender action:(int)action
{
unsigned int cMod = 0;
int button = 0;
switch (action) {
case 0:
//swipe right
button += 1000;
break;
case 1:
//swipe left
button += 2000;
break;
case 2:
//swipe up
button += 3000;
break;
case 3:
//swipe down
button += 4000;
break;
case 4:
//pinch in
button += 5000;
break;
case 5:
//pinch out
button += 6000;
break;
case 6:
//rotate right
button += 7000;
break;
case 7:
//rotate left
button += 8000;
break;
default:
break;
}
BOOL shift = ([sender modifierFlags] & NSShiftKeyMask) ? YES : NO;
BOOL option = ([sender modifierFlags] & NSAlternateKeyMask) ? YES : NO;
BOOL control = ([sender modifierFlags] & NSControlKeyMask) ? YES : NO;
if (shift) {
cMod += 1;
}
if (option) {
cMod += 2;
}
if (control) {
cMod += 4;
}
useComposedImage = NO;
threadStop = NO;
NSRect left,right;
switch (readMode) {
case 0:
NSDivideRect ([imageView frame], &left, &right, [imageView frame].size.width/2, NSMinXEdge);
break;
case 1:
NSDivideRect ([imageView frame], &right, &left, [imageView frame].size.width/2, NSMinXEdge);
break;
case 2:
NSDivideRect ([imageView frame], &left, &right, [imageView frame].size.width/2, NSMinXEdge);
break;
case 3:
NSDivideRect ([imageView frame], &right, &left, [imageView frame].size.width/2, NSMinXEdge);
break;
default:
NSDivideRect ([imageView frame], &left, &right, [imageView frame].size.width/2, NSMinXEdge);
break;
}
BOOL leftBool = NSPointInRect([sender locationInWindow], left);
if (fitScreenMode == 0) {
[self getMouseAction:button mod:cMod mode:0 left:leftBool];
} else if (fitScreenMode == 1) {
if (![self getMouseAction:button mod:cMod mode:1 left:leftBool]) {
[self getMouseAction:button mod:cMod mode:0 left:leftBool];
}
} else if (fitScreenMode == 2 || fitScreenMode == 3) {
if (![self getMouseAction:button mod:cMod mode:2 left:leftBool]) {
![self getMouseAction:button mod:cMod mode:0 left:leftBool];
}
}
}
- (void)gestureAction:(NSEvent*)sender moved:(int)moved
{
int button = (int)[sender buttonNumber];
unsigned int cMod = 0;
switch (moved) {
case 0:
//left
cMod += 200;
break;
case 1:
//right
cMod += 300;
break;
case 2:
//up
cMod += 400;
break;
case 3:
//down
cMod += 500;
break;
default:
break;
}
BOOL shift = ([sender modifierFlags] & NSShiftKeyMask) ? YES : NO;
BOOL option = ([sender modifierFlags] & NSAlternateKeyMask) ? YES : NO;
BOOL control = ([sender modifierFlags] & NSControlKeyMask) ? YES : NO;
if (shift) {
cMod += 1;
}
if (option) {
cMod += 2;
}
if (control) {
cMod += 4;
}
useComposedImage = NO;
threadStop = NO;
NSRect left,right;
switch (readMode) {
case 0:
NSDivideRect ([imageView frame], &left, &right, [imageView frame].size.width/2, NSMinXEdge);
break;
case 1:
NSDivideRect ([imageView frame], &right, &left, [imageView frame].size.width/2, NSMinXEdge);
break;
case 2:
NSDivideRect ([imageView frame], &left, &right, [imageView frame].size.width/2, NSMinXEdge);