-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Add libinput configuration - Add virtual keyboard and pointer support
- Loading branch information
Cagebreak Signing Key 7
committed
Sep 26, 2021
1 parent
18f45ab
commit df167f2
Showing
29 changed files
with
1,529 additions
and
149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#ifndef _CG_INPUT_H | ||
#define _CG_INPUT_H | ||
|
||
#include <stdbool.h> | ||
|
||
struct cg_input_device; | ||
struct cg_input_config; | ||
struct cg_server; | ||
|
||
void | ||
cg_input_configure_libinput_device(struct cg_input_device *device); | ||
|
||
void | ||
cg_input_apply_config(struct cg_input_config *config, struct cg_server *server); | ||
|
||
void | ||
cg_input_reset_libinput_device(struct cg_input_device *device); | ||
|
||
bool | ||
cg_libinput_device_is_builtin(struct cg_input_device *device); | ||
|
||
#endif |
Oops, something went wrong.