2021-07-15 14:11:27 +03:00
|
|
|
#include "TouchHandler.h"
|
|
|
|
|
|
|
|
using namespace Pinetime::Controllers;
|
|
|
|
|
2021-07-16 01:49:20 +03:00
|
|
|
TouchHandler::TouchHandler(Drivers::Cst816S& touchPanel, Components::LittleVgl& lvgl) : touchPanel {touchPanel}, lvgl {lvgl} {
|
2021-07-15 14:11:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void TouchHandler::CancelTap() {
|
2021-07-16 11:55:29 +03:00
|
|
|
if (info.touching) {
|
|
|
|
isCancelled = true;
|
|
|
|
lvgl.SetNewTouchPoint(-1, -1, true);
|
|
|
|
}
|
2021-07-15 14:11:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Pinetime::Drivers::Cst816S::Gestures TouchHandler::GestureGet() {
|
|
|
|
auto returnGesture = gesture;
|
|
|
|
gesture = Drivers::Cst816S::Gestures::None;
|
|
|
|
return returnGesture;
|
|
|
|
}
|
|
|
|
|
2021-08-10 22:03:34 +03:00
|
|
|
bool TouchHandler::GetNewTouchInfo() {
|
|
|
|
info = touchPanel.GetTouchInfo();
|
2021-07-16 02:17:17 +03:00
|
|
|
|
2021-08-10 22:03:34 +03:00
|
|
|
if (!info.isValid) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-07-16 02:17:17 +03:00
|
|
|
|
2021-08-10 22:03:34 +03:00
|
|
|
if (info.gesture != Pinetime::Drivers::Cst816S::Gestures::None) {
|
2021-08-11 18:31:40 +03:00
|
|
|
if (gestureReleased) {
|
2021-08-10 22:03:34 +03:00
|
|
|
if (info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideDown ||
|
|
|
|
info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideLeft ||
|
|
|
|
info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideUp ||
|
2021-08-11 18:31:40 +03:00
|
|
|
info.gesture == Pinetime::Drivers::Cst816S::Gestures::SlideRight ||
|
|
|
|
info.gesture == Pinetime::Drivers::Cst816S::Gestures::LongPress) {
|
2021-07-18 12:32:46 +03:00
|
|
|
if (info.touching) {
|
2021-08-10 22:03:34 +03:00
|
|
|
gesture = info.gesture;
|
2021-08-11 18:31:40 +03:00
|
|
|
gestureReleased = false;
|
2021-07-16 00:07:55 +03:00
|
|
|
}
|
2021-08-10 22:03:34 +03:00
|
|
|
} else {
|
|
|
|
gesture = info.gesture;
|
2021-07-15 14:11:27 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-10 22:03:34 +03:00
|
|
|
if (!info.touching) {
|
2021-08-11 18:31:40 +03:00
|
|
|
gestureReleased = true;
|
2021-08-10 22:03:34 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2021-07-15 14:11:27 +03:00
|
|
|
}
|
|
|
|
|
2021-08-10 22:03:34 +03:00
|
|
|
void TouchHandler::UpdateLvglTouchPoint() {
|
|
|
|
if (info.touching) {
|
|
|
|
if (!isCancelled) {
|
|
|
|
lvgl.SetNewTouchPoint(info.x, info.y, true);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isCancelled) {
|
|
|
|
lvgl.SetNewTouchPoint(-1, -1, false);
|
|
|
|
isCancelled = false;
|
|
|
|
} else {
|
|
|
|
lvgl.SetNewTouchPoint(info.x, info.y, false);
|
|
|
|
}
|
|
|
|
}
|
2021-07-15 14:11:27 +03:00
|
|
|
}
|