]> git.saurik.com Git - wxWidgets.git/blame - src/generic/gridsel.cpp
Tweaks to the generic scpinctrl to handle layouts on wxMac better and
[wxWidgets.git] / src / generic / gridsel.cpp
CommitLineData
294f6bcb
SN
1///////////////////////////////////////////////////////////////////////////
2// Name: generic/gridsel.cpp
3// Purpose: wxGridSelection
4// Author: Stefan Neis
5// Modified by:
6// Created: 20/02/1999
2b5f62a0 7// RCS-ID: $Id$
294f6bcb
SN
8// Copyright: (c) Stefan Neis (Stefan.Neis@t-online.de)
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
14f355c2 20#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
294f6bcb
SN
21 #pragma implementation "gridsel.h"
22#endif
23
24// For compilers that support precompilation, includes "wx/wx.h".
25#include "wx/wxprec.h"
26
27#include "wx/defs.h"
28
29#ifdef __BORLANDC__
30 #pragma hdrstop
31#endif
32
f7556ff0 33#if wxUSE_GRID
f1567cdd 34
294f6bcb
SN
35#include "wx/generic/gridsel.h"
36
f1567cdd
SN
37// Some explanation for the members of the class:
38// m_cellSelection stores individual selected cells
39// -- this is only used if m_selectionMode == wxGridSelectCells
40// m_blockSelectionTopLeft and m_blockSelectionBottomRight
41// store the upper left and lower right corner of selected Blocks
42// m_rowSelection and m_colSelection store individual selected
43// rows and columns; maybe those are superfluous and should be
44// treated as blocks?
45
294f6bcb 46wxGridSelection::wxGridSelection( wxGrid * grid,
b5808881 47 wxGrid::wxGridSelectionModes sel )
294f6bcb
SN
48{
49 m_grid = grid;
50 m_selectionMode = sel;
51}
52
53bool wxGridSelection::IsSelection()
54{
55 return ( m_cellSelection.GetCount() || m_blockSelectionTopLeft.GetCount() ||
b5808881 56 m_rowSelection.GetCount() || m_colSelection.GetCount() );
294f6bcb
SN
57}
58
59bool wxGridSelection::IsInSelection ( int row, int col )
60{
f1567cdd
SN
61 size_t count;
62
63 // First check whether the given cell is individually selected
64 // (if m_selectionMode is wxGridSelectCells).
65 if ( m_selectionMode == wxGrid::wxGridSelectCells )
294f6bcb
SN
66 {
67 count = m_cellSelection.GetCount();
b5808881
SN
68 for ( size_t n = 0; n < count; n++ )
69 {
70 wxGridCellCoords& coords = m_cellSelection[n];
71 if ( row == coords.GetRow() && col == coords.GetCol() )
0912bee1 72 return TRUE;
b5808881 73 }
294f6bcb 74 }
f1567cdd
SN
75
76 // Now check whether the given cell is
77 // contained in one of the selected blocks.
294f6bcb
SN
78 count = m_blockSelectionTopLeft.GetCount();
79 for ( size_t n = 0; n < count; n++ )
80 {
b5808881
SN
81 wxGridCellCoords& coords1 = m_blockSelectionTopLeft[n];
82 wxGridCellCoords& coords2 = m_blockSelectionBottomRight[n];
83 if ( BlockContainsCell(coords1.GetRow(), coords1.GetCol(),
84 coords2.GetRow(), coords2.GetCol(),
85 row, col ) )
0912bee1 86 return TRUE;
b5808881 87 }
f1567cdd
SN
88
89 // Now check whether the given cell is
90 // contained in one of the selected rows
91 // (unless we are in column selection mode).
b5808881 92 if ( m_selectionMode != wxGrid::wxGridSelectColumns )
294f6bcb 93 {
b5808881
SN
94 size_t count = m_rowSelection.GetCount();
95 for ( size_t n = 0; n < count; n++ )
96 {
97 if ( row == m_rowSelection[n] )
0912bee1 98 return TRUE;
b5808881
SN
99 }
100 }
f1567cdd
SN
101
102 // Now check whether the given cell is
103 // contained in one of the selected columns
104 // (unless we are in row selection mode).
b5808881 105 if ( m_selectionMode != wxGrid::wxGridSelectRows )
294f6bcb 106 {
b5808881
SN
107 size_t count = m_colSelection.GetCount();
108 for ( size_t n = 0; n < count; n++ )
109 {
110 if ( col == m_colSelection[n] )
0912bee1 111 return TRUE;
b5808881 112 }
294f6bcb 113 }
0912bee1 114 return FALSE;
294f6bcb
SN
115}
116
f1567cdd
SN
117// Change the selection mode
118void wxGridSelection::SetSelectionMode(wxGrid::wxGridSelectionModes selmode)
119{
120 // if selection mode is unchanged return immediately
121 if (selmode == m_selectionMode)
122 return;
123
124 if ( m_selectionMode != wxGrid::wxGridSelectCells )
125 {
126 // if changing form row to column selection
127 // or vice versa, clear the selection.
128 if ( selmode != wxGrid::wxGridSelectCells )
129 ClearSelection();
130
131 m_selectionMode = selmode;
132 }
133 else
134 {
135 // if changing from cell selection to something else,
136 // promote selected cells/blocks to whole rows/columns.
137 size_t n;
138 while ( ( n = m_cellSelection.GetCount() ) > 0 )
139 {
140 n--;
141 wxGridCellCoords& coords = m_cellSelection[n];
142 int row = coords.GetRow();
143 int col = coords.GetCol();
144 m_cellSelection.RemoveAt(n);
145 if (selmode == wxGrid::wxGridSelectRows)
146 SelectRow( row );
147 else // selmode == wxGridSelectColumns)
148 SelectCol( col );
149 }
043d16b2
SN
150
151 for (n = 0; n < m_blockSelectionTopLeft.GetCount(); n++)
152 // Note that m_blockSelectionTopLeft's size may be changing!
f1567cdd 153 {
f1567cdd
SN
154 wxGridCellCoords& coords = m_blockSelectionTopLeft[n];
155 int topRow = coords.GetRow();
156 int leftCol = coords.GetCol();
157 coords = m_blockSelectionBottomRight[n];
158 int bottomRow = coords.GetRow();
159 int rightCol = coords.GetCol();
160 if (selmode == wxGrid::wxGridSelectRows)
161 {
162 if (leftCol != 0 || rightCol != m_grid->GetNumberCols() - 1 )
163 {
164 m_blockSelectionTopLeft.RemoveAt(n);
165 m_blockSelectionBottomRight.RemoveAt(n);
166 SelectBlock( topRow, 0,
5c8fc7c1 167 bottomRow, m_grid->GetNumberCols() - 1,
2b5f62a0 168 FALSE, FALSE, FALSE, FALSE, FALSE );
f1567cdd
SN
169 }
170 }
171 else // selmode == wxGridSelectColumns)
172 {
173 if (topRow != 0 || bottomRow != m_grid->GetNumberRows() - 1 )
174 {
175 m_blockSelectionTopLeft.RemoveAt(n);
176 m_blockSelectionBottomRight.RemoveAt(n);
177 SelectBlock( 0, leftCol,
5c8fc7c1 178 m_grid->GetNumberRows() - 1, rightCol,
2b5f62a0 179 FALSE, FALSE, FALSE, FALSE, FALSE );
f1567cdd
SN
180 }
181 }
182 }
043d16b2 183 m_selectionMode = selmode;
f1567cdd
SN
184 }
185}
186
723d1b1d 187void wxGridSelection::SelectRow( int row,
d95b0c2b
SN
188 bool ControlDown, bool ShiftDown,
189 bool AltDown, bool MetaDown )
294f6bcb 190{
b5808881 191 if ( m_selectionMode == wxGrid::wxGridSelectColumns )
294f6bcb 192 return;
f1567cdd 193 size_t count, n;
294f6bcb
SN
194
195 // Remove single cells contained in newly selected block.
f1567cdd 196 if ( m_selectionMode == wxGrid::wxGridSelectCells )
294f6bcb
SN
197 {
198 count = m_cellSelection.GetCount();
f1567cdd 199 for ( n = 0; n < count; n++ )
b5808881
SN
200 {
201 wxGridCellCoords& coords = m_cellSelection[n];
202 if ( BlockContainsCell( row, 0, row, m_grid->GetNumberCols() - 1,
203 coords.GetRow(), coords.GetCol() ) )
204 {
205 m_cellSelection.RemoveAt(n);
206 n--; count--;
207 }
208 }
294f6bcb
SN
209 }
210
f1567cdd 211 // Simplify list of selected blocks (if possible)
294f6bcb 212 count = m_blockSelectionTopLeft.GetCount();
0912bee1 213 bool done = FALSE;
b14159f7 214 for ( n = 0; n < count; n++ )
294f6bcb 215 {
b5808881
SN
216 wxGridCellCoords& coords1 = m_blockSelectionTopLeft[n];
217 wxGridCellCoords& coords2 = m_blockSelectionBottomRight[n];
f1567cdd
SN
218
219 // Remove block if it is a subset of the row
b5808881
SN
220 if ( coords1.GetRow() == row && row == coords2.GetRow() )
221 {
222 m_blockSelectionTopLeft.RemoveAt(n);
223 m_blockSelectionBottomRight.RemoveAt(n);
224 n--; count--;
f1e26920 225 }
b5808881
SN
226 else if ( coords1.GetCol() == 0 &&
227 coords2.GetCol() == m_grid->GetNumberCols() - 1 )
228 {
f1567cdd 229 // silently return, if row is contained in block
b5808881
SN
230 if ( coords1.GetRow() <= row && row <= coords2.GetRow() )
231 return;
f1567cdd 232 // expand block, if it touched row
b5808881
SN
233 else if ( coords1.GetRow() == row + 1)
234 {
235 coords1.SetRow(row);
0912bee1 236 done = TRUE;
b5808881
SN
237 }
238 else if ( coords2.GetRow() == row - 1)
239 {
240 coords2.SetRow(row);
0912bee1 241 done = TRUE;
f1e26920 242 }
b5808881 243 }
294f6bcb
SN
244 }
245
f1567cdd
SN
246 // Unless we successfully handled the row,
247 // check whether row is already selected.
248 if ( !done )
294f6bcb 249 {
f1567cdd
SN
250 count = m_rowSelection.GetCount();
251 for ( n = 0; n < count; n++ )
252 {
253 if ( row == m_rowSelection[n] )
254 return;
255 }
294f6bcb 256
f1567cdd
SN
257 // Add row to selection
258 m_rowSelection.Add(row);
259 }
b5808881
SN
260
261 // Update View:
b5808881 262 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
263 {
264 wxRect r = m_grid->BlockToDeviceRect( wxGridCellCoords( row, 0 ),
265 wxGridCellCoords( row, m_grid->GetNumberCols() - 1 ) );
b5808881 266 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0 267 }
f1567cdd 268
5c8fc7c1
SN
269 // Send Event
270 wxGridRangeSelectEvent gridEvt( m_grid->GetId(),
271 wxEVT_GRID_RANGE_SELECT,
272 m_grid,
273 wxGridCellCoords( row, 0 ),
d95b0c2b
SN
274 wxGridCellCoords( row, m_grid->GetNumberCols() - 1 ),
275 TRUE,
276 ControlDown, ShiftDown,
277 AltDown, MetaDown );
5c8fc7c1
SN
278
279 m_grid->GetEventHandler()->ProcessEvent(gridEvt);
294f6bcb
SN
280}
281
723d1b1d 282void wxGridSelection::SelectCol( int col,
d95b0c2b
SN
283 bool ControlDown, bool ShiftDown,
284 bool AltDown, bool MetaDown )
294f6bcb 285{
b5808881 286 if ( m_selectionMode == wxGrid::wxGridSelectRows )
294f6bcb 287 return;
f1567cdd 288 size_t count, n;
294f6bcb
SN
289
290 // Remove single cells contained in newly selected block.
f1567cdd 291 if ( m_selectionMode == wxGrid::wxGridSelectCells )
294f6bcb
SN
292 {
293 count = m_cellSelection.GetCount();
f1567cdd 294 for ( n = 0; n < count; n++ )
b5808881
SN
295 {
296 wxGridCellCoords& coords = m_cellSelection[n];
297 if ( BlockContainsCell( 0, col, m_grid->GetNumberRows() - 1, col,
298 coords.GetRow(), coords.GetCol() ) )
299 {
300 m_cellSelection.RemoveAt(n);
301 n--; count--;
302 }
303 }
294f6bcb
SN
304 }
305
f1567cdd 306 // Simplify list of selected blocks (if possible)
294f6bcb 307 count = m_blockSelectionTopLeft.GetCount();
0912bee1 308 bool done = FALSE;
b14159f7 309 for ( n = 0; n < count; n++ )
294f6bcb 310 {
b5808881
SN
311 wxGridCellCoords& coords1 = m_blockSelectionTopLeft[n];
312 wxGridCellCoords& coords2 = m_blockSelectionBottomRight[n];
f1567cdd
SN
313
314 // Remove block if it is a subset of the column
b5808881
SN
315 if ( coords1.GetCol() == col && col == coords2.GetCol() )
316 {
317 m_blockSelectionTopLeft.RemoveAt(n);
318 m_blockSelectionBottomRight.RemoveAt(n);
319 n--; count--;
320 }
321 else if ( coords1.GetRow() == 0 &&
322 coords2.GetRow() == m_grid->GetNumberRows() - 1 )
323 {
f1567cdd 324 // silently return, if row is contained in block
b5808881
SN
325 if ( coords1.GetCol() <= col && col <= coords2.GetCol() )
326 return;
f1567cdd 327 // expand block, if it touched col
b5808881
SN
328 else if ( coords1.GetCol() == col + 1)
329 {
330 coords1.SetCol(col);
0912bee1 331 done = TRUE;
b5808881
SN
332 }
333 else if ( coords2.GetCol() == col - 1)
334 {
335 coords2.SetCol(col);
0912bee1 336 done = TRUE;
f1e26920 337 }
b5808881 338 }
294f6bcb
SN
339 }
340
f1567cdd 341 // Unless we successfully handled the column,
294f6bcb 342 // Check whether col is already selected.
f1567cdd 343 if ( !done )
294f6bcb 344 {
f1567cdd
SN
345 count = m_colSelection.GetCount();
346 for ( n = 0; n < count; n++ )
347 {
348 if ( col == m_colSelection[n] )
349 return;
350 }
294f6bcb 351
f1567cdd
SN
352 // Add col to selection
353 m_colSelection.Add(col);
354 }
b5808881
SN
355
356 // Update View:
b5808881 357 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
358 {
359 wxRect r = m_grid->BlockToDeviceRect( wxGridCellCoords( 0, col ),
360 wxGridCellCoords( m_grid->GetNumberRows() - 1, col ) );
b5808881 361 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0 362 }
f1567cdd 363
5c8fc7c1
SN
364 // Send Event
365 wxGridRangeSelectEvent gridEvt( m_grid->GetId(),
366 wxEVT_GRID_RANGE_SELECT,
367 m_grid,
368 wxGridCellCoords( 0, col ),
d95b0c2b
SN
369 wxGridCellCoords( m_grid->GetNumberRows() - 1, col ),
370 TRUE,
371 ControlDown, ShiftDown,
372 AltDown, MetaDown );
5c8fc7c1
SN
373
374 m_grid->GetEventHandler()->ProcessEvent(gridEvt);
294f6bcb
SN
375}
376
5c8fc7c1
SN
377void wxGridSelection::SelectBlock( int topRow, int leftCol,
378 int bottomRow, int rightCol,
d95b0c2b 379 bool ControlDown, bool ShiftDown,
f1e26920 380 bool AltDown, bool MetaDown,
d95b0c2b 381 bool sendEvent )
294f6bcb 382{
5c8fc7c1 383 // Fix the coordinates of the block if needed.
b5808881 384 if ( m_selectionMode == wxGrid::wxGridSelectRows )
294f6bcb 385 {
b5808881
SN
386 leftCol = 0;
387 rightCol = m_grid->GetNumberCols() - 1;
294f6bcb 388 }
b5808881 389 else if ( m_selectionMode == wxGrid::wxGridSelectColumns )
294f6bcb 390 {
b5808881
SN
391 topRow = 0;
392 bottomRow = m_grid->GetNumberRows() - 1;
294f6bcb 393 }
5c8fc7c1
SN
394 if ( topRow > bottomRow )
395 {
396 int temp = topRow;
397 topRow = bottomRow;
398 bottomRow = temp;
399 }
400
401 if ( leftCol > rightCol )
402 {
403 int temp = leftCol;
404 leftCol = rightCol;
405 rightCol = temp;
406 }
294f6bcb
SN
407
408 // Handle single cell selection in SelectCell.
695a3263
MB
409 // (MB: added check for selection mode here to prevent
410 // crashes if, for example, we are select rows and the
411 // grid only has 1 col)
412 if ( m_selectionMode == wxGrid::wxGridSelectCells &&
413 topRow == bottomRow && leftCol == rightCol )
d95b0c2b
SN
414 SelectCell( topRow, leftCol, ControlDown, ShiftDown,
415 AltDown, MetaDown, sendEvent );
294f6bcb 416
f1567cdd 417 size_t count, n;
294f6bcb 418 // Remove single cells contained in newly selected block.
f1567cdd 419 if ( m_selectionMode == wxGrid::wxGridSelectCells )
294f6bcb
SN
420 {
421 count = m_cellSelection.GetCount();
f1567cdd 422 for ( n = 0; n < count; n++ )
b5808881
SN
423 {
424 wxGridCellCoords& coords = m_cellSelection[n];
425 if ( BlockContainsCell( topRow, leftCol, bottomRow, rightCol,
426 coords.GetRow(), coords.GetCol() ) )
427 {
428 m_cellSelection.RemoveAt(n);
429 n--; count--;
430 }
431 }
294f6bcb
SN
432 }
433
434 // If a block containing the selection is already selected, return,
435 // if a block contained in the selection is found, remove it.
436
437 count = m_blockSelectionTopLeft.GetCount();
f1567cdd 438 for ( n = 0; n < count; n++ )
294f6bcb 439 {
b5808881
SN
440 wxGridCellCoords& coords1 = m_blockSelectionTopLeft[n];
441 wxGridCellCoords& coords2 = m_blockSelectionBottomRight[n];
442 switch ( BlockContain( coords1.GetRow(), coords1.GetCol(),
443 coords2.GetRow(), coords2.GetCol(),
444 topRow, leftCol, bottomRow, rightCol ) )
445 {
446 case 1:
447 return;
448 case -1:
449 m_blockSelectionTopLeft.RemoveAt(n);
450 m_blockSelectionBottomRight.RemoveAt(n);
451 n--; count--;
452 default:
453 ;
454 }
294f6bcb
SN
455 }
456
457 // If a row containing the selection is already selected, return,
458 // if a row contained in newly selected block is found, remove it.
b5808881 459 if ( m_selectionMode != wxGrid::wxGridSelectColumns )
294f6bcb 460 {
f1567cdd
SN
461 count = m_rowSelection.GetCount();
462 for ( n = 0; n < count; n++ )
b5808881
SN
463 {
464 switch ( BlockContain( m_rowSelection[n], 0,
465 m_rowSelection[n], m_grid->GetNumberCols()-1,
466 topRow, leftCol, bottomRow, rightCol ) )
467 {
468 case 1:
469 return;
470 case -1:
471 m_rowSelection.RemoveAt(n);
472 n--; count--;
473 default:
474 ;
475 }
476 }
477 }
478 if ( m_selectionMode != wxGrid::wxGridSelectRows )
294f6bcb 479 {
f1567cdd
SN
480 count = m_colSelection.GetCount();
481 for ( n = 0; n < count; n++ )
b5808881
SN
482 {
483 switch ( BlockContain( 0, m_colSelection[n],
f1e26920 484 m_grid->GetNumberRows()-1, m_colSelection[n],
b5808881
SN
485 topRow, leftCol, bottomRow, rightCol ) )
486 {
487 case 1:
488 return;
489 case -1:
490 m_colSelection.RemoveAt(n);
491 n--; count--;
492 default:
493 ;
494 }
495 }
294f6bcb
SN
496 }
497 m_blockSelectionTopLeft.Add( wxGridCellCoords( topRow, leftCol ) );
498 m_blockSelectionBottomRight.Add( wxGridCellCoords( bottomRow, rightCol ) );
b5808881
SN
499
500 // Update View:
b5808881 501 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
502 {
503 wxRect r = m_grid->BlockToDeviceRect( wxGridCellCoords( topRow, leftCol ),
504 wxGridCellCoords( bottomRow, rightCol ) );
b5808881 505 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0 506 }
f1567cdd 507
5c8fc7c1
SN
508 // Send Event, if not disabled.
509 if ( sendEvent )
510 {
d95b0c2b
SN
511 wxGridRangeSelectEvent gridEvt( m_grid->GetId(),
512 wxEVT_GRID_RANGE_SELECT,
513 m_grid,
514 wxGridCellCoords( topRow, leftCol ),
515 wxGridCellCoords( bottomRow, rightCol ),
516 TRUE,
517 ControlDown, ShiftDown,
518 AltDown, MetaDown );
519 m_grid->GetEventHandler()->ProcessEvent(gridEvt);
5c8fc7c1 520 }
294f6bcb
SN
521}
522
d95b0c2b
SN
523void wxGridSelection::SelectCell( int row, int col,
524 bool ControlDown, bool ShiftDown,
525 bool AltDown, bool MetaDown,
526 bool sendEvent )
294f6bcb 527{
b5808881 528 if ( m_selectionMode == wxGrid::wxGridSelectRows )
043d16b2 529 {
f6bcfd97 530 SelectBlock(row, 0, row, m_grid->GetNumberCols() - 1,
2b5f62a0 531 ControlDown, ShiftDown, AltDown, MetaDown, sendEvent);
043d16b2
SN
532 return;
533 }
b5808881 534 else if ( m_selectionMode == wxGrid::wxGridSelectColumns )
043d16b2 535 {
f6bcfd97 536 SelectBlock(0, col, m_grid->GetNumberRows() - 1, col,
2b5f62a0 537 ControlDown, ShiftDown, AltDown, MetaDown, sendEvent);
043d16b2
SN
538 return;
539 }
294f6bcb
SN
540 else if ( IsInSelection ( row, col ) )
541 return;
542 m_cellSelection.Add( wxGridCellCoords( row, col ) );
b5808881 543
f1567cdd 544 // Update View:
b5808881 545 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
546 {
547 wxRect r = m_grid->BlockToDeviceRect( wxGridCellCoords( row, col ),
548 wxGridCellCoords( row, col ) );
b5808881 549 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0 550 }
f1567cdd 551
5c8fc7c1 552 // Send event
d95b0c2b
SN
553 if (sendEvent)
554 {
f6bcfd97
BP
555 wxGridRangeSelectEvent gridEvt( m_grid->GetId(),
556 wxEVT_GRID_RANGE_SELECT,
557 m_grid,
558 wxGridCellCoords( row, col ),
559 wxGridCellCoords( row, col ),
f1e26920 560 TRUE,
f6bcfd97
BP
561 ControlDown, ShiftDown,
562 AltDown, MetaDown);
d95b0c2b
SN
563 m_grid->GetEventHandler()->ProcessEvent(gridEvt);
564 }
294f6bcb
SN
565}
566
d95b0c2b
SN
567void wxGridSelection::ToggleCellSelection( int row, int col,
568 bool ControlDown, bool ShiftDown,
569 bool AltDown, bool MetaDown )
294f6bcb 570{
f1567cdd 571 // if the cell is not selected, select it
294f6bcb 572 if ( !IsInSelection ( row, col ) )
b5808881 573 {
d95b0c2b
SN
574 SelectCell( row, col, ControlDown, ShiftDown,
575 AltDown, MetaDown );
b5808881
SN
576 return;
577 }
294f6bcb 578
f1567cdd
SN
579 // otherwise deselect it. This can be simple or more or
580 // less difficult, depending on how the cell is selected.
581 size_t count, n;
582
583 // The simplest case: The cell is contained in m_cellSelection
584 // Then it can't be contained in rows/cols/block (since those
585 // would remove the cell from m_cellSelection on creation), so
586 // we just have to remove it from m_cellSelection.
294f6bcb 587
f1567cdd 588 if ( m_selectionMode == wxGrid::wxGridSelectCells )
294f6bcb
SN
589 {
590 count = m_cellSelection.GetCount();
f1567cdd 591 for ( n = 0; n < count; n++ )
b5808881
SN
592 {
593 wxGridCellCoords& coords = m_cellSelection[n];
594 if ( row == coords.GetRow() && col == coords.GetCol() )
595 {
3665f7d0 596 wxGridCellCoords coords = m_cellSelection[n];
b5808881 597 m_cellSelection.RemoveAt(n);
b5808881 598 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
599 {
600 wxRect r = m_grid->BlockToDeviceRect( coords, coords );
b5808881 601 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0 602 }
5c8fc7c1
SN
603
604 // Send event
f6bcfd97
BP
605 wxGridRangeSelectEvent gridEvt( m_grid->GetId(),
606 wxEVT_GRID_RANGE_SELECT,
607 m_grid,
608 wxGridCellCoords( row, col ),
609 wxGridCellCoords( row, col ),
610 FALSE,
611 ControlDown, ShiftDown,
612 AltDown, MetaDown );
5c8fc7c1 613 m_grid->GetEventHandler()->ProcessEvent(gridEvt);
723d1b1d 614 return;
b5808881
SN
615 }
616 }
294f6bcb
SN
617 }
618
f1567cdd
SN
619 // The most difficult case: The cell is member of one or even several
620 // blocks. Split each such block in up to 4 new parts, that don't
621 // contain the cell to be selected, like this:
622 // |---------------------------|
623 // | |
624 // | part 1 |
625 // | |
626 // |---------------------------|
627 // | part 3 |x| part 4 |
628 // |---------------------------|
629 // | |
630 // | part 2 |
631 // | |
632 // |---------------------------|
633 // (The x marks the newly deselected cell).
634 // Note: in row selection mode, we only need part1 and part2;
635 // in column selection mode, we only need part 3 and part4,
636 // which are expanded to whole columns automatically!
637
294f6bcb 638 count = m_blockSelectionTopLeft.GetCount();
f1567cdd 639 for ( n = 0; n < count; n++ )
294f6bcb 640 {
b5808881
SN
641 wxGridCellCoords& coords1 = m_blockSelectionTopLeft[n];
642 wxGridCellCoords& coords2 = m_blockSelectionBottomRight[n];
643 int topRow = coords1.GetRow();
644 int leftCol = coords1.GetCol();
645 int bottomRow = coords2.GetRow();
646 int rightCol = coords2.GetCol();
647 if ( BlockContainsCell( topRow, leftCol, bottomRow, rightCol,
648 row, col ) )
649 {
650 // remove the block
651 m_blockSelectionTopLeft.RemoveAt(n);
652 m_blockSelectionBottomRight.RemoveAt(n);
653 n--; count--;
654 // add up to 4 smaller blocks and set update region
655 if ( m_selectionMode != wxGrid::wxGridSelectColumns )
656 {
657 if ( topRow < row )
2b5f62a0 658 SelectBlock( topRow, leftCol, row - 1, rightCol,
3665f7d0 659 FALSE, FALSE, FALSE, FALSE, FALSE );
b5808881 660 if ( bottomRow > row )
2b5f62a0 661 SelectBlock( row + 1, leftCol, bottomRow, rightCol,
3665f7d0 662 FALSE, FALSE, FALSE, FALSE, FALSE );
b5808881
SN
663 }
664 if ( m_selectionMode != wxGrid::wxGridSelectRows )
665 {
666 if ( leftCol < col )
2b5f62a0 667 SelectBlock( row, leftCol, row, col - 1,
3665f7d0 668 FALSE, FALSE, FALSE, FALSE, FALSE );
b5808881 669 if ( rightCol > col )
2b5f62a0 670 SelectBlock( row, col + 1, row, rightCol,
3665f7d0 671 FALSE, FALSE, FALSE, FALSE, FALSE );
b5808881
SN
672 }
673 }
294f6bcb
SN
674 }
675
676 // remove a cell from a row, adding up to two new blocks
b5808881 677 if ( m_selectionMode != wxGrid::wxGridSelectColumns )
294f6bcb 678 {
f1567cdd
SN
679 count = m_rowSelection.GetCount();
680 for ( n = 0; n < count; n++ )
b5808881
SN
681 {
682 if ( m_rowSelection[n] == row )
683 {
684 m_rowSelection.RemoveAt(n);
685 n--; count--;
686 if (m_selectionMode == wxGrid::wxGridSelectCells)
687 {
688 if ( col > 0 )
2b5f62a0 689 SelectBlock( row, 0, row, col - 1,
3665f7d0 690 FALSE, FALSE, FALSE, FALSE, FALSE );
b5808881 691 if ( col < m_grid->GetNumberCols() - 1 )
5c8fc7c1
SN
692 SelectBlock( row, col + 1,
693 row, m_grid->GetNumberCols() - 1,
2b5f62a0 694 FALSE, FALSE, FALSE, FALSE, FALSE );
b5808881
SN
695 }
696 }
697 }
294f6bcb
SN
698 }
699
700 // remove a cell from a column, adding up to two new blocks
b5808881 701 if ( m_selectionMode != wxGrid::wxGridSelectRows )
294f6bcb 702 {
f1567cdd
SN
703 count = m_colSelection.GetCount();
704 for ( n = 0; n < count; n++ )
b5808881
SN
705 {
706 if ( m_colSelection[n] == col )
707 {
708 m_colSelection.RemoveAt(n);
709 n--; count--;
710 if (m_selectionMode == wxGrid::wxGridSelectCells)
711 {
712 if ( row > 0 )
2b5f62a0 713 SelectBlock( 0, col, row - 1, col,
3665f7d0 714 FALSE, FALSE, FALSE, FALSE, FALSE );
b5808881 715 if ( row < m_grid->GetNumberRows() - 1 )
5c8fc7c1
SN
716 SelectBlock( row + 1, col,
717 m_grid->GetNumberRows() - 1, col,
2b5f62a0 718 FALSE, FALSE, FALSE, FALSE, FALSE );
b5808881
SN
719 }
720 }
721 }
294f6bcb 722 }
f1567cdd 723
5c8fc7c1
SN
724 // Refresh the screen and send the event; according to m_selectionMode,
725 // we need to either update only the cell, or the whole row/column.
294f6bcb
SN
726 wxRect r;
727 switch (m_selectionMode)
728 {
b5808881 729 case wxGrid::wxGridSelectCells:
5c8fc7c1 730 {
5c8fc7c1 731 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
732 {
733 r = m_grid->BlockToDeviceRect( wxGridCellCoords( row, col ),
734 wxGridCellCoords( row, col ) );
5c8fc7c1 735 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0
SN
736 }
737
f6bcfd97
BP
738 wxGridRangeSelectEvent gridEvt( m_grid->GetId(),
739 wxEVT_GRID_RANGE_SELECT,
740 m_grid,
741 wxGridCellCoords( row, col ),
742 wxGridCellCoords( row, col ),
743 FALSE,
744 ControlDown, ShiftDown,
745 AltDown, MetaDown );
5c8fc7c1
SN
746 m_grid->GetEventHandler()->ProcessEvent(gridEvt);
747 break;
748 }
b5808881 749 case wxGrid::wxGridSelectRows:
5c8fc7c1 750 {
5c8fc7c1 751 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
752 {
753 r = m_grid->BlockToDeviceRect( wxGridCellCoords( row, 0 ),
754 wxGridCellCoords( row, m_grid->GetNumberCols() - 1 ) );
5c8fc7c1 755 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0
SN
756 }
757
5c8fc7c1
SN
758 wxGridRangeSelectEvent gridEvt( m_grid->GetId(),
759 wxEVT_GRID_RANGE_SELECT,
760 m_grid,
761 wxGridCellCoords( row, 0 ),
762 wxGridCellCoords( row, m_grid->GetNumberCols() - 1 ),
d95b0c2b
SN
763 FALSE,
764 ControlDown, ShiftDown,
765 AltDown, MetaDown );
5c8fc7c1
SN
766 m_grid->GetEventHandler()->ProcessEvent(gridEvt);
767 break;
768 }
b5808881 769 case wxGrid::wxGridSelectColumns:
5c8fc7c1 770 {
5c8fc7c1 771 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
772 {
773 r = m_grid->BlockToDeviceRect( wxGridCellCoords( 0, col ),
774 wxGridCellCoords( m_grid->GetNumberRows() - 1, col ) );
5c8fc7c1 775 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0
SN
776 }
777
5c8fc7c1
SN
778 wxGridRangeSelectEvent gridEvt( m_grid->GetId(),
779 wxEVT_GRID_RANGE_SELECT,
780 m_grid,
781 wxGridCellCoords( 0, col ),
782 wxGridCellCoords( m_grid->GetNumberRows() - 1, col ),
d95b0c2b
SN
783 FALSE,
784 ControlDown, ShiftDown,
785 AltDown, MetaDown );
5c8fc7c1
SN
786 m_grid->GetEventHandler()->ProcessEvent(gridEvt);
787 break;
788 }
294f6bcb 789 }
294f6bcb
SN
790}
791
792void wxGridSelection::ClearSelection()
793{
794 size_t n;
3665f7d0
SN
795 wxRect r;
796 wxGridCellCoords coords1, coords2;
f1567cdd
SN
797
798 // deselect all invidiual cells and update the screen
799 if ( m_selectionMode == wxGrid::wxGridSelectCells )
294f6bcb 800 {
b5808881
SN
801 while( ( n = m_cellSelection.GetCount() ) > 0)
802 {
b5808881 803 n--;
3665f7d0 804 coords1 = m_cellSelection[n];
b5808881
SN
805 m_cellSelection.RemoveAt(n);
806 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
807 {
808 r = m_grid->BlockToDeviceRect( coords1, coords1 );
b5808881 809 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0 810 }
b5808881 811 }
294f6bcb 812 }
f1567cdd
SN
813
814 // deselect all blocks and update the screen
294f6bcb
SN
815 while( ( n = m_blockSelectionTopLeft.GetCount() ) > 0)
816 {
b5808881 817 n--;
3665f7d0
SN
818 coords1 = m_blockSelectionTopLeft[n];
819 coords2 = m_blockSelectionBottomRight[n];
b5808881
SN
820 m_blockSelectionTopLeft.RemoveAt(n);
821 m_blockSelectionBottomRight.RemoveAt(n);
822 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
823 {
824 r = m_grid->BlockToDeviceRect( coords1, coords2 );
f1e26920 825 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0 826 }
b5808881 827 }
f1567cdd
SN
828
829 // deselect all rows and update the screen
b5808881 830 if ( m_selectionMode != wxGrid::wxGridSelectColumns )
294f6bcb 831 {
b5808881
SN
832 while( ( n = m_rowSelection.GetCount() ) > 0)
833 {
834 n--;
3665f7d0 835 int row = m_rowSelection[n];
b5808881
SN
836 m_rowSelection.RemoveAt(n);
837 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
838 {
839 r = m_grid->BlockToDeviceRect( wxGridCellCoords( row, 0 ),
840 wxGridCellCoords( row, m_grid->GetNumberCols() - 1 ) );
f1e26920 841 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0 842 }
b5808881
SN
843 }
844 }
f1567cdd
SN
845
846 // deselect all columns and update the screen
b5808881 847 if ( m_selectionMode != wxGrid::wxGridSelectRows )
294f6bcb 848 {
b5808881
SN
849 while( ( n = m_colSelection.GetCount() ) > 0)
850 {
851 n--;
3665f7d0 852 int col = m_colSelection[n];
b5808881
SN
853 m_colSelection.RemoveAt(n);
854 if ( !m_grid->GetBatchCount() )
3665f7d0
SN
855 {
856 r = m_grid->BlockToDeviceRect( wxGridCellCoords( 0, col ),
857 wxGridCellCoords( m_grid->GetNumberRows() - 1, col ) );
f1e26920 858 ((wxWindow *)m_grid->m_gridWin)->Refresh( FALSE, &r );
3665f7d0 859 }
b5808881 860 }
294f6bcb 861 }
f6bcfd97
BP
862
863 // One deselection event, indicating deselection of _all_ cells.
864 // (No finer grained events for each of the smaller regions
865 // deselected above!)
866 wxGridRangeSelectEvent gridEvt( m_grid->GetId(),
867 wxEVT_GRID_RANGE_SELECT,
868 m_grid,
869 wxGridCellCoords( 0, 0 ),
870 wxGridCellCoords( m_grid->GetNumberRows() - 1,
871 m_grid->GetNumberCols() - 1 ),
872 FALSE );
873
874 m_grid->GetEventHandler()->ProcessEvent(gridEvt);
294f6bcb
SN
875}
876
877
878void wxGridSelection::UpdateRows( size_t pos, int numRows )
879{
880 size_t count = m_cellSelection.GetCount();
b14159f7
JS
881 size_t n;
882 for ( n = 0; n < count; n++ )
294f6bcb
SN
883 {
884 wxGridCellCoords& coords = m_cellSelection[n];
885 wxCoord row = coords.GetRow();
886 if ((size_t)row >= pos)
887 {
888 if (numRows > 0)
889 {
890 // If rows inserted, increase row counter where necessary
891 coords.SetRow(row + numRows);
892 }
893 else if (numRows < 0)
894 {
895 // If rows deleted ...
896 if ((size_t)row >= pos - numRows)
897 {
898 // ...either decrement row counter (if row still exists)...
899 coords.SetRow(row + numRows);
900 }
901 else
902 {
903 // ...or remove the attribute
904 m_cellSelection.RemoveAt(n);
905 n--; count--;
906 }
907 }
908 }
909 }
910
911 count = m_blockSelectionTopLeft.GetCount();
b14159f7 912 for ( n = 0; n < count; n++ )
294f6bcb
SN
913 {
914 wxGridCellCoords& coords1 = m_blockSelectionTopLeft[n];
915 wxGridCellCoords& coords2 = m_blockSelectionBottomRight[n];
916 wxCoord row1 = coords1.GetRow();
917 wxCoord row2 = coords2.GetRow();
918 if ((size_t)row2 >= pos)
919 {
920 if (numRows > 0)
921 {
922 // If rows inserted, increase row counter where necessary
923 coords2.SetRow(row2 + numRows);
b5808881
SN
924 if ( (size_t)row1 >= pos )
925 coords1.SetRow(row1 + numRows);
294f6bcb
SN
926 }
927 else if (numRows < 0)
928 {
929 // If rows deleted ...
930 if ((size_t)row2 >= pos - numRows)
931 {
932 // ...either decrement row counter (if row still exists)...
933 coords2.SetRow(row2 + numRows);
b5808881
SN
934 if ( (size_t) row1 >= pos)
935 coords1.SetRow( wxMax(row1 + numRows, (int) pos) );
f1e26920 936
294f6bcb
SN
937 }
938 else
939 {
b5808881
SN
940 if ( (size_t) row1 >= pos)
941 {
942 // ...or remove the attribute
943 m_blockSelectionTopLeft.RemoveAt(n);
944 m_blockSelectionBottomRight.RemoveAt(n);
945 n--; count--;
946 }
947 else
948 coords2.SetRow(pos);
294f6bcb
SN
949 }
950 }
951 }
952 }
953
954 count = m_rowSelection.GetCount();
b14159f7 955 for ( n = 0; n < count; n++ )
294f6bcb 956 {
f1e26920
CE
957 int rowOrCol_ = m_rowSelection [ n ];
958
959 if ( ( size_t ) rowOrCol_ >= pos )
960 {
961 if ( numRows > 0 )
962 {
963 m_rowSelection [ n ] += numRows;
964 }
965 else if ( numRows < 0 )
966 {
967 if ( ( size_t ) rowOrCol_ >= ( pos - numRows ) )
968 m_rowSelection [ n ] += numRows;
969 else
970 {
971 m_rowSelection.RemoveAt ( n );
972 n--;
973 count--;
974 }
975 }
976 }
294f6bcb 977 }
f6bcfd97
BP
978 // No need to touch selected columns, unless we removed _all_
979 // rows, in this case, we remove all columns from the selection.
f1e26920 980
f6bcfd97
BP
981 if ( !m_grid->GetNumberRows() )
982 m_colSelection.Clear();
294f6bcb
SN
983}
984
f1e26920 985
294f6bcb
SN
986void wxGridSelection::UpdateCols( size_t pos, int numCols )
987{
988 size_t count = m_cellSelection.GetCount();
b14159f7
JS
989 size_t n;
990 for ( n = 0; n < count; n++ )
294f6bcb
SN
991 {
992 wxGridCellCoords& coords = m_cellSelection[n];
993 wxCoord col = coords.GetCol();
994 if ((size_t)col >= pos)
995 {
996 if (numCols > 0)
997 {
998 // If rows inserted, increase row counter where necessary
999 coords.SetCol(col + numCols);
1000 }
1001 else if (numCols < 0)
1002 {
1003 // If rows deleted ...
1004 if ((size_t)col >= pos - numCols)
1005 {
1006 // ...either decrement row counter (if row still exists)...
1007 coords.SetCol(col + numCols);
1008 }
1009 else
1010 {
1011 // ...or remove the attribute
1012 m_cellSelection.RemoveAt(n);
1013 n--; count--;
1014 }
1015 }
1016 }
1017 }
1018
1019 count = m_blockSelectionTopLeft.GetCount();
b14159f7 1020 for ( n = 0; n < count; n++ )
294f6bcb
SN
1021 {
1022 wxGridCellCoords& coords1 = m_blockSelectionTopLeft[n];
1023 wxGridCellCoords& coords2 = m_blockSelectionBottomRight[n];
1024 wxCoord col1 = coords1.GetCol();
1025 wxCoord col2 = coords2.GetCol();
1026 if ((size_t)col2 >= pos)
1027 {
1028 if (numCols > 0)
1029 {
1030 // If rows inserted, increase row counter where necessary
1031 coords2.SetCol(col2 + numCols);
b5808881
SN
1032 if ( (size_t)col1 >= pos )
1033 coords1.SetCol(col1 + numCols);
294f6bcb
SN
1034 }
1035 else if (numCols < 0)
1036 {
1037 // If cols deleted ...
1038 if ((size_t)col2 >= pos - numCols)
1039 {
1040 // ...either decrement col counter (if col still exists)...
1041 coords2.SetCol(col2 + numCols);
b5808881
SN
1042 if ( (size_t) col1 >= pos)
1043 coords1.SetCol( wxMax(col1 + numCols, (int) pos) );
f1e26920 1044
294f6bcb
SN
1045 }
1046 else
1047 {
b5808881
SN
1048 if ( (size_t) col1 >= pos)
1049 {
1050 // ...or remove the attribute
1051 m_blockSelectionTopLeft.RemoveAt(n);
1052 m_blockSelectionBottomRight.RemoveAt(n);
1053 n--; count--;
1054 }
1055 else
1056 coords2.SetCol(pos);
294f6bcb
SN
1057 }
1058 }
1059 }
1060 }
1061
1062 count = m_colSelection.GetCount();
b14159f7 1063 for ( n = 0; n < count; n++ )
294f6bcb 1064 {
f1e26920
CE
1065
1066 int rowOrCol = m_colSelection [ n ];
1067 if ( ( size_t ) rowOrCol >= pos )
294f6bcb
SN
1068 {
1069 if ( numCols > 0 )
f1e26920
CE
1070 m_colSelection [ n ] += numCols;
1071 else if ( numCols < 0 )
294f6bcb 1072 {
f1e26920
CE
1073 if ( ( size_t ) rowOrCol >= ( pos -numCols ) )
1074 m_colSelection [ n ] += numCols;
294f6bcb
SN
1075 else
1076 {
f1e26920
CE
1077 m_colSelection.RemoveAt ( n );
1078 n--;
1079 count--;
294f6bcb
SN
1080 }
1081 }
1082 }
f1e26920 1083
294f6bcb 1084 }
f6bcfd97
BP
1085
1086 // No need to touch selected rows, unless we removed _all_
1087 // columns, in this case, we remove all rows from the selection.
1088 if ( !m_grid->GetNumberCols() )
1089 m_rowSelection.Clear();
294f6bcb
SN
1090}
1091
f1e26920 1092
294f6bcb 1093int wxGridSelection::BlockContain( int topRow1, int leftCol1,
b5808881
SN
1094 int bottomRow1, int rightCol1,
1095 int topRow2, int leftCol2,
1096 int bottomRow2, int rightCol2 )
294f6bcb
SN
1097// returns 1, if Block1 contains Block2,
1098// -1, if Block2 contains Block1,
1099// 0, otherwise
1100{
1101 if ( topRow1 <= topRow2 && bottomRow2 <= bottomRow1 &&
b5808881 1102 leftCol1 <= leftCol2 && rightCol2 <= rightCol1 )
294f6bcb
SN
1103 return 1;
1104 else if ( topRow2 <= topRow1 && bottomRow1 <= bottomRow2 &&
b5808881 1105 leftCol2 <= leftCol1 && rightCol1 <= rightCol2 )
294f6bcb
SN
1106 return -1;
1107 return 0;
1108}
f1567cdd
SN
1109
1110#endif