| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 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 | 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_MESSAGE_CENTER_VIEWS_TOAST_CONTENTS_VIEW_H_ | 5 #ifndef UI_MESSAGE_CENTER_VIEWS_TOAST_CONTENTS_VIEW_H_ |
| 6 #define UI_MESSAGE_CENTER_VIEWS_TOAST_CONTENTS_VIEW_H_ | 6 #define UI_MESSAGE_CENTER_VIEWS_TOAST_CONTENTS_VIEW_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/memory/weak_ptr.h" | 9 #include "base/memory/weak_ptr.h" |
| 10 #include "ui/gfx/animation/animation_delegate.h" | 10 #include "ui/gfx/animation/animation_delegate.h" |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 // The widget host for a popup. Also implements MessageCenterController | 33 // The widget host for a popup. Also implements MessageCenterController |
| 34 // which delegates over to MessagePopupCollection, but takes care about | 34 // which delegates over to MessagePopupCollection, but takes care about |
| 35 // checking the weakref since MessagePopupCollection may disappear before | 35 // checking the weakref since MessagePopupCollection may disappear before |
| 36 // widget/views are closed/destructed. | 36 // widget/views are closed/destructed. |
| 37 class ToastContentsView : public views::WidgetDelegateView, | 37 class ToastContentsView : public views::WidgetDelegateView, |
| 38 public MessageCenterController, | 38 public MessageCenterController, |
| 39 public gfx::AnimationDelegate { | 39 public gfx::AnimationDelegate { |
| 40 public: | 40 public: |
| 41 // Computes the size of a toast assuming it will host the given view. | 41 // Computes the size of a toast assuming it will host the given view. |
| 42 static gfx::Size GetToastSizeForView(views::View* view); | 42 static gfx::Size GetToastSizeForView(const views::View* view); |
| 43 | 43 |
| 44 ToastContentsView(const std::string& notification_id, | 44 ToastContentsView(const std::string& notification_id, |
| 45 base::WeakPtr<MessagePopupCollection> collection); | 45 base::WeakPtr<MessagePopupCollection> collection); |
| 46 virtual ~ToastContentsView(); | 46 virtual ~ToastContentsView(); |
| 47 | 47 |
| 48 // Sets the inner view of the toast. If it has contents already, | 48 // Sets the inner view of the toast. If it has contents already, |
| 49 // |a11y_feedback_for_updates| causes the view to notify that the | 49 // |a11y_feedback_for_updates| causes the view to notify that the |
| 50 // accessibility message should be read after this update. | 50 // accessibility message should be read after this update. |
| 51 void SetContents(MessageView* view, bool a11y_feedback_for_updates); | 51 void SetContents(MessageView* view, bool a11y_feedback_for_updates); |
| 52 | 52 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 67 // there could be animation in progress that targets these values. | 67 // there could be animation in progress that targets these values. |
| 68 gfx::Point origin() { return origin_; } | 68 gfx::Point origin() { return origin_; } |
| 69 gfx::Rect bounds() { return gfx::Rect(origin_, preferred_size_); } | 69 gfx::Rect bounds() { return gfx::Rect(origin_, preferred_size_); } |
| 70 | 70 |
| 71 const std::string& id() { return id_; } | 71 const std::string& id() { return id_; } |
| 72 | 72 |
| 73 // Overridden from views::View: | 73 // Overridden from views::View: |
| 74 virtual void OnMouseEntered(const ui::MouseEvent& event) OVERRIDE; | 74 virtual void OnMouseEntered(const ui::MouseEvent& event) OVERRIDE; |
| 75 virtual void OnMouseExited(const ui::MouseEvent& event) OVERRIDE; | 75 virtual void OnMouseExited(const ui::MouseEvent& event) OVERRIDE; |
| 76 virtual void Layout() OVERRIDE; | 76 virtual void Layout() OVERRIDE; |
| 77 virtual gfx::Size GetPreferredSize() OVERRIDE; | 77 virtual gfx::Size GetPreferredSize() const OVERRIDE; |
| 78 virtual void GetAccessibleState(ui::AXViewState* state) OVERRIDE; | 78 virtual void GetAccessibleState(ui::AXViewState* state) OVERRIDE; |
| 79 | 79 |
| 80 private: | 80 private: |
| 81 // Overridden from MessageCenterController: | 81 // Overridden from MessageCenterController: |
| 82 virtual void ClickOnNotification(const std::string& notification_id) OVERRIDE; | 82 virtual void ClickOnNotification(const std::string& notification_id) OVERRIDE; |
| 83 virtual void RemoveNotification(const std::string& notification_id, | 83 virtual void RemoveNotification(const std::string& notification_id, |
| 84 bool by_user) OVERRIDE; | 84 bool by_user) OVERRIDE; |
| 85 virtual scoped_ptr<ui::MenuModel> CreateMenuModel( | 85 virtual scoped_ptr<ui::MenuModel> CreateMenuModel( |
| 86 const NotifierId& notifier_id, | 86 const NotifierId& notifier_id, |
| 87 const base::string16& display_source) OVERRIDE; | 87 const base::string16& display_source) OVERRIDE; |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 135 | 135 |
| 136 gfx::Point origin_; | 136 gfx::Point origin_; |
| 137 gfx::Size preferred_size_; | 137 gfx::Size preferred_size_; |
| 138 | 138 |
| 139 DISALLOW_COPY_AND_ASSIGN(ToastContentsView); | 139 DISALLOW_COPY_AND_ASSIGN(ToastContentsView); |
| 140 }; | 140 }; |
| 141 | 141 |
| 142 } // namespace message_center | 142 } // namespace message_center |
| 143 | 143 |
| 144 #endif // UI_MESSAGE_CENTER_VIEWS_TOAST_CONTENTS_VIEW_H_ | 144 #endif // UI_MESSAGE_CENTER_VIEWS_TOAST_CONTENTS_VIEW_H_ |
| OLD | NEW |