Inheritance diagram for TopView:

Public Member Functions | |
| TopView (const Rect &cFrame, Window *pcWindow) | |
| virtual void | FrameMoved (const Point &cDelta) |
| Virtual hook called by the system when the view is moved within it's parent. | |
| virtual void | FrameSized (const Point &cDelta) |
| Virtual hook called by the system when the view is resized. | |
| virtual void | KeyDown (const char *pzString, const char *pzRawString, uint32 nQualifiers) |
| Hook called by the system when a key is pressed while the view has focus. | |
Public Attributes | |
| bool | m_bKeyDownRejected |
| void TopView::FrameMoved | ( | const Point & | cDelta | ) | [virtual] |
cDelta value from the current position. | cDelta | The distance the view was moved. |
Reimplemented from os::View.
| void TopView::FrameSized | ( | const Point & | cDelta | ) | [virtual] |
cDelta calue from the current size. | cDelta | The distance the bottom/right corner was moved relative to the upper/left corner. |
Reimplemented from os::View.
| void TopView::KeyDown | ( | const char * | pzString, | |
| const char * | pzRawString, | |||
| uint32 | nQualifiers | |||
| ) | [virtual] |
| pzString | String containing a single UTF-8 encoded character. This is the character generated by the pressed key according to the current keymap accounting for any qualifiers that might be pressed. | |
| pzRawString | Same as pzString except that the key is converted without accounting for qualifiers. Ie. if 'A' is pressed while pressing <SHIFT> pzString will contain 'A' and pzRawString will contain 'a'. | |
| nQualifiers | Bitmask describing which qualifiers that was active when the key was pressed. |
Reimplemented from os::View.
1.5.1