aboutsummaryrefslogtreecommitdiff
path: root/sway/commands/new_float.c
diff options
context:
space:
mode:
authorZandr Martin <zandrmartin@gmail.com>2017-03-09 14:56:15 -0500
committerZandr Martin <zandrmartin@gmail.com>2017-03-09 14:56:15 -0500
commit18450dd16a3909d0ea581f5f9cad4128751870cc (patch)
tree6d4a99dcb568e73f514e0fde42fe3ae7d64a30ca /sway/commands/new_float.c
parentdc33c2cc1dc0761dcdb2270bd2de0b52000874fe (diff)
deprecate new_window and new_float commands
Diffstat (limited to 'sway/commands/new_float.c')
-rw-r--r--sway/commands/new_float.c43
1 files changed, 4 insertions, 39 deletions
diff --git a/sway/commands/new_float.c b/sway/commands/new_float.c
index 8e4e354f..d0f96093 100644
--- a/sway/commands/new_float.c
+++ b/sway/commands/new_float.c
@@ -1,43 +1,8 @@
-#include <errno.h>
-#include <string.h>
+#include "log.h"
#include "sway/commands.h"
-#include "sway/container.h"
struct cmd_results *cmd_new_float(int argc, char **argv) {
- struct cmd_results *error = NULL;
- if ((error = checkarg(argc, "new_float", EXPECTED_AT_LEAST, 1))) {
- return error;
- }
-
- if (argc > 2) {
- return cmd_results_new(CMD_INVALID, "new_float",
- "Expected 'new_float <normal|none|pixel> [<n>]");
- }
-
- enum swayc_border_types border = config->floating_border;
- int thickness = config->floating_border_thickness;
-
- if (strcasecmp(argv[0], "none") == 0) {
- border = B_NONE;
- } else if (strcasecmp(argv[0], "normal") == 0) {
- border = B_NORMAL;
- } else if (strcasecmp(argv[0], "pixel") == 0) {
- border = B_PIXEL;
- } else {
- return cmd_results_new(CMD_INVALID, "new_float",
- "Expected 'border <normal|none|pixel>");
- }
-
- if (argc == 2 && (border == B_NORMAL || border == B_PIXEL)) {
- thickness = (int)strtol(argv[1], NULL, 10);
- if (errno == ERANGE || thickness < 0) {
- errno = 0;
- return cmd_results_new(CMD_INVALID, "new_float", "Number is out out of range.");
- }
- }
-
- config->floating_border = border;
- config->floating_border_thickness = thickness;
-
- return cmd_results_new(CMD_SUCCESS, NULL, NULL);
+ sway_log(L_INFO, "`new_float` is deprecated and will be removed in the future. "
+ "Please use `default_floating_border` instead.");
+ return cmd_default_floating_border(argc, argv);
}