OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "views/view.h" | 5 #include "views/view.h" |
6 | 6 |
7 #include "app/drag_drop_types.h" | 7 #include "app/drag_drop_types.h" |
8 #include "app/gfx/canvas.h" | 8 #include "app/gfx/canvas.h" |
9 #include "app/gfx/path.h" | 9 #include "app/gfx/path.h" |
10 #include "base/string_util.h" | 10 #include "base/string_util.h" |
11 #include "views/accessibility/view_accessibility_wrapper.h" | 11 #include "views/accessibility/view_accessibility_wrapper.h" |
12 #include "views/border.h" | 12 #include "views/border.h" |
13 #include "views/widget/root_view.h" | 13 #include "views/widget/root_view.h" |
14 #include "views/widget/widget.h" | 14 #include "views/widget/widget.h" |
15 | 15 |
16 namespace views { | 16 namespace views { |
17 | 17 |
| 18 // static |
| 19 int View::GetDoubleClickTimeMS() { |
| 20 return ::GetDoubleClickTime(); |
| 21 } |
| 22 |
18 ViewAccessibilityWrapper* View::GetViewAccessibilityWrapper() { | 23 ViewAccessibilityWrapper* View::GetViewAccessibilityWrapper() { |
19 if (accessibility_.get() == NULL) { | 24 if (accessibility_.get() == NULL) { |
20 accessibility_.reset(new ViewAccessibilityWrapper(this)); | 25 accessibility_.reset(new ViewAccessibilityWrapper(this)); |
21 } | 26 } |
22 return accessibility_.get(); | 27 return accessibility_.get(); |
23 } | 28 } |
24 | 29 |
25 int View::GetHorizontalDragThreshold() { | 30 int View::GetHorizontalDragThreshold() { |
26 static int threshold = -1; | 31 static int threshold = -1; |
27 if (threshold == -1) | 32 if (threshold == -1) |
28 threshold = GetSystemMetrics(SM_CXDRAG) / 2; | 33 threshold = GetSystemMetrics(SM_CXDRAG) / 2; |
29 return threshold; | 34 return threshold; |
30 } | 35 } |
31 | 36 |
32 int View::GetVerticalDragThreshold() { | 37 int View::GetVerticalDragThreshold() { |
33 static int threshold = -1; | 38 static int threshold = -1; |
34 if (threshold == -1) | 39 if (threshold == -1) |
35 threshold = GetSystemMetrics(SM_CYDRAG) / 2; | 40 threshold = GetSystemMetrics(SM_CYDRAG) / 2; |
36 return threshold; | 41 return threshold; |
37 } | 42 } |
38 | 43 |
39 } // namespace views | 44 } // namespace views |
OLD | NEW |