OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/ui/cocoa/apps/nswindow_util.h" |
| 6 |
| 7 #include "base/mac/sdk_forward_declarations.h" |
| 8 |
| 9 void SetFullScreenCollectionBehavior(NSWindow* window, bool allow_fullscreen) { |
| 10 NSWindowCollectionBehavior behavior = [window collectionBehavior]; |
| 11 if (allow_fullscreen) |
| 12 behavior |= NSWindowCollectionBehaviorFullScreenPrimary; |
| 13 else |
| 14 behavior &= ~NSWindowCollectionBehaviorFullScreenPrimary; |
| 15 [window setCollectionBehavior:behavior]; |
| 16 } |
| 17 |
| 18 void SetResizableStyleMask(NSWindow* window, bool resizable) { |
| 19 NSUInteger style_mask = [window styleMask]; |
| 20 if (resizable) |
| 21 style_mask |= NSResizableWindowMask; |
| 22 else |
| 23 style_mask &= ~NSResizableWindowMask; |
| 24 [window setStyleMask:style_mask]; |
| 25 } |
OLD | NEW |