forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtouch_transformer_controller.h
84 lines (69 loc) · 3.44 KB
/
touch_transformer_controller.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_TOUCH_TOUCH_TRANSFORMER_CONTROLLER_H_
#define ASH_TOUCH_TOUCH_TRANSFORMER_CONTROLLER_H_
#include "ash/ash_export.h"
#include "ash/display/display_controller.h"
#include "ui/gfx/transform.h"
namespace ui {
struct TouchscreenDevice;
} // namespace ui
namespace ash {
// TouchTransformerController listens to display configuration change
// and updates the touch transformation for touch displays.
class ASH_EXPORT TouchTransformerController
: public DisplayController::Observer {
public:
TouchTransformerController();
~TouchTransformerController() override;
// Updates the TouchTransformer for touch device and pushes the new
// TouchTransformer into device manager.
void UpdateTouchTransformer() const;
// DisplayController::Observer:
void OnDisplaysInitialized() override;
void OnDisplayConfigurationChanged() override;
private:
FRIEND_TEST_ALL_PREFIXES(TouchTransformerControllerTest,
MirrorModeLetterboxing);
FRIEND_TEST_ALL_PREFIXES(TouchTransformerControllerTest,
MirrorModePillarboxing);
FRIEND_TEST_ALL_PREFIXES(TouchTransformerControllerTest, SoftwareMirrorMode);
FRIEND_TEST_ALL_PREFIXES(TouchTransformerControllerTest, ExtendedMode);
FRIEND_TEST_ALL_PREFIXES(TouchTransformerControllerTest, TouchRadiusScale);
// Returns a transform that will be used to change an event's location from
// the touchscreen's coordinate system into |display|'s coordinate system.
// The transform is also responsible for properly scaling the display if the
// display supports panel fitting.
//
// On X11 events are reported in framebuffer coordinate space, so the
// |framebuffer_size| is used for scaling.
// On Ozone events are reported in the touchscreen's resolution, so
// |touch_display| is used to determine the size and scale the event.
gfx::Transform GetTouchTransform(const DisplayInfo& display,
const DisplayInfo& touch_display,
const ui::TouchscreenDevice& touchscreen,
const gfx::Size& framebuffer_size) const;
// Returns the scaling factor for the touch radius such that it scales the
// radius from |touch_device|'s coordinate system to the |touch_display|'s
// coordinate system.
double GetTouchResolutionScale(
const DisplayInfo& touch_display,
const ui::TouchscreenDevice& touch_device) const;
// For the provided |display| update the touch radius mapping.
void UpdateTouchRadius(const DisplayInfo& display) const;
// For a given |target_display| and |target_display_id| update the touch
// transformation based on the touchscreen associated with |touch_display|.
// |target_display_id| is the display id whose root window will receive the
// touch events.
// |touch_display| is the physical display that has the touchscreen
// from which the events arrive.
// |target_display| provides the dimensions to which the touch event will be
// transformed.
void UpdateTouchTransform(int64_t target_display_id,
const DisplayInfo& touch_display,
const DisplayInfo& target_display) const;
DISALLOW_COPY_AND_ASSIGN(TouchTransformerController);
};
} // namespace ash
#endif // ASH_TOUCH_TOUCH_TRANSFORMER_CONTROLLER_H_