Class
WPEPlatformView
Instance methods
wpe_view_buffer_released
Emit WPEView::buffer-released
signal to notify that buffer
is no longer used and
can be destroyed or reused.
wpe_view_buffer_rendered
Emit WPEView::buffer-rendered
signal to notify that buffer
has been rendered.
wpe_view_get_mapped
Get whether view
is mapped. A WPEView
isa mapped if
WPEView:visible
is TRUE
and it’s not hidden for other
reasons, like for example when its toplevel is minimized.
You can connect to notify::mapped signal of view
to
monitor the visibility.
wpe_view_get_visible
Get the visibility of view
.
This might return TRUE
even if the view is not mapped,
for example when it’s minimized.
wpe_view_lock_pointer
Disable the movements of the pointer in view
, locking it to a particular
area; while the pointer is locked, mouse events are relative instead of
absolute motions.
wpe_view_map
Make view
to be mapped. If WPEView:visible
is TRUE
and
the view can be shown (determined by WPEViewClass::can_be_mapped
)
WPEView:mapped
will be set to TRUE
.
wpe_view_render_buffer
Render the given buffer
into view
.
If this function returns TRUE
you must call wpe_view_buffer_rendered()
when the buffer
is rendered and wpe_view_buffer_released()
when it’s no longer used by the view.
wpe_view_set_cursor_from_bytes
Set the view
cursor from the given bytes
. Pixel format must be WPE_PIXEL_FORMAT_ARGB8888
.
wpe_view_set_gesture_controller
Set controller
as WPEGestureController
of view
.
When supplied with NULL
, the default WPEGestureController
will be removed
and thus default gesture handling will be disabled for the view
.
wpe_view_set_opaque_rectangles
Set the rectangles of view
that contain opaque content.
This is an optimization hint that is automatically set by WebKit when the
web view background color is opaque.
wpe_view_set_toplevel
Set the current toplevel of view
.
If toplevel
has already reached the maximum number of views (see wpe_toplevel_get_max_views())
this function does nothing.
wpe_view_unmap
Make view
to be unmapped. This always sets the WPEView:mapped
property to FALSE
and the view
is considered to be hidden even
if WPEView:visible
is TRUE
.
Properties
WPEPlatform.View:mapped
Whether the view is mapped or not. A view is mapped when WPEView:visible
is TRUE
and it’s not hidden for other reasons, like for example when its
toplevel is minimized. This is a readonly property that can be used to
monitor when a WPEView
is shown or hidden.
WPEPlatform.View:visible
Whether the view should be visible or not. This property
can be used to show or hide a view, but setting to TRUE
(which
is the default) doesn’t mean it will always be shown, because
the visbility also depends on the status of its toplevel (for
example if the toplevel is minimized the view will be hidden).
To know whether the view is actually visible, you can check
WPEView:mapped
property.
Signals
WPEPlatform.View::buffer-released
Emitted to notify that the buffer is no longer used by the view and can be destroyed or reused.
WPEPlatform.View::preferred-dma-buf-formats-changed
Emitted when the list of preferred DMA-BUF formats has changed.
This can happen whe the view
becomes a candidate for scanout.
Signals inherited from GObject (1)
GObject::notify
The notify signal is emitted on an object when one of its properties has its value set through g_object_set_property(), g_object_set(), et al.
Class structure
struct WPEPlatformViewClass {
GObjectClass parent_class;
gboolean (* render_buffer) (
WPEView* view,
WPEBuffer* buffer,
const WPERectangle* damage_rects,
guint n_damage_rects,
GError** error
);
gboolean (* lock_pointer) (
WPEView* view
);
gboolean (* unlock_pointer) (
WPEView* view
);
void (* set_cursor_from_name) (
WPEView* view,
const char* name
);
void (* set_cursor_from_bytes) (
WPEView* view,
GBytes* bytes,
guint width,
guint height,
guint stride,
guint hotspot_x,
guint hotspot_y
);
void (* set_opaque_rectangles) (
WPEView* view,
WPERectangle* rects,
guint n_rects
);
gboolean (* can_be_mapped) (
WPEView* view
);
None padding;
}
Class members
parent_class: GObjectClass
- No description available.
render_buffer: gboolean (* render_buffer) ( WPEView* view, WPEBuffer* buffer, const WPERectangle* damage_rects, guint n_damage_rects, GError** error )
- No description available.
lock_pointer: gboolean (* lock_pointer) ( WPEView* view )
- No description available.
unlock_pointer: gboolean (* unlock_pointer) ( WPEView* view )
- No description available.
set_cursor_from_name: void (* set_cursor_from_name) ( WPEView* view, const char* name )
- No description available.
set_cursor_from_bytes: void (* set_cursor_from_bytes) ( WPEView* view, GBytes* bytes, guint width, guint height, guint stride, guint hotspot_x, guint hotspot_y )
- No description available.
set_opaque_rectangles: void (* set_opaque_rectangles) ( WPEView* view, WPERectangle* rects, guint n_rects )
- No description available.
can_be_mapped: gboolean (* can_be_mapped) ( WPEView* view )
- No description available.
padding: None
- No description available.
Virtual methods
WPEPlatform.ViewClass.lock_pointer
Disable the movements of the pointer in view
, locking it to a particular
area; while the pointer is locked, mouse events are relative instead of
absolute motions.
WPEPlatform.ViewClass.render_buffer
Render the given buffer
into view
.
If this function returns TRUE
you must call wpe_view_buffer_rendered()
when the buffer
is rendered and wpe_view_buffer_released()
when it’s no longer used by the view.
WPEPlatform.ViewClass.set_cursor_from_bytes
Set the view
cursor from the given bytes
. Pixel format must be WPE_PIXEL_FORMAT_ARGB8888
.
WPEPlatform.ViewClass.set_cursor_from_name
Set the view
cursor by looking up name
in the current cursor theme.
WPEPlatform.ViewClass.set_opaque_rectangles
Set the rectangles of view
that contain opaque content.
This is an optimization hint that is automatically set by WebKit when the
web view background color is opaque.