2015-08-25 19:53:59 +02:00
|
|
|
#ifndef _SWAY_UTIL_H
|
|
|
|
#define _SWAY_UTIL_H
|
|
|
|
|
2016-01-05 18:07:43 +01:00
|
|
|
#include <stdint.h>
|
2018-07-30 14:03:46 +02:00
|
|
|
#include <stdbool.h>
|
2019-02-11 01:56:57 +01:00
|
|
|
#include <wayland-server-protocol.h>
|
2016-01-05 18:07:43 +01:00
|
|
|
|
2020-07-16 10:23:24 +02:00
|
|
|
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);
|
|
|
|
|
2015-08-25 15:17:18 +02:00
|
|
|
/**
|
2020-06-05 23:12:31 +02:00
|
|
|
* Get the current time, in milliseconds.
|
|
|
|
*/
|
|
|
|
|
|
|
|
uint32_t get_current_time_msec(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wrap i into the range [0, max]
|
2015-08-25 15:17:18 +02:00
|
|
|
*/
|
|
|
|
int wrap(int i, int max);
|
2015-08-25 19:53:59 +02:00
|
|
|
|
2016-07-31 01:50:13 +02:00
|
|
|
/**
|
2019-12-28 05:33:55 +01:00
|
|
|
* Given a string that represents an RGB(A) color, result will be set to a
|
|
|
|
* uint32_t version of the color, as long as it is valid. If it is invalid,
|
|
|
|
* then false will be returned and result will be untouched.
|
2016-07-31 01:50:13 +02:00
|
|
|
*/
|
2019-12-28 05:33:55 +01:00
|
|
|
bool parse_color(const char *color, uint32_t *result);
|
2016-07-31 01:50:13 +02:00
|
|
|
|
2019-12-28 05:56:11 +01:00
|
|
|
void color_to_rgba(float dest[static 4], uint32_t color);
|
|
|
|
|
2018-07-23 21:04:46 +02:00
|
|
|
/**
|
|
|
|
* Given a string that represents a boolean, return the boolean value. This
|
|
|
|
* function also takes in the current boolean value to support toggling. If
|
|
|
|
* toggling is not desired, pass in true for current so that toggling values
|
|
|
|
* get parsed as not true.
|
|
|
|
*/
|
2018-07-23 22:22:09 +02:00
|
|
|
bool parse_boolean(const char *boolean, bool current);
|
2018-07-23 21:04:46 +02:00
|
|
|
|
2018-11-17 20:31:33 +01:00
|
|
|
/**
|
|
|
|
* Given a string that represents a floating point value, return a float.
|
|
|
|
* Returns NAN on error.
|
|
|
|
*/
|
|
|
|
float parse_float(const char *value);
|
|
|
|
|
2019-02-11 01:56:57 +01:00
|
|
|
const char *sway_wl_output_subpixel_to_string(enum wl_output_subpixel subpixel);
|
|
|
|
|
2019-10-29 06:54:16 +01:00
|
|
|
bool sway_set_cloexec(int fd, bool cloexec);
|
2019-04-14 06:27:47 +02:00
|
|
|
|
2015-08-25 19:53:59 +02:00
|
|
|
#endif
|