Trait ux::TextureExt[][src]

pub trait TextureExt: 'static {
Show methods pub fn get_property_disable_slicing(&self) -> bool;
pub fn get_property_keep_aspect_ratio(&self) -> bool;
pub fn set_property_keep_aspect_ratio(&self, keep_aspect_ratio: bool);
pub fn get_property_pick_with_alpha(&self) -> bool;
pub fn set_property_pick_with_alpha(&self, pick_with_alpha: bool);
pub fn get_property_pixel_format(&self) -> PixelFormat;
pub fn get_property_repeat_x(&self) -> bool;
pub fn set_property_repeat_x(&self, repeat_x: bool);
pub fn get_property_repeat_y(&self) -> bool;
pub fn set_property_repeat_y(&self, repeat_y: bool);
pub fn get_property_sync_size(&self) -> bool;
pub fn set_property_sync_size(&self, sync_size: bool);
pub fn get_property_tile_waste(&self) -> i32;
pub fn connect_property_filter_quality_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_keep_aspect_ratio_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_pick_with_alpha_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_pixel_format_notify<F>(
        &self,
        f: F
    ) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_repeat_x_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_repeat_y_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_sync_size_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
pub fn connect_property_tile_waste_notify<F>(&self, f: F) -> SignalHandlerId
    where
        F: 'static + Fn(&Self)
;
}

Trait containing all Texture methods.

Implementors

Texture

Required methods

pub fn get_property_disable_slicing(&self) -> bool[src]

pub fn get_property_keep_aspect_ratio(&self) -> bool[src]

pub fn set_property_keep_aspect_ratio(&self, keep_aspect_ratio: bool)[src]

pub fn get_property_pick_with_alpha(&self) -> bool[src]

pub fn set_property_pick_with_alpha(&self, pick_with_alpha: bool)[src]

pub fn get_property_pixel_format(&self) -> PixelFormat[src]

pub fn get_property_repeat_x(&self) -> bool[src]

pub fn set_property_repeat_x(&self, repeat_x: bool)[src]

pub fn get_property_repeat_y(&self) -> bool[src]

pub fn set_property_repeat_y(&self, repeat_y: bool)[src]

pub fn get_property_sync_size(&self) -> bool[src]

pub fn set_property_sync_size(&self, sync_size: bool)[src]

pub fn get_property_tile_waste(&self) -> i32[src]

pub fn connect_property_filter_quality_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_keep_aspect_ratio_notify<F>(
    &self,
    f: F
) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_pick_with_alpha_notify<F>(
    &self,
    f: F
) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_pixel_format_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_repeat_x_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_repeat_y_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_sync_size_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

pub fn connect_property_tile_waste_notify<F>(&self, f: F) -> SignalHandlerId where
    F: 'static + Fn(&Self), 
[src]

Loading content...

Implementors

impl<O> TextureExt for O where
    O: IsA<Texture>, 
[src]

Loading content...