summaryrefslogtreecommitdiff
path: root/src/touchhandler/TouchHandler.h
blob: 7999e00a39cd6eadc48ced96dc84e892f10d7924 (plain)
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
#pragma once
#include "drivers/Cst816s.h"
#include "systemtask/SystemTask.h"
#include <FreeRTOS.h>
#include <task.h>

namespace Pinetime {
  namespace Components {
    class LittleVgl;
  }
  namespace Drivers {
    class Cst816S;
  }
  namespace System {
    class SystemTask;
  }
  namespace Controllers {
    class TouchHandler {
      public:
        explicit TouchHandler(Drivers::Cst816S&, Components::LittleVgl&);
        void CancelTap();
        void Register(Pinetime::System::SystemTask* systemTask);
        void Start();
        void WakeUp();
        uint8_t GetX() const {
          return x;
        }
        uint8_t GetY() const {
          return y;
        }
        Drivers::Cst816S::Gestures GestureGet();
      private:
        static void Process(void* instance);
        void Work();
        Pinetime::System::SystemTask* systemTask = nullptr;
        TaskHandle_t taskHandle;
        Pinetime::Drivers::Cst816S& touchPanel;
        Pinetime::Components::LittleVgl& lvgl;
        Pinetime::Drivers::Cst816S::Gestures gesture;
        Pinetime::Drivers::Cst816S::Gestures prevGesture;
        bool isCancelled = false;
        uint8_t x, y;
    };
  }
}