Struct animate::Settings[][src]

pub struct Settings(_, _);

Implementations

impl Settings[src]

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

The default distance that the cursor of a pointer device should travel before a drag operation should start.

pub fn set_property_dnd_drag_threshold(&self, dnd_drag_threshold: i32)[src]

The default distance that the cursor of a pointer device should travel before a drag operation should start.

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

The maximum distance, in pixels, between button-press events that determines whether or not to increase the click count by 1.

pub fn set_property_double_click_distance(&self, double_click_distance: i32)[src]

The maximum distance, in pixels, between button-press events that determines whether or not to increase the click count by 1.

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

The time, in milliseconds, that should elapse between button-press events in order to increase the click count by 1.

pub fn set_property_double_click_time(&self, double_click_time: i32)[src]

The time, in milliseconds, that should elapse between button-press events in order to increase the click count by 1.

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

Whether or not to use antialiasing when rendering text; a value of 1 enables it unconditionally; a value of 0 disables it unconditionally; and -1 will use the system’s default.

pub fn set_property_font_antialias(&self, font_antialias: i32)[src]

Whether or not to use antialiasing when rendering text; a value of 1 enables it unconditionally; a value of 0 disables it unconditionally; and -1 will use the system’s default.

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

The DPI used when rendering text, as a value of 1024 * dots/inch.

If set to -1, the system’s default will be used instead

pub fn set_property_font_dpi(&self, font_dpi: i32)[src]

The DPI used when rendering text, as a value of 1024 * dots/inch.

If set to -1, the system’s default will be used instead

pub fn get_property_font_hint_style(&self) -> Option<GString>[src]

The style of the hinting used when rendering text. Valid values are:

  • hintnone
  • hintslight
  • hintmedium
  • hintfull

pub fn set_property_font_hint_style(&self, font_hint_style: Option<&str>)[src]

The style of the hinting used when rendering text. Valid values are:

  • hintnone
  • hintslight
  • hintmedium
  • hintfull

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

Whether or not to use hinting when rendering text; a value of 1 unconditionally enables it; a value of 0 unconditionally disables it; and a value of -1 will use the system’s default.

pub fn set_property_font_hinting(&self, font_hinting: i32)[src]

Whether or not to use hinting when rendering text; a value of 1 unconditionally enables it; a value of 0 unconditionally disables it; and a value of -1 will use the system’s default.

pub fn get_property_font_name(&self) -> Option<GString>[src]

The default font name that should be used by text actors, as a string that can be passed to pango::FontDescription::from_string.

pub fn set_property_font_name(&self, font_name: Option<&str>)[src]

The default font name that should be used by text actors, as a string that can be passed to pango::FontDescription::from_string.

pub fn get_property_font_subpixel_order(&self) -> Option<GString>[src]

The type of sub-pixel antialiasing used when rendering text. Valid values are:

  • none
  • rgb
  • bgr
  • vrgb
  • vbgr

pub fn set_property_font_subpixel_order(
    &self,
    font_subpixel_order: Option<&str>
)
[src]

The type of sub-pixel antialiasing used when rendering text. Valid values are:

  • none
  • rgb
  • bgr
  • vrgb
  • vbgr

pub fn set_property_fontconfig_timestamp(&self, fontconfig_timestamp: u32)[src]

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

Sets the minimum duration for a press to be recognized as a long press gesture. The duration is expressed in milliseconds.

See also ClickAction:long-press-duration.

pub fn set_property_long_press_duration(&self, long_press_duration: i32)[src]

Sets the minimum duration for a press to be recognized as a long press gesture. The duration is expressed in milliseconds.

See also ClickAction:long-press-duration.

pub fn get_property_password_hint_time(&self) -> u32[src]

pub fn set_property_password_hint_time(&self, password_hint_time: u32)[src]

pub fn set_property_unscaled_font_dpi(&self, unscaled_font_dpi: i32)[src]

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

pub fn set_property_window_scaling_factor(&self, window_scaling_factor: i32)[src]

pub fn get_default() -> Option<Settings>[src]

Retrieves the singleton instance of Settings

Returns

the instance of Settings. The returned object is owned by internals and it should not be unreferenced directly

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Trait Implementations

impl Clone for Settings[src]

impl Debug for Settings[src]

impl Display for Settings[src]

impl Eq for Settings[src]

impl Hash for Settings[src]

impl Ord for Settings[src]

impl<T: ObjectType> PartialEq<T> for Settings[src]

impl<T: ObjectType> PartialOrd<T> for Settings[src]

impl StaticType for Settings[src]

Auto Trait Implementations

impl RefUnwindSafe for Settings

impl !Send for Settings

impl !Sync for Settings

impl Unpin for Settings

impl UnwindSafe for Settings

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<Super, Sub> CanDowncast<Sub> for Super where
    Sub: IsA<Super>,
    Super: IsA<Super>, 
[src]

impl<T> Cast for T where
    T: ObjectType
[src]

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

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

impl<Fr, To> IntoColor<To> for Fr where
    To: FromColor<Fr>, 
[src]

impl<T> ObjectExt for T where
    T: ObjectType
[src]

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

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToSendValue for T where
    T: SetValue + Send + ToValue + ?Sized
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?Sized
[src]

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>,