| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 2013 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/views/message_center/message_center_frame_view.h" |
| 6 |
| 7 #include "ui/base/hit_test.h" |
| 8 #include "ui/message_center/message_center_style.h" |
| 9 #include "ui/views/shadow_border.h" |
| 10 #include "ui/views/widget/widget.h" |
| 11 |
| 12 namespace { |
| 13 |
| 14 const int kBorderWidth = 1; |
| 15 const int kShadowBlur = 8; |
| 16 |
| 17 } // namepspace |
| 18 |
| 19 namespace message_center { |
| 20 |
| 21 MessageCenterFrameView::MessageCenterFrameView() { |
| 22 #if defined OS_WIN |
| 23 set_border(new views::ShadowBorder(kShadowBlur, |
| 24 message_center::kMessageCenterShadowColor, |
| 25 0, // Vertical offset |
| 26 0)); // Horizontal offset |
| 27 #else |
| 28 set_border(views::Border::CreateSolidBorder( |
| 29 kBorderWidth, message_center::kMessageCenterBorderColor)); |
| 30 #endif |
| 31 } |
| 32 |
| 33 MessageCenterFrameView::~MessageCenterFrameView() {} |
| 34 |
| 35 gfx::Rect MessageCenterFrameView::GetBoundsForClientView() const { |
| 36 gfx::Rect client_bounds = GetLocalBounds(); |
| 37 client_bounds.Inset(GetInsets()); |
| 38 return client_bounds; |
| 39 } |
| 40 |
| 41 gfx::Rect MessageCenterFrameView::GetWindowBoundsForClientBounds( |
| 42 const gfx::Rect& client_bounds) const { |
| 43 gfx::Rect window_bounds = client_bounds; |
| 44 window_bounds.Inset(GetInsets()); |
| 45 return window_bounds; |
| 46 } |
| 47 |
| 48 int MessageCenterFrameView::NonClientHitTest(const gfx::Point& point) { |
| 49 gfx::Rect frame_bounds = bounds(); |
| 50 frame_bounds.Inset(GetInsets()); |
| 51 if (!frame_bounds.Contains(point)) |
| 52 return HTNOWHERE; |
| 53 |
| 54 return GetWidget()->client_view()->NonClientHitTest(point); |
| 55 } |
| 56 |
| 57 gfx::Insets MessageCenterFrameView::GetInsets() const { |
| 58 return GetBorderInsets(); |
| 59 } |
| 60 |
| 61 const char* MessageCenterFrameView::GetClassName() const { |
| 62 return "MessageCenterFrameView"; |
| 63 } |
| 64 |
| 65 // static |
| 66 gfx::Insets MessageCenterFrameView::GetBorderInsets() { |
| 67 #if defined OS_WIN |
| 68 return gfx::Insets( |
| 69 kShadowBlur / 2, kShadowBlur / 2, kShadowBlur / 2, kShadowBlur / 2); |
| 70 #else |
| 71 return gfx::Insets(kBorderWidth, kBorderWidth, kBorderWidth, kBorderWidth); |
| 72 #endif |
| 73 } |
| 74 |
| 75 } // namespace message_center |
| OLD | NEW |