Skip to main content

ReposeRuntime

Struct ReposeRuntime 

Source
pub struct ReposeRuntime {
Show 18 fields pub sched: Scheduler, pub scale: f32, pub modifiers: Modifiers, pub mouse_pos_px: (f32, f32), pub pointer_inside: bool, pub hover_id: Option<u64>, pub hover_ancestors: HashSet<u64>, pub capture_id: Option<u64>, pub hit_path: Option<Vec<u64>>, pub scroll_capture_id: Option<u64>, pub pressed_ids: HashSet<u64>, pub ime_preedit: bool, pub key_pressed_active: Option<u64>, pub last_focus: Option<u64>, pub frame_cache: Option<Frame>, pub textfield_states: HashMap<u64, Rc<RefCell<TextFieldState>>>, pub gamepads: HashMap<u32, GamepadPad>, pub pending_rumble: Vec<(u32, f32, f32, u32)>, /* private fields */
}
Expand description

Embeddable Repose runtime.

Manages composition scheduling, input routing, text-field state, and pointer/key dispatch. The host owns the event loop and GPU device. This is purely the UI logic layer.

Fields§

§sched: Scheduler§scale: f32§modifiers: Modifiers§mouse_pos_px: (f32, f32)§pointer_inside: bool

Whether the pointer is currently inside the window.

§hover_id: Option<u64>§hover_ancestors: HashSet<u64>§capture_id: Option<u64>§hit_path: Option<Vec<u64>>

Hit path captured at pointer-down: every region under the pointer, ordered bottom-up (deepest child first, ancestors last).

§scroll_capture_id: Option<u64>

Which scroll consumer currently owns the wheel gesture.

§pressed_ids: HashSet<u64>§ime_preedit: bool§key_pressed_active: Option<u64>§last_focus: Option<u64>§frame_cache: Option<Frame>§textfield_states: HashMap<u64, Rc<RefCell<TextFieldState>>>§gamepads: HashMap<u32, GamepadPad>

Connected gamepads by backend id: display name plus live button/axis state. Fed by ReposeRuntime::handle_gamepad.

§pending_rumble: Vec<(u32, f32, f32, u32)>

Queued dual-motor rumble requests.

Implementations§

Source§

impl ReposeRuntime

Source

pub fn new() -> Self

Source

pub fn set_viewport(&mut self, width_px: u32, height_px: u32)

Set the logical viewport size (in device pixels).

Source

pub fn set_viewport_and_scale( &mut self, width_px: u32, height_px: u32, scale: f32, )

Set viewport size and DPI scale factor.

Source

pub fn tick_animations(&self)

Advance animations. Call before compose each frame.

Source

pub fn poll_gesture_timers(&mut self)

Source

pub fn compose<F>( &mut self, root_fn: &mut F, render_ctx: &RenderContext, ) -> Frame
where F: FnMut(&mut Scheduler, &RenderContext) -> View,

Compose and layout a frame, returning the output for rendering.

Call tick_animations before this and cache_frame after (once you have applied any host-specific overlays like the devtools inspector).

Source

pub fn frame( &mut self, root_fn: impl FnMut(&mut Scheduler, &RenderContext) -> View, render_ctx: &RenderContext, ) -> FrameOutput

Compose a frame and return structured output for the host.

Source

pub fn cache_frame(&mut self, frame: Frame)

Store the composed frame for event hit testing.

Source

pub fn after_compose(&mut self, frame: &Frame, scale: f32)

Post-compose host-agnostic bookkeeping. this lazy-initializes text-field state for focus-requester paths, reconciles hover against the new hit list, and publishes the frame to the DnD registry. Replaces platform-local copies of this logic.

Source

pub fn ensure_focused_textfield_state(&mut self)

Lazy-init the focused textfield’s persistent state (FocusRequester paths don’t create it until first click). Resets the caret blink.

Source

pub fn cache_from_output(&mut self, out: &FrameOutput)

Cache a composed FrameOutput for hit-testing: rebuilds the retained hover-leave map, reconciles hover, lazy-initializes focused textfield state, and publishes the DnD frame/scale to the input registry.

Source

pub fn compose_frame_output<F>( &mut self, root: &mut F, render_ctx: &RenderContext, ) -> FrameOutput
where F: FnMut(&mut Scheduler, &RenderContext) -> View,

One-shot host tick: advance animations, compose a frame, and publish the result (hover reconciliation, focused textfield lazy-init, DnD frame/scale) in a single call.

Source

pub fn handle_pointer_move(&mut self, pos: Vec2) -> PointerMoveResult

Process a pointer-move event. Returns cursor suggestion.

Source

pub fn handle_pointer_press( &mut self, pos: Vec2, button: PointerButton, ) -> PointerButtonResult

Process a pointer button press. Returns focus/capture info.

Source

pub fn handle_pointer_release( &mut self, pos: Vec2, button: PointerButton, ) -> PointerButtonResult

Process a pointer button release.

Source

pub fn handle_pointer_cancel(&mut self)

Cancel pointer state (focus lost, cursor left window, etc.).

Source

pub fn clear_hover(&mut self)

Clear hover state, emitting HoverLeave for the currently hovered region.

Source

pub fn reconcile_hover_from_mouse_pos(&mut self, new_frame: &Frame)

