-
Notifications
You must be signed in to change notification settings - Fork 568
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move Application:: hide_application, hide_others and set_menu to Mac …
…platform extension (#1863) * Add MacApplicationExt * druid changes * Deprecate menu::sys::hide on other platforms * allow deprecated in menu::sys::mac::default() * Update CHANGELOG
- Loading branch information
Showing
9 changed files
with
98 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
// Copyright 2021 The Druid Authors. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
//! macOS specific extensions. | ||
/// macOS specific extensions to [`Application`] | ||
/// | ||
/// [`Application`]: crate::Application | ||
pub trait MacApplicationExt { | ||
/// Hide the application this window belongs to. (cmd+H) | ||
fn hide(&self); | ||
|
||
/// Hide all other applications. (cmd+opt+H) | ||
fn hide_others(&self); | ||
|
||
/// Sets the global application menu, on platforms where there is one. | ||
/// | ||
/// On platforms with no global application menu, this has no effect. | ||
fn set_menu(&self, menu: crate::Menu); | ||
} | ||
|
||
#[cfg(test)] | ||
mod test { | ||
use crate::Application; | ||
|
||
use super::*; | ||
use static_assertions as sa; | ||
sa::assert_impl_all!(Application: MacApplicationExt); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,3 +16,6 @@ | |
#[cfg(any(doc, target_os = "linux"))] | ||
pub mod linux; | ||
|
||
#[cfg(any(doc, target_os = "macos"))] | ||
pub mod mac; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters