1 ///////////////////////////////////////////////////////////////////////////
2 // Name: generic/gridsel.cpp
3 // Purpose: wxGridSelection
8 // Copyright: (c) Stefan Neis (Stefan.Neis@t-online.de)
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
21 #pragma implementation "gridsel.h"
24 // For compilers that support precompilation, includes "wx/wx.h".
25 #include "wx/wxprec.h"
35 #include "wx/generic/gridsel.h"
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
46 wxGridSelection::wxGridSelection( wxGrid
* grid
,
47 wxGrid::wxGridSelectionModes sel
)
50 m_selectionMode
= sel
;
53 bool wxGridSelection::IsSelection()
55 return ( m_cellSelection
.GetCount() || m_blockSelectionTopLeft
.GetCount() ||
56 m_rowSelection
.GetCount() || m_colSelection
.GetCount() );
59 bool wxGridSelection::IsInSelection ( int row
, int col
)
63 // First check whether the given cell is individually selected
64 // (if m_selectionMode is wxGridSelectCells).
65 if ( m_selectionMode
== wxGrid::wxGridSelectCells
)
67 count
= m_cellSelection
.GetCount();
68 for ( size_t n
= 0; n
< count
; n
++ )
70 wxGridCellCoords
& coords
= m_cellSelection
[n
];
71 if ( row
== coords
.GetRow() && col
== coords
.GetCol() )
76 // Now check whether the given cell is
77 // contained in one of the selected blocks.
78 count
= m_blockSelectionTopLeft
.GetCount();
79 for ( size_t n
= 0; n
< count
; n
++ )
81 wxGridCellCoords
& coords1
= m_blockSelectionTopLeft
[n
];
82 wxGridCellCoords
& coords2
= m_blockSelectionBottomRight
[n
];
83 if ( BlockContainsCell(coords1
.GetRow(), coords1
.GetCol(),
84 coords2
.GetRow(), coords2
.GetCol(),
89 // Now check whether the given cell is
90 // contained in one of the selected rows
91 // (unless we are in column selection mode).
92 if ( m_selectionMode
!= wxGrid::wxGridSelectColumns
)
94 size_t count
= m_rowSelection
.GetCount();
95 for ( size_t n
= 0; n
< count
; n
++ )
97 if ( row
== m_rowSelection
[n
] )
102 // Now check whether the given cell is
103 // contained in one of the selected columns
104 // (unless we are in row selection mode).
105 if ( m_selectionMode
!= wxGrid::wxGridSelectRows
)
107 size_t count
= m_colSelection
.GetCount();
108 for ( size_t n
= 0; n
< count
; n
++ )
110 if ( col
== m_colSelection
[n
] )
117 // Change the selection mode
118 void wxGridSelection::SetSelectionMode(wxGrid::wxGridSelectionModes selmode
)
120 // if selection mode is unchanged return immediately
121 if (selmode
== m_selectionMode
)
124 if ( m_selectionMode
!= wxGrid::wxGridSelectCells
)
126 // if changing form row to column selection
127 // or vice versa, clear the selection.
128 if ( selmode
!= wxGrid::wxGridSelectCells
)
131 m_selectionMode
= selmode
;
135 // if changing from cell selection to something else,
136 // promote selected cells/blocks to whole rows/columns.
138 while ( ( n
= m_cellSelection
.GetCount() ) > 0 )
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
)
147 else // selmode == wxGridSelectColumns)
151 for (n
= 0; n
< m_blockSelectionTopLeft
.GetCount(); n
++)
152 // Note that m_blockSelectionTopLeft's size may be changing!
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
)
162 if (leftCol
!= 0 || rightCol
!= m_grid
->GetNumberCols() - 1 )
164 m_blockSelectionTopLeft
.RemoveAt(n
);
165 m_blockSelectionBottomRight
.RemoveAt(n
);
166 SelectBlock( topRow
, 0,
167 bottomRow
, m_grid
->GetNumberCols() - 1,
168 FALSE
, FALSE
, FALSE
, FALSE
, FALSE
);
171 else // selmode == wxGridSelectColumns)
173 if (topRow
!= 0 || bottomRow
!= m_grid
->GetNumberRows() - 1 )
175 m_blockSelectionTopLeft
.RemoveAt(n
);
176 m_blockSelectionBottomRight
.RemoveAt(n
);
177 SelectBlock( 0, leftCol
,
178 m_grid
->GetNumberRows() - 1, rightCol
,
179 FALSE
, FALSE
, FALSE
, FALSE
, FALSE
);
183 m_selectionMode
= selmode
;
187 void wxGridSelection::SelectRow( int row
,
188 bool ControlDown
, bool ShiftDown
,
189 bool AltDown
, bool MetaDown
)
191 if ( m_selectionMode
== wxGrid::wxGridSelectColumns
)
195 // Remove single cells contained in newly selected block.
196 if ( m_selectionMode
== wxGrid::wxGridSelectCells
)
198 count
= m_cellSelection
.GetCount();
199 for ( n
= 0; n
< count
; n
++ )
201 wxGridCellCoords
& coords
= m_cellSelection
[n
];
202 if ( BlockContainsCell( row
, 0, row
, m_grid
->GetNumberCols() - 1,
203 coords
.GetRow(), coords
.GetCol() ) )
205 m_cellSelection
.RemoveAt(n
);
211 // Simplify list of selected blocks (if possible)
212 count
= m_blockSelectionTopLeft
.GetCount();
214 for ( n
= 0; n
< count
; n
++ )
216 wxGridCellCoords
& coords1
= m_blockSelectionTopLeft
[n
];
217 wxGridCellCoords
& coords2
= m_blockSelectionBottomRight
[n
];
219 // Remove block if it is a subset of the row
220 if ( coords1
.GetRow() == row
&& row
== coords2
.GetRow() )
222 m_blockSelectionTopLeft
.RemoveAt(n
);
223 m_blockSelectionBottomRight
.RemoveAt(n
);
226 else if ( coords1
.GetCol() == 0 &&
227 coords2
.GetCol() == m_grid
->GetNumberCols() - 1 )
229 // silently return, if row is contained in block
230 if ( coords1
.GetRow() <= row
&& row
<= coords2
.GetRow() )
232 // expand block, if it touched row
233 else if ( coords1
.GetRow() == row
+ 1)
238 else if ( coords2
.GetRow() == row
- 1)
246 // Unless we successfully handled the row,
247 // check whether row is already selected.
250 count
= m_rowSelection
.GetCount();
251 for ( n
= 0; n
< count
; n
++ )
253 if ( row
== m_rowSelection
[n
] )
257 // Add row to selection
258 m_rowSelection
.Add(row
);
262 if ( !m_grid
->GetBatchCount() )
264 wxRect r
= m_grid
->BlockToDeviceRect( wxGridCellCoords( row
, 0 ),
265 wxGridCellCoords( row
, m_grid
->GetNumberCols() - 1 ) );
266 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
270 wxGridRangeSelectEvent
gridEvt( m_grid
->GetId(),
271 wxEVT_GRID_RANGE_SELECT
,
273 wxGridCellCoords( row
, 0 ),
274 wxGridCellCoords( row
, m_grid
->GetNumberCols() - 1 ),
276 ControlDown
, ShiftDown
,
279 m_grid
->GetEventHandler()->ProcessEvent(gridEvt
);
282 void wxGridSelection::SelectCol( int col
,
283 bool ControlDown
, bool ShiftDown
,
284 bool AltDown
, bool MetaDown
)
286 if ( m_selectionMode
== wxGrid::wxGridSelectRows
)
290 // Remove single cells contained in newly selected block.
291 if ( m_selectionMode
== wxGrid::wxGridSelectCells
)
293 count
= m_cellSelection
.GetCount();
294 for ( n
= 0; n
< count
; n
++ )
296 wxGridCellCoords
& coords
= m_cellSelection
[n
];
297 if ( BlockContainsCell( 0, col
, m_grid
->GetNumberRows() - 1, col
,
298 coords
.GetRow(), coords
.GetCol() ) )
300 m_cellSelection
.RemoveAt(n
);
306 // Simplify list of selected blocks (if possible)
307 count
= m_blockSelectionTopLeft
.GetCount();
309 for ( n
= 0; n
< count
; n
++ )
311 wxGridCellCoords
& coords1
= m_blockSelectionTopLeft
[n
];
312 wxGridCellCoords
& coords2
= m_blockSelectionBottomRight
[n
];
314 // Remove block if it is a subset of the column
315 if ( coords1
.GetCol() == col
&& col
== coords2
.GetCol() )
317 m_blockSelectionTopLeft
.RemoveAt(n
);
318 m_blockSelectionBottomRight
.RemoveAt(n
);
321 else if ( coords1
.GetRow() == 0 &&
322 coords2
.GetRow() == m_grid
->GetNumberRows() - 1 )
324 // silently return, if row is contained in block
325 if ( coords1
.GetCol() <= col
&& col
<= coords2
.GetCol() )
327 // expand block, if it touched col
328 else if ( coords1
.GetCol() == col
+ 1)
333 else if ( coords2
.GetCol() == col
- 1)
341 // Unless we successfully handled the column,
342 // Check whether col is already selected.
345 count
= m_colSelection
.GetCount();
346 for ( n
= 0; n
< count
; n
++ )
348 if ( col
== m_colSelection
[n
] )
352 // Add col to selection
353 m_colSelection
.Add(col
);
357 if ( !m_grid
->GetBatchCount() )
359 wxRect r
= m_grid
->BlockToDeviceRect( wxGridCellCoords( 0, col
),
360 wxGridCellCoords( m_grid
->GetNumberRows() - 1, col
) );
361 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
365 wxGridRangeSelectEvent
gridEvt( m_grid
->GetId(),
366 wxEVT_GRID_RANGE_SELECT
,
368 wxGridCellCoords( 0, col
),
369 wxGridCellCoords( m_grid
->GetNumberRows() - 1, col
),
371 ControlDown
, ShiftDown
,
374 m_grid
->GetEventHandler()->ProcessEvent(gridEvt
);
377 void wxGridSelection::SelectBlock( int topRow
, int leftCol
,
378 int bottomRow
, int rightCol
,
379 bool ControlDown
, bool ShiftDown
,
380 bool AltDown
, bool MetaDown
,
383 // Fix the coordinates of the block if needed.
384 if ( m_selectionMode
== wxGrid::wxGridSelectRows
)
387 rightCol
= m_grid
->GetNumberCols() - 1;
389 else if ( m_selectionMode
== wxGrid::wxGridSelectColumns
)
392 bottomRow
= m_grid
->GetNumberRows() - 1;
394 if ( topRow
> bottomRow
)
401 if ( leftCol
> rightCol
)
408 // Handle single cell selection in SelectCell.
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
)
414 SelectCell( topRow
, leftCol
, ControlDown
, ShiftDown
,
415 AltDown
, MetaDown
, sendEvent
);
418 // Remove single cells contained in newly selected block.
419 if ( m_selectionMode
== wxGrid::wxGridSelectCells
)
421 count
= m_cellSelection
.GetCount();
422 for ( n
= 0; n
< count
; n
++ )
424 wxGridCellCoords
& coords
= m_cellSelection
[n
];
425 if ( BlockContainsCell( topRow
, leftCol
, bottomRow
, rightCol
,
426 coords
.GetRow(), coords
.GetCol() ) )
428 m_cellSelection
.RemoveAt(n
);
434 // If a block containing the selection is already selected, return,
435 // if a block contained in the selection is found, remove it.
437 count
= m_blockSelectionTopLeft
.GetCount();
438 for ( n
= 0; n
< count
; n
++ )
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
) )
449 m_blockSelectionTopLeft
.RemoveAt(n
);
450 m_blockSelectionBottomRight
.RemoveAt(n
);
457 // If a row containing the selection is already selected, return,
458 // if a row contained in newly selected block is found, remove it.
459 if ( m_selectionMode
!= wxGrid::wxGridSelectColumns
)
461 count
= m_rowSelection
.GetCount();
462 for ( n
= 0; n
< count
; n
++ )
464 switch ( BlockContain( m_rowSelection
[n
], 0,
465 m_rowSelection
[n
], m_grid
->GetNumberCols()-1,
466 topRow
, leftCol
, bottomRow
, rightCol
) )
471 m_rowSelection
.RemoveAt(n
);
478 if ( m_selectionMode
!= wxGrid::wxGridSelectRows
)
480 count
= m_colSelection
.GetCount();
481 for ( n
= 0; n
< count
; n
++ )
483 switch ( BlockContain( 0, m_colSelection
[n
],
484 m_grid
->GetNumberRows()-1, m_colSelection
[n
],
485 topRow
, leftCol
, bottomRow
, rightCol
) )
490 m_colSelection
.RemoveAt(n
);
497 m_blockSelectionTopLeft
.Add( wxGridCellCoords( topRow
, leftCol
) );
498 m_blockSelectionBottomRight
.Add( wxGridCellCoords( bottomRow
, rightCol
) );
501 if ( !m_grid
->GetBatchCount() )
503 wxRect r
= m_grid
->BlockToDeviceRect( wxGridCellCoords( topRow
, leftCol
),
504 wxGridCellCoords( bottomRow
, rightCol
) );
505 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
508 // Send Event, if not disabled.
511 wxGridRangeSelectEvent
gridEvt( m_grid
->GetId(),
512 wxEVT_GRID_RANGE_SELECT
,
514 wxGridCellCoords( topRow
, leftCol
),
515 wxGridCellCoords( bottomRow
, rightCol
),
517 ControlDown
, ShiftDown
,
519 m_grid
->GetEventHandler()->ProcessEvent(gridEvt
);
523 void wxGridSelection::SelectCell( int row
, int col
,
524 bool ControlDown
, bool ShiftDown
,
525 bool AltDown
, bool MetaDown
,
528 if ( m_selectionMode
== wxGrid::wxGridSelectRows
)
530 SelectBlock(row
, 0, row
, m_grid
->GetNumberCols() - 1,
531 ControlDown
, ShiftDown
, AltDown
, MetaDown
, sendEvent
);
534 else if ( m_selectionMode
== wxGrid::wxGridSelectColumns
)
536 SelectBlock(0, col
, m_grid
->GetNumberRows() - 1, col
,
537 ControlDown
, ShiftDown
, AltDown
, MetaDown
, sendEvent
);
540 else if ( IsInSelection ( row
, col
) )
542 m_cellSelection
.Add( wxGridCellCoords( row
, col
) );
545 if ( !m_grid
->GetBatchCount() )
547 wxRect r
= m_grid
->BlockToDeviceRect( wxGridCellCoords( row
, col
),
548 wxGridCellCoords( row
, col
) );
549 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
555 wxGridRangeSelectEvent
gridEvt( m_grid
->GetId(),
556 wxEVT_GRID_RANGE_SELECT
,
558 wxGridCellCoords( row
, col
),
559 wxGridCellCoords( row
, col
),
561 ControlDown
, ShiftDown
,
563 m_grid
->GetEventHandler()->ProcessEvent(gridEvt
);
567 void wxGridSelection::ToggleCellSelection( int row
, int col
,
568 bool ControlDown
, bool ShiftDown
,
569 bool AltDown
, bool MetaDown
)
571 // if the cell is not selected, select it
572 if ( !IsInSelection ( row
, col
) )
574 SelectCell( row
, col
, ControlDown
, ShiftDown
,
579 // otherwise deselect it. This can be simple or more or
580 // less difficult, depending on how the cell is selected.
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.
588 if ( m_selectionMode
== wxGrid::wxGridSelectCells
)
590 count
= m_cellSelection
.GetCount();
591 for ( n
= 0; n
< count
; n
++ )
593 wxGridCellCoords
& coords
= m_cellSelection
[n
];
594 if ( row
== coords
.GetRow() && col
== coords
.GetCol() )
596 wxGridCellCoords coords
= m_cellSelection
[n
];
597 m_cellSelection
.RemoveAt(n
);
598 if ( !m_grid
->GetBatchCount() )
600 wxRect r
= m_grid
->BlockToDeviceRect( coords
, coords
);
601 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
605 wxGridRangeSelectEvent
gridEvt( m_grid
->GetId(),
606 wxEVT_GRID_RANGE_SELECT
,
608 wxGridCellCoords( row
, col
),
609 wxGridCellCoords( row
, col
),
611 ControlDown
, ShiftDown
,
613 m_grid
->GetEventHandler()->ProcessEvent(gridEvt
);
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 // |---------------------------|
626 // |---------------------------|
627 // | part 3 |x| part 4 |
628 // |---------------------------|
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!
638 count
= m_blockSelectionTopLeft
.GetCount();
639 for ( n
= 0; n
< count
; n
++ )
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
,
651 m_blockSelectionTopLeft
.RemoveAt(n
);
652 m_blockSelectionBottomRight
.RemoveAt(n
);
654 // add up to 4 smaller blocks and set update region
655 if ( m_selectionMode
!= wxGrid::wxGridSelectColumns
)
658 SelectBlock( topRow
, leftCol
, row
- 1, rightCol
,
659 FALSE
, FALSE
, FALSE
, FALSE
, FALSE
);
660 if ( bottomRow
> row
)
661 SelectBlock( row
+ 1, leftCol
, bottomRow
, rightCol
,
662 FALSE
, FALSE
, FALSE
, FALSE
, FALSE
);
664 if ( m_selectionMode
!= wxGrid::wxGridSelectRows
)
667 SelectBlock( row
, leftCol
, row
, col
- 1,
668 FALSE
, FALSE
, FALSE
, FALSE
, FALSE
);
669 if ( rightCol
> col
)
670 SelectBlock( row
, col
+ 1, row
, rightCol
,
671 FALSE
, FALSE
, FALSE
, FALSE
, FALSE
);
676 // remove a cell from a row, adding up to two new blocks
677 if ( m_selectionMode
!= wxGrid::wxGridSelectColumns
)
679 count
= m_rowSelection
.GetCount();
680 for ( n
= 0; n
< count
; n
++ )
682 if ( m_rowSelection
[n
] == row
)
684 m_rowSelection
.RemoveAt(n
);
686 if (m_selectionMode
== wxGrid::wxGridSelectCells
)
689 SelectBlock( row
, 0, row
, col
- 1,
690 FALSE
, FALSE
, FALSE
, FALSE
, FALSE
);
691 if ( col
< m_grid
->GetNumberCols() - 1 )
692 SelectBlock( row
, col
+ 1,
693 row
, m_grid
->GetNumberCols() - 1,
694 FALSE
, FALSE
, FALSE
, FALSE
, FALSE
);
700 // remove a cell from a column, adding up to two new blocks
701 if ( m_selectionMode
!= wxGrid::wxGridSelectRows
)
703 count
= m_colSelection
.GetCount();
704 for ( n
= 0; n
< count
; n
++ )
706 if ( m_colSelection
[n
] == col
)
708 m_colSelection
.RemoveAt(n
);
710 if (m_selectionMode
== wxGrid::wxGridSelectCells
)
713 SelectBlock( 0, col
, row
- 1, col
,
714 FALSE
, FALSE
, FALSE
, FALSE
, FALSE
);
715 if ( row
< m_grid
->GetNumberRows() - 1 )
716 SelectBlock( row
+ 1, col
,
717 m_grid
->GetNumberRows() - 1, col
,
718 FALSE
, FALSE
, FALSE
, FALSE
, FALSE
);
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.
727 switch (m_selectionMode
)
729 case wxGrid::wxGridSelectCells
:
731 if ( !m_grid
->GetBatchCount() )
733 r
= m_grid
->BlockToDeviceRect( wxGridCellCoords( row
, col
),
734 wxGridCellCoords( row
, col
) );
735 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
738 wxGridRangeSelectEvent
gridEvt( m_grid
->GetId(),
739 wxEVT_GRID_RANGE_SELECT
,
741 wxGridCellCoords( row
, col
),
742 wxGridCellCoords( row
, col
),
744 ControlDown
, ShiftDown
,
746 m_grid
->GetEventHandler()->ProcessEvent(gridEvt
);
749 case wxGrid::wxGridSelectRows
:
751 if ( !m_grid
->GetBatchCount() )
753 r
= m_grid
->BlockToDeviceRect( wxGridCellCoords( row
, 0 ),
754 wxGridCellCoords( row
, m_grid
->GetNumberCols() - 1 ) );
755 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
758 wxGridRangeSelectEvent
gridEvt( m_grid
->GetId(),
759 wxEVT_GRID_RANGE_SELECT
,
761 wxGridCellCoords( row
, 0 ),
762 wxGridCellCoords( row
, m_grid
->GetNumberCols() - 1 ),
764 ControlDown
, ShiftDown
,
766 m_grid
->GetEventHandler()->ProcessEvent(gridEvt
);
769 case wxGrid::wxGridSelectColumns
:
771 if ( !m_grid
->GetBatchCount() )
773 r
= m_grid
->BlockToDeviceRect( wxGridCellCoords( 0, col
),
774 wxGridCellCoords( m_grid
->GetNumberRows() - 1, col
) );
775 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
778 wxGridRangeSelectEvent
gridEvt( m_grid
->GetId(),
779 wxEVT_GRID_RANGE_SELECT
,
781 wxGridCellCoords( 0, col
),
782 wxGridCellCoords( m_grid
->GetNumberRows() - 1, col
),
784 ControlDown
, ShiftDown
,
786 m_grid
->GetEventHandler()->ProcessEvent(gridEvt
);
792 void wxGridSelection::ClearSelection()
796 wxGridCellCoords coords1
, coords2
;
798 // deselect all invidiual cells and update the screen
799 if ( m_selectionMode
== wxGrid::wxGridSelectCells
)
801 while( ( n
= m_cellSelection
.GetCount() ) > 0)
804 coords1
= m_cellSelection
[n
];
805 m_cellSelection
.RemoveAt(n
);
806 if ( !m_grid
->GetBatchCount() )
808 r
= m_grid
->BlockToDeviceRect( coords1
, coords1
);
809 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
814 // deselect all blocks and update the screen
815 while( ( n
= m_blockSelectionTopLeft
.GetCount() ) > 0)
818 coords1
= m_blockSelectionTopLeft
[n
];
819 coords2
= m_blockSelectionBottomRight
[n
];
820 m_blockSelectionTopLeft
.RemoveAt(n
);
821 m_blockSelectionBottomRight
.RemoveAt(n
);
822 if ( !m_grid
->GetBatchCount() )
824 r
= m_grid
->BlockToDeviceRect( coords1
, coords2
);
825 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
829 // deselect all rows and update the screen
830 if ( m_selectionMode
!= wxGrid::wxGridSelectColumns
)
832 while( ( n
= m_rowSelection
.GetCount() ) > 0)
835 int row
= m_rowSelection
[n
];
836 m_rowSelection
.RemoveAt(n
);
837 if ( !m_grid
->GetBatchCount() )
839 r
= m_grid
->BlockToDeviceRect( wxGridCellCoords( row
, 0 ),
840 wxGridCellCoords( row
, m_grid
->GetNumberCols() - 1 ) );
841 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
846 // deselect all columns and update the screen
847 if ( m_selectionMode
!= wxGrid::wxGridSelectRows
)
849 while( ( n
= m_colSelection
.GetCount() ) > 0)
852 int col
= m_colSelection
[n
];
853 m_colSelection
.RemoveAt(n
);
854 if ( !m_grid
->GetBatchCount() )
856 r
= m_grid
->BlockToDeviceRect( wxGridCellCoords( 0, col
),
857 wxGridCellCoords( m_grid
->GetNumberRows() - 1, col
) );
858 ((wxWindow
*)m_grid
->m_gridWin
)->Refresh( FALSE
, &r
);
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
,
869 wxGridCellCoords( 0, 0 ),
870 wxGridCellCoords( m_grid
->GetNumberRows() - 1,
871 m_grid
->GetNumberCols() - 1 ),
874 m_grid
->GetEventHandler()->ProcessEvent(gridEvt
);
878 void wxGridSelection::UpdateRows( size_t pos
, int numRows
)
880 size_t count
= m_cellSelection
.GetCount();
882 for ( n
= 0; n
< count
; n
++ )
884 wxGridCellCoords
& coords
= m_cellSelection
[n
];
885 wxCoord row
= coords
.GetRow();
886 if ((size_t)row
>= pos
)
890 // If rows inserted, increase row counter where necessary
891 coords
.SetRow(row
+ numRows
);
893 else if (numRows
< 0)
895 // If rows deleted ...
896 if ((size_t)row
>= pos
- numRows
)
898 // ...either decrement row counter (if row still exists)...
899 coords
.SetRow(row
+ numRows
);
903 // ...or remove the attribute
904 m_cellSelection
.RemoveAt(n
);
911 count
= m_blockSelectionTopLeft
.GetCount();
912 for ( n
= 0; n
< count
; n
++ )
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
)
922 // If rows inserted, increase row counter where necessary
923 coords2
.SetRow(row2
+ numRows
);
924 if ( (size_t)row1
>= pos
)
925 coords1
.SetRow(row1
+ numRows
);
927 else if (numRows
< 0)
929 // If rows deleted ...
930 if ((size_t)row2
>= pos
- numRows
)
932 // ...either decrement row counter (if row still exists)...
933 coords2
.SetRow(row2
+ numRows
);
934 if ( (size_t) row1
>= pos
)
935 coords1
.SetRow( wxMax(row1
+ numRows
, (int) pos
) );
940 if ( (size_t) row1
>= pos
)
942 // ...or remove the attribute
943 m_blockSelectionTopLeft
.RemoveAt(n
);
944 m_blockSelectionBottomRight
.RemoveAt(n
);
954 count
= m_rowSelection
.GetCount();
955 for ( n
= 0; n
< count
; n
++ )
957 int rowOrCol_
= m_rowSelection
[ n
];
959 if ( ( size_t ) rowOrCol_
>= pos
)
963 m_rowSelection
[ n
] += numRows
;
965 else if ( numRows
< 0 )
967 if ( ( size_t ) rowOrCol_
>= ( pos
- numRows
) )
968 m_rowSelection
[ n
] += numRows
;
971 m_rowSelection
.RemoveAt ( n
);
978 // No need to touch selected columns, unless we removed _all_
979 // rows, in this case, we remove all columns from the selection.
981 if ( !m_grid
->GetNumberRows() )
982 m_colSelection
.Clear();
986 void wxGridSelection::UpdateCols( size_t pos
, int numCols
)
988 size_t count
= m_cellSelection
.GetCount();
990 for ( n
= 0; n
< count
; n
++ )
992 wxGridCellCoords
& coords
= m_cellSelection
[n
];
993 wxCoord col
= coords
.GetCol();
994 if ((size_t)col
>= pos
)
998 // If rows inserted, increase row counter where necessary
999 coords
.SetCol(col
+ numCols
);
1001 else if (numCols
< 0)
1003 // If rows deleted ...
1004 if ((size_t)col
>= pos
- numCols
)
1006 // ...either decrement row counter (if row still exists)...
1007 coords
.SetCol(col
+ numCols
);
1011 // ...or remove the attribute
1012 m_cellSelection
.RemoveAt(n
);
1019 count
= m_blockSelectionTopLeft
.GetCount();
1020 for ( n
= 0; n
< count
; n
++ )
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
)
1030 // If rows inserted, increase row counter where necessary
1031 coords2
.SetCol(col2
+ numCols
);
1032 if ( (size_t)col1
>= pos
)
1033 coords1
.SetCol(col1
+ numCols
);
1035 else if (numCols
< 0)
1037 // If cols deleted ...
1038 if ((size_t)col2
>= pos
- numCols
)
1040 // ...either decrement col counter (if col still exists)...
1041 coords2
.SetCol(col2
+ numCols
);
1042 if ( (size_t) col1
>= pos
)
1043 coords1
.SetCol( wxMax(col1
+ numCols
, (int) pos
) );
1048 if ( (size_t) col1
>= pos
)
1050 // ...or remove the attribute
1051 m_blockSelectionTopLeft
.RemoveAt(n
);
1052 m_blockSelectionBottomRight
.RemoveAt(n
);
1056 coords2
.SetCol(pos
);
1062 count
= m_colSelection
.GetCount();
1063 for ( n
= 0; n
< count
; n
++ )
1066 int rowOrCol
= m_colSelection
[ n
];
1067 if ( ( size_t ) rowOrCol
>= pos
)
1070 m_colSelection
[ n
] += numCols
;
1071 else if ( numCols
< 0 )
1073 if ( ( size_t ) rowOrCol
>= ( pos
-numCols
) )
1074 m_colSelection
[ n
] += numCols
;
1077 m_colSelection
.RemoveAt ( n
);
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();
1093 int wxGridSelection::BlockContain( int topRow1
, int leftCol1
,
1094 int bottomRow1
, int rightCol1
,
1095 int topRow2
, int leftCol2
,
1096 int bottomRow2
, int rightCol2
)
1097 // returns 1, if Block1 contains Block2,
1098 // -1, if Block2 contains Block1,
1101 if ( topRow1
<= topRow2
&& bottomRow2
<= bottomRow1
&&
1102 leftCol1
<= leftCol2
&& rightCol2
<= rightCol1
)
1104 else if ( topRow2
<= topRow1
&& bottomRow1
<= bottomRow2
&&
1105 leftCol2
<= leftCol1
&& rightCol1
<= rightCol2
)