2022-03-19 17:48:18 +01:00
|
|
|
#include "KeybindManager.hpp"
|
|
|
|
|
2022-04-21 15:50:52 +02:00
|
|
|
CKeybindManager::CKeybindManager() {
|
|
|
|
// initialize all dispatchers
|
|
|
|
|
|
|
|
m_mDispatchers["exec"] = spawn;
|
|
|
|
m_mDispatchers["killactive"] = killActive;
|
|
|
|
m_mDispatchers["togglefloating"] = toggleActiveFloating;
|
|
|
|
m_mDispatchers["workspace"] = changeworkspace;
|
|
|
|
m_mDispatchers["fullscreen"] = fullscreenActive;
|
|
|
|
m_mDispatchers["movetoworkspace"] = moveActiveToWorkspace;
|
|
|
|
m_mDispatchers["pseudo"] = toggleActivePseudo;
|
|
|
|
m_mDispatchers["movefocus"] = moveFocusTo;
|
|
|
|
m_mDispatchers["movewindow"] = moveActiveTo;
|
|
|
|
m_mDispatchers["togglegroup"] = toggleGroup;
|
|
|
|
m_mDispatchers["changegroupactive"] = changeGroupActive;
|
|
|
|
m_mDispatchers["splitratio"] = alterSplitRatio;
|
|
|
|
}
|
|
|
|
|
2022-03-19 17:48:18 +01:00
|
|
|
void CKeybindManager::addKeybind(SKeybind kb) {
|
2022-04-21 17:06:43 +02:00
|
|
|
m_lKeybinds.push_back(kb);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CKeybindManager::removeKeybind(uint32_t mod, const std::string& key) {
|
|
|
|
for (auto it = m_lKeybinds.begin(); it != m_lKeybinds.end(); ++it) {
|
|
|
|
if (it->modmask == mod && it->key == key) {
|
|
|
|
it = m_lKeybinds.erase(it);
|
|
|
|
}
|
|
|
|
}
|
2022-03-19 17:48:18 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t CKeybindManager::stringToModMask(std::string mods) {
|
|
|
|
uint32_t modMask = 0;
|
|
|
|
if (mods.find("SHIFT") != std::string::npos)
|
|
|
|
modMask |= WLR_MODIFIER_SHIFT;
|
|
|
|
if (mods.find("CAPS") != std::string::npos)
|
|
|
|
modMask |= WLR_MODIFIER_CAPS;
|
|
|
|
if (mods.find("CTRL") != std::string::npos || mods.find("CONTROL") != std::string::npos)
|
|
|
|
modMask |= WLR_MODIFIER_CTRL;
|
|
|
|
if (mods.find("ALT") != std::string::npos)
|
|
|
|
modMask |= WLR_MODIFIER_ALT;
|
|
|
|
if (mods.find("MOD2") != std::string::npos)
|
|
|
|
modMask |= WLR_MODIFIER_MOD2;
|
|
|
|
if (mods.find("MOD3") != std::string::npos)
|
|
|
|
modMask |= WLR_MODIFIER_MOD3;
|
|
|
|
if (mods.find("SUPER") != std::string::npos || mods.find("WIN") != std::string::npos || mods.find("LOGO") != std::string::npos || mods.find("MOD4") != std::string::npos)
|
|
|
|
modMask |= WLR_MODIFIER_LOGO;
|
|
|
|
if (mods.find("MOD5") != std::string::npos)
|
|
|
|
modMask |= WLR_MODIFIER_MOD5;
|
|
|
|
|
|
|
|
return modMask;
|
|
|
|
}
|
|
|
|
|
2022-03-19 22:03:40 +01:00
|
|
|
bool CKeybindManager::handleKeybinds(const uint32_t& modmask, const xkb_keysym_t& key) {
|
|
|
|
bool found = false;
|
2022-03-27 19:32:50 +02:00
|
|
|
|
|
|
|
if (handleInternalKeybinds(key))
|
|
|
|
return true;
|
|
|
|
|
2022-04-18 17:16:01 +02:00
|
|
|
if (g_pCompositor->m_sSeat.exclusiveClient){
|
|
|
|
Debug::log(LOG, "Not handling keybinds due to there being an exclusive inhibited client.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-04-21 17:06:43 +02:00
|
|
|
for (auto& k : m_lKeybinds) {
|
2022-03-19 17:48:18 +01:00
|
|
|
if (modmask != k.modmask)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// oMg such performance hit!!11!
|
|
|
|
// this little maneouver is gonna cost us 4µs
|
|
|
|
const auto KBKEY = xkb_keysym_from_name(k.key.c_str(), XKB_KEYSYM_CASE_INSENSITIVE);
|
2022-03-23 16:51:48 +01:00
|
|
|
const auto KBKEYUPPER = xkb_keysym_to_upper(KBKEY);
|
2022-04-10 16:47:19 +02:00
|
|
|
// small TODO: fix 0-9 keys and other modified ones with shift
|
2022-03-22 22:22:59 +01:00
|
|
|
|
2022-03-23 16:51:48 +01:00
|
|
|
if (key != KBKEY && key != KBKEYUPPER)
|
2022-03-19 17:48:18 +01:00
|
|
|
continue;
|
|
|
|
|
2022-04-21 15:50:52 +02:00
|
|
|
|
|
|
|
const auto DISPATCHER = m_mDispatchers.find(k.handler);
|
|
|
|
|
|
|
|
// Should never happen, as we check in the ConfigManager, but oh well
|
|
|
|
if (DISPATCHER == m_mDispatchers.end()) {
|
2022-04-14 23:02:10 +02:00
|
|
|
Debug::log(ERR, "Inavlid handler in a keybind! (handler %s does not exist)", k.handler.c_str());
|
2022-04-21 15:50:52 +02:00
|
|
|
} else {
|
|
|
|
// call the dispatcher
|
|
|
|
DISPATCHER->second(k.arg);
|
2022-04-14 23:02:10 +02:00
|
|
|
}
|
2022-03-19 22:03:40 +01:00
|
|
|
|
|
|
|
found = true;
|
2022-03-19 17:48:18 +01:00
|
|
|
}
|
2022-03-19 22:03:40 +01:00
|
|
|
|
|
|
|
return found;
|
2022-03-19 17:48:18 +01:00
|
|
|
}
|
|
|
|
|
2022-03-27 19:32:50 +02:00
|
|
|
bool CKeybindManager::handleInternalKeybinds(xkb_keysym_t keysym) {
|
|
|
|
// Handles the CTRL+ALT+FX TTY keybinds
|
|
|
|
if (!(keysym >= XKB_KEY_XF86Switch_VT_1 && keysym <= XKB_KEY_XF86Switch_VT_12))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
const auto PSESSION = wlr_backend_get_session(g_pCompositor->m_sWLRBackend);
|
|
|
|
if (PSESSION) {
|
|
|
|
const auto TTY = keysym - XKB_KEY_XF86Switch_VT_1 + 1;
|
|
|
|
wlr_session_change_vt(PSESSION, TTY);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-03-19 17:48:18 +01:00
|
|
|
// Dispatchers
|
|
|
|
|
|
|
|
void CKeybindManager::spawn(std::string args) {
|
2022-04-20 15:58:02 +02:00
|
|
|
if (g_pXWaylandManager->m_sWLRXWayland)
|
|
|
|
args = "WAYLAND_DISPLAY=" + std::string(g_pCompositor->m_szWLDisplaySocket) + " DISPLAY=" + std::string(g_pXWaylandManager->m_sWLRXWayland->display_name) + " " + args;
|
|
|
|
else
|
|
|
|
args = "WAYLAND_DISPLAY=" + std::string(g_pCompositor->m_szWLDisplaySocket) + " " + args;
|
2022-04-20 16:18:58 +02:00
|
|
|
|
2022-03-19 17:48:18 +01:00
|
|
|
Debug::log(LOG, "Executing %s", args.c_str());
|
|
|
|
if (fork() == 0) {
|
|
|
|
execl("/bin/sh", "/bin/sh", "-c", args.c_str(), nullptr);
|
|
|
|
|
|
|
|
_exit(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CKeybindManager::killActive(std::string args) {
|
2022-04-02 18:57:09 +02:00
|
|
|
if (g_pCompositor->m_pLastWindow && g_pCompositor->windowValidMapped(g_pCompositor->m_pLastWindow)) {
|
|
|
|
g_pXWaylandManager->sendCloseWindow(g_pCompositor->m_pLastWindow);
|
|
|
|
g_pCompositor->m_pLastFocus = nullptr;
|
|
|
|
g_pCompositor->m_pLastWindow = nullptr;
|
|
|
|
}
|
|
|
|
|
2022-03-20 11:14:24 +01:00
|
|
|
g_pCompositor->focusWindow(g_pCompositor->windowFromCursor());
|
2022-03-19 21:48:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CKeybindManager::clearKeybinds() {
|
2022-04-21 17:06:43 +02:00
|
|
|
m_lKeybinds.clear();
|
2022-03-20 11:14:24 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CKeybindManager::toggleActiveFloating(std::string args) {
|
2022-04-02 18:57:09 +02:00
|
|
|
const auto ACTIVEWINDOW = g_pCompositor->m_pLastWindow;
|
2022-03-20 11:14:24 +01:00
|
|
|
|
|
|
|
if (g_pCompositor->windowValidMapped(ACTIVEWINDOW)) {
|
|
|
|
ACTIVEWINDOW->m_bIsFloating = !ACTIVEWINDOW->m_bIsFloating;
|
2022-03-20 13:37:07 +01:00
|
|
|
|
|
|
|
ACTIVEWINDOW->m_vRealPosition = ACTIVEWINDOW->m_vRealPosition + Vector2D(5, 5);
|
|
|
|
ACTIVEWINDOW->m_vSize = ACTIVEWINDOW->m_vRealPosition - Vector2D(10, 10);
|
|
|
|
|
2022-03-20 11:14:24 +01:00
|
|
|
g_pLayoutManager->getCurrentLayout()->changeWindowFloatingMode(ACTIVEWINDOW);
|
|
|
|
}
|
2022-03-20 15:55:47 +01:00
|
|
|
}
|
|
|
|
|
2022-04-02 20:04:32 +02:00
|
|
|
void CKeybindManager::toggleActivePseudo(std::string args) {
|
|
|
|
const auto ACTIVEWINDOW = g_pCompositor->m_pLastWindow;
|
|
|
|
|
|
|
|
if (!g_pCompositor->windowValidMapped(ACTIVEWINDOW))
|
|
|
|
return;
|
|
|
|
|
|
|
|
ACTIVEWINDOW->m_bIsPseudotiled = !ACTIVEWINDOW->m_bIsPseudotiled;
|
|
|
|
|
|
|
|
g_pLayoutManager->getCurrentLayout()->recalculateWindow(ACTIVEWINDOW);
|
|
|
|
}
|
|
|
|
|
2022-04-21 17:21:55 +02:00
|
|
|
void CKeybindManager::changeworkspace(std::string args) {
|
2022-04-21 16:38:48 +02:00
|
|
|
int workspaceToChangeTo = 0;
|
|
|
|
std::string workspaceName = "";
|
|
|
|
|
|
|
|
if (args.find("name:") == 0) {
|
|
|
|
const auto WORKSPACENAME = args.substr(args.find_first_of(':') + 1);
|
|
|
|
const auto WORKSPACE = g_pCompositor->getWorkspaceByName(WORKSPACENAME);
|
|
|
|
if (!WORKSPACE) {
|
|
|
|
workspaceToChangeTo = g_pCompositor->getNextAvailableNamedWorkspace();
|
|
|
|
} else {
|
|
|
|
workspaceToChangeTo = WORKSPACE->m_iID;
|
|
|
|
}
|
|
|
|
workspaceName = WORKSPACENAME;
|
|
|
|
} else {
|
|
|
|
workspaceToChangeTo = std::clamp((int)getPlusMinusKeywordResult(args, g_pCompositor->m_pLastMonitor->activeWorkspace), 1, INT_MAX);
|
|
|
|
workspaceName = std::to_string(workspaceToChangeTo);
|
|
|
|
}
|
2022-04-14 23:02:10 +02:00
|
|
|
|
2022-04-20 16:53:41 +02:00
|
|
|
if (workspaceToChangeTo == INT_MAX) {
|
|
|
|
Debug::log(ERR, "Error in changeworkspace, invalid value");
|
|
|
|
return;
|
2022-03-20 15:55:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// if it exists, we warp to it
|
|
|
|
if (g_pCompositor->getWorkspaceByID(workspaceToChangeTo)) {
|
2022-04-11 19:51:37 +02:00
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(g_pCompositor->getWorkspaceByID(workspaceToChangeTo)->m_iMonitorID);
|
2022-03-20 15:55:47 +01:00
|
|
|
|
|
|
|
// if it's not visible, make it visible.
|
2022-03-20 19:14:17 +01:00
|
|
|
if (!g_pCompositor->isWorkspaceVisible(workspaceToChangeTo)) {
|
|
|
|
const auto OLDWORKSPACEID = PMONITOR->activeWorkspace;
|
|
|
|
|
|
|
|
// change it
|
2022-03-20 15:55:47 +01:00
|
|
|
PMONITOR->activeWorkspace = workspaceToChangeTo;
|
|
|
|
|
2022-03-20 19:14:17 +01:00
|
|
|
// we need to move XWayland windows to narnia or otherwise they will still process our cursor and shit
|
|
|
|
// and that'd be annoying as hell
|
|
|
|
g_pCompositor->fixXWaylandWindowsOnWorkspace(OLDWORKSPACEID);
|
|
|
|
|
|
|
|
// and fix on the new workspace
|
|
|
|
g_pCompositor->fixXWaylandWindowsOnWorkspace(PMONITOR->activeWorkspace);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-03-20 15:55:47 +01:00
|
|
|
// If the monitor is not the one our cursor's at, warp to it.
|
|
|
|
if (PMONITOR != g_pCompositor->getMonitorFromCursor()) {
|
|
|
|
Vector2D middle = PMONITOR->vecPosition + PMONITOR->vecSize / 2.f;
|
|
|
|
wlr_cursor_warp(g_pCompositor->m_sWLRCursor, nullptr, middle.x, middle.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
// focus the first window
|
|
|
|
g_pCompositor->focusWindow(g_pCompositor->getFirstWindowOnWorkspace(workspaceToChangeTo));
|
2022-03-20 19:14:17 +01:00
|
|
|
|
2022-04-11 19:51:37 +02:00
|
|
|
// set active and deactivate all other in wlr
|
|
|
|
g_pCompositor->deactivateAllWLRWorkspaces();
|
|
|
|
wlr_ext_workspace_handle_v1_set_active(g_pCompositor->getWorkspaceByID(workspaceToChangeTo)->m_pWlrHandle, true);
|
|
|
|
|
|
|
|
Debug::log(LOG, "Changed to workspace %i", workspaceToChangeTo);
|
|
|
|
|
2022-04-14 23:02:10 +02:00
|
|
|
// focus
|
|
|
|
g_pInputManager->refocus();
|
|
|
|
|
2022-03-20 15:55:47 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Workspace doesn't exist, create and switch
|
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromCursor();
|
|
|
|
|
2022-03-20 19:28:57 +01:00
|
|
|
const auto OLDWORKSPACE = PMONITOR->activeWorkspace;
|
2022-03-20 19:27:47 +01:00
|
|
|
|
2022-04-11 19:51:37 +02:00
|
|
|
g_pCompositor->m_lWorkspaces.emplace_back(PMONITOR->ID);
|
2022-03-20 15:55:47 +01:00
|
|
|
const auto PWORKSPACE = &g_pCompositor->m_lWorkspaces.back();
|
|
|
|
|
2022-04-11 19:51:37 +02:00
|
|
|
// We are required to set the name here immediately
|
2022-04-21 16:38:48 +02:00
|
|
|
wlr_ext_workspace_handle_v1_set_name(PWORKSPACE->m_pWlrHandle, workspaceName.c_str());
|
2022-04-11 19:51:37 +02:00
|
|
|
|
|
|
|
PWORKSPACE->m_iID = workspaceToChangeTo;
|
|
|
|
PWORKSPACE->m_iMonitorID = PMONITOR->ID;
|
2022-04-21 16:38:48 +02:00
|
|
|
PWORKSPACE->m_szName = workspaceName;
|
2022-03-20 15:55:47 +01:00
|
|
|
|
|
|
|
PMONITOR->activeWorkspace = workspaceToChangeTo;
|
2022-03-20 19:28:57 +01:00
|
|
|
|
|
|
|
// we need to move XWayland windows to narnia or otherwise they will still process our cursor and shit
|
|
|
|
// and that'd be annoying as hell
|
2022-03-20 19:29:50 +01:00
|
|
|
g_pCompositor->fixXWaylandWindowsOnWorkspace(OLDWORKSPACE);
|
2022-04-11 19:51:37 +02:00
|
|
|
|
|
|
|
// set active and deactivate all other
|
|
|
|
g_pCompositor->deactivateAllWLRWorkspaces();
|
|
|
|
wlr_ext_workspace_handle_v1_set_active(PWORKSPACE->m_pWlrHandle, true);
|
|
|
|
|
2022-04-14 20:08:39 +02:00
|
|
|
// mark the monitor dirty
|
|
|
|
g_pHyprRenderer->damageMonitor(PMONITOR);
|
|
|
|
|
2022-04-14 23:02:10 +02:00
|
|
|
// focus (clears the last)
|
|
|
|
g_pInputManager->refocus();
|
|
|
|
|
2022-04-11 19:51:37 +02:00
|
|
|
Debug::log(LOG, "Changed to workspace %i", workspaceToChangeTo);
|
2022-03-21 19:18:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CKeybindManager::fullscreenActive(std::string args) {
|
2022-04-02 18:57:09 +02:00
|
|
|
const auto PWINDOW = g_pCompositor->m_pLastWindow;
|
2022-03-21 19:18:33 +01:00
|
|
|
|
|
|
|
if (!g_pCompositor->windowValidMapped(PWINDOW))
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_pLayoutManager->getCurrentLayout()->fullscreenRequestForWindow(PWINDOW);
|
2022-03-30 17:39:04 +02:00
|
|
|
|
|
|
|
g_pXWaylandManager->setWindowFullscreen(PWINDOW, PWINDOW->m_bIsFullscreen);
|
2022-03-30 20:16:23 +02:00
|
|
|
|
|
|
|
// make all windows on the same workspace under the fullscreen window
|
|
|
|
for (auto& w : g_pCompositor->m_lWindows) {
|
|
|
|
if (w.m_iWorkspaceID == PWINDOW->m_iWorkspaceID)
|
|
|
|
w.m_bCreatedOverFullscreen = false;
|
|
|
|
}
|
2022-03-23 16:51:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CKeybindManager::moveActiveToWorkspace(std::string args) {
|
2022-04-02 18:57:09 +02:00
|
|
|
const auto PWINDOW = g_pCompositor->m_pLastWindow;
|
2022-03-23 16:51:48 +01:00
|
|
|
|
|
|
|
if (!g_pCompositor->windowValidMapped(PWINDOW))
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_pLayoutManager->getCurrentLayout()->onWindowRemoved(PWINDOW);
|
|
|
|
|
|
|
|
const auto OLDWORKSPACE = g_pCompositor->getWorkspaceByID(PWINDOW->m_iWorkspaceID);
|
|
|
|
|
|
|
|
// hack
|
2022-04-21 16:38:48 +02:00
|
|
|
g_pKeybindManager->changeworkspace(args);
|
|
|
|
|
|
|
|
const auto PWORKSPACE = g_pCompositor->getWorkspaceByString(args);
|
2022-03-23 16:51:48 +01:00
|
|
|
|
2022-04-21 16:38:48 +02:00
|
|
|
if (PWORKSPACE == OLDWORKSPACE) {
|
|
|
|
Debug::log(LOG, "Not moving to workspace because it didn't change.");
|
|
|
|
return;
|
|
|
|
}
|
2022-03-23 16:51:48 +01:00
|
|
|
|
2022-04-11 19:51:37 +02:00
|
|
|
OLDWORKSPACE->m_bHasFullscreenWindow = false;
|
2022-03-23 16:51:48 +01:00
|
|
|
|
2022-04-21 16:38:48 +02:00
|
|
|
PWINDOW->m_iWorkspaceID = PWORKSPACE->m_iID;
|
|
|
|
PWINDOW->m_iMonitorID = PWORKSPACE->m_iMonitorID;
|
2022-03-23 16:51:48 +01:00
|
|
|
PWINDOW->m_bIsFullscreen = false;
|
|
|
|
|
2022-04-21 16:38:48 +02:00
|
|
|
if (PWORKSPACE->m_bHasFullscreenWindow) {
|
|
|
|
g_pCompositor->getFullscreenWindowOnWorkspace(PWORKSPACE->m_iID)->m_bIsFullscreen = false;
|
|
|
|
PWORKSPACE->m_bHasFullscreenWindow = false;
|
2022-03-23 16:51:48 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Hack: So that the layout doesnt find our window at the cursor
|
|
|
|
PWINDOW->m_vPosition = Vector2D(-42069, -42069);
|
2022-04-10 21:45:24 +02:00
|
|
|
|
|
|
|
// Save the real position and size because the layout might set its own
|
|
|
|
const auto PSAVEDSIZE = PWINDOW->m_vRealSize;
|
|
|
|
const auto PSAVEDPOS = PWINDOW->m_vRealPosition;
|
2022-03-23 16:51:48 +01:00
|
|
|
g_pLayoutManager->getCurrentLayout()->onWindowCreated(PWINDOW);
|
2022-04-10 21:45:24 +02:00
|
|
|
// and restore it
|
|
|
|
PWINDOW->m_vRealPosition = PSAVEDPOS;
|
|
|
|
PWINDOW->m_vRealSize = PSAVEDSIZE;
|
2022-03-23 16:51:48 +01:00
|
|
|
|
|
|
|
if (PWINDOW->m_bIsFloating) {
|
2022-04-11 19:51:37 +02:00
|
|
|
PWINDOW->m_vRealPosition = PWINDOW->m_vRealPosition - g_pCompositor->getMonitorFromID(OLDWORKSPACE->m_iMonitorID)->vecPosition;
|
2022-04-21 16:38:48 +02:00
|
|
|
PWINDOW->m_vRealPosition = PWINDOW->m_vRealPosition + g_pCompositor->getMonitorFromID(PWORKSPACE->m_iMonitorID)->vecPosition;
|
2022-04-10 21:45:24 +02:00
|
|
|
PWINDOW->m_vEffectivePosition = PWINDOW->m_vRealPosition;
|
|
|
|
PWINDOW->m_vPosition = PWINDOW->m_vRealPosition;
|
2022-03-23 16:51:48 +01:00
|
|
|
}
|
2022-03-27 19:32:50 +02:00
|
|
|
}
|
2022-04-09 13:26:55 +02:00
|
|
|
|
|
|
|
void CKeybindManager::moveFocusTo(std::string args) {
|
|
|
|
char arg = args[0];
|
|
|
|
|
|
|
|
if (arg != 'l' && arg != 'r' && arg != 'u' && arg != 'd' && arg != 't' && arg != 'b') {
|
2022-04-20 16:18:58 +02:00
|
|
|
Debug::log(ERR, "Cannot move focus in direction %c, unsupported direction. Supported: l,r,u/t,d/b", arg);
|
2022-04-09 13:26:55 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto PLASTWINDOW = g_pCompositor->m_pLastWindow;
|
|
|
|
|
2022-04-13 20:45:06 +02:00
|
|
|
auto switchToWindow = [&](CWindow* PWINDOWTOCHANGETO) {
|
|
|
|
g_pCompositor->focusWindow(PWINDOWTOCHANGETO);
|
|
|
|
Vector2D middle = PWINDOWTOCHANGETO->m_vEffectivePosition + PWINDOWTOCHANGETO->m_vEffectiveSize / 2.f;
|
|
|
|
wlr_cursor_warp(g_pCompositor->m_sWLRCursor, nullptr, middle.x, middle.y);
|
|
|
|
};
|
|
|
|
|
|
|
|
if (!g_pCompositor->windowValidMapped(PLASTWINDOW)) {
|
|
|
|
const auto PWINDOWTOCHANGETO = g_pCompositor->getFirstWindowOnWorkspace(g_pCompositor->m_pLastMonitor->activeWorkspace);
|
|
|
|
if (!PWINDOWTOCHANGETO)
|
|
|
|
return;
|
|
|
|
|
|
|
|
switchToWindow(PWINDOWTOCHANGETO);
|
|
|
|
|
2022-04-09 13:26:55 +02:00
|
|
|
return;
|
2022-04-13 20:45:06 +02:00
|
|
|
}
|
2022-04-09 13:26:55 +02:00
|
|
|
|
|
|
|
const auto PWINDOWTOCHANGETO = g_pCompositor->getWindowInDirection(PLASTWINDOW, arg);
|
|
|
|
|
2022-04-09 13:33:44 +02:00
|
|
|
if (PWINDOWTOCHANGETO) {
|
2022-04-13 20:45:06 +02:00
|
|
|
switchToWindow(PWINDOWTOCHANGETO);
|
|
|
|
} else {
|
|
|
|
const auto PWINDOWNEXT = g_pCompositor->getNextWindowOnWorkspace(PLASTWINDOW);
|
|
|
|
if (PWINDOWNEXT) {
|
|
|
|
switchToWindow(PWINDOWNEXT);
|
|
|
|
}
|
|
|
|
}
|
2022-04-12 16:44:18 +02:00
|
|
|
}
|
|
|
|
|
2022-04-20 16:18:58 +02:00
|
|
|
void CKeybindManager::moveActiveTo(std::string args) {
|
|
|
|
char arg = args[0];
|
|
|
|
|
|
|
|
if (arg != 'l' && arg != 'r' && arg != 'u' && arg != 'd' && arg != 't' && arg != 'b') {
|
|
|
|
Debug::log(ERR, "Cannot move window in direction %c, unsupported direction. Supported: l,r,u/t,d/b", arg);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto PLASTWINDOW = g_pCompositor->m_pLastWindow;
|
|
|
|
|
2022-04-20 16:53:41 +02:00
|
|
|
if (!g_pCompositor->windowValidMapped(PLASTWINDOW))
|
2022-04-20 16:18:58 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
const auto PWINDOWTOCHANGETO = g_pCompositor->getWindowInDirection(PLASTWINDOW, arg);
|
|
|
|
|
2022-04-20 16:53:41 +02:00
|
|
|
if (!g_pCompositor->windowValidMapped(PWINDOWTOCHANGETO))
|
2022-04-20 16:18:58 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
g_pLayoutManager->getCurrentLayout()->switchWindows(PLASTWINDOW, PWINDOWTOCHANGETO);
|
|
|
|
}
|
|
|
|
|
2022-04-12 16:44:18 +02:00
|
|
|
void CKeybindManager::toggleGroup(std::string args) {
|
|
|
|
g_pLayoutManager->getCurrentLayout()->toggleWindowGroup(g_pCompositor->m_pLastWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
void CKeybindManager::changeGroupActive(std::string args) {
|
|
|
|
g_pLayoutManager->getCurrentLayout()->switchGroupWindow(g_pCompositor->m_pLastWindow);
|
2022-04-20 16:53:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CKeybindManager::alterSplitRatio(std::string args) {
|
|
|
|
float splitratio = 0;
|
|
|
|
|
|
|
|
if (args == "+" || args == "-") {
|
|
|
|
Debug::log(LOG, "alterSplitRatio: using LEGACY +/-, consider switching to the Hyprland syntax.");
|
|
|
|
splitratio = (args == "+" ? 0.05f : -0.05f);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (splitratio == 0) {
|
|
|
|
splitratio = getPlusMinusKeywordResult(args, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (splitratio == INT_MAX) {
|
|
|
|
Debug::log(ERR, "Splitratio invalid in alterSplitRatio!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto PLASTWINDOW = g_pCompositor->m_pLastWindow;
|
|
|
|
|
|
|
|
if (!g_pCompositor->windowValidMapped(PLASTWINDOW))
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_pLayoutManager->getCurrentLayout()->alterSplitRatioBy(PLASTWINDOW, splitratio);
|
2022-04-09 13:26:55 +02:00
|
|
|
}
|