forked from swaywm/sway
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This patch adds the libinput option RotationAngle to sway. Signoff-by: Lucas Zampieri <[email protected]>
- Loading branch information
1 parent
991d759
commit efd83cb
Showing
8 changed files
with
56 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#include <math.h> | ||
#include <stdlib.h> | ||
#include <string.h> | ||
#include "sway/config.h" | ||
#include "sway/commands.h" | ||
#include "sway/input/input-manager.h" | ||
#include "util.h" | ||
|
||
struct cmd_results *input_cmd_rotation_angle(int argc, char **argv) { | ||
struct cmd_results *error = NULL; | ||
if ((error = checkarg(argc, "rotation_angle", EXPECTED_AT_LEAST, 1))) { | ||
return error; | ||
} | ||
struct input_config *ic = config->handler_context.input_config; | ||
if (!ic) { | ||
return cmd_results_new(CMD_FAILURE, "No input device defined."); | ||
} | ||
|
||
float rotation_angle = parse_float(argv[0]); | ||
if (isnan(rotation_angle)) { | ||
return cmd_results_new(CMD_INVALID, | ||
"Invalid rotation_angle; expected float."); | ||
} if (rotation_angle < 0 || rotation_angle > 360) { | ||
return cmd_results_new(CMD_INVALID, "Input out of range [0, 360)"); | ||
} | ||
ic->rotation_angle = rotation_angle; | ||
|
||
return cmd_results_new(CMD_SUCCESS, NULL); | ||
} |
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