You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.9 KiB
78 lines
1.9 KiB
8 years ago
|
#define _XOPEN_SOURCE 700
|
||
9 years ago
|
#include <ctype.h>
|
||
|
#include <float.h>
|
||
|
#include <limits.h>
|
||
|
#include <stdio.h>
|
||
|
#include <string.h>
|
||
|
#include <libinput.h>
|
||
8 years ago
|
#include "sway/config.h"
|
||
|
#include "sway/input.h"
|
||
7 years ago
|
#include "sway/server.h"
|
||
9 years ago
|
#include "list.h"
|
||
|
#include "log.h"
|
||
|
|
||
7 years ago
|
struct input_config *current_input_config = NULL;
|
||
|
|
||
|
struct sway_input *sway_input_create(struct sway_server *server) {
|
||
|
struct sway_input *input = calloc(1, sizeof(struct sway_input));
|
||
|
if (!input) {
|
||
|
return NULL;
|
||
|
}
|
||
|
return input;
|
||
|
}
|
||
|
|
||
9 years ago
|
struct input_config *new_input_config(const char* identifier) {
|
||
|
struct input_config *input = calloc(1, sizeof(struct input_config));
|
||
8 years ago
|
if (!input) {
|
||
|
sway_log(L_DEBUG, "Unable to allocate input config");
|
||
|
return NULL;
|
||
|
}
|
||
9 years ago
|
sway_log(L_DEBUG, "new_input_config(%s)", identifier);
|
||
8 years ago
|
if (!(input->identifier = strdup(identifier))) {
|
||
|
free(input);
|
||
|
sway_log(L_DEBUG, "Unable to allocate input config");
|
||
|
return NULL;
|
||
|
}
|
||
9 years ago
|
|
||
|
input->tap = INT_MIN;
|
||
|
input->drag_lock = INT_MIN;
|
||
|
input->dwt = INT_MIN;
|
||
|
input->send_events = INT_MIN;
|
||
|
input->click_method = INT_MIN;
|
||
|
input->middle_emulation = INT_MIN;
|
||
|
input->natural_scroll = INT_MIN;
|
||
9 years ago
|
input->accel_profile = INT_MIN;
|
||
9 years ago
|
input->pointer_accel = FLT_MIN;
|
||
|
input->scroll_method = INT_MIN;
|
||
8 years ago
|
input->left_handed = INT_MIN;
|
||
9 years ago
|
|
||
|
return input;
|
||
|
}
|
||
|
|
||
|
char *libinput_dev_unique_id(struct libinput_device *device) {
|
||
|
int vendor = libinput_device_get_id_vendor(device);
|
||
|
int product = libinput_device_get_id_product(device);
|
||
|
char *name = strdup(libinput_device_get_name(device));
|
||
|
|
||
|
char *p = name;
|
||
|
for (; *p; ++p) {
|
||
|
if (*p == ' ') {
|
||
|
*p = '_';
|
||
|
}
|
||
|
}
|
||
|
|
||
|
sway_log(L_DEBUG, "rewritten name %s", name);
|
||
|
|
||
|
int len = strlen(name) + sizeof(char) * 6;
|
||
|
char *identifier = malloc(len);
|
||
8 years ago
|
if (!identifier) {
|
||
|
sway_log(L_ERROR, "Unable to allocate unique input device name");
|
||
|
return NULL;
|
||
|
}
|
||
9 years ago
|
|
||
|
const char *fmt = "%d:%d:%s";
|
||
8 years ago
|
snprintf(identifier, len, fmt, vendor, product, name);
|
||
9 years ago
|
free(name);
|
||
|
return identifier;
|
||
|
}
|