pub trait EventLoopExtMacOS {
    fn set_activation_policy(&mut self, activation_policy: ActivationPolicy);
    fn enable_default_menu_creation(&mut self, enable: bool);
}

Required Methods

Sets the activation policy for the application. It is set to NSApplicationActivationPolicyRegular by default.

This function only takes effect if it’s called before calling run or run_return. To set the activation policy after that, use EventLoopWindowTargetExtMacOS::set_activation_policy_at_runtime.

Used to prevent a default menubar menu from getting created

The default menu creation is enabled by default.

This function only takes effect if it’s called before calling run or run_return

Implementors