Hypr/src/KeybindManager.cpp

193 lines
6.2 KiB
C++
Raw Normal View History

#include "KeybindManager.hpp"
2021-11-21 13:11:51 +01:00
#include "utilities/Util.hpp"
2021-11-22 21:20:32 +01:00
#include "events/events.hpp"
2021-11-19 20:20:05 +01:00
#include <algorithm>
2021-11-21 18:25:38 +01:00
#include <string.h>
2021-11-19 20:20:05 +01:00
Keybind* KeybindManager::findKeybindByKey(int mod, xcb_keysym_t keysym) {
for(auto& key : KeybindManager::keybinds) {
if (keysym == key.getKeysym() && mod == key.getMod()) {
return &key;
}
}
return nullptr;
2021-11-19 20:20:05 +01:00
}
2021-11-21 13:11:51 +01:00
uint32_t KeybindManager::getKeyCodeFromName(std::string name) {
if (name == "")
return 0;
transform(name.begin(), name.end(), name.begin(), ::tolower);
if (name.length() == 1) {
// key
std::string command = "xmodmap -pk | grep \"(" + name + ")\"";
std::string returnValue = exec(command.c_str());
try {
returnValue = returnValue.substr(returnValue.find_first_of('x') + 1);
returnValue = returnValue.substr(0, returnValue.find_first_of(' '));
return std::stoi(returnValue, nullptr, 16); // return hex to int
} catch(...) { }
} else {
if (name == "return" || name == "enter") {
return 0xff0d;
} else if (name == "left") {
return 0xff51;
} else if (name == "right") {
return 0xff53;
} else if (name == "up") {
return 0xff52;
} else if (name == "down") {
return 0xff54;
2021-11-21 15:15:33 +01:00
} else if (name == "space") {
return 0x20;
2021-11-21 13:11:51 +01:00
}
}
2021-11-21 13:11:51 +01:00
return 0;
2021-11-19 20:20:05 +01:00
}
2021-12-06 15:04:47 +01:00
unsigned int KeybindManager::modToMask(std::string mod) {
2021-11-19 20:20:05 +01:00
2021-12-06 15:04:47 +01:00
unsigned int sum = 0;
if (CONTAINS(mod, "SUPER") || CONTAINS(mod, "MOD4")) sum |= XCB_MOD_MASK_4;
if (CONTAINS(mod, "SHIFT")) sum |= XCB_MOD_MASK_SHIFT;
if (CONTAINS(mod, "CTRL")) sum |= XCB_MOD_MASK_CONTROL;
if (CONTAINS(mod, "ALT") || CONTAINS(mod, "MOD1")) sum |= XCB_MOD_MASK_1;
return sum;
2021-11-19 20:20:05 +01:00
}
xcb_keysym_t KeybindManager::getKeysymFromKeycode(xcb_keycode_t keycode) {
2021-11-20 09:25:21 +01:00
const auto KEYSYMS = xcb_key_symbols_alloc(g_pWindowManager->DisplayConnection);
2021-11-19 20:20:05 +01:00
const auto KEYSYM = (!(KEYSYMS) ? 0 : xcb_key_symbols_get_keysym(KEYSYMS, keycode, 0));
xcb_key_symbols_free(KEYSYMS);
return KEYSYM;
}
xcb_keycode_t KeybindManager::getKeycodeFromKeysym(xcb_keysym_t keysym) {
2021-11-20 09:25:21 +01:00
const auto KEYSYMS = xcb_key_symbols_alloc(g_pWindowManager->DisplayConnection);
2021-11-19 20:20:05 +01:00
const auto KEYCODE = (!(KEYSYMS) ? NULL : xcb_key_symbols_get_keycode(KEYSYMS, keysym));
xcb_key_symbols_free(KEYSYMS);
return KEYCODE ? *KEYCODE : 0;
}
// Dispatchers
2021-11-19 20:34:05 +01:00
void KeybindManager::killactive(std::string args) {
// args unused
2021-11-30 16:43:28 +01:00
const auto PLASTWINDOW = g_pWindowManager->getWindowFromDrawable(g_pWindowManager->LastWindow);
if (!PLASTWINDOW)
return;
if (PLASTWINDOW->getCanKill()) {
// Send a kill message
xcb_client_message_event_t event;
bzero(&event, sizeof(event));
event.response_type = XCB_CLIENT_MESSAGE;
event.window = PLASTWINDOW->getDrawable();
event.type = HYPRATOMS["WM_PROTOCOLS"];
event.format = 32;
event.data.data32[0] = HYPRATOMS["WM_DELETE_WINDOW"];
event.data.data32[1] = 0;
xcb_send_event(g_pWindowManager->DisplayConnection, 0, PLASTWINDOW->getDrawable(), XCB_EVENT_MASK_NO_EVENT, (const char*)&event);
2021-12-21 11:32:15 +01:00
return; // Do not remove it yet. The user might've cancelled the operation or something. We will get
// an unmap event.
2021-11-30 16:43:28 +01:00
} else
xcb_kill_client(g_pWindowManager->DisplayConnection, g_pWindowManager->LastWindow);
g_pWindowManager->closeWindowAllChecks(g_pWindowManager->LastWindow);
2021-11-19 20:34:05 +01:00
}
2021-11-19 20:20:05 +01:00
void KeybindManager::call(std::string args) {
2021-11-21 18:25:38 +01:00
2021-11-19 20:20:05 +01:00
if (fork() == 0) {
2021-11-26 20:25:00 +01:00
//setsid();
2021-11-19 20:20:05 +01:00
2021-11-21 18:25:38 +01:00
execl("/bin/sh", "/bin/sh", "-c", args.c_str(), nullptr);
2021-11-19 20:20:05 +01:00
_exit(0);
}
2021-11-26 20:25:00 +01:00
//wait(NULL);
2021-11-19 22:29:44 +01:00
}
void KeybindManager::movewindow(std::string arg) {
2021-11-20 09:25:21 +01:00
g_pWindowManager->moveActiveWindowTo(arg[0]);
}
2021-12-05 12:05:44 +01:00
void KeybindManager::movefocus(std::string arg) {
g_pWindowManager->moveActiveFocusTo(arg[0]);
}
void KeybindManager::movetoworkspace(std::string arg) {
try {
g_pWindowManager->moveActiveWindowToWorkspace(stoi(arg));
} catch (...) {
Debug::log(ERR, "Invalid arg in movetoworkspace, arg: " + arg);
}
}
void KeybindManager::changeworkspace(std::string arg) {
int ID = -1;
try {
ID = std::stoi(arg.c_str());
} catch (...) { ; }
if (ID != -1) {
Debug::log(LOG, "Changing the current workspace to " + std::to_string(ID));
g_pWindowManager->changeWorkspaceByID(ID);
}
}
void KeybindManager::toggleActiveWindowFullscreen(std::string unusedArg) {
2021-12-17 19:57:07 +01:00
g_pWindowManager->toggleWindowFullscrenn(g_pWindowManager->LastWindow);
2021-11-21 15:15:33 +01:00
}
void KeybindManager::toggleActiveWindowFloating(std::string unusedArg) {
if (const auto PWINDOW = g_pWindowManager->getWindowFromDrawable(g_pWindowManager->LastWindow); PWINDOW) {
PWINDOW->setIsFloating(!PWINDOW->getIsFloating());
PWINDOW->setDirty(true);
// Fix window as if it's closed if we just made it floating
2021-11-22 21:20:32 +01:00
if (PWINDOW->getIsFloating()) {
2021-11-21 15:15:33 +01:00
g_pWindowManager->fixWindowOnClose(PWINDOW);
2021-11-22 21:20:32 +01:00
g_pWindowManager->calculateNewWindowParams(PWINDOW);
}
else {
// It's remapped again
// SAVE ALL INFO NOW, THE POINTER WILL BE DEAD
const auto RESTOREACSIZE = PWINDOW->getDefaultSize();
const auto RESTOREACPOS = PWINDOW->getDefaultPosition();
const auto RESTOREWINID = PWINDOW->getDrawable();
2021-11-30 16:43:28 +01:00
const auto RESTORECANKILL = PWINDOW->getCanKill();
2021-11-21 15:15:33 +01:00
2021-11-22 21:20:32 +01:00
g_pWindowManager->removeWindowFromVectorSafe(PWINDOW->getDrawable());
CWindow newWindow;
newWindow.setDrawable(RESTOREWINID);
newWindow.setFirstOpen(false);
g_pWindowManager->addWindowToVectorSafe(newWindow);
2021-11-22 21:20:32 +01:00
const auto PNEWWINDOW = Events::remapWindow(RESTOREWINID, true);
PNEWWINDOW->setDefaultPosition(RESTOREACPOS);
PNEWWINDOW->setDefaultSize(RESTOREACSIZE);
2021-11-30 16:43:28 +01:00
PNEWWINDOW->setCanKill(RESTORECANKILL);
2021-11-22 21:20:32 +01:00
}
2021-12-21 09:48:41 +01:00
// EWMH to let everyone know
2021-12-21 09:48:56 +01:00
EWMH::updateClientList();
2021-12-21 10:46:22 +01:00
EWMH::updateWindow(PWINDOW->getDrawable());
2021-11-21 15:15:33 +01:00
}
}