pub trait ApplicationImplExt: Sealed + ObjectSubclass {
    // Provided methods
    fn parent_activate(&self) { ... }
    fn parent_after_emit(&self, platform_data: &Variant) { ... }
    fn parent_before_emit(&self, platform_data: &Variant) { ... }
    fn parent_command_line(
        &self,
        command_line: &ApplicationCommandLine
    ) -> ExitCode { ... }
    fn parent_local_command_line(
        &self,
        arguments: &mut ArgumentList
    ) -> Option<ExitCode> { ... }
    fn parent_open(&self, files: &[File], hint: &str) { ... }
    fn parent_quit_mainloop(&self) { ... }
    fn parent_run_mainloop(&self) { ... }
    fn parent_shutdown(&self) { ... }
    fn parent_startup(&self) { ... }
    fn parent_handle_local_options(&self, options: &VariantDict) -> ExitCode { ... }
}

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§