X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/b58088819ba72c430ad028490fc45e1fc79694f0..f9133b32002a600cb48dd05fbcce1ab3ed684dba:/include/wx/generic/gridsel.h diff --git a/include/wx/generic/gridsel.h b/include/wx/generic/gridsel.h index b1d4ce3d3d..906fb11996 100644 --- a/include/wx/generic/gridsel.h +++ b/include/wx/generic/gridsel.h @@ -11,12 +11,12 @@ #include "wx/defs.h" -#if defined(wxUSE_NEW_GRID) && (wxUSE_NEW_GRID) +#if wxUSE_GRID #ifndef __WXGRIDSEL_H__ #define __WXGRIDSEL_H__ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(__APPLE__) #pragma interface "gridsel.h" #endif @@ -28,11 +28,27 @@ public: wxGrid::wxGridSelectCells ); bool IsSelection(); bool IsInSelection ( int row, int col ); - 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); + void SetSelectionMode(wxGrid::wxGridSelectionModes selmode); + 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 ); @@ -65,7 +81,12 @@ private: wxGrid *m_grid; wxGrid::wxGridSelectionModes m_selectionMode; + + friend class WXDLLEXPORT wxGrid; + + DECLARE_NO_COPY_CLASS(wxGridSelection) }; #endif // #ifdef __WXGRIDSEL_H__ -#endif // #ifndef wxUSE_NEW_GRID +#endif // #ifndef wxUSE_GRID +