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>
|
2016-06-10 13:08:59 +02:00
|
|
|
#include <unistd.h>
|
2016-01-05 18:07:43 +01:00
|
|
|
#include <wlc/wlc.h>
|
|
|
|
#include <xkbcommon/xkbcommon.h>
|
|
|
|
|
2015-08-25 15:17:18 +02:00
|
|
|
/**
|
|
|
|
* Wrap i into the range [0, max[
|
|
|
|
*/
|
|
|
|
int wrap(int i, int max);
|
2015-08-25 19:53:59 +02:00
|
|
|
|
2016-01-23 22:35:32 +01:00
|
|
|
/**
|
|
|
|
* Count number of digits in int
|
|
|
|
*/
|
|
|
|
int numlen(int n);
|
|
|
|
|
2016-01-05 18:07:43 +01:00
|
|
|
/**
|
|
|
|
* Get modifier mask from modifier name.
|
|
|
|
*
|
|
|
|
* Returns the modifer mask or 0 if the name isn't found.
|
|
|
|
*/
|
|
|
|
uint32_t get_modifier_mask_by_name(const char *name);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get modifier name from modifier mask.
|
|
|
|
*
|
|
|
|
* Returns the modifier name or NULL if it isn't found.
|
|
|
|
*/
|
|
|
|
const char *get_modifier_name_by_mask(uint32_t modifier);
|
|
|
|
|
2016-01-06 16:59:54 +01:00
|
|
|
/**
|
|
|
|
* Get an array of modifier names from modifier_masks
|
|
|
|
*
|
|
|
|
* Populates the names array and return the number of names added.
|
|
|
|
*/
|
|
|
|
int get_modifier_names(const char **names, uint32_t modifier_masks);
|
|
|
|
|
2016-06-10 13:08:59 +02:00
|
|
|
/**
|
|
|
|
* Get the pid of a parent process given the pid of a child process.
|
|
|
|
*
|
|
|
|
* Returns the parent pid or NULL if the parent pid cannot be determined.
|
|
|
|
*/
|
|
|
|
pid_t get_parent_pid(pid_t pid);
|
|
|
|
|
2016-07-31 01:50:13 +02:00
|
|
|
/**
|
|
|
|
* Given a string that represents an RGB(A) color, return a uint32_t
|
|
|
|
* version of the color.
|
|
|
|
*/
|
|
|
|
uint32_t parse_color(const char *color);
|
|
|
|
|
2015-08-25 19:53:59 +02:00
|
|
|
#endif
|