aboutsummaryrefslogtreecommitdiffstats
path: root/src/state.h
blob: 7bf4438ed0a8759cd444d677139724ca976a9415 (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
#ifndef MTEVENT_H
#define MTEVENT_H

#include "capabilities.h"
#include "hwdata.h"

////////////////////////////////////////////////////////

struct FingerState {
	struct FingerData hw;
	int id;
};

////////////////////////////////////////////////////////

struct State {
	struct FingerState finger[DIM_FINGER];
	int button[DIM_BUTTON];
	int nfinger, lastid;
};

////////////////////////////////////////////////////////

void init_state(struct State *s);
void modify_state(struct State *s,
		  const struct HWData* hw,
		  const struct Capabilities* caps);
void output_state(const struct State *s);

const struct FingerState *find_finger(const struct State *s, int id);

////////////////////////////////////////////////////////

#endif