Trait gtk::prelude::GtkMenuExt

source ·
pub trait GtkMenuExt: 'static {
Show 50 methods // Required methods fn attach( &self, child: &impl IsA<Widget>, left_attach: u32, right_attach: u32, top_attach: u32, bottom_attach: u32 ); fn detach(&self); fn accel_group(&self) -> Option<AccelGroup>; fn accel_path(&self) -> Option<GString>; fn active(&self) -> Option<Widget>; fn attach_widget(&self) -> Option<Widget>; fn monitor(&self) -> i32; fn must_reserve_toggle_size(&self) -> bool; fn place_on_monitor(&self, monitor: &Monitor); fn popdown(&self); fn popup_at_pointer(&self, trigger_event: Option<&Event>); fn popup_at_rect( &self, rect_window: &Window, rect: &Rectangle, rect_anchor: Gravity, menu_anchor: Gravity, trigger_event: Option<&Event> ); fn popup_at_widget( &self, widget: &impl IsA<Widget>, widget_anchor: Gravity, menu_anchor: Gravity, trigger_event: Option<&Event> ); fn reorder_child(&self, child: &impl IsA<Widget>, position: i32); fn reposition(&self); fn set_accel_group(&self, accel_group: Option<&impl IsA<AccelGroup>>); fn set_accel_path(&self, accel_path: Option<&str>); fn set_active(&self, index: u32); fn set_monitor(&self, monitor_num: i32); fn set_reserve_toggle_size(&self, reserve_toggle_size: bool); fn set_screen(&self, screen: Option<&Screen>); fn anchor_hints(&self) -> AnchorHints; fn set_anchor_hints(&self, anchor_hints: AnchorHints); fn set_attach_widget<P: IsA<Widget>>(&self, attach_widget: Option<&P>); fn menu_type_hint(&self) -> WindowTypeHint; fn set_menu_type_hint(&self, menu_type_hint: WindowTypeHint); fn rect_anchor_dx(&self) -> i32; fn set_rect_anchor_dx(&self, rect_anchor_dx: i32); fn rect_anchor_dy(&self) -> i32; fn set_rect_anchor_dy(&self, rect_anchor_dy: i32); fn item_bottom_attach<T: IsA<MenuItem>>(&self, item: &T) -> i32; fn set_item_bottom_attach<T: IsA<MenuItem>>( &self, item: &T, bottom_attach: i32 ); fn item_left_attach<T: IsA<MenuItem>>(&self, item: &T) -> i32; fn set_item_left_attach<T: IsA<MenuItem>>(&self, item: &T, left_attach: i32); fn item_right_attach<T: IsA<MenuItem>>(&self, item: &T) -> i32; fn set_item_right_attach<T: IsA<MenuItem>>( &self, item: &T, right_attach: i32 ); fn item_top_attach<T: IsA<MenuItem>>(&self, item: &T) -> i32; fn set_item_top_attach<T: IsA<MenuItem>>(&self, item: &T, top_attach: i32); fn connect_move_scroll<F: Fn(&Self, ScrollType) + 'static>( &self, f: F ) -> SignalHandlerId; fn emit_move_scroll(&self, scroll_type: ScrollType); fn connect_accel_group_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_accel_path_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_active_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_anchor_hints_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_attach_widget_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_menu_type_hint_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_monitor_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_rect_anchor_dx_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_rect_anchor_dy_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId; fn connect_reserve_toggle_size_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId;
}

Required Methods§

source

fn attach( &self, child: &impl IsA<Widget>, left_attach: u32, right_attach: u32, top_attach: u32, bottom_attach: u32 )

source

fn detach(&self)

source

fn accel_group(&self) -> Option<AccelGroup>

source

fn accel_path(&self) -> Option<GString>

source

fn active(&self) -> Option<Widget>

source

fn attach_widget(&self) -> Option<Widget>

source

fn monitor(&self) -> i32

source

fn must_reserve_toggle_size(&self) -> bool

source

fn place_on_monitor(&self, monitor: &Monitor)

source

fn popdown(&self)

source

fn popup_at_pointer(&self, trigger_event: Option<&Event>)

source

fn popup_at_rect( &self, rect_window: &Window, rect: &Rectangle, rect_anchor: Gravity, menu_anchor: Gravity, trigger_event: Option<&Event> )

source

fn popup_at_widget( &self, widget: &impl IsA<Widget>, widget_anchor: Gravity, menu_anchor: Gravity, trigger_event: Option<&Event> )

source

fn reorder_child(&self, child: &impl IsA<Widget>, position: i32)

source

fn reposition(&self)

source

fn set_accel_group(&self, accel_group: Option<&impl IsA<AccelGroup>>)

source

fn set_accel_path(&self, accel_path: Option<&str>)

source

fn set_active(&self, index: u32)

source

fn set_monitor(&self, monitor_num: i32)

source

fn set_reserve_toggle_size(&self, reserve_toggle_size: bool)

source

fn set_screen(&self, screen: Option<&Screen>)

source

fn anchor_hints(&self) -> AnchorHints

source

fn set_anchor_hints(&self, anchor_hints: AnchorHints)

source

fn set_attach_widget<P: IsA<Widget>>(&self, attach_widget: Option<&P>)

source

fn menu_type_hint(&self) -> WindowTypeHint

source

fn set_menu_type_hint(&self, menu_type_hint: WindowTypeHint)

source

fn rect_anchor_dx(&self) -> i32

source

fn set_rect_anchor_dx(&self, rect_anchor_dx: i32)

source

fn rect_anchor_dy(&self) -> i32

source

fn set_rect_anchor_dy(&self, rect_anchor_dy: i32)

source

fn item_bottom_attach<T: IsA<MenuItem>>(&self, item: &T) -> i32

source

fn set_item_bottom_attach<T: IsA<MenuItem>>(&self, item: &T, bottom_attach: i32)

source

fn item_left_attach<T: IsA<MenuItem>>(&self, item: &T) -> i32

source

fn set_item_left_attach<T: IsA<MenuItem>>(&self, item: &T, left_attach: i32)

source

fn item_right_attach<T: IsA<MenuItem>>(&self, item: &T) -> i32

source

fn set_item_right_attach<T: IsA<MenuItem>>(&self, item: &T, right_attach: i32)

source

fn item_top_attach<T: IsA<MenuItem>>(&self, item: &T) -> i32

source

fn set_item_top_attach<T: IsA<MenuItem>>(&self, item: &T, top_attach: i32)

source

fn connect_move_scroll<F: Fn(&Self, ScrollType) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn emit_move_scroll(&self, scroll_type: ScrollType)

source

fn connect_accel_group_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_accel_path_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_active_notify<F: Fn(&Self) + 'static>(&self, f: F) -> SignalHandlerId

source

fn connect_anchor_hints_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_attach_widget_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_menu_type_hint_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_monitor_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_rect_anchor_dx_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_rect_anchor_dy_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

source

fn connect_reserve_toggle_size_notify<F: Fn(&Self) + 'static>( &self, f: F ) -> SignalHandlerId

Implementors§

source§

impl<O: IsA<Menu>> GtkMenuExt for O