Enum compositing::windowing::WindowEvent
source · pub enum WindowEvent {
Show 29 variants
Idle,
Refresh,
Resize,
AllowNavigationResponse(PipelineId, bool),
LoadUrl(TopLevelBrowsingContextId, ServoUrl),
MouseWindowEventClass(MouseWindowEvent),
MouseWindowMoveEventClass(DevicePoint),
Touch(TouchEventType, TouchId, DevicePoint),
Wheel(WheelDelta, DevicePoint),
Scroll(ScrollLocation, DeviceIntPoint, TouchEventType),
Zoom(f32),
PinchZoom(f32),
ResetZoom,
Navigation(TopLevelBrowsingContextId, TraversalDirection),
Quit,
ExitFullScreen(TopLevelBrowsingContextId),
Keyboard(KeyboardEvent),
Reload(TopLevelBrowsingContextId),
NewBrowser(ServoUrl, TopLevelBrowsingContextId),
CloseBrowser(TopLevelBrowsingContextId),
SendError(Option<TopLevelBrowsingContextId>, String),
SelectBrowser(TopLevelBrowsingContextId),
ToggleWebRenderDebug(WebRenderDebugOption),
CaptureWebRender,
ClearCache,
ToggleSamplingProfiler(Duration, Duration),
MediaSessionAction(MediaSessionActionType),
ChangeBrowserVisibility(TopLevelBrowsingContextId, bool),
IMEDismissed,
}
Expand description
Events that the windowing system sends to Servo.
Variants
Idle
Sent when no message has arrived, but the event loop was kicked for some reason (perhaps by another Servo subsystem).
FIXME(pcwalton): This is kind of ugly and may not work well with multiprocess Servo.
It’s possible that this should be something like
CompositorMessageWindowEvent(compositor_thread::Msg)
instead.
Refresh
Sent when part of the window is marked dirty and needs to be redrawn. Before sending this
message, the window must make the same GL context as in PrepareRenderingEvent
current.
Resize
Sent when the window is resized.
Sent when a navigation request from script is allowed/refused.
LoadUrl(TopLevelBrowsingContextId, ServoUrl)
Sent when a new URL is to be loaded.
MouseWindowEventClass(MouseWindowEvent)
Sent when a mouse hit test is to be performed.
MouseWindowMoveEventClass(DevicePoint)
Sent when a mouse move.
Touch(TouchEventType, TouchId, DevicePoint)
Touch event: type, identifier, point
Wheel(WheelDelta, DevicePoint)
Sent when user moves the mouse wheel.
Scroll(ScrollLocation, DeviceIntPoint, TouchEventType)
Sent when the user scrolls. The first point is the delta and the second point is the origin.
Zoom(f32)
Sent when the user zooms.
PinchZoom(f32)
Simulated “pinch zoom” gesture for non-touch platforms (e.g. ctrl-scrollwheel).
ResetZoom
Sent when the user resets zoom to default.
Sent when the user uses chrome navigation (i.e. backspace or shift-backspace).
Quit
Sent when the user quits the application
ExitFullScreen(TopLevelBrowsingContextId)
Sent when the user exits from fullscreen mode
Keyboard(KeyboardEvent)
Sent when a key input state changes
Reload(TopLevelBrowsingContextId)
Sent when Ctr+R/Apple+R is called to reload the current page.
NewBrowser(ServoUrl, TopLevelBrowsingContextId)
Create a new top level browsing context
CloseBrowser(TopLevelBrowsingContextId)
Close a top level browsing context
SendError(Option<TopLevelBrowsingContextId>, String)
Panic a top level browsing context.
SelectBrowser(TopLevelBrowsingContextId)
Make a top level browsing context visible, hiding the previous visible one.
ToggleWebRenderDebug(WebRenderDebugOption)
Toggles a debug flag in WebRender
CaptureWebRender
Capture current WebRender
ClearCache
Clear the network cache.
ToggleSamplingProfiler(Duration, Duration)
Toggle sampling profiler with the given sampling rate and max duration.
MediaSessionAction(MediaSessionActionType)
Sent when the user triggers a media action through the UA exposed media UI (play, pause, seek, etc.).
ChangeBrowserVisibility(TopLevelBrowsingContextId, bool)
Set browser visibility. A hidden browser will not tick the animations.
IMEDismissed
Virtual keyboard was dismissed
Trait Implementations
sourceimpl Clone for WindowEvent
impl Clone for WindowEvent
sourcefn clone(&self) -> WindowEvent
fn clone(&self) -> WindowEvent
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more