2018-05-14 22:47:10 +10:00
|
|
|
#define _POSIX_C_SOURCE 200809L
|
|
|
|
#include <string.h>
|
|
|
|
#include "sway/commands.h"
|
|
|
|
#include "sway/config.h"
|
2018-08-26 12:05:16 +10:00
|
|
|
#include "sway/tree/root.h"
|
2018-05-14 22:47:10 +10:00
|
|
|
#include "sway/tree/view.h"
|
|
|
|
#include "list.h"
|
|
|
|
#include "log.h"
|
|
|
|
#include "stringop.h"
|
|
|
|
|
2018-05-15 11:24:16 +10:00
|
|
|
static void remove_all_marks_iterator(struct sway_container *con, void *data) {
|
2018-10-31 22:27:38 +11:00
|
|
|
container_clear_marks(con);
|
|
|
|
container_update_marks_textures(con);
|
2018-05-15 11:24:16 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
// unmark Remove all marks from all views
|
|
|
|
// unmark foo Remove single mark from whichever view has it
|
|
|
|
// [criteria] unmark Remove all marks from matched view
|
|
|
|
// [criteria] unmark foo Remove single mark from matched view
|
|
|
|
|
2018-05-14 22:47:10 +10:00
|
|
|
struct cmd_results *cmd_unmark(int argc, char **argv) {
|
2018-10-31 22:27:38 +11:00
|
|
|
// Determine the container
|
|
|
|
struct sway_container *con = NULL;
|
2018-05-15 11:24:16 +10:00
|
|
|
if (config->handler_context.using_criteria) {
|
2018-10-31 22:27:38 +11:00
|
|
|
con = config->handler_context.container;
|
2018-05-15 11:24:16 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the mark
|
|
|
|
char *mark = NULL;
|
|
|
|
if (argc > 0) {
|
|
|
|
mark = join_args(argv, argc);
|
|
|
|
}
|
|
|
|
|
2018-10-31 22:27:38 +11:00
|
|
|
if (con && mark) {
|
|
|
|
// Remove the mark from the given container
|
|
|
|
if (container_has_mark(con, mark)) {
|
|
|
|
container_find_and_unmark(mark);
|
2018-05-14 22:47:10 +10:00
|
|
|
}
|
2018-10-31 22:27:38 +11:00
|
|
|
} else if (con && !mark) {
|
|
|
|
// Clear all marks from the given container
|
|
|
|
container_clear_marks(con);
|
|
|
|
container_update_marks_textures(con);
|
|
|
|
} else if (!con && mark) {
|
|
|
|
// Remove mark from whichever container has it
|
|
|
|
container_find_and_unmark(mark);
|
2018-05-15 11:24:16 +10:00
|
|
|
} else {
|
2018-10-31 22:27:38 +11:00
|
|
|
// Remove all marks from all containers
|
2018-08-17 19:48:34 +10:00
|
|
|
root_for_each_container(remove_all_marks_iterator, NULL);
|
2018-05-14 22:47:10 +10:00
|
|
|
}
|
2018-05-15 11:24:16 +10:00
|
|
|
free(mark);
|
2018-05-14 22:47:10 +10:00
|
|
|
|
|
|
|
return cmd_results_new(CMD_SUCCESS, NULL, NULL);
|
|
|
|
}
|