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_VIEW_H_ | 5 #ifndef UI_VIEWS_VIEW_H_ |
6 #define UI_VIEWS_VIEW_H_ | 6 #define UI_VIEWS_VIEW_H_ |
7 | 7 |
8 #include <algorithm> | 8 #include <algorithm> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
495 static void set_use_acceleration_when_possible(bool use); | 495 static void set_use_acceleration_when_possible(bool use); |
496 static bool get_use_acceleration_when_possible(); | 496 static bool get_use_acceleration_when_possible(); |
497 | 497 |
498 // Input --------------------------------------------------------------------- | 498 // Input --------------------------------------------------------------------- |
499 // The points (and mouse locations) in the following functions are in the | 499 // The points (and mouse locations) in the following functions are in the |
500 // view's coordinates, except for a RootView. | 500 // view's coordinates, except for a RootView. |
501 | 501 |
502 // Returns the deepest visible descendant that contains the specified point. | 502 // Returns the deepest visible descendant that contains the specified point. |
503 virtual View* GetEventHandlerForPoint(const gfx::Point& point); | 503 virtual View* GetEventHandlerForPoint(const gfx::Point& point); |
504 | 504 |
505 // Considers the bounding rectangles of all descendant views that have at | |
506 // least views::kFuzzingOverlapPercentage of their area covered by | |
507 // |touch_rect|. Among these rectangles, choose one that is closest to the | |
508 // center line of |touch_rect| and return its corresponding View. Note that | |
509 // |touch_rect| is in screen coordinates. | |
rjkroege
2012/07/19 00:51:57
"screen" coordinates is imprecise. Do you mean phy
tdanderson
2012/07/25 23:08:57
I used the term "screen" to be consistent with the
| |
510 virtual View* GetEventHandlerForRect(const gfx::Rect& touch_rect); | |
511 | |
505 // Return the cursor that should be used for this view or the default cursor. | 512 // Return the cursor that should be used for this view or the default cursor. |
506 // The event location is in the receiver's coordinate system. The caller is | 513 // The event location is in the receiver's coordinate system. The caller is |
507 // responsible for managing the lifetime of the returned object, though that | 514 // responsible for managing the lifetime of the returned object, though that |
508 // lifetime may vary from platform to platform. On Windows and Aura, | 515 // lifetime may vary from platform to platform. On Windows and Aura, |
509 // the cursor is a shared resource. | 516 // the cursor is a shared resource. |
510 virtual gfx::NativeCursor GetCursor(const MouseEvent& event); | 517 virtual gfx::NativeCursor GetCursor(const MouseEvent& event); |
511 | 518 |
512 // Convenience to test whether a point is within this view's bounds | 519 // Convenience to test whether a point is within this view's bounds |
513 virtual bool HitTest(const gfx::Point& l) const; | 520 virtual bool HitTest(const gfx::Point& l) const; |
514 | 521 |
(...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1478 base::win::ScopedComPtr<NativeViewAccessibilityWin> | 1485 base::win::ScopedComPtr<NativeViewAccessibilityWin> |
1479 native_view_accessibility_win_; | 1486 native_view_accessibility_win_; |
1480 #endif | 1487 #endif |
1481 | 1488 |
1482 DISALLOW_COPY_AND_ASSIGN(View); | 1489 DISALLOW_COPY_AND_ASSIGN(View); |
1483 }; | 1490 }; |
1484 | 1491 |
1485 } // namespace views | 1492 } // namespace views |
1486 | 1493 |
1487 #endif // UI_VIEWS_VIEW_H_ | 1494 #endif // UI_VIEWS_VIEW_H_ |
OLD | NEW |