Struct relm4_components::open_dialog::OpenDialogModel
source · pub struct OpenDialogModel<Conf> { /* private fields */ }
Expand description
Model of the open dialog component
Implementations§
source§impl<Conf> OpenDialogModel<Conf>
impl<Conf> OpenDialogModel<Conf>
Trait Implementations§
source§impl<ParentModel, Conf> ComponentUpdate<ParentModel> for OpenDialogModel<Conf>where
ParentModel: OpenDialogParent,
<ParentModel as Model>::Widgets: ParentWindow,
Conf: OpenDialogConfig<Model = ParentModel>,
impl<ParentModel, Conf> ComponentUpdate<ParentModel> for OpenDialogModel<Conf>where ParentModel: OpenDialogParent, <ParentModel as Model>::Widgets: ParentWindow, Conf: OpenDialogConfig<Model = ParentModel>,
source§fn init_model(parent_model: &ParentModel) -> Self
fn init_model(parent_model: &ParentModel) -> Self
Initialize the model of the component or worker. Read more
source§fn update(
&mut self,
msg: OpenDialogMsg,
_components: &(),
_sender: Sender<OpenDialogMsg>,
parent_sender: Sender<ParentModel::Msg>
)
fn update( &mut self, msg: OpenDialogMsg, _components: &(), _sender: Sender<OpenDialogMsg>, parent_sender: Sender<ParentModel::Msg> )
Updates the model.
Typically a
match
statement is used to process the message. Read moresource§impl<Conf: Debug> Debug for OpenDialogModel<Conf>
impl<Conf: Debug> Debug for OpenDialogModel<Conf>
source§impl<Conf: OpenDialogConfig> Model for OpenDialogModel<Conf>
impl<Conf: OpenDialogConfig> Model for OpenDialogModel<Conf>
§type Msg = OpenDialogMsg
type Msg = OpenDialogMsg
The message type that defines the messages that can be sent to modify the model.
§type Widgets = OpenDialogWidgets
type Widgets = OpenDialogWidgets
The widgets type that can initialize and update the GUI with the data the model provides. Read more
§type Components = ()
type Components = ()
The components type that initializes the child components of this model. Read more
source§impl<ParentModel, Conf> Widgets<OpenDialogModel<Conf>, ParentModel> for OpenDialogWidgetswhere
ParentModel: Model,
ParentModel::Widgets: ParentWindow,
Conf: OpenDialogConfig,
impl<ParentModel, Conf> Widgets<OpenDialogModel<Conf>, ParentModel> for OpenDialogWidgetswhere ParentModel: Model, ParentModel::Widgets: ParentWindow, Conf: OpenDialogConfig,
source§fn init_view(
model: &OpenDialogModel<Conf>,
components: &<OpenDialogModel<Conf> as Model>::Components,
sender: Sender<<OpenDialogModel<Conf> as Model>::Msg>
) -> Self
fn init_view( model: &OpenDialogModel<Conf>, components: &<OpenDialogModel<Conf> as Model>::Components, sender: Sender<<OpenDialogModel<Conf> as Model>::Msg> ) -> Self
Initialize the UI.
source§fn root_widget(&self) -> Self::Root
fn root_widget(&self) -> Self::Root
Return the root widget.
source§fn view(
&mut self,
model: &OpenDialogModel<Conf>,
sender: Sender<<OpenDialogModel<Conf> as Model>::Msg>
)
fn view( &mut self, model: &OpenDialogModel<Conf>, sender: Sender<<OpenDialogModel<Conf> as Model>::Msg> )
Update the view to represent the updated model.
§type Root = FileChooserNative
type Root = FileChooserNative
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)
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.