- void SelectRow( int row, bool addToSelected = FALSE );
- void SelectCol( int col, bool addToSelected = FALSE );
- void SelectBlock( int topRow, int leftCol, int bottomRow, int rightCol );
- void SelectCell( int row, int col);
- void ToggleCellSelection( int row, int col);
+ wxGrid::wxGridSelectionModes GetSelectionMode() { return m_selectionMode; }
+ void SelectRow( int row,
+ bool ControlDown = FALSE, bool ShiftDown = FALSE,
+ bool AltDown = FALSE, bool MetaDown = FALSE );
+ void SelectCol( int col,
+ bool ControlDown = FALSE, bool ShiftDown = FALSE,
+ bool AltDown = FALSE, bool MetaDown = FALSE );
+ void SelectBlock( int topRow, int leftCol,
+ int bottomRow, int rightCol,
+ bool ControlDown = FALSE, bool ShiftDown = FALSE,
+ bool AltDown = FALSE, bool MetaDown = FALSE,
+ bool sendEvent = TRUE );
+ void SelectCell( int row, int col,
+ bool ControlDown = FALSE, bool ShiftDown = FALSE,
+ bool AltDown = FALSE, bool MetaDown = FALSE,
+ bool sendEvent = TRUE );
+ void ToggleCellSelection( int row, int col,
+ bool ControlDown = FALSE,
+ bool ShiftDown = FALSE,
+ bool AltDown = FALSE, bool MetaDown = FALSE );