2a684cad5f
Patch tested by compiling with `__attribute__ ((format (printf, 2, 3)))` applied to `cmd_results_new`. String usage constants have been converted from pointers to arrays when encountered. General handler format strings were sometimes modified to include the old input string, especially for unknown command errors.
40 lines
880 B
C
40 lines
880 B
C
#include <assert.h>
|
|
#include <stdlib.h>
|
|
#include "sway/commands.h"
|
|
#include "sway/tree/view.h"
|
|
#include "log.h"
|
|
|
|
static bool parse_opacity(const char *opacity, float *val) {
|
|
char *err;
|
|
*val = strtof(opacity, &err);
|
|
if (*val < 0 || *val > 1 || *err) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
struct cmd_results *cmd_opacity(int argc, char **argv) {
|
|
struct cmd_results *error = NULL;
|
|
if ((error = checkarg(argc, "opacity", EXPECTED_EQUAL_TO, 1))) {
|
|
return error;
|
|
}
|
|
|
|
struct sway_container *con = config->handler_context.container;
|
|
|
|
if (con == NULL) {
|
|
return cmd_results_new(CMD_FAILURE, "No current container");
|
|
}
|
|
|
|
float opacity = 0.0f;
|
|
|
|
if (!parse_opacity(argv[0], &opacity)) {
|
|
return cmd_results_new(CMD_INVALID,
|
|
"Invalid value (expected 0..1): %s", argv[0]);
|
|
}
|
|
|
|
con->alpha = opacity;
|
|
container_damage_whole(con);
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL);
|
|
}
|