blob: 3bf28451f9de5adcf4bc66e58eb9c9aa92bb743f (
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
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
85
86
87
88
89
90
91
92
 | #pragma once
#include "../Base.h"
#include "cru/common/Event.h"
namespace cru::ui::helper {
class ClickDetector;
class CRU_UI_API ClickEventArgs : Object {
 public:
  ClickEventArgs(controls::Control* sender, const Point& down_point,
                 const Point& up_point, MouseButton button)
      : sender_(sender),
        down_point_(down_point),
        up_point_(up_point),
        button_(button) {}
  CRU_DEFAULT_COPY(ClickEventArgs)
  CRU_DEFAULT_MOVE(ClickEventArgs)
  ~ClickEventArgs() override = default;
  controls::Control* GetSender() const { return sender_; }
  Point GetDownPoint() const { return down_point_; }
  Point GetDownPointOfScreen() const;
  Point GetUpPoint() const { return up_point_; }
  MouseButton GetButton() const { return button_; }
 private:
  controls::Control* sender_;
  Point down_point_;
  Point up_point_;
  MouseButton button_;
};
enum class ClickState {
  None,          // Mouse is outside the control.
  Hover,         // Mouse hovers on the control but not pressed
  Press,         // Mouse is pressed and if released click is done.
  PressInactive  // Mouse is pressed but if released click is canceled.
};
class ClickDetector : public Object {
  CRU_DEFINE_CLASS_LOG_TAG(u"ClickDetector")
 public:
  explicit ClickDetector(controls::Control* control);
  CRU_DELETE_COPY(ClickDetector)
  CRU_DELETE_MOVE(ClickDetector)
  ~ClickDetector() override = default;
  controls::Control* GetControl() const { return control_; }
  ClickState GetState() const { return state_; }
  // Default is enable.
  bool IsEnabled() const { return enable_; }
  // If disable when user is pressing, the pressing is deactivated.
  void SetEnabled(bool enable);
  // Default is left and right.
  MouseButton GetTriggerButton() const { return trigger_button_; }
  // If unset the trigger button when user is pressing, the pressing is
  // deactivated.
  void SetTriggerButton(MouseButton trigger_button);
  IEvent<ClickEventArgs>* ClickEvent() { return &event_; }
  IEvent<ClickState>* StateChangeEvent() { return &state_change_event_; }
 private:
  void SetState(ClickState state);
 private:
  controls::Control* control_;
  ClickState state_ = ClickState::None;
  bool enable_ = true;
  MouseButton trigger_button_ = mouse_buttons::left | mouse_buttons::right;
  Event<ClickEventArgs> event_;
  Event<ClickState> state_change_event_;
  std::vector<EventRevokerGuard> event_rovoker_guards_;
  Point down_point_;
  MouseButton button_;
};
}  // namespace cru::ui::helper
 |