summaryrefslogtreecommitdiff
path: root/src/lib/elput/elput_touch.c
blob: dca8d9fcfca5097e45590a86c13c69722950d779 (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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#include "elput_private.h"

static inline Eina_Bool
_check_status(int ret)
{
   if (ret == LIBINPUT_CONFIG_STATUS_SUCCESS)
     return EINA_TRUE;
   return EINA_FALSE;
}

EAPI Eina_Bool
elput_touch_drag_enabled_set(Elput_Device *device, Eina_Bool enabled)
{
   int ret = -1;

   EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);

   if (enabled)
     {
        ret =
          libinput_device_config_tap_set_drag_enabled(device->device,
                                                      LIBINPUT_CONFIG_DRAG_ENABLED);
     }
   else
     {
        ret =
          libinput_device_config_tap_set_drag_enabled(device->device,
                                                      LIBINPUT_CONFIG_DRAG_DISABLED);
     }

   return _check_status(ret);
}

EAPI Eina_Bool
elput_touch_drag_enabled_get(Elput_Device *device)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);

   return libinput_device_config_tap_get_drag_enabled(device->device);
}

EAPI Eina_Bool
elput_touch_drag_lock_enabled_set(Elput_Device *device, Eina_Bool enabled)
{
   int ret = -1;

   EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);

   if (enabled)
     {
        ret =
          libinput_device_config_tap_set_drag_lock_enabled(device->device,
                                                           LIBINPUT_CONFIG_DRAG_LOCK_ENABLED);
     }
   else
     {
        ret =
          libinput_device_config_tap_set_drag_lock_enabled(device->device,
                                                           LIBINPUT_CONFIG_DRAG_LOCK_DISABLED);
     }

   return _check_status(ret);
}

EAPI Eina_Bool
elput_touch_drag_lock_enabled_get(Elput_Device *device)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);

   return libinput_device_config_tap_get_drag_lock_enabled(device->device);
}

EAPI Eina_Bool
elput_touch_dwt_enabled_set(Elput_Device *device, Eina_Bool enabled)
{
   int ret = -1;

   EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);

   if (!libinput_device_config_dwt_is_available(device->device))
     return EINA_FALSE;

   if (enabled)
     {
        ret =
          libinput_device_config_dwt_set_enabled(device->device,
                                                 LIBINPUT_CONFIG_DWT_ENABLED);
     }
   else
     {
        ret =
          libinput_device_config_dwt_set_enabled(device->device,
                                                 LIBINPUT_CONFIG_DWT_DISABLED);
     }

   return _check_status(ret);
}

EAPI Eina_Bool
elput_touch_dwt_enabled_get(Elput_Device *device)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);

   if (!libinput_device_config_dwt_is_available(device->device))
     return EINA_FALSE;

   return libinput_device_config_dwt_get_enabled(device->device);
}

EAPI Eina_Bool
elput_touch_scroll_method_set(Elput_Device *device, int method)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);

   if (libinput_device_config_scroll_set_method(device->device, method) ==
       LIBINPUT_CONFIG_STATUS_SUCCESS)
     return EINA_TRUE;

   return EINA_FALSE;
}

EAPI int
elput_touch_scroll_method_get(Elput_Device *device)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(device, -1);

   return libinput_device_config_scroll_get_method(device->device);
}

EAPI Eina_Bool
elput_touch_click_method_set(Elput_Device *device, int method)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);

   if (libinput_device_config_click_set_method(device->device, method) ==
       LIBINPUT_CONFIG_STATUS_SUCCESS)
     return EINA_TRUE;

   return EINA_FALSE;
}

EAPI int
elput_touch_click_method_get(Elput_Device *device)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(device, -1);

   return libinput_device_config_click_get_method(device->device);
}

EAPI Eina_Bool
elput_touch_tap_enabled_set(Elput_Device *device, Eina_Bool enabled)
{
   int ret = -1;

   EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);

   if (enabled)
     {
        ret =
          libinput_device_config_tap_set_enabled(device->device,
                                                 LIBINPUT_CONFIG_TAP_ENABLED);
     }
   else
     {
        ret =
          libinput_device_config_tap_set_enabled(device->device,
                                                 LIBINPUT_CONFIG_TAP_DISABLED);
     }

   return _check_status(ret);
}

EAPI Eina_Bool
elput_touch_tap_enabled_get(Elput_Device *device)
{
   EINA_SAFETY_ON_NULL_RETURN_VAL(device, EINA_FALSE);

   return libinput_device_config_tap_get_enabled(device->device);
}