-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpointer_framework.pyi
72 lines (49 loc) · 1.68 KB
/
pointer_framework.pyi
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
# Copyright (c) 2024 - 2025 Kevin G. Schlosser
from typing import Optional, Tuple, TYPE_CHECKING
import _indev_base
import lcd_utils as _lcd_utils
import lvgl as _lv # NOQA
lv = _lv
if TYPE_CHECKING:
import touch_cal_data as _touch_cal_data
import display_driver_framework as _display_driver_framework
remap = _lcd_utils.remap
_remap = _lcd_utils.remap
class PointerDriver(_indev_base.IndevBase):
_last_x: int = ...
_last_y: int = ...
_orig_width: int = ...
_orig_height: int = ...
_config: _touch_cal_data.TouchCalData = ...
def __init__(self, touch_cal: Optional[_touch_cal_data.TouchCalData] = None, startup_rotation=lv.DISPLAY_ROTATION._0, debug: bool=False):
...
def calibrate(self) -> None:
...
@property
def is_calibrated(self) -> bool:
...
def _get_coords(self) -> Optional[Tuple[int, int, int]]:
"""
Reads the coordinates from the touch panel
This is where the work is done by the touch driver. This method MUST
be overridden when a touch driver is made.
:return: None if there is no touch input or a tuple of (x, y)
if there is touch input
:raises: NotImplimentedError if the method is not overridden
in the touch driver
"""
...
def get_vect(self, point: lv.point_t):
...
def get_scroll_obj(self) -> Optional[lv.obj]:
...
def get_scroll_dir(self) -> int:
...
def get_gesture_dir(self) -> int:
...
def get_point(self, point: lv.point_t) -> None:
...
def set_cursor(self, cur_obj) -> None:
...
def reset_long_press(self) -> None:
...