mirror of
https://github.com/swaywm/sway.git
synced 2025-04-05 20:07:46 +03:00
moved and renamed movement-unit parsing to common
This commit is contained in:
parent
36c3c222d2
commit
6898d1963f
3 changed files with 106 additions and 96 deletions
|
@ -5,6 +5,30 @@
|
|||
#include <stdbool.h>
|
||||
#include <wayland-server-protocol.h>
|
||||
|
||||
enum movement_unit {
|
||||
MOVEMENT_UNIT_PX,
|
||||
MOVEMENT_UNIT_PPT,
|
||||
MOVEMENT_UNIT_DEFAULT,
|
||||
MOVEMENT_UNIT_INVALID,
|
||||
};
|
||||
|
||||
struct movement_amount {
|
||||
int amount;
|
||||
enum movement_unit unit;
|
||||
};
|
||||
|
||||
/*
|
||||
* Parse units such as "px" or "ppt"
|
||||
*/
|
||||
enum movement_unit parse_movement_unit(const char *unit);
|
||||
|
||||
/*
|
||||
* Parse arguments such as "10", "10px" or "10 px".
|
||||
* Returns the number of arguments consumed.
|
||||
*/
|
||||
int parse_movement_amount(int argc, char **argv,
|
||||
struct movement_amount *amount);
|
||||
|
||||
/**
|
||||
* Get the current time, in milliseconds.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue