[]Trait libhandy4::subclass::prelude::ApplicationImplExt

pub trait ApplicationImplExt: ObjectSubclass {
    pub fn parent_activate(&self, application: &Self::Type);
pub fn parent_after_emit(
        &self,
        application: &Self::Type,
        platform_data: &Variant
    );
pub fn parent_before_emit(
        &self,
        application: &Self::Type,
        platform_data: &Variant
    );
pub fn parent_command_line(
        &self,
        application: &Self::Type,
        command_line: &ApplicationCommandLine
    ) -> i32;
pub fn parent_local_command_line(
        &self,
        application: &Self::Type,
        arguments: &mut ArgumentList
    ) -> Option<i32>;
pub fn parent_open(
        &self,
        application: &Self::Type,
        files: &[File],
        hint: &str
    );
pub fn parent_quit_mainloop(&self, application: &Self::Type);
pub fn parent_run_mainloop(&self, application: &Self::Type);
pub fn parent_shutdown(&self, application: &Self::Type);
pub fn parent_startup(&self, application: &Self::Type);
pub fn parent_handle_local_options(
        &self,
        application: &Self::Type,
        options: &VariantDict
    ) -> i32; }

Required methods

pub fn parent_activate(&self, application: &Self::Type)

pub fn parent_after_emit(
    &self,
    application: &Self::Type,
    platform_data: &Variant
)

pub fn parent_before_emit(
    &self,
    application: &Self::Type,
    platform_data: &Variant
)

pub fn parent_command_line(
    &self,
    application: &Self::Type,
    command_line: &ApplicationCommandLine
) -> i32

pub fn parent_local_command_line(
    &self,
    application: &Self::Type,
    arguments: &mut ArgumentList
) -> Option<i32>

pub fn parent_open(&self, application: &Self::Type, files: &[File], hint: &str)

pub fn parent_quit_mainloop(&self, application: &Self::Type)

pub fn parent_run_mainloop(&self, application: &Self::Type)

pub fn parent_shutdown(&self, application: &Self::Type)

pub fn parent_startup(&self, application: &Self::Type)

pub fn parent_handle_local_options(
    &self,
    application: &Self::Type,
    options: &VariantDict
) -> i32

Loading content...

Implementors

impl<T> ApplicationImplExt for T where
    T: ApplicationImpl

Loading content...