Reconcile hover state when the composed frame changes.

Source

pub fn handle_scroll(&mut self, delta: Vec2) -> bool

Process a scroll event. Returns true if consumed.

Source

pub fn handle_key(&mut self, event: &KeyEvent) -> bool

Process a keyboard key event. Returns true if consumed.

Source

pub fn dispatch_action(&mut self, action: Action) -> bool

Dispatch a shortcut action: widget handler first, then built-in textfield editing, then the global shortcut map, then focus navigation. Returns true if the action was consumed.

Source

pub fn handle_ime(&mut self, event: &ImeEvent)

Process an IME event.

Source

pub fn handle_focus_lost(&mut self)

Handle focus lost (window unfocused, etc.).

Source

pub fn ensure_textfield_state( &mut self, key: u64, ) -> Rc<RefCell<TextFieldState>>

Get or create a text field state by its key.

Source

pub fn ensure_textfield_state_seeded( &mut self, key: u64, seed: &str, ) -> Rc<RefCell<TextFieldState>>

Source

pub fn tf_key_of(&self, visual_id: u64) -> u64

Look up the persistent state key for a visual hit-region id.

Source

pub fn is_textfield(&self, id: u64) -> bool

True if the given id belongs to a TextField.

Source

pub fn is_multiline(&self, id: u64) -> bool

True if the given textfield id is multiline.

Source

pub fn focused_keyboard_hints( &self, ) -> (ImePurposeHint, bool, KeyboardCapitalization)

Keyboard hints of the currently focused text field, or defaults if none. Returns (purpose, auto_correct, capitalization) for the platform runner.

Source

pub fn insert_text_into_focused(&mut self, text: &str) -> bool

Insert arbitrary text into the focused text field (composed keyboard text, clipboard paste, hardware-keyboard fallback, …). Returns true if text was inserted.

Control chars are filtered. Newlines are dropped for single-line fields. Skipped during IME preedit.

Source

pub fn insert_text(&mut self, text: &str) -> bool

Insert plain text into the focused textfield (winit key_event.text, Android soft-keyboard text, web paste). Alias for Self::insert_text_into_focused.

Source

pub fn paste_into_focused(&mut self, text: &str)

Insert text into a focused text field (used for paste). Uses an atomic (non-mergeable) edit so Ctrl+V doesn’t merge with adjacent typing.

Source

pub fn handle_gamepad(&mut self, event: &GamepadEvent) -> bool

Process a gamepad event: mirror connection/button/axis state into ReposeRuntime::gamepads. Sticks, shoulders and face extras stay raw gameplay input for the game to read from ReposeRuntime::gamepads.

Returns true when the event drove UI navigation.

Source

pub fn request_rumble( &mut self, id: GamepadId, low_freq: f32, high_freq: f32, duration_ms: u32, )

Queue a dual-motor rumble for id (SDL-style: low = strong motor, high = weak motor, 0.0..=1.0, duration_ms). The platform runner drains the queue each frame into GamepadBackend::set_rumble. A duration_ms of 0 stops. No-op when the pad is unknown.

Source

pub fn stop_rumble(&mut self, id: GamepadId)

Queue a rumble stop for id.

Source

pub fn take_rumble_requests(&mut self) -> Vec<(u32, f32, f32, u32)>

Drain queued rumble requests (platform runners call this after poll).

Source

pub fn handle_key_with_text( &mut self, event: &KeyEvent, composed_text: Option<&str>, ) -> bool

Process a key event with an optional host-composed text payload (winit key_event.text, Android soft-keyboard text, …).

When the modifiers are free of Ctrl/Alt/Meta and the payload is Printable text goes to the focused field first. Otherwise falls through to handle_key.

Source

pub fn handle_scroll_at( &mut self, pos: Vec2, delta: Vec2, scroll_capture: Option<u64>, ) -> (bool, Option<u64>)

Process a scroll event at an explicit position, honoring a caller-owned scroll capture id (touch gestures initialize the capture themselves). Returns (consumed, updated_capture_id).

Source

pub fn next_wakeup_deadline(&self) -> Option<Instant>

Centralized wakeup helper for platform runners (caret, snackbar, timers, etc.). Debounced entries live on the shared timer queue, so timer covers them.

Source

pub fn is_wakeup_due(&self, now: Instant) -> bool

Whether a scheduled wakeup is due at now (deadline <= now).

Whether a caret blink edge is due at now (deadline <= now). Deprecated: use is_wakeup_due.

Source

pub fn next_frame_deadline(&self, now: Instant, idle_cap: Duration) -> Instant

Desktop-style deadline with idle keep-alive fallback. idle_cap is the maximum time the host should sleep without a scheduled wakeup (e.g. 1s on desktop to handle tray Deeplinks).

Source

pub fn tick_overlays(&self)

Tick host-facing overlays (snackbar timeouts) and timers (including debounced entries, which live on the shared timer queue). Call once per redraw.

Source

pub fn cursor_suggestion(&self) -> Option<CursorIcon>

Get the cursor suggestion (set during pointer-move handling).

Source

pub fn take_cursor_suggestion(&mut self) -> Option<CursorIcon>

Take the cursor suggestion (clears it).

Trait Implementations§

Source§

impl Default for ReposeRuntime

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.