Struct arcdps_imgui::ChildWindow
source · pub struct ChildWindow<'a> { /* private fields */ }
Expand description
Builder for a child window
Implementations§
source§impl<'a> ChildWindow<'a>
impl<'a> ChildWindow<'a>
sourcepub fn new<T: Into<Id<'a>>>(id: T) -> ChildWindow<'a>
pub fn new<T: Into<Id<'a>>>(id: T) -> ChildWindow<'a>
Creates a new child window builder with the given ID
sourcepub fn flags(self, flags: WindowFlags) -> Self
pub fn flags(self, flags: WindowFlags) -> Self
Replace current window flags with the given value
sourcepub fn size(self, size: [f32; 2]) -> Self
pub fn size(self, size: [f32; 2]) -> Self
Sets the child window size.
For each independent axis of size:
> 0.0
: fixed size= 0.0
: use remaining host window size< 0.0
: use remaining host window size minus abs(size)
sourcepub fn content_size(self, size: [f32; 2]) -> Self
pub fn content_size(self, size: [f32; 2]) -> Self
Sets the window content size, which can be used to enforce scrollbars.
Does not include window decorations (title bar, menu bar, etc.). Set one of the values to 0.0 to leave the size automatic.
sourcepub fn focused(self, focused: bool) -> Self
pub fn focused(self, focused: bool) -> Self
Sets the window focused state, which can be used to bring the window to front
sourcepub fn bg_alpha(self, bg_alpha: f32) -> Self
pub fn bg_alpha(self, bg_alpha: f32) -> Self
Sets the background color alpha value.
See also draw_background
sourcepub fn border(self, border: bool) -> Self
pub fn border(self, border: bool) -> Self
Enables/disables the child window border.
Disabled by default.
sourcepub fn movable(self, value: bool) -> Self
pub fn movable(self, value: bool) -> Self
Enables/disables moving the window when child window is dragged.
Enabled by default.
sourcepub fn scroll_bar(self, value: bool) -> Self
pub fn scroll_bar(self, value: bool) -> Self
Enables/disables scrollbars (scrolling is still possible with the mouse or programmatically).
Enabled by default.
sourcepub fn scrollable(self, value: bool) -> Self
pub fn scrollable(self, value: bool) -> Self
Enables/disables vertical scrolling with the mouse wheel.
Enabled by default.
When enabled, child windows forward the mouse wheel to the parent unless NO_SCROLLBAR
is also set.
sourcepub fn always_auto_resize(self, value: bool) -> Self
pub fn always_auto_resize(self, value: bool) -> Self
Enables/disables resizing the window to its content on every frame.
Disabled by default.
sourcepub fn draw_background(self, value: bool) -> Self
pub fn draw_background(self, value: bool) -> Self
Enables/disables drawing of background color and outside border.
Enabled by default.
sourcepub fn mouse_inputs(self, value: bool) -> Self
pub fn mouse_inputs(self, value: bool) -> Self
Enables/disables catching mouse input.
Enabled by default. Note: Hovering test will pass through when disabled
Enables/disables the menu bar.
Disabled by default.
sourcepub fn horizontal_scrollbar(self, value: bool) -> Self
pub fn horizontal_scrollbar(self, value: bool) -> Self
Enables/disables the horizontal scrollbar.
Disabled by default.
sourcepub fn focus_on_appearing(self, value: bool) -> Self
pub fn focus_on_appearing(self, value: bool) -> Self
Enables/disables taking focus when transitioning from hidden to visible state.
Enabled by default.
sourcepub fn bring_to_front_on_focus(self, value: bool) -> Self
pub fn bring_to_front_on_focus(self, value: bool) -> Self
Enables/disables bringing the window to front when taking focus (e.g. clicking it or programmatically giving it focus).
Enabled by default.
sourcepub fn always_vertical_scrollbar(self, value: bool) -> Self
pub fn always_vertical_scrollbar(self, value: bool) -> Self
When enabled, forces the vertical scrollbar to render regardless of the content size.
Disabled by default.
sourcepub fn always_horizontal_scrollbar(self, value: bool) -> Self
pub fn always_horizontal_scrollbar(self, value: bool) -> Self
When enabled, forces the horizontal scrollbar to render regardless of the content size.
Disabled by default.
sourcepub fn always_use_window_padding(self, value: bool) -> Self
pub fn always_use_window_padding(self, value: bool) -> Self
When enabled, ensures child windows without border use style.window_padding
.
Disabled by default.
Enables/disables gamepad/keyboard navigation within the window.
Enabled by default.
Enables/disables focusing toward this window with gamepad/keyboard navigation (e.g. CTRL+TAB).
Enabled by default.
Disable gamepad/keyboard navigation and focusing.
Shorthand for
.nav_inputs(false)
.nav_focus(false)
sourcepub fn no_inputs(self) -> Self
pub fn no_inputs(self) -> Self
Don’t handle input.
Shorthand for
.mouse_inputs(false)
.nav_inputs(false)
.nav_focus(false)
sourcepub fn begin<'ui>(self, ui: &Ui<'ui>) -> Option<ChildWindowToken<'ui>>
pub fn begin<'ui>(self, ui: &Ui<'ui>) -> Option<ChildWindowToken<'ui>>
Creates a child window and starts append to it.
Returns Some(ChildWindowToken)
if the window is visible. After content has been
rendered, the token must be ended by calling .end()
.
Returns None
if the window is not visible and no content should be rendered.
sourcepub fn build<T, F: FnOnce() -> T>(self, ui: &Ui<'_>, f: F) -> Option<T>
pub fn build<T, F: FnOnce() -> T>(self, ui: &Ui<'_>, f: F) -> Option<T>
Creates a child window and runs a closure to construct the contents. Returns the result of the closure, if it is called.
Note: the closure is not called if no window content is visible (e.g. window is collapsed or fully clipped).
Trait Implementations§
source§impl<'a> Clone for ChildWindow<'a>
impl<'a> Clone for ChildWindow<'a>
source§fn clone(&self) -> ChildWindow<'a>
fn clone(&self) -> ChildWindow<'a>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'a> Debug for ChildWindow<'a>
impl<'a> Debug for ChildWindow<'a>
impl<'a> Copy for ChildWindow<'a>
Auto Trait Implementations§
impl<'a> Freeze for ChildWindow<'a>
impl<'a> RefUnwindSafe for ChildWindow<'a>
impl<'a> !Send for ChildWindow<'a>
impl<'a> !Sync for ChildWindow<'a>
impl<'a> Unpin for ChildWindow<'a>
impl<'a> UnwindSafe for ChildWindow<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)