Improved handling of selection/deselection events.

Improved keyboard navigation.


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@6445 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Stefan Neis
2000-03-04 23:09:37 +00:00
parent 1f80a703f2
commit 5c8fc7c1de
5 changed files with 262 additions and 127 deletions

View File

@@ -31,8 +31,10 @@ public:
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 SelectBlock( int topRow, int leftCol,
int bottomRow, int rightCol,
wxMouseEvent* event = 0, bool sendEvent = TRUE );
void SelectCell( int row, int col, bool sendEvent = TRUE );
void ToggleCellSelection( int row, int col);
void ClearSelection();