wxhtmlcelleventthis event class is used for the events generated by wxhtmlwindow. derived from
wxcommandevent include files <wx/html/htmlwin.h> event handling to process input from a wxhtmlcellevent, use one of these event handler macros to direct input to member function that take a wxhtmlcellevent argument:
members
wxhtmlcellevent::wxhtmlcellevent
wxhtmlcellevent::wxhtmlcelleventwxhtmlcellevent(wxeventtype commandtype, int id, wxhtmlcell * cell, const wxpoint & point) the constructor is not normally used by the user code.
wxhtmlcellevent::getcellwxhtmlcell * getcell() const returns the wxhtmlcellevent associated with the event.
wxhtmlcellevent::getpointwxpoint getpoint() const returns the wxpoint associated with the event.
wxhtmlcellevent::setlinkclickedbool setlinkclicked(bool linkclicked) call this function with linkclicked set to true if the cell which has been clicked contained a link or false otherwise (which is the default). with this function the event handler can return info to the wxhtmlwindow which sent the event.
wxhtmlcellevent::getlinkclickedbool getlinkclicked() const returns true if setlinkclicked(true) has previously been called; false otherwise.
|