pub trait ApplicationImpl: ObjectImpl + ApplicationImplExt {
    // Provided methods
    fn activate(&self) { ... }
    fn after_emit(&self, platform_data: &Variant) { ... }
    fn before_emit(&self, platform_data: &Variant) { ... }
    fn command_line(&self, command_line: &ApplicationCommandLine) -> i32 { ... }
    fn local_command_line(&self, arguments: &mut ArgumentList) -> Option<i32> { ... }
    fn open(&self, files: &[File], hint: &str) { ... }
    fn quit_mainloop(&self) { ... }
    fn run_mainloop(&self) { ... }
    fn shutdown(&self) { ... }
    fn startup(&self) { ... }
    fn handle_local_options(&self, options: &VariantDict) -> i32 { ... }
}

Provided Methods§

source

fn activate(&self)

source

fn after_emit(&self, platform_data: &Variant)

source

fn before_emit(&self, platform_data: &Variant)

source

fn command_line(&self, command_line: &ApplicationCommandLine) -> i32

source

fn local_command_line(&self, arguments: &mut ArgumentList) -> Option<i32>

source

fn open(&self, files: &[File], hint: &str)

source

fn quit_mainloop(&self)

source

fn run_mainloop(&self)

source

fn shutdown(&self)

source

fn startup(&self)

source

fn handle_local_options(&self, options: &VariantDict) -> i32

Implementors§