feat: add panel support for BrowserWindow (#34388)
* feat: add NSPanel support for BrowserWindow * change header guard to satisfy linter * change panel wording in browser-window * Revert "change panel wording in browser-window" This reverts commit 6f3f80f94a7040e1d612a2a65952753bbafd437d. * change wording in browser-window * Update shell/browser/ui/cocoa/electron_native_widget_mac.mm Co-authored-by: Cheng Zhao <github@zcbenz.com> * Update shell/browser/ui/cocoa/electron_native_widget_mac.h Co-authored-by: Cheng Zhao <github@zcbenz.com> * Changed ScopedDisableResize class to allow for nesting Co-authored-by: andreiisaila <andreiisaila@microsoft.com> Co-authored-by: Cheng Zhao <github@zcbenz.com>
This commit is contained in:
parent
bed38e0985
commit
21ef8501e7
9 changed files with 92 additions and 9 deletions
|
@ -16,13 +16,14 @@ class NativeWindowMac;
|
|||
// Prevents window from resizing during the scope.
|
||||
class ScopedDisableResize {
|
||||
public:
|
||||
ScopedDisableResize() { disable_resize_ = true; }
|
||||
~ScopedDisableResize() { disable_resize_ = false; }
|
||||
ScopedDisableResize() { disable_resize_++; }
|
||||
~ScopedDisableResize() { disable_resize_--; }
|
||||
|
||||
static bool IsResizeDisabled() { return disable_resize_; }
|
||||
// True if there are 1+ nested ScopedDisableResize objects in the scope
|
||||
static bool IsResizeDisabled() { return disable_resize_ > 0; }
|
||||
|
||||
private:
|
||||
static bool disable_resize_;
|
||||
static int disable_resize_;
|
||||
};
|
||||
|
||||
} // namespace electron
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue