Struct egui::style::Spacing[][src]

pub struct Spacing {
    pub item_spacing: Vec2,
    pub window_padding: Vec2,
    pub button_padding: Vec2,
    pub indent: f32,
    pub interact_size: Vec2,
    pub slider_width: f32,
    pub text_edit_width: f32,
    pub icon_width: f32,
    pub icon_spacing: f32,
    pub tooltip_width: f32,
}

Fields

item_spacing: Vec2

Horizontal and vertical spacing between widgets

window_padding: Vec2

Horizontal and vertical padding within a window frame.

button_padding: Vec2

Button size is text size plus this on each side

indent: f32

Indent collapsing regions etc by this much.

interact_size: Vec2

Minimum size of e.g. a button (including padding). interact_size.y is the default height of button, slider, etc. Anything clickable should be (at least) this size.

slider_width: f32

Default width of a Slider and ComboBox.

text_edit_width: f32

Default width of a TextEdit.

icon_width: f32

Checkboxes, radio button and collapsing headers have an icon at the start. This is the width/height of this icon.

icon_spacing: f32

Checkboxes, radio button and collapsing headers have an icon at the start. This is the spacing between the icon and the text

tooltip_width: f32

Width of a tooltip (on_hover_ui, on_hover_text etc).

Implementations

impl Spacing[src]

pub fn icon_rectangles(&self, rect: Rect) -> (Rect, Rect)[src]

Returns small icon rectangle and big icon rectangle

impl Spacing[src]

pub fn ui(&mut self, ui: &mut Ui)[src]

Trait Implementations

impl Clone for Spacing[src]

impl Debug for Spacing[src]

impl Default for Spacing[src]

impl PartialEq<Spacing> for Spacing[src]

impl StructuralPartialEq for Spacing[src]

Auto Trait Implementations

impl RefUnwindSafe for Spacing

impl Send for Spacing

impl Sync for Spacing

impl Unpin for Spacing

impl UnwindSafe for Spacing

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.