X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/5c8fc7c1debd3d2a58c015132f2a3d9e3e26cd38..b1d4dd7add411ebff1ce4a8d1d992e0e43ee26b1:/include/wx/generic/gridsel.h?ds=sidebyside diff --git a/include/wx/generic/gridsel.h b/include/wx/generic/gridsel.h index 295e1fa506..cae07fe7ef 100644 --- a/include/wx/generic/gridsel.h +++ b/include/wx/generic/gridsel.h @@ -16,7 +16,7 @@ #ifndef __WXGRIDSEL_H__ #define __WXGRIDSEL_H__ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "gridsel.h" #endif @@ -29,13 +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 ); + 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, - wxMouseEvent* event = 0, bool sendEvent = TRUE ); - void SelectCell( int row, int col, bool sendEvent = TRUE ); - void ToggleCellSelection( int row, int col); + 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 ); @@ -68,6 +81,10 @@ private: wxGrid *m_grid; wxGrid::wxGridSelectionModes m_selectionMode; + + friend class WXDLLEXPORT wxGrid; + + DECLARE_NO_COPY_CLASS(wxGridSelection) }; #endif // #ifdef __WXGRIDSEL_H__