mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-26 06:05:59 +01:00
added support for window selection in moving to workspace
This commit is contained in:
parent
b0b3a5af10
commit
d2011a4ba9
1 changed files with 25 additions and 8 deletions
|
@ -584,7 +584,15 @@ void CKeybindManager::fullscreenActive(std::string args) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CKeybindManager::moveActiveToWorkspace(std::string args) {
|
void CKeybindManager::moveActiveToWorkspace(std::string args) {
|
||||||
const auto PWINDOW = g_pCompositor->m_pLastWindow;
|
|
||||||
|
CWindow* PWINDOW = nullptr;
|
||||||
|
|
||||||
|
if (args.contains(',')) {
|
||||||
|
PWINDOW = g_pCompositor->getWindowByRegex(args.substr(args.find_last_of(',') + 1));
|
||||||
|
args = args.substr(0, args.find_last_of(','));
|
||||||
|
} else {
|
||||||
|
PWINDOW = g_pCompositor->m_pLastWindow;
|
||||||
|
}
|
||||||
|
|
||||||
if (!g_pCompositor->windowValidMapped(PWINDOW))
|
if (!g_pCompositor->windowValidMapped(PWINDOW))
|
||||||
return;
|
return;
|
||||||
|
@ -667,6 +675,20 @@ void CKeybindManager::moveActiveToWorkspace(std::string args) {
|
||||||
void CKeybindManager::moveActiveToWorkspaceSilent(std::string args) {
|
void CKeybindManager::moveActiveToWorkspaceSilent(std::string args) {
|
||||||
// hacky, but works lol
|
// hacky, but works lol
|
||||||
|
|
||||||
|
CWindow* PWINDOW = nullptr;
|
||||||
|
|
||||||
|
const auto ORIGINALARGS = args;
|
||||||
|
|
||||||
|
if (args.contains(',')) {
|
||||||
|
PWINDOW = g_pCompositor->getWindowByRegex(args.substr(args.find_last_of(',') + 1));
|
||||||
|
args = args.substr(0, args.find_last_of(','));
|
||||||
|
} else {
|
||||||
|
PWINDOW = g_pCompositor->m_pLastWindow;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!g_pCompositor->windowValidMapped(PWINDOW))
|
||||||
|
return;
|
||||||
|
|
||||||
int workspaceToMoveTo = 0;
|
int workspaceToMoveTo = 0;
|
||||||
std::string workspaceName = "";
|
std::string workspaceName = "";
|
||||||
|
|
||||||
|
@ -677,14 +699,9 @@ void CKeybindManager::moveActiveToWorkspaceSilent(std::string args) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto PWINDOW = g_pCompositor->m_pLastWindow;
|
|
||||||
|
|
||||||
if (!g_pCompositor->windowValidMapped(PWINDOW))
|
|
||||||
return;
|
|
||||||
|
|
||||||
const auto PMONITOR = g_pCompositor->getMonitorFromID(PWINDOW->m_iMonitorID);
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(PWINDOW->m_iMonitorID);
|
||||||
|
|
||||||
if (workspaceToMoveTo == PMONITOR->activeWorkspace)
|
if (workspaceToMoveTo == PWINDOW->m_iWorkspaceID)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// may be null until later!
|
// may be null until later!
|
||||||
|
@ -700,7 +717,7 @@ void CKeybindManager::moveActiveToWorkspaceSilent(std::string args) {
|
||||||
|
|
||||||
g_pEventManager->m_bIgnoreEvents = true;
|
g_pEventManager->m_bIgnoreEvents = true;
|
||||||
|
|
||||||
moveActiveToWorkspace(args);
|
moveActiveToWorkspace(ORIGINALARGS);
|
||||||
|
|
||||||
PWORKSPACE = g_pCompositor->getWorkspaceByID(workspaceToMoveTo);
|
PWORKSPACE = g_pCompositor->getWorkspaceByID(workspaceToMoveTo);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue