mirror of
https://github.com/swaywm/sway.git
synced 2025-04-05 03:47:54 +03:00
cmd_client_*: refactor duplicated code
This is the second in a series of commits to refactor the color handling in sway. This removes the duplicated color parsing code in sway/commands/client.c. Additionally, this combines the parsing of colors to float arrays with that in sway/config.c and introduces a color_to_rgba function in commom/util.c. As an added bonus, this also makes it so non of the colors in a border color class will be changed unless all of the colors specified are valid. This ensures that an invalid command does not get partially applied.
This commit is contained in:
parent
97f9f0b699
commit
66dc33296c
4 changed files with 57 additions and 99 deletions
|
@ -17,6 +17,8 @@ int wrap(int i, int max);
|
|||
*/
|
||||
bool parse_color(const char *color, uint32_t *result);
|
||||
|
||||
void color_to_rgba(float dest[static 4], uint32_t 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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue