|
|
@ -15,8 +15,10 @@
|
|
|
|
#include "focus.h"
|
|
|
|
#include "focus.h"
|
|
|
|
|
|
|
|
|
|
|
|
uint32_t keys_pressed[32];
|
|
|
|
uint32_t keys_pressed[32];
|
|
|
|
|
|
|
|
uint32_t key_modifiers;
|
|
|
|
int keys_pressed_length = 0;
|
|
|
|
int keys_pressed_length = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static struct wlc_origin mouse_origin;
|
|
|
|
static struct wlc_origin mouse_origin;
|
|
|
|
|
|
|
|
|
|
|
|
static bool m1_held = false;
|
|
|
|
static bool m1_held = false;
|
|
|
@ -25,12 +27,7 @@ static bool m2_held = false;
|
|
|
|
static bool resizing = false;
|
|
|
|
static bool resizing = false;
|
|
|
|
|
|
|
|
|
|
|
|
static bool floating_mod_pressed(void) {
|
|
|
|
static bool floating_mod_pressed(void) {
|
|
|
|
int i = 0;
|
|
|
|
return key_modifiers & config->floating_mod;
|
|
|
|
while (i < keys_pressed_length) {
|
|
|
|
|
|
|
|
if (keys_pressed[i++] == config->floating_mod)
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static bool pointer_test(swayc_t *view, void *_origin) {
|
|
|
|
static bool pointer_test(swayc_t *view, void *_origin) {
|
|
|
@ -297,6 +294,7 @@ static bool handle_key(wlc_handle view, uint32_t time, const struct wlc_modifier
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bool cmd_success = false;
|
|
|
|
bool cmd_success = false;
|
|
|
|
|
|
|
|
key_modifiers = modifiers->mods;
|
|
|
|
|
|
|
|
|
|
|
|
struct sway_mode *mode = config->current_mode;
|
|
|
|
struct sway_mode *mode = config->current_mode;
|
|
|
|
// Lowercase if necessary
|
|
|
|
// Lowercase if necessary
|
|
|
|