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 #ifndef UI_VIEWS_WIDGET_WIDGET_DELEGATE_H_ | 5 #ifndef UI_VIEWS_WIDGET_WIDGET_DELEGATE_H_ |
6 #define UI_VIEWS_WIDGET_WIDGET_DELEGATE_H_ | 6 #define UI_VIEWS_WIDGET_WIDGET_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "ui/base/accessibility/accessibility_types.h" | 10 #include "ui/base/accessibility/accessibility_types.h" |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
140 // the default window manager. In some cases, like panel, we would like to | 140 // the default window manager. In some cases, like panel, we would like to |
141 // manage the positions by ourselves. | 141 // manage the positions by ourselves. |
142 virtual bool WillProcessWorkAreaChange() const; | 142 virtual bool WillProcessWorkAreaChange() const; |
143 | 143 |
144 // Returns true if window has a hit-test mask. | 144 // Returns true if window has a hit-test mask. |
145 virtual bool HasHitTestMask() const; | 145 virtual bool HasHitTestMask() const; |
146 | 146 |
147 // Provides the hit-test mask if HasHitTestMask above returns true. | 147 // Provides the hit-test mask if HasHitTestMask above returns true. |
148 virtual void GetHitTestMask(gfx::Path* mask) const; | 148 virtual void GetHitTestMask(gfx::Path* mask) const; |
149 | 149 |
150 // Returns true if event handling should descend into |child|. | |
151 // |event_location| is in terms of the Window. |event_type| specifies the | |
152 // type of the event. | |
153 virtual bool ShouldDescendIntoChildForEventHandling( | |
154 aura::Window* child, | |
Ben Goodger (Google)
2012/08/21 02:17:40
This won't compile on non-aura builds. You have to
jianli
2012/08/21 17:22:00
Done.
| |
155 const gfx::Point& event_location, | |
156 ui::EventType event_type); | |
157 | |
150 protected: | 158 protected: |
151 virtual ~WidgetDelegate() {} | 159 virtual ~WidgetDelegate() {} |
152 | 160 |
153 private: | 161 private: |
154 View* default_contents_view_; | 162 View* default_contents_view_; |
155 | 163 |
156 DISALLOW_COPY_AND_ASSIGN(WidgetDelegate); | 164 DISALLOW_COPY_AND_ASSIGN(WidgetDelegate); |
157 }; | 165 }; |
158 | 166 |
159 // A WidgetDelegate implementation that is-a View. Used to override GetWidget() | 167 // A WidgetDelegate implementation that is-a View. Used to override GetWidget() |
160 // to call View's GetWidget() for the common case where a WidgetDelegate | 168 // to call View's GetWidget() for the common case where a WidgetDelegate |
161 // implementation is-a View. | 169 // implementation is-a View. |
162 class VIEWS_EXPORT WidgetDelegateView : public WidgetDelegate, public View { | 170 class VIEWS_EXPORT WidgetDelegateView : public WidgetDelegate, public View { |
163 public: | 171 public: |
164 WidgetDelegateView(); | 172 WidgetDelegateView(); |
165 virtual ~WidgetDelegateView(); | 173 virtual ~WidgetDelegateView(); |
166 | 174 |
167 // Overridden from WidgetDelegate: | 175 // Overridden from WidgetDelegate: |
168 virtual Widget* GetWidget() OVERRIDE; | 176 virtual Widget* GetWidget() OVERRIDE; |
169 virtual const Widget* GetWidget() const OVERRIDE; | 177 virtual const Widget* GetWidget() const OVERRIDE; |
170 | 178 |
171 private: | 179 private: |
172 DISALLOW_COPY_AND_ASSIGN(WidgetDelegateView); | 180 DISALLOW_COPY_AND_ASSIGN(WidgetDelegateView); |
173 }; | 181 }; |
174 | 182 |
175 } // namespace views | 183 } // namespace views |
176 | 184 |
177 #endif // UI_VIEWS_WIDGET_WIDGET_DELEGATE_H_ | 185 #endif // UI_VIEWS_WIDGET_WIDGET_DELEGATE_H_ |
OLD | NEW |