mirror of
https://github.com/swaywm/sway.git
synced 2024-10-31 21:47:24 +00:00
6961bf2e4c
This spawns swaynag as a wayland client similar to how swaybar and swaybg are already done
38 lines
931 B
C
38 lines
931 B
C
#ifndef _SWAY_UTIL_H
|
|
#define _SWAY_UTIL_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
#include <wayland-server-protocol.h>
|
|
|
|
/**
|
|
* Wrap i into the range [0, max[
|
|
*/
|
|
int wrap(int i, int max);
|
|
|
|
/**
|
|
* Given a string that represents an RGB(A) color, return a uint32_t
|
|
* version of the color.
|
|
*/
|
|
uint32_t parse_color(const char *color);
|
|
|
|
/**
|
|
* 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.
|
|
*/
|
|
bool parse_boolean(const char *boolean, bool current);
|
|
|
|
/**
|
|
* Given a string that represents a floating point value, return a float.
|
|
* Returns NAN on error.
|
|
*/
|
|
float parse_float(const char *value);
|
|
|
|
const char *sway_wl_output_subpixel_to_string(enum wl_output_subpixel subpixel);
|
|
|
|
bool set_cloexec(int fd, bool cloexec);
|
|
|
|
#endif
|