| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_ | 5 #ifndef UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_ |
| 6 #define UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_ | 6 #define UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_ |
| 7 | 7 |
| 8 #import <Cocoa/Cocoa.h> | 8 #import <Cocoa/Cocoa.h> |
| 9 | 9 |
| 10 #import "base/mac/scoped_nsobject.h" | 10 #import "base/mac/scoped_nsobject.h" |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 // Initialize with the given |parent|. | 35 // Initialize with the given |parent|. |
| 36 - (id)initWithBridgedNativeWidget:(views::BridgedNativeWidget*)parent; | 36 - (id)initWithBridgedNativeWidget:(views::BridgedNativeWidget*)parent; |
| 37 | 37 |
| 38 // Notify that the window has been reordered in (or removed from) the window | 38 // Notify that the window has been reordered in (or removed from) the window |
| 39 // server's screen list. This is a substitute for -[NSWindowDelegate | 39 // server's screen list. This is a substitute for -[NSWindowDelegate |
| 40 // windowDidExpose:], which is only sent for nonretained windows (those without | 40 // windowDidExpose:], which is only sent for nonretained windows (those without |
| 41 // a backing store). |notification| is optional and can be set when redirecting | 41 // a backing store). |notification| is optional and can be set when redirecting |
| 42 // a notification such as NSApplicationDidHideNotification. | 42 // a notification such as NSApplicationDidHideNotification. |
| 43 - (void)onWindowOrderChanged:(NSNotification*)notification; | 43 - (void)onWindowOrderChanged:(NSNotification*)notification; |
| 44 | 44 |
| 45 // Notify that the system control tint changed. |
| 46 - (void)onSystemControlTintChanged:(NSNotification*)notification; |
| 47 |
| 45 // Called on the delegate of a modal sheet when its modal session ends. | 48 // Called on the delegate of a modal sheet when its modal session ends. |
| 46 - (void)sheetDidEnd:(NSWindow*)sheet | 49 - (void)sheetDidEnd:(NSWindow*)sheet |
| 47 returnCode:(NSInteger)returnCode | 50 returnCode:(NSInteger)returnCode |
| 48 contextInfo:(void*)contextInfo; | 51 contextInfo:(void*)contextInfo; |
| 49 | 52 |
| 50 // Redeclare methods defined in the protocol NSWindowDelegate which are only | 53 // Redeclare methods defined in the protocol NSWindowDelegate which are only |
| 51 // available on OSX 10.7+. | 54 // available on OSX 10.7+. |
| 52 - (void)windowDidFailToEnterFullScreen:(NSWindow*)window; | 55 - (void)windowDidFailToEnterFullScreen:(NSWindow*)window; |
| 53 - (void)windowDidFailToExitFullScreen:(NSWindow*)window; | 56 - (void)windowDidFailToExitFullScreen:(NSWindow*)window; |
| 54 | 57 |
| 55 // Called when the application receives a mouse-down, but before the event | 58 // Called when the application receives a mouse-down, but before the event |
| 56 // is processed by NSWindows. Returns NO if the event should be processed as-is, | 59 // is processed by NSWindows. Returns NO if the event should be processed as-is, |
| 57 // or YES if the event should be reposted to handle window dragging. Events are | 60 // or YES if the event should be reposted to handle window dragging. Events are |
| 58 // reposted at the CGSessionEventTap level because window dragging happens there | 61 // reposted at the CGSessionEventTap level because window dragging happens there |
| 59 // before the application receives the event. | 62 // before the application receives the event. |
| 60 - (BOOL)shouldRepostPendingLeftMouseDown:(NSPoint)locationInWindow; | 63 - (BOOL)shouldRepostPendingLeftMouseDown:(NSPoint)locationInWindow; |
| 61 | 64 |
| 62 @end | 65 @end |
| 63 | 66 |
| 64 #endif // UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_ | 67 #endif // UI_VIEWS_COCOA_VIEWS_NSWINDOW_DELEGATE_H_ |
| OLD | NEW |