Version: 2.9.4
Public Member Functions
wxGridEvent Class Reference

#include </home/zeitlin/src/wx/github/interface/wx/grid.h>

Inheritance diagram for wxGridEvent:

Detailed Description

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.

Events using this class

The following event handler macros redirect the events to member function handlers 'func' with prototypes like:

void handlerFuncName(wxGridEvent& event)

Event macros:

Library:  wxAdvanced
Category:  Grid Related Classes, Events

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.

List of all members.


Constructor & Destructor Documentation

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.


Member Function Documentation

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.

 All Classes Files Functions Variables Typedefs Enumerations Enumerator Friends Defines