X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f1567cddead054974c4a079ed8ee2c798ef998dc..48013bb0986730359e35f93bbc73e0932816a04c:/include/wx/generic/gridsel.h diff --git a/include/wx/generic/gridsel.h b/include/wx/generic/gridsel.h index 08598b3409..c44819a419 100644 --- a/include/wx/generic/gridsel.h +++ b/include/wx/generic/gridsel.h @@ -29,11 +29,26 @@ public: bool IsSelection(); bool IsInSelection ( int row, int col ); void SetSelectionMode(wxGrid::wxGridSelectionModes selmode); - 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 ); void ClearSelection(); void UpdateRows( size_t pos, int numRows );