| 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 #include "chrome/browser/ui/gtk/download/download_shelf_gtk.h" | 5 #include "chrome/browser/ui/gtk/download/download_shelf_gtk.h" |
| 6 | 6 |
| 7 #include <string> | 7 #include <string> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "chrome/browser/download/download_item_model.h" | 10 #include "chrome/browser/download/download_item_model.h" |
| 11 #include "chrome/browser/download/download_util.h" | 11 #include "chrome/browser/download/download_util.h" |
| 12 #include "chrome/browser/ui/browser.h" | 12 #include "chrome/browser/ui/browser.h" |
| 13 #include "chrome/browser/ui/gtk/browser_window_gtk.h" | 13 #include "chrome/browser/ui/gtk/browser_window_gtk.h" |
| 14 #include "chrome/browser/ui/gtk/custom_button.h" | 14 #include "chrome/browser/ui/gtk/custom_button.h" |
| 15 #include "chrome/browser/ui/gtk/download/download_item_gtk.h" | 15 #include "chrome/browser/ui/gtk/download/download_item_gtk.h" |
| 16 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" | 16 #include "chrome/browser/ui/gtk/gtk_chrome_link_button.h" |
| 17 #include "chrome/browser/ui/gtk/gtk_chrome_shrinkable_hbox.h" | 17 #include "chrome/browser/ui/gtk/gtk_chrome_shrinkable_hbox.h" |
| 18 #include "chrome/browser/ui/gtk/gtk_theme_service.h" | |
| 19 #include "chrome/browser/ui/gtk/gtk_util.h" | 18 #include "chrome/browser/ui/gtk/gtk_util.h" |
| 19 #include "chrome/browser/ui/gtk/theme_service_gtk.h" |
| 20 #include "chrome/common/chrome_notification_types.h" | 20 #include "chrome/common/chrome_notification_types.h" |
| 21 #include "content/public/browser/download_item.h" | 21 #include "content/public/browser/download_item.h" |
| 22 #include "content/public/browser/notification_source.h" | 22 #include "content/public/browser/notification_source.h" |
| 23 #include "grit/generated_resources.h" | 23 #include "grit/generated_resources.h" |
| 24 #include "grit/theme_resources.h" | 24 #include "grit/theme_resources.h" |
| 25 #include "grit/theme_resources_standard.h" | 25 #include "grit/theme_resources_standard.h" |
| 26 #include "grit/ui_resources_standard.h" | 26 #include "grit/ui_resources_standard.h" |
| 27 #include "ui/base/l10n/l10n_util.h" | 27 #include "ui/base/l10n/l10n_util.h" |
| 28 #include "ui/base/resource/resource_bundle.h" | 28 #include "ui/base/resource/resource_bundle.h" |
| 29 #include "ui/gfx/gtk_util.h" | 29 #include "ui/gfx/gtk_util.h" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 60 // The area to the top of the shelf that is considered part of its "zone". | 60 // The area to the top of the shelf that is considered part of its "zone". |
| 61 const int kShelfAuraSize = 40; | 61 const int kShelfAuraSize = 40; |
| 62 | 62 |
| 63 } // namespace | 63 } // namespace |
| 64 | 64 |
| 65 using content::DownloadItem; | 65 using content::DownloadItem; |
| 66 | 66 |
| 67 DownloadShelfGtk::DownloadShelfGtk(Browser* browser, GtkWidget* parent) | 67 DownloadShelfGtk::DownloadShelfGtk(Browser* browser, GtkWidget* parent) |
| 68 : browser_(browser), | 68 : browser_(browser), |
| 69 is_showing_(false), | 69 is_showing_(false), |
| 70 theme_service_(GtkThemeService::GetFrom(browser->profile())), | 70 theme_service_(ThemeServiceGtk::GetFrom(browser->profile())), |
| 71 close_on_mouse_out_(false), | 71 close_on_mouse_out_(false), |
| 72 mouse_in_shelf_(false), | 72 mouse_in_shelf_(false), |
| 73 weak_factory_(this) { | 73 weak_factory_(this) { |
| 74 // Logically, the shelf is a vbox that contains two children: a one pixel | 74 // Logically, the shelf is a vbox that contains two children: a one pixel |
| 75 // tall event box, which serves as the top border, and an hbox, which holds | 75 // tall event box, which serves as the top border, and an hbox, which holds |
| 76 // the download items and other shelf widgets (close button, show-all- | 76 // the download items and other shelf widgets (close button, show-all- |
| 77 // downloads link). | 77 // downloads link). |
| 78 // To make things pretty, we have to add a few more widgets. To get padding | 78 // To make things pretty, we have to add a few more widgets. To get padding |
| 79 // right, we stick the hbox in an alignment. We put that alignment in an | 79 // right, we stick the hbox in an alignment. We put that alignment in an |
| 80 // event box so we can color the background. | 80 // event box so we can color the background. |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 | 386 |
| 387 MessageLoop::current()->PostDelayedTask( | 387 MessageLoop::current()->PostDelayedTask( |
| 388 FROM_HERE, | 388 FROM_HERE, |
| 389 base::Bind(&DownloadShelfGtk::Close, weak_factory_.GetWeakPtr()), | 389 base::Bind(&DownloadShelfGtk::Close, weak_factory_.GetWeakPtr()), |
| 390 base::TimeDelta::FromMilliseconds(kAutoCloseDelayMs)); | 390 base::TimeDelta::FromMilliseconds(kAutoCloseDelayMs)); |
| 391 } | 391 } |
| 392 | 392 |
| 393 void DownloadShelfGtk::MouseEnteredShelf() { | 393 void DownloadShelfGtk::MouseEnteredShelf() { |
| 394 weak_factory_.InvalidateWeakPtrs(); | 394 weak_factory_.InvalidateWeakPtrs(); |
| 395 } | 395 } |
| OLD | NEW |