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 #include "ui/base/touch/touch_editing_controller.h" | 5 #include "ui/base/touch/touch_editing_controller.h" |
6 | 6 |
7 namespace ui { | 7 namespace ui { |
8 | 8 |
9 namespace { | 9 namespace { |
10 TouchSelectionControllerFactory* g_shared_instance = NULL; | 10 TouchSelectionControllerFactory* g_shared_instance = NULL; |
11 } // namespace | 11 } // namespace |
12 | 12 |
13 SelectionBound::SelectionBound() | |
14 : type(ui::SelectionBound::EMPTY) { | |
15 } | |
16 | |
17 SelectionBound::~SelectionBound() { | |
18 } | |
19 | |
20 int SelectionBound::GetHeight() const { | |
21 return edge_bottom.y() - edge_top.y(); | |
22 } | |
23 | |
24 bool operator==(const SelectionBound& lhs, const SelectionBound& rhs) { | |
25 return lhs.type == rhs.type && lhs.edge_top == rhs.edge_top && | |
26 lhs.edge_bottom == rhs.edge_bottom; | |
27 } | |
28 | |
29 bool operator!=(const SelectionBound& lhs, const SelectionBound& rhs) { | |
30 return !(lhs == rhs); | |
31 } | |
32 | |
33 gfx::Rect RectBetweenSelectionBounds(const SelectionBound& b1, | |
34 const SelectionBound& b2) { | |
35 int all_x[] ={ | |
36 b1.edge_top.x(), b2.edge_top.x(), b1.edge_bottom.x(), b2.edge_bottom.x() | |
37 }; | |
38 int all_y[] = { | |
39 b1.edge_top.y(), b2.edge_top.y(), b1.edge_bottom.y(), b2.edge_bottom.y() | |
40 }; | |
41 const int num_elements = 4; | |
sky
2014/11/14 02:02:47
How about a compile assert that the size of the ar
mfomitchev
2014/11/14 19:56:27
Done.
| |
42 int left = *std::min_element(all_x, all_x + num_elements); | |
43 int top = *std::min_element(all_y, all_y + num_elements); | |
44 int right = *std::max_element(all_x, all_x + num_elements); | |
45 int bottom = *std::max_element(all_y, all_y + num_elements); | |
46 | |
47 return gfx::Rect(left, top, right - left, bottom - top); | |
48 } | |
49 | |
13 TouchSelectionController* TouchSelectionController::create( | 50 TouchSelectionController* TouchSelectionController::create( |
14 TouchEditable* client_view) { | 51 TouchEditable* client_view) { |
15 if (g_shared_instance) | 52 if (g_shared_instance) |
16 return g_shared_instance->create(client_view); | 53 return g_shared_instance->create(client_view); |
17 return NULL; | 54 return NULL; |
18 } | 55 } |
19 | 56 |
20 // static | 57 // static |
21 void TouchSelectionControllerFactory::SetInstance( | 58 void TouchSelectionControllerFactory::SetInstance( |
22 TouchSelectionControllerFactory* instance) { | 59 TouchSelectionControllerFactory* instance) { |
23 g_shared_instance = instance; | 60 g_shared_instance = instance; |
24 } | 61 } |
25 | 62 |
26 } // namespace ui | 63 } // namespace ui |
OLD | NEW |