Trait gtk::PopoverExt[][src]

pub trait PopoverExt: 'static {
    fn bind_model<'a, 'b, P: IsA<MenuModel> + 'a, Q: Into<Option<&'a P>>, R: Into<Option<&'b str>>>(
        &self,
        model: Q,
        action_namespace: R
    );
fn get_constrain_to(&self) -> PopoverConstraint;
fn get_default_widget(&self) -> Option<Widget>;
fn get_modal(&self) -> bool;
fn get_pointing_to(&self) -> Option<Rectangle>;
fn get_position(&self) -> PositionType;
fn get_relative_to(&self) -> Option<Widget>;
fn get_transitions_enabled(&self) -> bool;
fn popdown(&self);
fn popup(&self);
fn set_constrain_to(&self, constraint: PopoverConstraint);
fn set_default_widget<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        widget: Q
    );
fn set_modal(&self, modal: bool);
fn set_pointing_to(&self, rect: &Rectangle);
fn set_position(&self, position: PositionType);
fn set_relative_to<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(
        &self,
        relative_to: Q
    );
fn set_transitions_enabled(&self, transitions_enabled: bool);
fn connect_closed<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId;
fn connect_property_constrain_to_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_modal_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_pointing_to_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_position_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_relative_to_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId;
fn connect_property_transitions_enabled_notify<F: Fn(&Self) + 'static>(
        &self,
        f: F
    ) -> SignalHandlerId; }

Required methods

fn bind_model<'a, 'b, P: IsA<MenuModel> + 'a, Q: Into<Option<&'a P>>, R: Into<Option<&'b str>>>(
    &self,
    model: Q,
    action_namespace: R
)
[src]

fn get_constrain_to(&self) -> PopoverConstraint[src]

fn get_default_widget(&self) -> Option<Widget>[src]

fn get_modal(&self) -> bool[src]

fn get_pointing_to(&self) -> Option<Rectangle>[src]

fn get_position(&self) -> PositionType[src]

fn get_relative_to(&self) -> Option<Widget>[src]

fn get_transitions_enabled(&self) -> bool[src]

👎 Deprecated

fn popdown(&self)[src]

fn popup(&self)[src]

fn set_constrain_to(&self, constraint: PopoverConstraint)[src]

fn set_default_widget<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(
    &self,
    widget: Q
)
[src]

fn set_modal(&self, modal: bool)[src]

fn set_pointing_to(&self, rect: &Rectangle)[src]

fn set_position(&self, position: PositionType)[src]

fn set_relative_to<'a, P: IsA<Widget> + 'a, Q: Into<Option<&'a P>>>(
    &self,
    relative_to: Q
)
[src]

fn set_transitions_enabled(&self, transitions_enabled: bool)[src]

👎 Deprecated

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

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

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

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

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

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

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

👎 Deprecated
Loading content...

Implementors

impl<O: IsA<Popover>> PopoverExt for O[src]

Loading content...