IRenderHandler Methods |
The IRenderHandler type exposes the following members.
Name | Description | |
---|---|---|
Dispose | Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. (Inherited from IDisposable.) | |
GetScreenInfo |
Called to allow the client to return a ScreenInfo object with appropriate values.
If null is returned then the rectangle from GetViewRect will be used.
If the rectangle is still empty or invalid popups may not be drawn correctly.
| |
GetScreenPoint |
Called to retrieve the translation from view coordinates to actual screen coordinates.
| |
GetViewRect |
Called to retrieve the view rectangle which is relative to screen coordinates.
| |
OnCursorChange |
Called when the browser's cursor has changed. .
| |
OnImeCompositionRangeChanged |
Called when the IME composition range has changed.
| |
OnPaint |
Called when an element should be painted. Pixel values passed to this method are scaled relative to view coordinates based on the
value of [!:ScreenInfo.ScaleFactor] returned from GetScreenInfo.
Called on the CEF UI Thread
| |
OnPopupShow |
Called when the browser wants to show or hide the popup widget.
| |
OnPopupSize |
Called when the browser wants to move or resize the popup widget.
| |
StartDragging |
Called when the user starts dragging content in the web view. Contextual information about the dragged content is
supplied by dragData. (|x|, |y|) is the drag start location in screen coordinates. OS APIs that run a system message
loop may be used within the StartDragging call. Return false to abort the drag operation. Don't call any of
CefBrowserHost::DragSource*Ended* methods after returning false. Return true to handle the drag operation.
Call IBrowserHost::DragSourceEndedAt and DragSourceSystemDragEnded either synchronously or asynchronously to inform
the web view that the drag operation has ended.
| |
UpdateDragCursor |