#include </home/zeitlin/src/wx/github/interface/wx/grid.h>
This event class contains information about various grid events.
Notice that all grid event table macros are available in two versions: EVT_GRID_XXX
and EVT_GRID_CMD_XXX
. The only difference between the two is that the former doesn't allow to specify the grid window identifier and so takes a single parameter, the event handler, but is not suitable if there is more than one grid control in the window where the event table is used (as it would catch the events from all the grids). The version with CMD
takes the id as first argument and the event handler as the second one and so can be used with multiple grids as well. Otherwise there are no difference between the two and only the versions without the id are documented below for brevity.
The following event handler macros redirect the events to member function handlers 'func' with prototypes like:
Event macros:
wxEVT_GRID_CELL_CHANGING
event type. wxEVT_GRID_CELL_CHANGED
event type. wxEVT_GRID_CELL_LEFT_CLICK
event type. wxEVT_GRID_CELL_LEFT_DCLICK
event type. wxEVT_GRID_CELL_RIGHT_CLICK
event type. wxEVT_GRID_CELL_RIGHT_DCLICK
event type. wxEVT_GRID_EDITOR_HIDDEN
event type. wxEVT_GRID_EDITOR_SHOWN
event type. wxEVT_GRID_LABEL_LEFT_CLICK
event type. wxEVT_GRID_LABEL_LEFT_DCLICK
event type. wxEVT_GRID_LABEL_RIGHT_CLICK
event type. wxEVT_GRID_LABEL_RIGHT_DCLICK
event type. wxEVT_GRID_SELECT_CELL
event type. wxEVT_GRID_COL_MOVE
event type. wxEVT_GRID_COL_SORT
event type. Public Member Functions | |
wxGridEvent () | |
Default constructor. | |
wxGridEvent (int id, wxEventType type, wxObject *obj, int row=-1, int col=-1, int x=-1, int y=-1, bool sel=true, const wxKeyboardState &kbd=wxKeyboardState()) | |
Constructor for initializing all event attributes. | |
bool | AltDown () const |
Returns true if the Alt key was down at the time of the event. | |
bool | ControlDown () const |
Returns true if the Control key was down at the time of the event. | |
virtual int | GetCol () |
Column at which the event occurred. | |
wxPoint | GetPosition () |
Position in pixels at which the event occurred. | |
virtual int | GetRow () |
Row at which the event occurred. | |
bool | MetaDown () const |
Returns true if the Meta key was down at the time of the event. | |
bool | Selecting () |
Returns true if the user is selecting grid cells, or false if deselecting. | |
bool | ShiftDown () const |
Returns true if the Shift key was down at the time of the event. |
wxGridEvent::wxGridEvent | ( | ) |
Default constructor.
wxGridEvent::wxGridEvent | ( | int | id, |
wxEventType | type, | ||
wxObject * | obj, | ||
int | row = -1 , |
||
int | col = -1 , |
||
int | x = -1 , |
||
int | y = -1 , |
||
bool | sel = true , |
||
const wxKeyboardState & | kbd = wxKeyboardState() |
||
) |
Constructor for initializing all event attributes.
bool wxGridEvent::AltDown | ( | ) | const |
Returns true if the Alt key was down at the time of the event.
bool wxGridEvent::ControlDown | ( | ) | const |
Returns true if the Control key was down at the time of the event.
virtual int wxGridEvent::GetCol | ( | ) | [virtual] |
Column at which the event occurred.
Notice that for a wxEVT_GRID_SELECT_CELL
event this column is the column of the newly selected cell while the previously selected cell can be retrieved using wxGrid::GetGridCursorCol().
wxPoint wxGridEvent::GetPosition | ( | ) |
Position in pixels at which the event occurred.
virtual int wxGridEvent::GetRow | ( | ) | [virtual] |
Row at which the event occurred.
Notice that for a wxEVT_GRID_SELECT_CELL
event this row is the row of the newly selected cell while the previously selected cell can be retrieved using wxGrid::GetGridCursorRow().
bool wxGridEvent::MetaDown | ( | ) | const |
Returns true if the Meta key was down at the time of the event.
bool wxGridEvent::Selecting | ( | ) |
Returns true if the user is selecting grid cells, or false if deselecting.
bool wxGridEvent::ShiftDown | ( | ) | const |
Returns true if the Shift key was down at the time of the event.