X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0c551f1c232840bda79b0b7106b9c11a2773ffaf..284b4c8866ab36694b6ec2a308690bba4db4fed2:/include/wx/generic/gridg.h diff --git a/include/wx/generic/gridg.h b/include/wx/generic/gridg.h index 90bea68db4..943f846508 100644 --- a/include/wx/generic/gridg.h +++ b/include/wx/generic/gridg.h @@ -382,6 +382,13 @@ public: bool m_control; bool m_shift; wxGridCell* m_cell; + + int GetRow() const { return m_row; } + int GetCol() const { return m_col; } + wxPoint GetPosition() const { return wxPoint( m_x, m_y ); } + wxGridCell* GetCell() const { return m_cell; } + bool ControlDown() const { return m_control; } + bool ShiftDown() const { return m_shift; } }; const wxEventType wxEVT_GRID_SELECT_CELL = wxEVT_FIRST + 1575;