Trait tk::ext::AddHBox

source ·
pub trait AddHBox {
    // Provided method
    fn add_hbox<Opts, Inst: TkInstance>(
        &self,
        initial_ratio: f64,
        hbox_resize: HBoxResize,
        path_opts: impl Into<PathOptsWidgets<Opts, ()>>
    ) -> InterpResult<HBox<Inst>>
       where Self: Sized + Deref<Target = Widget<Inst>>,
             Opts: IntoHomoTuple<TtkFrameOpt> + IntoHomoTuple<OptPair> { ... }
}

Provided Methods§

source

fn add_hbox<Opts, Inst: TkInstance>( &self, initial_ratio: f64, hbox_resize: HBoxResize, path_opts: impl Into<PathOptsWidgets<Opts, ()>> ) -> InterpResult<HBox<Inst>>where Self: Sized + Deref<Target = Widget<Inst>>, Opts: IntoHomoTuple<TtkFrameOpt> + IntoHomoTuple<OptPair>,

Implementors§

source§

impl<Widg, Inst> AddHBox for Widgwhere Widg: Deref<Target = Widget<Inst>>, Inst: TkInstance,