Struct map_gui::tools::minimap::Minimap[][src]

pub struct Minimap<A: AppLike, T: MinimapControls<A>> {
    controls: T,
    time: Time,
    app_type: PhantomData<A>,
    dragging: bool,
    panel: Panel,
    zoomed: bool,
    layer: bool,
    zoom_lvl: usize,
    base_zoom: f64,
    zoom: f64,
    offset_x: f64,
    offset_y: f64,
}

Fields

controls: Ttime: Timeapp_type: PhantomData<A>dragging: boolpanel: Panelzoomed: boollayer: boolzoom_lvl: usizebase_zoom: f64zoom: f64offset_x: f64offset_y: f64

Implementations

impl<A: AppLike + 'static, T: MinimapControls<A>> Minimap<A, T>[src]

pub fn new(ctx: &mut EventCtx<'_>, app: &A, controls: T) -> Minimap<A, T>[src]

pub fn recreate_panel(&mut self, ctx: &mut EventCtx<'_>, app: &A)[src]

fn map_to_minimap_pct(&self, pt: Pt2D) -> (f64, f64)[src]

pub fn set_zoom(&mut self, ctx: &mut EventCtx<'_>, app: &A, zoom_lvl: usize)[src]

fn recenter(&mut self, ctx: &EventCtx<'_>, app: &A)[src]

pub fn event(
    &mut self,
    ctx: &mut EventCtx<'_>,
    app: &mut A
) -> Option<Transition<A>>
[src]

pub fn draw(&self, g: &mut GfxCtx<'_>, app: &A)[src]

pub fn draw_with_extra_layers(
    &self,
    g: &mut GfxCtx<'_>,
    app: &A,
    extra: Vec<&Drawable>
)
[src]

pub fn get_panel(&self) -> &Panel[src]

pub fn mut_panel(&mut self) -> &mut Panel[src]

Auto Trait Implementations

impl<A, T> !RefUnwindSafe for Minimap<A, T>[src]

impl<A, T> !Send for Minimap<A, T>[src]

impl<A, T> !Sync for Minimap<A, T>[src]

impl<A, T> Unpin for Minimap<A, T> where
    A: Unpin,
    T: Unpin
[src]

impl<A, T> !UnwindSafe for Minimap<A, T>[src]

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> Downcast for T where
    T: Any

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

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,