-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYataGrid_mouse.cs
1228 lines (1051 loc) · 33 KB
/
YataGrid_mouse.cs
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
using System;
using System.Drawing;
using System.Windows.Forms;
namespace yata
{
// Fahfrd and the Gray Mouser and related events.
sealed partial class YataGrid
{
#region Fields
/// <summary>
/// The clicked cell.
/// </summary>
/// <remarks>Set by
/// <c><see cref="OnMouseDown()">OnMouseDown()</see></c>.
/// <br/><br/>
/// Used by
/// <list type="bullet">
/// <item><c><see cref="OnMouseClick()">OnMouseClick()</see></c></item>
/// <item><c><see cref="OnMouseDoubleClick()">OnMouseDoubleClick()</see></c></item>
/// </list></remarks>
Cell _cell;
/// <summary>
/// <c>true</c> allows
/// <c><see cref="OnMouseDoubleClick()">OnMouseDoubleClick()</see></c>.
/// </summary>
bool _double;
/// <summary>
/// <c>true</c> to bypass
/// <c><see cref="OnMouseClick()">OnMouseClick()</see></c>.
/// </summary>
/// <remarks><c><see cref="OnMouseDoubleClick()">OnMouseDoubleClick()</see></c>
/// can still fire if <c><see cref="_double"/></c> is set <c>true</c> in
/// <c><see cref="OnMouseDown()">OnMouseDown()</see></c>.</remarks>
bool _bypassclickhandler;
/// <summary>
/// Handles a situation where user attempts a double-click on a cell
/// that is already selected.
/// </summary>
/// <remarks><c><see cref="_doubletclick"/></c> is set <c>true</c> for a
/// duration of <c>SystemInformation.DoubleClickTime</c> and if
/// <c><see cref="YataEditbox"/></c> receives a <c>MouseClick</c> event
/// within that duration it selects all text instead of deselecting the
/// text and positioning the caret.</remarks>
static Timer _t1;
/// <summary>
/// See <c><see cref="_t1"/></c>.
/// </summary>
internal static bool _doubletclick;
/// <summary>
/// <c><see cref="ColSort()">ColSort()</see></c> causes the tabs to
/// redraw which fires <c><see cref="OnResize()">OnResize()</see></c>
/// twice so set this <c>bool</c> <c>true</c> to bypass
/// <c><see cref="EnsureDisplayed()">EnsureDisplayed()</see></c>.
/// </summary>
bool _isColsort;
#endregion Fields
#region eventhandlers (override)
/// <summary>
/// Overrides the <c>MouseDown</c> eventhandler. Ensures that the editor
/// closes properly.
/// </summary>
/// <param name="e"></param>
/// <remarks>Since .net fires <c>RMB</c> <c>MouseClick</c> after other
/// stuff (but note that <c>LMB</c> <c>MouseClick</c> happens before
/// other stuff) use <c>MouseDown</c> instead for <c>RMB</c> operations
/// that need to happen before other stuff.
/// <br/><br/>
/// <c>MouseDown</c> <c>MouseClick</c> and <c>MouseDoubleClick</c> need
/// to work as a single routine.</remarks>
protected override void OnMouseDown(MouseEventArgs e)
{
#if Clicks
logfile.Log("YataGrid.OnMouseDown() " + e.Button + " _editor.Visible= " + _editor.Visible);
#endif
if ((ModifierKeys & Keys.Alt) == Keys.None) // do this in OnMouseClick() also
{
bool @select = true; // set to false if an editor gets focus
_bypassclickhandler = false;
// (e.X >= WidthTable || e.Y >= HeightTable)
if ((_cell = getCell(e.X, e.Y)) != null) // click to the right or below the table-area
{
#if Clicks
logfile.Log(". clicked cell VALID");
#endif
if (_editor.Visible)
{
if (_cell != _editcell)
{
switch (e.Button)
{
case MouseButtons.Left:
// disallow [Ctrl] or [Shift] since OnMouseClick() will be bypassed
if ((ModifierKeys & (Keys.Control | Keys.Shift)) == Keys.None)
{
#if Clicks
logfile.Log(". . grid accept edit");
#endif
_bypassleaveditor = true;
editresultaccept();
_bypassclickhandler = true;
_double = true;
}
else goto default;
break;
case MouseButtons.Right:
// disallow [Ctrl] or [Shift] w/ RMB in OnMouseClick() also
if ((ModifierKeys & (Keys.Control | Keys.Shift)) == Keys.None)
{
#if Clicks
logfile.Log(". . grid default edit result");
#endif
_editor.Visible = false;
}
else goto default;
break;
default:
#if Clicks
logfile.Log(". . grid focus editor");
#endif
refocuseditor(_editor, ref @select);
break;
}
}
else // _cell == _editcell
{
#if Clicks
logfile.Log(". . grid (_cell == _editcell) focus editor");
#endif
refocuseditor(_editor, ref @select);
}
}
else if (Propanel != null && Propanel._editor.Visible)
{
switch (e.Button)
{
case MouseButtons.Left:
// disallow [Ctrl] or [Shift] since OnMouseClick() will be bypassed
if ((ModifierKeys & (Keys.Control | Keys.Shift)) == Keys.None)
{
#if Clicks
logfile.Log(". . propanel accept edit");
#endif
Propanel._bypassleaveditor = true;
Propanel.editresultaccept();
_bypassclickhandler = true;
_double = true;
}
else goto default;
break;
case MouseButtons.Right:
// disallow [Ctrl] or [Shift] w/ RMB in OnMouseClick() also
if ((ModifierKeys & (Keys.Control | Keys.Shift)) == Keys.None)
{
#if Clicks
logfile.Log(". . propanel default edit result");
#endif
Propanel._editor.Visible = false;
}
else goto default;
break;
default:
#if Clicks
logfile.Log(". . propanel focus editor");
#endif
refocuseditor(Propanel._editor, ref @select);
break;
}
}
}
else if (_editor.Visible) // _cell == null
{
#if Clicks
logfile.Log(". (_cell == null && _editor.Visible)");
#endif
switch (e.Button)
{
case MouseButtons.Left:
if ((ModifierKeys & (Keys.Control | Keys.Shift)) == Keys.None)
{
#if Clicks
logfile.Log(". . grid accept edit");
#endif
_bypassleaveditor = true;
editresultaccept();
_bypassclickhandler = true;
}
else goto default;
break;
case MouseButtons.Right:
if ((ModifierKeys & (Keys.Control | Keys.Shift)) == Keys.None)
{
#if Clicks
logfile.Log(". . grid cancel edit");
#endif
_bypassleaveditor = true;
editresultcancel(INVALID_GRID);
_bypassclickhandler = true;
}
else goto default;
break;
default:
#if Clicks
logfile.Log(". . grid focus editor");
#endif
refocuseditor(_editor, ref @select);
break;
}
}
else if (Propanel != null && Propanel._editor.Visible)
{
#if Clicks
logfile.Log(". (_cell == null && Propanel._editor.Visible)");
#endif
switch (e.Button)
{
case MouseButtons.Left:
if ((ModifierKeys & (Keys.Control | Keys.Shift)) == Keys.None)
{
#if Clicks
logfile.Log(". . propanel accept edit");
#endif
Propanel._bypassleaveditor = true;
Propanel.editresultaccept();
_bypassclickhandler = true;
}
else goto default;
break;
case MouseButtons.Right:
if ((ModifierKeys & (Keys.Control | Keys.Shift)) == Keys.None)
{
#if Clicks
logfile.Log(". . propanel cancel edit");
#endif
Propanel._bypassleaveditor = true;
Propanel.editresultcancel();
_bypassclickhandler = true;
}
else goto default;
break;
default:
#if Clicks
logfile.Log(". . propanel focus editor");
#endif
refocuseditor(Propanel._editor, ref @select);
break;
}
}
else
{
#if Clicks
logfile.Log(". (_cell == null");
#endif
_bypassclickhandler = true;
if (e.Button == MouseButtons.Right)
{
if (anySelected())
{
#if Clicks
logfile.Log(". . deselect all");
#endif
_f.editclick_Deselect(this, EventArgs.Empty);
}
}
}
if (@select) Select();
}
}
/// <summary>
/// Gets the <c><see cref="Cell"/></c> at x/y.
/// </summary>
/// <param name="x"></param>
/// <param name="y"></param>
/// <returns></returns>
Cell getCell(int x, int y)
{
if ( (y += OffsetVert) > HeightColhead && y < HeightTable
&& (x += OffsetHori) < WidthTable)
{
int left = getLeft();
if (x > left)
{
Point cords = getCords(x,y, left);
return this[cords.Y, cords.X];
}
}
return null;
}
/// <summary>
/// Gets the col/row coordinates of a <c><see cref="Cell"/></c> based on
/// the current position of the cursor.
/// </summary>
/// <param name="x">mouse x-pos within the table</param>
/// <param name="y">mouse y-pos within the table</param>
/// <param name="left">the x-pos of the right edge of the frozen-panel;
/// ie. the left edge of the visible area of this <c>YataGrid</c></param>
/// <returns>a <c>Point</c> where <c>X</c> is col-id and <c>Y</c> is
/// row-id</returns>
Point getCords(int x, int y, int left)
{
int l = left; // NOTE: That's only to get rid of the erroneous "Parameter
// is assigned but its value is never used" warning. Notice,
// however, that now 'l' is never used but ... no warning.
// Thank god these guys didn't write the code that got to the Moon.
//
// ps. My theory is that Stanley Kubrick wanted people to believe
// that he faked the landings; that's right, he ** faked fake **
// Moon landings!
var cords = new Point();
cords.X = FrozenCount;
while ((l += Cols[cords.X].Width) < x)
++cords.X;
int top = HeightColhead;
cords.Y = 0;
while ((top += HeightRow) < y)
++cords.Y;
return cords;
}
/// <summary>
/// Focuses either <c><see cref="_editor"/></c> or
/// <c><see cref="Propanel._editor">Propanel._editor</see></c>.
/// </summary>
/// <param name="tb">a <c><see cref="YataEditbox"/></c> to focus</param>
/// <param name="select">ref to set <c>false</c></param>
/// <remarks>helper for
/// <c><see cref="OnMouseDown()">OnMouseDown()</see></c></remarks>
void refocuseditor(Control tb, ref bool @select)
{
tb.Focus();
@select = false;
_bypassclickhandler = true;
}
/// <summary>
/// Overrides the <c>MouseClick</c> eventhandler and deals with clicks
/// inside the table-area only. LMB selects cell(s) and RMB opens a
/// cell's context-menu.
/// </summary>
/// <param name="e"></param>
/// <remarks><c>YataGrid.MouseClick</c> does not fire on any of the top
/// or left panels.
/// <br/><br/>
/// <c>MouseDown</c> <c>MouseClick</c> and <c>MouseDoubleClick</c> need
/// to work as a single routine.</remarks>
protected override void OnMouseClick(MouseEventArgs e)
{
#if Clicks
logfile.Log("YataGrid.OnMouseClick() " + e.Button + " _editor.Visible= " + _editor.Visible + " _bypassclickhandler= " + _bypassclickhandler);
#endif
if (!_bypassclickhandler)
{
_double = false; // DoubleClick needs to be allowed to fire even if OnMouseClick() gets bypassed.
// so keep that reset inside (!_bypassclickhandler)
if ((ModifierKeys & Keys.Alt) == Keys.None // <- do this in OnMouseDown() also
&& _cell != null // <- (e.X < WidthTable && e.Y < HeightTable) click inside the table-area
&& _cell == getCell(e.X, e.Y)) // <- cancel operation if cursor is no longer on '_cell'
{
bool detercellops = false;
switch (e.Button)
{
case MouseButtons.Left:
if ((ModifierKeys & Keys.Control) == Keys.Control) // select/deselect single cell ->
{
if ((ModifierKeys & Keys.Shift) == Keys.None)
{
#if Clicks
logfile.Log(". Ctrl");
#endif
Cell sel = getSelectedCell();
if (sel == null || sel.x >= FrozenCount) // disallow multi-cell select if a frozen cell is currently selected
{
if (_cell.selected = !_cell.selected)
{
#if Clicks
logfile.Log(". . select cell");
#endif
if (SelectCell_sync(_cell)) // disallow multi-cell select if sync'd
{
ClearSelects(true);
_cell.selected = true;
}
EnsureDisplayed(_cell, sel == null); // <- bypass Propanel.EnsureDisplayed() if
// selectedcell is not the only selected cell
_anchorcell = _cell;
}
else
{
#if Clicks
logfile.Log(". . deselect cell");
#endif
ClearSelects_sync();
}
detercellops = true;
int invalid = INVALID_GRID;
if (Propanel != null && Propanel.Visible)
invalid |= INVALID_PROP;
Invalidator(invalid);
}
}
}
else if ((ModifierKeys & Keys.Shift) == Keys.Shift) // do block selection ->
{
#if Clicks
logfile.Log(". Shift");
#endif
if (_cell != getSelectedCell() // else do nothing if clicked cell is the only selected cell
&& allowContiguous() && areSelectedCellsContiguous()) // else do nothing if no cells are selected or selected cells are not in a contiguous block
{
#if Clicks
logfile.Log(". . do block selection");
#endif
ClearSelects(true);
int strt_r = Math.Min(_anchorcell.y, _cell.y);
int stop_r = Math.Max(_anchorcell.y, _cell.y);
int strt_c = Math.Min(_anchorcell.x, _cell.x);
int stop_c = Math.Max(_anchorcell.x, _cell.x);
for (int r = strt_r; r <= stop_r; ++r)
for (int c = strt_c; c <= stop_c; ++c)
this[r,c].selected = true;
EnsureDisplayed(_cell, true);
detercellops = true;
int invalid = INVALID_GRID;
if (Propanel != null && Propanel.Visible)
invalid |= INVALID_PROP;
Invalidator(invalid);
}
}
else if (!_cell.selected || getSelectedCell() == null) // select cell if it's not selected or if it's not the only selected cell ->
{
#if Clicks
logfile.Log(". select cell");
#endif
_double = true;
ClearSelects(true);
(_anchorcell = _cell).selected = true;
SelectCell_sync(_cell);
detercellops = true;
Invalidator(INVALID_GRID
| INVALID_FROZ
| INVALID_ROWS
| EnsureDisplayed(_cell));
}
else if (!Readonly) // cell is already selected
{
#if Clicks
logfile.Log(". edit cell");
#endif
startCelledit(_cell);
_doubletclick = true;
_t1.Start();
}
break;
case MouseButtons.Right:
if ((ModifierKeys & (Keys.Control | Keys.Shift)) == Keys.None)
{
#if Clicks
logfile.Log(". select cell and show context");
#endif
ClearSelects(true);
(_anchorcell = _cell).selected = true;
SelectCell_sync(_cell);
detercellops = true;
Invalidator(INVALID_GRID
| INVALID_FROZ
| INVALID_ROWS
| EnsureDisplayed(_cell));
_f.ShowCellContext();
}
break;
}
if (detercellops)
_f.EnableCelleditOperations();
}
}
#if Clicks
else logfile.Log(". MouseClick bypassed");
#endif
_bypassclickhandler = false;
}
/// <summary>
/// Because sometimes I'm a stupid and double-click to start textedit.
/// </summary>
/// <param name="e"></param>
/// <remarks>If a cell is currently being edited any changes to that
/// cell will be accepted and the cell that is double-clicked if any
/// shall (sic) enter its edit-state.
/// <br/><br/>
/// <c>MouseDown</c> <c>MouseClick</c> and <c>MouseDoubleClick</c> need
/// to work as a single routine.</remarks>
protected override void OnMouseDoubleClick(MouseEventArgs e)
{
#if Clicks
logfile.Log("YataGrid.OnMouseDoubleClick() " + e.Button + " _editor.Visible= " + _editor.Visible);
#endif
if (_double)
{
if (!_cell.selected)
{
#if Clicks
logfile.Log(". select cell");
#endif
ClearSelects(true);
(_anchorcell = _cell).selected = true;
SelectCell_sync(_cell);
Invalidator(INVALID_GRID // not so sure all that is needed ->
| INVALID_FROZ
| INVALID_ROWS
| EnsureDisplayed(_cell));
_f.EnableCelleditOperations();
}
if (!Readonly)
{
#if Clicks
logfile.Log(". edit cell");
#endif
startCelledit(_cell);
}
}
#if Clicks
else logfile.Log(". MouseDoubleClick bypassed");
#endif
}
/// <summary>
/// See <c><see cref="_t1"/></c>.
/// </summary>
/// <param name="sender"><c><see cref="_t1"/></c></param>
/// <param name="e"></param>
void t1_tick(object sender, EventArgs e)
{
_t1.Stop();
_doubletclick = false;
}
/// <summary>
/// Handles mouse-movement over the grid and its background area -
/// prints coordinates and path-info to the statusbar.
/// </summary>
/// <param name="e"></param>
protected override void OnMouseMove(MouseEventArgs e)
{
if (!_init)
{
if ( e.X < Width - (_visVert ? _scrollVert.Width : 0)
&& e.Y < Height - (_visHori ? _scrollHori.Height : 0))
{
int y = e.Y + OffsetVert;
if (y > HeightColhead && y < HeightTable)
{
int x = e.X + OffsetHori;
if (x < WidthTable)
{
int left = getLeft();
if (x > left)
{
_f.PrintInfo(getCords(x,y, left));
return;
}
}
}
}
_f.PrintInfo(); // clear
}
}
/// <summary>
/// Clears statusbar coordinates and path-info when the mouse-cursor
/// leaves the grid.
/// </summary>
/// <remarks>Called by <c><see cref="Yata"></see>.t1_tick()</c>. The
/// <c>MouseLeave</c> event is unreliable.</remarks>
internal void MouseLeaveTicker()
{
int left = getLeft();
var rect = new Rectangle(left,
HeightColhead,
Width - left - (_visVert ? _scrollVert.Width : 0),
Height - HeightColhead - (_visHori ? _scrollHori.Height : 0));
if (!rect.Contains(PointToClient(Cursor.Position)))
_f.PrintInfo(); // clear
}
#endregion eventhandlers (override)
#region DragDrop file(s)
/// <summary>
/// Handles dragging a file onto the grid.
/// </summary>
/// <param name="drgevent"></param>
protected override void OnDragEnter(DragEventArgs drgevent)
{
_f.yata_DragEnter(null, drgevent);
}
/// <summary>
/// Handles dropping a file onto the grid.
/// </summary>
/// <param name="drgevent"></param>
protected override void OnDragDrop(DragEventArgs drgevent)
{
_f.yata_DragDrop(null, drgevent);
}
#endregion DragDrop file(s)
#region helpers
/// <summary>
/// Handles a <c>MouseDown</c> event on
/// <c><see cref="YataPanelRows"/></c>. Selects or deselects
/// <c><see cref="Row">Row(s)</see></c>.
/// </summary>
/// <param name="e"></param>
/// <remarks>.net fucks with <c>RMB</c> and <c>[Alt]</c> differently
/// than <c>LMB</c> and <c>[Ctrl]</c>/<c>[Shift]</c>.</remarks>
internal void click_RowheadPanel(MouseEventArgs e)
{
if ((ModifierKeys & Keys.Alt) == Keys.None)
{
int click_r = (e.Y + OffsetVert) / HeightRow;
if (click_r < RowCount)
{
switch (e.Button)
{
case MouseButtons.Left:
{
// get the sync-table if one exists
YataGrid table;
if (this == _f._diff1) table = _f._diff2;
else if (this == _f._diff2) table = _f._diff1;
else table = null;
int selcsync = (table != null) ? table.getSelectedCol() : -1;
int selc = getSelectedCol(); // do not clear cell-selects in a selected col
// if cells in another row are currently selected and a
// row that is already selected is clicked just clear those
// extraneous cells (instead of deselecting the clicked row)
bool celldeselected = false;
if ((ModifierKeys & Keys.Control) == Keys.None) // clear all other row's cells ->
{
Cell cell;
for (int r = 0; r != RowCount; ++r)
for (int c = 0; c != ColCount; ++c)
{
if (r != click_r && c != selc
&& (cell = this[r,c]).selected)
{
cell.selected = false;
celldeselected = true;
}
}
if (table != null)
{
for (int r = 0; r != table.RowCount; ++r)
for (int c = 0; c != table.ColCount; ++c)
{
if (r != click_r && c != selcsync)
table[r,c].selected = false;
}
}
}
Row.BypassEnableRowedit = true; // call _f.EnableRoweditOperations() later ...
bool display = false; // deter col for ensure displayed col
int selr = getSelectedRow();
if ((ModifierKeys & Keys.Shift) == Keys.None) // select only the clicked row ->
{
if (selr != -1 && selr != click_r) // clear any other selected row ->
Rows[selr].selected = false;
if (table != null)
{
int selrsync = table.getSelectedRow();
if (selrsync != -1 && selrsync != click_r)
table.Rows[selrsync].selected = false;
}
bool allcellsselected = true;
foreach (var cell in Rows[click_r]._cells)
if (!cell.selected)
{
allcellsselected = false;
break;
}
// select the clicked row if
// (a) it is not currently selected
// (b) or not all cells in the clicked row are currently selected
// (c) or cells not in the clicked row got deselected above
bool @select = !Rows[click_r].selected || !allcellsselected || celldeselected;
if ((Rows[click_r].selected = @select) && FrozenCount < ColCount)
_anchorcell = this[click_r, FrozenCount];
for (int c = 0; c != ColCount; ++c) // select or deselect cells in the clicked row ->
{
if (@select || c != selc)
this[click_r,c].selected = @select;
}
if (table != null && click_r < table.RowCount) // select or deselect cells in a sync-table's row ->
{
table.Rows[click_r].selected = @select;
for (int c = 0; c != table.ColCount; ++c)
{
if (@select || c != selcsync)
table[click_r,c].selected = @select;
}
}
display = @select;
}
else if (selr != -1) // subselect a range of rows ->
{
RangeSelect = click_r - selr;
if (RangeSelect != 0)
{
display = true;
int start, stop;
if (RangeSelect > 0) { start = selr; stop = click_r; }
else { start = click_r; stop = selr; }
for (int r = start; r <= stop; ++r) // select subselected rows' cells ->
for (int c = 0; c != ColCount; ++c)
{
this[r,c].selected = true;
}
if (table != null && start < table.RowCount) // select subselected rows' cells in a sync-table ->
{
for (int r = start; r <= stop && r != table.RowCount; ++r)
for (int c = 0; c != table.ColCount; ++c)
{
table[r,c].selected = true;
}
}
}
}
Row.BypassEnableRowedit = false;
if (display) EnsureDisplayedRow(click_r);
int invalid = INVALID_GRID
| INVALID_FROZ
| INVALID_ROWS;
if (Propanel != null && Propanel.Visible)
invalid |= INVALID_PROP;
Invalidator(invalid);
_f.EnableCelleditOperations(); // TODO: tighten that to only if necessary.
_f.EnableRoweditOperations(); // TODO: tighten that to only if necessary.
break;
}
case MouseButtons.Right:
if (ModifierKeys == Keys.None)
{
ClearSelects();
SelectRow(click_r);
EnsureDisplayedRow(click_r);
int invalid = INVALID_GRID
| INVALID_FROZ
| INVALID_ROWS;
if (Propanel != null && Propanel.Visible)
invalid |= INVALID_PROP;
Invalidator(invalid);
_f.ShowRowContext(click_r);
}
break;
}
}
else if (ModifierKeys == Keys.None) // click below the last entry ->
{
ClearSelects();
ClearSelects_sync();
int invalid = INVALID_GRID
| INVALID_FROZ
| INVALID_ROWS;
if (Propanel != null && Propanel.Visible)
invalid |= INVALID_PROP;
Invalidator(invalid);
}
}
}
/// <summary>
/// Handles a <c>MouseDown</c> event on
/// <c><see cref="YataPanelCols"/></c>. Selects or deselects
/// <c><see cref="Col">Col(s)</see></c>.
/// </summary>
/// <param name="e"></param>
/// <remarks>.net fucks with <c>RMB</c> and <c>[Alt]</c> differently
/// than <c>LMB</c> and <c>[Ctrl]</c>/<c>[Shift]</c>.</remarks>
internal void click_ColheadPanel(MouseEventArgs e)
{
if (!_panelCols.IsGrab && (ModifierKeys & Keys.Alt) == Keys.None)
{
Select();
int click_c;
switch (e.Button)
{
case MouseButtons.Left:
if ((click_c = GetClickedCol(e.X)) != -1)
{
// get the sync-table if one exists
YataGrid table;
if (this == _f._diff1) table = _f._diff2;
else if (this == _f._diff2) table = _f._diff1;
else table = null;
int selrsync = (table != null) ? table.getSelectedRow() : -1;
int selr = getSelectedRow(); // do not clear cell-selects in a selected row
// if cells in another col are currently selected and a
// col that is already selected is clicked just clear those
// extraneous cells (instead of deselecting the clicked col)
bool celldeselected = false;
if ((ModifierKeys & Keys.Control) == Keys.None) // clear all other col's cells ->
{
for (int r = 0; r != RowCount; ++r)
for (int c = 0; c != ColCount; ++c)
{
if (c != click_c
&& ( (r > selr && r > selr + RangeSelect)
|| (r < selr && r < selr + RangeSelect))
&& this[r,c].selected)
{
this[r,c].selected = false;
celldeselected = true;
}
}
if (table != null)
{
for (int r = 0; r != table.RowCount; ++r)
for (int c = 0; c != table.ColCount; ++c)
{
if (c != click_c
&& ( (r > selrsync && r > selrsync + table.RangeSelect)
|| (r < selrsync && r < selrsync + table.RangeSelect)))
{
table[r,c].selected = false;
}
}
}
}
bool display = false; // deter col for ensure displayed col
int selc = getSelectedCol();
if ((ModifierKeys & Keys.Shift) == Keys.None)
{
if (selc != -1 && selc != click_c) // clear any other selected col ->
Cols[selc].selected = false;
if (table != null)
{
int selcsync = table.getSelectedCol();
if (selcsync != -1 && selcsync != click_c)
table.Cols[selcsync].selected = false;
}
bool allcellsselected = true;
foreach (var row in Rows)
if (!row[click_c].selected)
{
allcellsselected = false;
break;
}
// select the clicked col if
// (a) it is not currently selected
// (b) or not all cells in the clicked col are currently selected
// (c) or cells not in the clicked col got deselected above
bool @select = !Cols[click_c].selected || !allcellsselected || celldeselected;
if (Cols[click_c].selected = @select)
_anchorcell = this[0, click_c];
for (int r = 0; r != RowCount; ++r) // select or deselect cells in the clicked col ->
{
if (@select
|| (r > selr && r > selr + RangeSelect)
|| (r < selr && r < selr + RangeSelect))
{
this[r,click_c].selected = @select;
}
}
if (table != null && click_c < table.ColCount) // select or deselect cells in a sync-table's col ->
{
table.Cols[click_c].selected = @select;
for (int r = 0; r != table.RowCount; ++r)
{
if (@select
|| (r > selrsync && r > selrsync + table.RangeSelect)
|| (r < selrsync && r < selrsync + table.RangeSelect))
{
table[r,click_c].selected = @select;
}
}