#include <w32std.h>
class RDrawableWindow : public RWindowBase, public RWindowBase |
Public Member Functions | |
---|---|
IMPORT_C TRect | GetDrawRect() |
IMPORT_C void | Scroll(const TPoint &) |
IMPORT_C void | Scroll(const TRect &, const TPoint &) |
IMPORT_C void | Scroll(const TPoint &, const TRect &) |
IMPORT_C void | Scroll(const TRect &, const TPoint &, const TRect &) |
Protected Member Functions | |
---|---|
RDrawableWindow() | |
RDrawableWindow(RWsSession &) | |
void | SetDrawRect(const TRect &) |
Inherited Attributes | |
---|---|
MWsClientClass::iBuffer | |
MWsClientClass::iWsHandle |
Inherited Enumerations | |
---|---|
RWindowBase:TCaptureFlags | |
RWindowTreeNode:TFadeControl |
Handle to a drawable window.
This class cannot be constructed directly. The two concrete derived classes, RWindow and RBackedUpWindow, allow drawing but use different protocols because RWindow relies on the client to redraw invalid areas.
RDrawableWindow | ( | ) | [protected] |
Protected default constructor which creates a sessionless, uninitialised drawable-window handle.
Handles to server-side objects must be created in a session in order to be operational; this constructor is merely a convenience to allow the handle to be stored as a data member. See RWindowTreeNode::RWindowTreeNode() for details of how the complete setup of a handle field may be deferred until the window server session is known
RDrawableWindow | ( | RWsSession & | aWs | ) | [protected] |
Protected default constructor which creates an initialised drawable-window handle within a server session.
Parameters | |
---|---|
aWs | Window server session. |
IMPORT_C TRect | GetDrawRect | ( | ) | const |
Obtains the current rectangle being drawn to this window, during a window redraw cycle.
This function can be called between a BeginRedraw() / EndRedraw() pair to obtain the current window redraw reference rectangle.
IMPORT_C void | Scroll | ( | const TPoint & | aOffset | ) |
Scrolls the window contents by an offset.
All parts of an RWindow are either drawn with content copied from another part of the window or are invalidated. Areas are invalidated when the source content of the scroll would be outside the window or obscured behind another window. The areas that are invalidated are not blanked off.
For example, if the window is scrolled towards the right, then there is no content (from outside the window) to move into area on the left hand side. This area is invalidated. Similarly, no content can be scrolled out from under an obscuring window, so the area from beneath the obscuring window is also invalidated.
Note that for an RBackedUpWindow, the contents of areas obscured by other windows are stored. In this case the window contents are scrolled out from "underneath" the obscuring window. In the example above the area on the left was invalidated but for this type of window the area simply contains its old pre-scroll contents.
Parameters | |
---|---|
aOffset | Scroll offset, in pixels. Positive values cause the window contents to move downwards/right. Negative values cause contents to move upwards/left. |
Scrolls the contents of a clip rectangle, independently of the other contents of the window.
This function behaves in exactly the same way as the single parameter overload, except that the scroll region is a clipping rectangle rather than the whole window. All parts of the clipping rectangle are either drawn with content copied from another part of the rectangle or are invalidated.
The RBackedUpWindow behaviour is also similar to the behaviour in the function above.
Parameters | |
---|---|
aClipRect | Rectangle to which scrolling is to be clipped |
aOffset | Scroll offset, in pixels. Positive values cause the window contents to move downwards and right. Negative values cause contents to move upwards and left. |
Scrolls a rectangle within a window.
This function effectively moves the specified rectangle by the given offset with respect to the window. The destination rectangle may overlap and cover the old rectangle.
Note that if the source of this rectangle is an invalid area, ie it is obscured or lies outside the window, then this area in the destination rectangle will be invalidated.
Parameters | |
---|---|
aOffset | Scroll offset, in pixels. Positive values cause the window contents to move downwards and right. Negative values cause contents to move upwards and left. |
aRect | The source rectangle for the scroll. |
Scrolls the contents of a source rectangle within a clipping rectangle.
The source rectangle is effectively copied from one position to another, with both the source and destination clipped to the clipping rectangle. Hence if the source and destination rectangles are inside the clipping region then this function behaves exactly like the Scroll(const TPoint &aOffset, const TRect &aRect) overload. However if the source or destination for the scrolled rectangle intersect the clipping rectangle then the function behaves similarly to the Scroll(const TRect &aClipRect,const TPoint &aOffset) overload, with regards to invalidated regions etc.
Parameters | |
---|---|
aClipRect | Rectangle to which scrolling is to be clipped. |
aOffset | Scroll offset, in pixels. Positive values cause the window contents to move downwards and right. Negative values cause contents to move upwards and left. |
aRect | Source rectangle for the scroll. |
void | SetDrawRect | ( | const TRect & | aRect | ) | [protected] |
Protected system function.
Sets the current redraw reference rectangle that is being drawn. This is called between a BeingRedraw() / EndRedraw() pair by the system.
See also: GetDrawRect()
Parameters | |
---|---|
aRect | Rectangle reference area that is currently being drawn. |