[][src]Struct rt_graph::GraphWithControls

pub struct GraphWithControls { /* fields omitted */ }

A GTK widget that contains a graph and controls to navigate it.

If you want a customised graph with your own controls, you might want to try using Graph, which is designed for customisation.

Implementations

impl GraphWithControls[src]

pub fn build_ui<C>(
    config: Config,
    container: &C,
    gdk_window: &Window
) -> GraphWithControls where
    C: IsA<Container> + IsA<Widget>, 
[src]

Build and show a GraphWithControls widget in the target gtk::Container.

pub fn show(&self)[src]

Show the graph and controls.

pub fn hide(&self)[src]

Hide the graph and controls.

Auto Trait Implementations

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<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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>,