This event class is used for the events generated by HtmlWindow.
To process HtmlCellEvents, use one of these event handler methods to direct the event to a block that takes a HtmlCellEvent argument:
| evt_html_cell_hover(id) { | event | ... } | User moved the mouse over a HtmlCell. |
| evt_html_cell_clicked(id) { | event | ... } | User clicked on a HtmlCell. When handling this event, remember to use HtmlCell::SetLinkClicked if the cell contains a link. |
HtmlCellEvent.new(EventType commandType, Integer id,
HtmlCell cell,
Point point)
The constructor is not normally used by the user code.
HtmlCell get_cell()
Returns the HtmlCellEvent associated with the event.
Point get_point()
Returns the Point associated with the event.
Boolean set_link_clicked(Boolean linkclicked)
Call this function with linkclicked set to if the cell which has been clicked contained a link or
otherwise (which is the default). With this function the event handler can return info to the
HtmlWindow which sent the event.
Boolean get_link_clicked()
Returns if set_link_clicked) has previously been called; otherwise.
[This page automatically generated from the Textile source at Thu Aug 28 20:29:11 +0100 2008]