OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #import "chrome/browser/ui/cocoa/download/download_shelf_controller.h" | 5 #import "chrome/browser/ui/cocoa/download/download_shelf_controller.h" |
6 | 6 |
7 #include "base/mac/bundle_locations.h" | 7 #include "base/mac/bundle_locations.h" |
8 #include "base/mac/mac_util.h" | 8 #include "base/mac/mac_util.h" |
9 #include "base/sys_string_conversions.h" | 9 #include "base/sys_string_conversions.h" |
10 #include "chrome/browser/download/download_util.h" | 10 #include "chrome/browser/download/download_util.h" |
11 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
12 #include "chrome/browser/themes/theme_service.h" | 12 #include "chrome/browser/themes/theme_service.h" |
13 #include "chrome/browser/themes/theme_service_factory.h" | 13 #include "chrome/browser/themes/theme_service_factory.h" |
14 #include "chrome/browser/ui/browser.h" | 14 #include "chrome/browser/ui/browser.h" |
15 #include "chrome/browser/ui/chrome_pages.h" | 15 #include "chrome/browser/ui/chrome_pages.h" |
16 #import "chrome/browser/ui/cocoa/animatable_view.h" | 16 #import "chrome/browser/ui/cocoa/animatable_view.h" |
17 #include "chrome/browser/ui/cocoa/browser_window_cocoa.h" | 17 #include "chrome/browser/ui/cocoa/browser_window_cocoa.h" |
18 #import "chrome/browser/ui/cocoa/browser_window_controller.h" | 18 #import "chrome/browser/ui/cocoa/browser_window_controller.h" |
19 #include "chrome/browser/ui/cocoa/download/download_item_controller.h" | 19 #include "chrome/browser/ui/cocoa/download/download_item_controller.h" |
20 #include "chrome/browser/ui/cocoa/download/download_shelf_mac.h" | 20 #include "chrome/browser/ui/cocoa/download/download_shelf_mac.h" |
21 #import "chrome/browser/ui/cocoa/download/download_shelf_view.h" | 21 #import "chrome/browser/ui/cocoa/download/download_shelf_view.h" |
22 #import "chrome/browser/ui/cocoa/hover_button.h" | |
23 #import "chrome/browser/ui/cocoa/presentation_mode_controller.h" | 22 #import "chrome/browser/ui/cocoa/presentation_mode_controller.h" |
24 #include "content/public/browser/download_item.h" | 23 #include "content/public/browser/download_item.h" |
25 #include "content/public/browser/download_manager.h" | 24 #include "content/public/browser/download_manager.h" |
26 #import "third_party/GTM/AppKit/GTMNSAnimation+Duration.h" | 25 #import "third_party/GTM/AppKit/GTMNSAnimation+Duration.h" |
| 26 #import "ui/base/cocoa/hover_button.h" |
27 #include "ui/base/l10n/l10n_util.h" | 27 #include "ui/base/l10n/l10n_util.h" |
28 | 28 |
29 using content::DownloadItem; | 29 using content::DownloadItem; |
30 | 30 |
31 // Download shelf autoclose behavior: | 31 // Download shelf autoclose behavior: |
32 // | 32 // |
33 // The download shelf autocloses if all of this is true: | 33 // The download shelf autocloses if all of this is true: |
34 // 1) An item on the shelf has just been opened. | 34 // 1) An item on the shelf has just been opened. |
35 // 2) All remaining items on the shelf have been opened in the past. | 35 // 2) All remaining items on the shelf have been opened in the past. |
36 // 3) The mouse leaves the shelf and remains off the shelf for 5 seconds. | 36 // 3) The mouse leaves the shelf and remains off the shelf for 5 seconds. |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
459 } | 459 } |
460 | 460 |
461 // Set the tracking off to create a new tracking area for the control. | 461 // Set the tracking off to create a new tracking area for the control. |
462 // When changing the bounds/frame on a HoverButton, the tracking isn't updated | 462 // When changing the bounds/frame on a HoverButton, the tracking isn't updated |
463 // correctly, it needs to be turned off and back on. | 463 // correctly, it needs to be turned off and back on. |
464 [hoverCloseButton_ setTrackingEnabled:NO]; | 464 [hoverCloseButton_ setTrackingEnabled:NO]; |
465 [hoverCloseButton_ setFrame:bounds]; | 465 [hoverCloseButton_ setFrame:bounds]; |
466 [hoverCloseButton_ setTrackingEnabled:YES]; | 466 [hoverCloseButton_ setTrackingEnabled:YES]; |
467 } | 467 } |
468 @end | 468 @end |
OLD | NEW |