pub struct OpenButtonModel<Conf: OpenButtonConfig + 'static> { /* private fields */ }
Expand description

Model of the open button component

Implementations§

source§

impl<Conf: OpenButtonConfig + 'static> OpenButtonModel<Conf>

source

pub fn track_all() -> u8

Get a bit mask to look for changes on all fields.

source

pub fn mark_all_changed(&mut self)

Mark all fields of the struct as changed.

source

pub fn changed(&self, mask: u8) -> bool

Check for changes made to this struct with a given bitmask.

To receive the bitmask, simply call Type::#field_name() or Type::#track_all();

source

pub fn reset(&mut self)

Resets the tracker value of this struct to mark all fields as unchanged again.

Trait Implementations§

source§

impl<ParentModel, Conf> ComponentUpdate<ParentModel> for OpenButtonModel<Conf>where ParentModel: Model + OpenButtonParent, ParentModel::Widgets: ParentWindow, Conf: OpenButtonConfig<Model = ParentModel>,

source§

fn init_model(parent_model: &ParentModel) -> Self

Initialize the model of the component or worker. Read more
source§

fn update( &mut self, msg: Self::Msg, components: &Self::Components, sender: Sender<Self::Msg>, parent_sender: Sender<ParentModel::Msg> )

Updates the model. Typically a match statement is used to process the message. Read more
source§

impl<Conf> Components<OpenButtonModel<Conf>> for OpenButtonComponents<Conf>where Conf: OpenDialogConfig + OpenButtonConfig,

source§

fn init_components( parent_model: &OpenButtonModel<Conf>, parent_sender: Sender<OpenButtonMsg> ) -> Self

Initialize your components and workers inside this function.
source§

fn connect_parent(&mut self, parent_widgets: &OpenButtonWidgets)

Connect the components to their parent components widgets (to set the parent window for example).
source§

impl<Conf: Debug + OpenButtonConfig + 'static> Debug for OpenButtonModel<Conf>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<Conf: OpenButtonConfig + 'static> Model for OpenButtonModel<Conf>

§

type Msg = OpenButtonMsg

The message type that defines the messages that can be sent to modify the model.
§

type Widgets = OpenButtonWidgets

The widgets type that can initialize and update the GUI with the data the model provides. Read more
§

type Components = OpenButtonComponents<Conf>

The components type that initializes the child components of this model. Read more
source§

impl<Conf: OpenButtonConfig + 'static> OpenDialogParent for OpenButtonModel<Conf>

source§

fn open_msg(path: PathBuf) -> OpenButtonMsg

Tell the open dialog how to response if the user wants to open a file
source§

impl<ParentModel, Conf> Widgets<OpenButtonModel<Conf>, ParentModel> for OpenButtonWidgetswhere ParentModel: Model + OpenButtonParent, ParentModel::Widgets: ParentWindow, Conf: OpenButtonConfig<Model = ParentModel> + OpenDialogConfig<Model = ParentModel>,

source§

fn init_view( model: &OpenButtonModel<Conf>, components: &<OpenButtonModel<Conf> as Model>::Components, sender: Sender<<OpenButtonModel<Conf> as Model>::Msg> ) -> Self

Initialize the UI.

source§

fn root_widget(&self) -> Self::Root

Return the root widget.

source§

fn view( &mut self, model: &OpenButtonModel<Conf>, sender: Sender<<OpenButtonModel<Conf> as Model>::Msg> )

Update the view to represent the updated model.

§

type Root = Box

The root represents the first widget that all other widgets of this app or component are attached to. The root of the main app must be a gtk::ApplicationWindow.
source§

fn connect_parent(&mut self, parent_widgets: &<ParentModel as Model>::Widgets)

Optional method to initialize components. This is only useful if you want to attach the widgets of a component to the widgets of this model.

Auto Trait Implementations§

§

impl<Conf> !RefUnwindSafe for OpenButtonModel<Conf>

§

impl<Conf> !Send for OpenButtonModel<Conf>

§

impl<Conf> !Sync for OpenButtonModel<Conf>

§

impl<Conf> Unpin for OpenButtonModel<Conf>

§

impl<Conf> !UnwindSafe for OpenButtonModel<Conf>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.