mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-23 09:29:49 +01:00
internal: workspace manip handling rework
This commit is contained in:
parent
011600ac6e
commit
287e6c4ede
8 changed files with 208 additions and 331 deletions
|
@ -836,7 +836,8 @@ void CCompositor::focusWindow(CWindow* pWindow, wlr_surface* pSurface) {
|
||||||
// This is to fix incorrect feedback on the focus history.
|
// This is to fix incorrect feedback on the focus history.
|
||||||
const auto PWORKSPACE = getWorkspaceByID(pWindow->m_iWorkspaceID);
|
const auto PWORKSPACE = getWorkspaceByID(pWindow->m_iWorkspaceID);
|
||||||
PWORKSPACE->m_pLastFocusedWindow = pWindow;
|
PWORKSPACE->m_pLastFocusedWindow = pWindow;
|
||||||
g_pKeybindManager->changeworkspace("[internal]" + std::to_string(pWindow->m_iWorkspaceID));
|
const auto PMONITOR = getMonitorFromID(PWORKSPACE->m_iMonitorID);
|
||||||
|
PMONITOR->changeWorkspace(PWORKSPACE);
|
||||||
// changeworkspace already calls focusWindow
|
// changeworkspace already calls focusWindow
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -1884,12 +1885,13 @@ void CCompositor::moveWorkspaceToMonitor(CWorkspace* pWorkspace, CMonitor* pMoni
|
||||||
nextWorkspaceOnMonitorID++;
|
nextWorkspaceOnMonitorID++;
|
||||||
|
|
||||||
Debug::log(LOG, "moveWorkspaceToMonitor: Plugging gap with new %d", nextWorkspaceOnMonitorID);
|
Debug::log(LOG, "moveWorkspaceToMonitor: Plugging gap with new %d", nextWorkspaceOnMonitorID);
|
||||||
|
|
||||||
|
g_pCompositor->createNewWorkspace(nextWorkspaceOnMonitorID, POLDMON->ID);
|
||||||
}
|
}
|
||||||
|
|
||||||
Debug::log(LOG, "moveWorkspaceToMonitor: Plugging gap with existing %d", nextWorkspaceOnMonitorID);
|
Debug::log(LOG, "moveWorkspaceToMonitor: Plugging gap with existing %d", nextWorkspaceOnMonitorID);
|
||||||
|
|
||||||
g_pKeybindManager->focusMonitor(std::to_string(POLDMON->ID));
|
POLDMON->changeWorkspace(nextWorkspaceOnMonitorID);
|
||||||
g_pKeybindManager->changeworkspace("[internal]" + std::to_string(nextWorkspaceOnMonitorID));
|
|
||||||
|
|
||||||
// move the workspace
|
// move the workspace
|
||||||
|
|
||||||
|
@ -2318,3 +2320,36 @@ void CCompositor::performUserChecks() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CCompositor::moveWindowToWorkspaceSafe(CWindow* pWindow, CWorkspace* pWorkspace) {
|
||||||
|
if (!pWindow || !pWorkspace)
|
||||||
|
return;
|
||||||
|
|
||||||
|
const bool FULLSCREEN = pWindow->m_bIsFullscreen;
|
||||||
|
|
||||||
|
if (FULLSCREEN)
|
||||||
|
setWindowFullscreen(pWindow, false, FULLSCREEN_FULL);
|
||||||
|
|
||||||
|
if (!pWindow->m_bIsFloating) {
|
||||||
|
g_pLayoutManager->getCurrentLayout()->onWindowRemovedTiling(pWindow);
|
||||||
|
pWindow->m_iWorkspaceID = pWorkspace->m_iID;
|
||||||
|
pWindow->m_iMonitorID = pWorkspace->m_iMonitorID;
|
||||||
|
g_pLayoutManager->getCurrentLayout()->onWindowCreatedTiling(pWindow);
|
||||||
|
} else {
|
||||||
|
const auto PWINDOWMONITOR = g_pCompositor->getMonitorFromID(pWindow->m_iMonitorID);
|
||||||
|
const auto POSTOMON = pWindow->m_vRealPosition.goalv() - PWINDOWMONITOR->vecPosition;
|
||||||
|
|
||||||
|
const auto PWORKSPACEMONITOR = g_pCompositor->getMonitorFromID(pWorkspace->m_iMonitorID);
|
||||||
|
|
||||||
|
pWindow->m_iWorkspaceID = pWorkspace->m_iID;
|
||||||
|
pWindow->m_iMonitorID = pWorkspace->m_iMonitorID;
|
||||||
|
|
||||||
|
pWindow->m_vRealPosition = POSTOMON + PWORKSPACEMONITOR->vecPosition;
|
||||||
|
}
|
||||||
|
|
||||||
|
pWindow->moveToWorkspace(pWorkspace->m_iID);
|
||||||
|
pWindow->updateToplevel();
|
||||||
|
|
||||||
|
if (FULLSCREEN)
|
||||||
|
setWindowFullscreen(pWindow, true, FULLSCREEN_FULL);
|
||||||
|
}
|
||||||
|
|
|
@ -28,7 +28,8 @@
|
||||||
#include "hyprerror/HyprError.hpp"
|
#include "hyprerror/HyprError.hpp"
|
||||||
#include "plugins/PluginSystem.hpp"
|
#include "plugins/PluginSystem.hpp"
|
||||||
|
|
||||||
enum eManagersInitStage {
|
enum eManagersInitStage
|
||||||
|
{
|
||||||
STAGE_PRIORITY = 0,
|
STAGE_PRIORITY = 0,
|
||||||
STAGE_LATE
|
STAGE_LATE
|
||||||
};
|
};
|
||||||
|
@ -188,6 +189,7 @@ class CCompositor {
|
||||||
bool isWorkspaceSpecial(const int&);
|
bool isWorkspaceSpecial(const int&);
|
||||||
int getNewSpecialID();
|
int getNewSpecialID();
|
||||||
void performUserChecks();
|
void performUserChecks();
|
||||||
|
void moveWindowToWorkspaceSafe(CWindow* pWindow, CWorkspace* pWorkspace);
|
||||||
|
|
||||||
std::string explicitConfigPath;
|
std::string explicitConfigPath;
|
||||||
|
|
||||||
|
|
|
@ -664,3 +664,7 @@ void CWindow::updateGroupOutputs() {
|
||||||
curr = curr->m_sGroupData.pNextWindow;
|
curr = curr->m_sGroupData.pNextWindow;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Vector2D CWindow::middle() {
|
||||||
|
return m_vRealPosition.goalv() + m_vRealSize.goalv() / 2.f;
|
||||||
|
}
|
||||||
|
|
|
@ -314,6 +314,7 @@ class CWindow {
|
||||||
void applyDynamicRule(const SWindowRule& r);
|
void applyDynamicRule(const SWindowRule& r);
|
||||||
void updateDynamicRules();
|
void updateDynamicRules();
|
||||||
SWindowDecorationExtents getFullWindowReservedArea();
|
SWindowDecorationExtents getFullWindowReservedArea();
|
||||||
|
Vector2D middle();
|
||||||
|
|
||||||
void onBorderAngleAnimEnd(void* ptr);
|
void onBorderAngleAnimEnd(void* ptr);
|
||||||
bool isInCurvedCorner(double x, double y);
|
bool isInCurvedCorner(double x, double y);
|
||||||
|
|
|
@ -475,3 +475,81 @@ float CMonitor::getDefaultScale() {
|
||||||
return 1.5;
|
return 1.5;
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void CMonitor::changeWorkspace(CWorkspace* const pWorkspace, bool internal) {
|
||||||
|
if (!pWorkspace || pWorkspace->m_iID == activeWorkspace)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (pWorkspace->m_bIsSpecialWorkspace) {
|
||||||
|
Debug::log(ERR, "BUG THIS: Attempted to changeWorkspace to special!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const auto POLDWORKSPACE = g_pCompositor->getWorkspaceByID(activeWorkspace);
|
||||||
|
|
||||||
|
activeWorkspace = pWorkspace->m_iID;
|
||||||
|
|
||||||
|
if (!internal) {
|
||||||
|
const auto ANIMTOLEFT = pWorkspace->m_iID > POLDWORKSPACE->m_iID;
|
||||||
|
POLDWORKSPACE->startAnim(false, ANIMTOLEFT);
|
||||||
|
pWorkspace->startAnim(true, ANIMTOLEFT);
|
||||||
|
|
||||||
|
// move pinned windows
|
||||||
|
for (auto& w : g_pCompositor->m_vWindows) {
|
||||||
|
if (w->m_iWorkspaceID == POLDWORKSPACE->m_iID && w->m_bPinned) {
|
||||||
|
w->m_iWorkspaceID = pWorkspace->m_iID;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (const auto PLASTWINDOW = pWorkspace->getLastFocusedWindow(); PLASTWINDOW)
|
||||||
|
g_pCompositor->focusWindow(PLASTWINDOW);
|
||||||
|
else {
|
||||||
|
g_pCompositor->focusWindow(nullptr);
|
||||||
|
g_pInputManager->refocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
// set some flags and fire event
|
||||||
|
POLDWORKSPACE->setActive(false);
|
||||||
|
pWorkspace->setActive(true);
|
||||||
|
g_pEventManager->postEvent(SHyprIPCEvent{"workspace", pWorkspace->m_szName});
|
||||||
|
EMIT_HOOK_EVENT("workspace", pWorkspace);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void CMonitor::changeWorkspace(const int& id, bool internal) {
|
||||||
|
changeWorkspace(g_pCompositor->getWorkspaceByID(id), internal);
|
||||||
|
}
|
||||||
|
|
||||||
|
void CMonitor::setSpecialWorkspace(CWorkspace* const pWorkspace) {
|
||||||
|
if (!pWorkspace) {
|
||||||
|
// remove special if exists
|
||||||
|
if (const auto EXISTINGSPECIAL = g_pCompositor->getWorkspaceByID(specialWorkspaceID); EXISTINGSPECIAL)
|
||||||
|
EXISTINGSPECIAL->startAnim(false, false);
|
||||||
|
specialWorkspaceID = 0;
|
||||||
|
|
||||||
|
g_pLayoutManager->getCurrentLayout()->recalculateMonitor(ID);
|
||||||
|
|
||||||
|
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(activeWorkspace);
|
||||||
|
if (const auto PLAST = PWORKSPACE->getLastFocusedWindow(); PLAST)
|
||||||
|
g_pCompositor->focusWindow(PLAST);
|
||||||
|
else
|
||||||
|
g_pInputManager->refocus();
|
||||||
|
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// open special
|
||||||
|
specialWorkspaceID = pWorkspace->m_iID;
|
||||||
|
pWorkspace->startAnim(true, true);
|
||||||
|
|
||||||
|
g_pLayoutManager->getCurrentLayout()->recalculateMonitor(ID);
|
||||||
|
|
||||||
|
if (const auto PLAST = pWorkspace->getLastFocusedWindow(); PLAST)
|
||||||
|
g_pCompositor->focusWindow(PLAST);
|
||||||
|
else
|
||||||
|
g_pInputManager->refocus();
|
||||||
|
}
|
||||||
|
|
||||||
|
void CMonitor::setSpecialWorkspace(const int& id) {
|
||||||
|
setSpecialWorkspace(g_pCompositor->getWorkspaceByID(id));
|
||||||
|
}
|
||||||
|
|
|
@ -81,6 +81,10 @@ class CMonitor {
|
||||||
void setMirror(const std::string&);
|
void setMirror(const std::string&);
|
||||||
bool isMirror();
|
bool isMirror();
|
||||||
float getDefaultScale();
|
float getDefaultScale();
|
||||||
|
void changeWorkspace(CWorkspace* const pWorkspace, bool internal = false);
|
||||||
|
void changeWorkspace(const int& id, bool internal = false);
|
||||||
|
void setSpecialWorkspace(CWorkspace* const pWorkspace);
|
||||||
|
void setSpecialWorkspace(const int& id);
|
||||||
|
|
||||||
std::shared_ptr<CMonitor>* m_pThisWrap = nullptr;
|
std::shared_ptr<CMonitor>* m_pThisWrap = nullptr;
|
||||||
bool m_bEnabled = false;
|
bool m_bEnabled = false;
|
||||||
|
|
|
@ -728,41 +728,30 @@ void CKeybindManager::changeworkspace(std::string args) {
|
||||||
int workspaceToChangeTo = 0;
|
int workspaceToChangeTo = 0;
|
||||||
std::string workspaceName = "";
|
std::string workspaceName = "";
|
||||||
|
|
||||||
// Flag needed so that the previous workspace is not recorded when switching
|
// Workspace_back_and_forth being enabled means that an attempt to switch to
|
||||||
// to a previous workspace.
|
// the current workspace will instead switch to the previous.
|
||||||
bool isSwitchingToPrevious = false;
|
static auto* const PBACKANDFORTH = &g_pConfigManager->getConfigValuePtr("binds:workspace_back_and_forth")->intValue;
|
||||||
|
static auto* const PALLOWWORKSPACECYCLES = &g_pConfigManager->getConfigValuePtr("binds:allow_workspace_cycles")->intValue;
|
||||||
|
|
||||||
bool internal = false;
|
const auto PMONITOR = g_pCompositor->m_pLastMonitor;
|
||||||
|
const auto PCURRENTWORKSPACE = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace);
|
||||||
if (args.find("[internal]") == 0) {
|
|
||||||
workspaceToChangeTo = std::stoi(args.substr(10));
|
|
||||||
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(workspaceToChangeTo);
|
|
||||||
if (PWORKSPACE)
|
|
||||||
workspaceName = PWORKSPACE->m_szName;
|
|
||||||
|
|
||||||
internal = true;
|
|
||||||
} else if (args.find("previous") == 0) {
|
|
||||||
const auto PCURRENTWORKSPACE = g_pCompositor->getWorkspaceByID(g_pCompositor->m_pLastMonitor->activeWorkspace);
|
|
||||||
|
|
||||||
|
if (args.find("previous") == 0) {
|
||||||
// Do nothing if there's no previous workspace, otherwise switch to it.
|
// Do nothing if there's no previous workspace, otherwise switch to it.
|
||||||
if (PCURRENTWORKSPACE->m_sPrevWorkspace.iID == -1) {
|
if (PCURRENTWORKSPACE->m_sPrevWorkspace.iID == -1) {
|
||||||
Debug::log(LOG, "No previous workspace to change to");
|
Debug::log(LOG, "No previous workspace to change to");
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
workspaceToChangeTo = PCURRENTWORKSPACE->m_sPrevWorkspace.iID;
|
workspaceToChangeTo = PCURRENTWORKSPACE->m_iID;
|
||||||
|
|
||||||
if (const auto PWORKSPACETOCHANGETO = g_pCompositor->getWorkspaceByID(workspaceToChangeTo); PWORKSPACETOCHANGETO)
|
if (const auto PWORKSPACETOCHANGETO = g_pCompositor->getWorkspaceByID(PCURRENTWORKSPACE->m_sPrevWorkspace.iID); PWORKSPACETOCHANGETO)
|
||||||
workspaceName = PWORKSPACETOCHANGETO->m_szName;
|
workspaceName = PWORKSPACETOCHANGETO->m_szName;
|
||||||
else
|
else
|
||||||
workspaceName = PCURRENTWORKSPACE->m_sPrevWorkspace.name.empty() ? std::to_string(workspaceToChangeTo) : PCURRENTWORKSPACE->m_sPrevWorkspace.name;
|
workspaceName =
|
||||||
|
PCURRENTWORKSPACE->m_sPrevWorkspace.name.empty() ? std::to_string(PCURRENTWORKSPACE->m_sPrevWorkspace.iID) : PCURRENTWORKSPACE->m_sPrevWorkspace.name;
|
||||||
|
|
||||||
// If the previous workspace ID isn't reset, cycles can form when continually going
|
|
||||||
// to the previous workspace again and again.
|
|
||||||
static auto* const PALLOWWORKSPACECYCLES = &g_pConfigManager->getConfigValuePtr("binds:allow_workspace_cycles")->intValue;
|
|
||||||
if (!*PALLOWWORKSPACECYCLES)
|
if (!*PALLOWWORKSPACECYCLES)
|
||||||
PCURRENTWORKSPACE->m_sPrevWorkspace = {-1, ""};
|
PCURRENTWORKSPACE->m_sPrevWorkspace = {-1, ""};
|
||||||
else
|
|
||||||
isSwitchingToPrevious = true;
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
workspaceToChangeTo = getWorkspaceIDFromString(args, workspaceName);
|
workspaceToChangeTo = getWorkspaceIDFromString(args, workspaceName);
|
||||||
|
@ -773,198 +762,66 @@ void CKeybindManager::changeworkspace(std::string args) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Workspace_back_and_forth being enabled means that an attempt to switch to
|
|
||||||
// the current workspace will instead switch to the previous.
|
|
||||||
const auto PCURRENTWORKSPACE = g_pCompositor->getWorkspaceByID(g_pCompositor->m_pLastMonitor->activeWorkspace);
|
|
||||||
static auto* const PBACKANDFORTH = &g_pConfigManager->getConfigValuePtr("binds:workspace_back_and_forth")->intValue;
|
|
||||||
|
|
||||||
if (*PBACKANDFORTH && PCURRENTWORKSPACE && PCURRENTWORKSPACE->m_iID == workspaceToChangeTo && PCURRENTWORKSPACE->m_sPrevWorkspace.iID != -1 && !internal) {
|
|
||||||
|
|
||||||
const auto PPREVWORKSPACE = g_pCompositor->getWorkspaceByID(PCURRENTWORKSPACE->m_sPrevWorkspace.iID);
|
|
||||||
|
|
||||||
workspaceToChangeTo = PCURRENTWORKSPACE->m_sPrevWorkspace.iID;
|
|
||||||
|
|
||||||
if (PPREVWORKSPACE)
|
|
||||||
workspaceName = PPREVWORKSPACE->m_szName;
|
|
||||||
else
|
|
||||||
workspaceName = PCURRENTWORKSPACE->m_sPrevWorkspace.name.empty() ? std::to_string(workspaceToChangeTo) : PCURRENTWORKSPACE->m_sPrevWorkspace.name;
|
|
||||||
|
|
||||||
// If the previous workspace ID isn't reset, cycles can form when continually going
|
|
||||||
// to the previous workspace again and again.
|
|
||||||
static auto* const PALLOWWORKSPACECYCLES = &g_pConfigManager->getConfigValuePtr("binds:allow_workspace_cycles")->intValue;
|
|
||||||
if (!*PALLOWWORKSPACECYCLES)
|
|
||||||
PCURRENTWORKSPACE->m_sPrevWorkspace = {-1, ""};
|
|
||||||
else
|
|
||||||
isSwitchingToPrevious = true;
|
|
||||||
|
|
||||||
} else if (PCURRENTWORKSPACE && PCURRENTWORKSPACE->m_iID == workspaceToChangeTo && !internal)
|
|
||||||
return;
|
|
||||||
|
|
||||||
// remove constraints
|
|
||||||
g_pInputManager->unconstrainMouse();
|
g_pInputManager->unconstrainMouse();
|
||||||
|
|
||||||
g_pInputManager->m_bEmptyFocusCursorSet = false;
|
g_pInputManager->m_bEmptyFocusCursorSet = false;
|
||||||
|
|
||||||
// if it's not internal, we will unfocus to prevent stuck focus
|
if (workspaceToChangeTo == PCURRENTWORKSPACE->m_iID) {
|
||||||
if (!internal)
|
if (!*PBACKANDFORTH || PCURRENTWORKSPACE->m_sPrevWorkspace.iID == -1)
|
||||||
g_pCompositor->focusWindow(nullptr);
|
return;
|
||||||
|
|
||||||
// if it exists, we warp to it
|
auto pWorkspaceToChangeTo = g_pCompositor->getWorkspaceByID(PCURRENTWORKSPACE->m_sPrevWorkspace.iID);
|
||||||
if (g_pCompositor->getWorkspaceByID(workspaceToChangeTo)) {
|
|
||||||
const auto PMONITOR = g_pCompositor->getMonitorFromID(g_pCompositor->getWorkspaceByID(workspaceToChangeTo)->m_iMonitorID);
|
|
||||||
|
|
||||||
const auto PWORKSPACETOCHANGETO = g_pCompositor->getWorkspaceByID(workspaceToChangeTo);
|
if (pWorkspaceToChangeTo) {
|
||||||
|
const auto PMONITORWORKSPACEOWNER = PMONITOR->ID == pWorkspaceToChangeTo->m_iMonitorID ? PMONITOR : g_pCompositor->getMonitorFromID(pWorkspaceToChangeTo->m_iMonitorID);
|
||||||
|
|
||||||
if (!isSwitchingToPrevious && !internal) {
|
if (!PMONITORWORKSPACEOWNER)
|
||||||
// Remember previous workspace.
|
return;
|
||||||
PWORKSPACETOCHANGETO->m_sPrevWorkspace.iID = g_pCompositor->m_pLastMonitor->activeWorkspace;
|
|
||||||
PWORKSPACETOCHANGETO->m_sPrevWorkspace.name = g_pCompositor->getWorkspaceByID(g_pCompositor->m_pLastMonitor->activeWorkspace)->m_szName;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (g_pCompositor->isWorkspaceSpecial(workspaceToChangeTo))
|
const auto PREVWSDATA = pWorkspaceToChangeTo->m_sPrevWorkspace;
|
||||||
PWORKSPACETOCHANGETO->m_iMonitorID = PMONITOR->ID;
|
|
||||||
|
|
||||||
// if it's not visible, make it visible.
|
PMONITORWORKSPACEOWNER->changeWorkspace(pWorkspaceToChangeTo);
|
||||||
if (!g_pCompositor->isWorkspaceVisible(workspaceToChangeTo)) {
|
|
||||||
const auto OLDWORKSPACEID = PMONITOR->activeWorkspace;
|
|
||||||
|
|
||||||
// fix pinned windows
|
if (PMONITOR != PMONITORWORKSPACEOWNER) {
|
||||||
for (auto& w : g_pCompositor->m_vWindows) {
|
g_pCompositor->setActiveMonitor(PMONITORWORKSPACEOWNER);
|
||||||
if (w->m_iWorkspaceID == PMONITOR->activeWorkspace && w->m_bPinned) {
|
if (const auto PLASTWINDOW = pWorkspaceToChangeTo->getLastFocusedWindow(); PLASTWINDOW)
|
||||||
w->m_iWorkspaceID = workspaceToChangeTo;
|
g_pCompositor->focusWindow(PLASTWINDOW);
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// change it
|
|
||||||
if (!g_pCompositor->isWorkspaceSpecial(workspaceToChangeTo))
|
|
||||||
PMONITOR->activeWorkspace = workspaceToChangeTo;
|
|
||||||
else
|
else
|
||||||
PMONITOR->specialWorkspaceID = workspaceToChangeTo;
|
g_pInputManager->refocus();
|
||||||
|
|
||||||
// here and only here begin anim. we don't want to anim visible workspaces on other monitors.
|
|
||||||
// check if anim left or right
|
|
||||||
const auto ANIMTOLEFT = workspaceToChangeTo > OLDWORKSPACEID;
|
|
||||||
|
|
||||||
// start anim on old workspace
|
|
||||||
g_pCompositor->getWorkspaceByID(OLDWORKSPACEID)->startAnim(false, ANIMTOLEFT);
|
|
||||||
|
|
||||||
// start anim on new workspace
|
|
||||||
PWORKSPACETOCHANGETO->startAnim(true, ANIMTOLEFT);
|
|
||||||
|
|
||||||
g_pEventManager->postEvent(SHyprIPCEvent{"workspace", PWORKSPACETOCHANGETO->m_szName});
|
|
||||||
EMIT_HOOK_EVENT("workspace", PWORKSPACETOCHANGETO);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the monitor is not the one our cursor's at, warp to it.
|
if (*PALLOWWORKSPACECYCLES)
|
||||||
const bool anotherMonitor = PMONITOR != g_pCompositor->m_pLastMonitor;
|
pWorkspaceToChangeTo->m_sPrevWorkspace = {PCURRENTWORKSPACE->m_iID, PCURRENTWORKSPACE->m_szName};
|
||||||
if (anotherMonitor)
|
} else {
|
||||||
g_pCompositor->warpCursorTo(PMONITOR->vecPosition + PMONITOR->vecSize / 2.f);
|
pWorkspaceToChangeTo = g_pCompositor->createNewWorkspace(PCURRENTWORKSPACE->m_sPrevWorkspace.iID, PMONITOR->ID, PCURRENTWORKSPACE->m_sPrevWorkspace.name);
|
||||||
|
PMONITOR->changeWorkspace(pWorkspaceToChangeTo);
|
||||||
// set active and deactivate all other in wlr
|
|
||||||
g_pCompositor->deactivateAllWLRWorkspaces(PWORKSPACETOCHANGETO->m_pWlrHandle);
|
|
||||||
PWORKSPACETOCHANGETO->setActive(true);
|
|
||||||
|
|
||||||
// recalc layout
|
|
||||||
g_pLayoutManager->getCurrentLayout()->recalculateMonitor(PWORKSPACETOCHANGETO->m_iMonitorID);
|
|
||||||
|
|
||||||
Debug::log(LOG, "Changed to workspace %i", workspaceToChangeTo);
|
|
||||||
|
|
||||||
// focus
|
|
||||||
if (const auto PWINDOW = PWORKSPACETOCHANGETO->getLastFocusedWindow(); PWINDOW) {
|
|
||||||
// warp and focus
|
|
||||||
if (anotherMonitor)
|
|
||||||
g_pCompositor->warpCursorTo(PWINDOW->m_vRealPosition.vec() + PWINDOW->m_vRealSize.vec() / 2.f);
|
|
||||||
|
|
||||||
g_pCompositor->focusWindow(PWINDOW, PWINDOW->m_pWLSurface.wlr());
|
|
||||||
|
|
||||||
if (g_pCompositor->cursorOnReservedArea()) // fix focus on bars etc
|
|
||||||
g_pInputManager->refocus();
|
|
||||||
} else if (g_pCompositor->getWindowsOnWorkspace(PWORKSPACETOCHANGETO->m_iID) > 0)
|
|
||||||
g_pInputManager->refocus();
|
|
||||||
else {
|
|
||||||
// if there are no windows on the workspace, just unfocus the window on the previous workspace
|
|
||||||
g_pCompositor->focusWindow(nullptr);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// set the new monitor as the last (no warps would bug otherwise)
|
|
||||||
g_pCompositor->setActiveMonitor(g_pCompositor->getMonitorFromID(PWORKSPACETOCHANGETO->m_iMonitorID));
|
|
||||||
|
|
||||||
// mark the monitor dirty
|
|
||||||
g_pHyprRenderer->damageMonitor(PMONITOR);
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Workspace doesn't exist, create and switch
|
auto pWorkspaceToChangeTo = g_pCompositor->getWorkspaceByID(workspaceToChangeTo);
|
||||||
const auto BOUNDMON = g_pConfigManager->getBoundMonitorForWS(workspaceName);
|
if (!pWorkspaceToChangeTo)
|
||||||
|
pWorkspaceToChangeTo = g_pCompositor->createNewWorkspace(workspaceToChangeTo, PMONITOR->ID);
|
||||||
|
|
||||||
const auto PMONITOR = BOUNDMON ? BOUNDMON : g_pCompositor->getMonitorFromCursor();
|
if (pWorkspaceToChangeTo->m_bIsSpecialWorkspace) {
|
||||||
|
PMONITOR->setSpecialWorkspace(pWorkspaceToChangeTo);
|
||||||
const auto OLDWORKSPACE = PMONITOR->activeWorkspace;
|
return;
|
||||||
|
|
||||||
// get anim direction
|
|
||||||
const auto ANIMTOLEFT = workspaceToChangeTo > OLDWORKSPACE;
|
|
||||||
|
|
||||||
// start anim on old workspace
|
|
||||||
if (const auto POLDWORKSPACE = g_pCompositor->getWorkspaceByID(OLDWORKSPACE); POLDWORKSPACE)
|
|
||||||
POLDWORKSPACE->startAnim(false, ANIMTOLEFT);
|
|
||||||
|
|
||||||
const auto PWORKSPACE = g_pCompositor->createNewWorkspace(workspaceToChangeTo, PMONITOR->ID, workspaceName);
|
|
||||||
|
|
||||||
const bool ANOTHERMONITOR = PMONITOR != g_pCompositor->m_pLastMonitor;
|
|
||||||
|
|
||||||
if (!isSwitchingToPrevious) {
|
|
||||||
// Remember previous workspace.
|
|
||||||
PWORKSPACE->m_sPrevWorkspace.iID = OLDWORKSPACE;
|
|
||||||
if (const auto POLDWORKSPACE = g_pCompositor->getWorkspaceByID(OLDWORKSPACE); POLDWORKSPACE)
|
|
||||||
PWORKSPACE->m_sPrevWorkspace.name = POLDWORKSPACE->m_szName;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// start anim on new workspace
|
const auto PMONITORWORKSPACEOWNER = PMONITOR->ID == pWorkspaceToChangeTo->m_iMonitorID ? PMONITOR : g_pCompositor->getMonitorFromID(pWorkspaceToChangeTo->m_iMonitorID);
|
||||||
PWORKSPACE->startAnim(true, ANIMTOLEFT);
|
|
||||||
|
|
||||||
PMONITOR->specialWorkspaceID = 0;
|
PMONITORWORKSPACEOWNER->changeWorkspace(pWorkspaceToChangeTo);
|
||||||
|
g_pCompositor->warpCursorTo(PMONITORWORKSPACEOWNER->vecPosition + PMONITORWORKSPACEOWNER->vecSize / 2.f);
|
||||||
|
|
||||||
// fix pinned windows
|
if (PMONITOR != PMONITORWORKSPACEOWNER) {
|
||||||
for (auto& w : g_pCompositor->m_vWindows) {
|
g_pCompositor->setActiveMonitor(PMONITORWORKSPACEOWNER);
|
||||||
if (w->m_iWorkspaceID == PMONITOR->activeWorkspace && w->m_bPinned) {
|
if (const auto PLASTWINDOW = pWorkspaceToChangeTo->getLastFocusedWindow(); PLASTWINDOW)
|
||||||
w->m_iWorkspaceID = workspaceToChangeTo;
|
g_pCompositor->focusWindow(PLASTWINDOW);
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!g_pCompositor->isWorkspaceSpecial(workspaceToChangeTo))
|
|
||||||
PMONITOR->activeWorkspace = workspaceToChangeTo;
|
|
||||||
else
|
else
|
||||||
PMONITOR->specialWorkspaceID = workspaceToChangeTo;
|
|
||||||
|
|
||||||
// set active and deactivate all other
|
|
||||||
g_pCompositor->deactivateAllWLRWorkspaces(PWORKSPACE->m_pWlrHandle);
|
|
||||||
PWORKSPACE->setActive(true);
|
|
||||||
|
|
||||||
// mark the monitor dirty
|
|
||||||
g_pHyprRenderer->damageMonitor(PMONITOR);
|
|
||||||
|
|
||||||
// some stuf with the cursor and focus
|
|
||||||
if (g_pCompositor->m_pLastMonitor != PMONITOR)
|
|
||||||
g_pCompositor->warpCursorTo(PMONITOR->vecPosition + PMONITOR->vecSize / 2.f);
|
|
||||||
|
|
||||||
g_pEventManager->postEvent(SHyprIPCEvent{"workspace", PWORKSPACE->m_szName});
|
|
||||||
EMIT_HOOK_EVENT("workspace", PWORKSPACE);
|
|
||||||
|
|
||||||
g_pCompositor->setActiveMonitor(PMONITOR);
|
|
||||||
|
|
||||||
// focus (clears the last)
|
|
||||||
g_pInputManager->refocus();
|
g_pInputManager->refocus();
|
||||||
|
}
|
||||||
|
|
||||||
// Events
|
pWorkspaceToChangeTo->m_sPrevWorkspace = {PCURRENTWORKSPACE->m_iID, PCURRENTWORKSPACE->m_szName};
|
||||||
if (ANOTHERMONITOR)
|
|
||||||
g_pCompositor->warpCursorTo(PMONITOR->vecPosition + PMONITOR->vecSize / 2.f);
|
|
||||||
|
|
||||||
// Destroy old workspace if it is empty
|
|
||||||
if (!internal)
|
|
||||||
g_pCompositor->sanityCheckWorkspaces();
|
|
||||||
|
|
||||||
Debug::log(LOG, "Changed to workspace %i", workspaceToChangeTo);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CKeybindManager::fullscreenActive(std::string args) {
|
void CKeybindManager::fullscreenActive(std::string args) {
|
||||||
|
@ -993,8 +850,6 @@ void CKeybindManager::moveActiveToWorkspace(std::string args) {
|
||||||
if (!PWINDOW)
|
if (!PWINDOW)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
const auto OLDWORKSPACE = g_pCompositor->getWorkspaceByID(PWINDOW->m_iWorkspaceID);
|
|
||||||
|
|
||||||
// hack
|
// hack
|
||||||
std::string workspaceName;
|
std::string workspaceName;
|
||||||
const auto WORKSPACEID = getWorkspaceIDFromString(args, workspaceName);
|
const auto WORKSPACEID = getWorkspaceIDFromString(args, workspaceName);
|
||||||
|
@ -1009,59 +864,21 @@ void CKeybindManager::moveActiveToWorkspace(std::string args) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
auto PSAVEDSIZE = PWINDOW->m_bIsFloating && PWINDOW->m_bIsFullscreen ? PWINDOW->m_vLastFloatingSize : PWINDOW->m_vRealSize.goalv();
|
auto pWorkspace = g_pCompositor->getWorkspaceByID(WORKSPACEID);
|
||||||
auto PSAVEDPOS = PWINDOW->m_bIsFloating && PWINDOW->m_bIsFullscreen ? PWINDOW->m_vLastFloatingPosition : PWINDOW->m_vRealPosition.goalv();
|
|
||||||
const bool WASFULLSCREEN = PWINDOW->m_bIsFullscreen;
|
|
||||||
|
|
||||||
g_pLayoutManager->getCurrentLayout()->onWindowRemoved(PWINDOW);
|
if (pWorkspace) {
|
||||||
|
g_pCompositor->moveWindowToWorkspaceSafe(PWINDOW, pWorkspace);
|
||||||
auto PWORKSPACE = g_pCompositor->getWorkspaceByID(WORKSPACEID);
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(pWorkspace->m_iMonitorID);
|
||||||
|
PMONITOR->changeWorkspace(pWorkspace);
|
||||||
if (PWORKSPACE == OLDWORKSPACE) {
|
|
||||||
Debug::log(LOG, "Not moving to workspace because it didn't change.");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!PWORKSPACE) {
|
|
||||||
// create
|
|
||||||
PWORKSPACE = g_pCompositor->createNewWorkspace(WORKSPACEID, OLDWORKSPACE->m_iMonitorID, workspaceName);
|
|
||||||
}
|
|
||||||
|
|
||||||
PWINDOW->m_iMonitorID = PWORKSPACE->m_iMonitorID;
|
|
||||||
PWINDOW->moveToWorkspace(PWORKSPACE->m_iID);
|
|
||||||
PWINDOW->updateGroupOutputs();
|
|
||||||
|
|
||||||
if (PWORKSPACE->m_bHasFullscreenWindow) {
|
|
||||||
g_pCompositor->setWindowFullscreen(g_pCompositor->getFullscreenWindowOnWorkspace(PWORKSPACE->m_iID), false, FULLSCREEN_FULL);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Hack: So that the layout doesnt find our window at the cursor
|
|
||||||
PWINDOW->m_vPosition = Vector2D(-42069, -42069);
|
|
||||||
|
|
||||||
g_pLayoutManager->getCurrentLayout()->onWindowCreated(PWINDOW);
|
|
||||||
|
|
||||||
// and restore it
|
|
||||||
if (PWINDOW->m_bIsFloating) {
|
|
||||||
PWINDOW->m_vRealSize.setValueAndWarp(PSAVEDSIZE);
|
|
||||||
PWINDOW->m_vRealPosition.setValueAndWarp(PSAVEDPOS - g_pCompositor->getMonitorFromID(OLDWORKSPACE->m_iMonitorID)->vecPosition +
|
|
||||||
g_pCompositor->getMonitorFromID(PWORKSPACE->m_iMonitorID)->vecPosition);
|
|
||||||
PWINDOW->m_vPosition = PWINDOW->m_vRealPosition.vec();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (WASFULLSCREEN)
|
|
||||||
g_pCompositor->setWindowFullscreen(PWINDOW, true, OLDWORKSPACE->m_efFullscreenMode);
|
|
||||||
|
|
||||||
if (!g_pCompositor->isWorkspaceSpecial(WORKSPACEID)) {
|
|
||||||
g_pKeybindManager->changeworkspace(args);
|
|
||||||
g_pCompositor->focusWindow(PWINDOW);
|
|
||||||
} else {
|
} else {
|
||||||
g_pHyprRenderer->damageMonitor(g_pCompositor->getMonitorFromID(PWINDOW->m_iMonitorID));
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(PWINDOW->m_iMonitorID);
|
||||||
g_pInputManager->refocus();
|
pWorkspace = g_pCompositor->createNewWorkspace(WORKSPACEID, PWINDOW->m_iMonitorID, workspaceName);
|
||||||
|
g_pCompositor->moveWindowToWorkspaceSafe(PWINDOW, pWorkspace);
|
||||||
|
PMONITOR->changeWorkspace(pWorkspace);
|
||||||
}
|
}
|
||||||
|
|
||||||
PWINDOW->updateToplevel();
|
g_pCompositor->focusWindow(PWINDOW);
|
||||||
|
g_pCompositor->warpCursorTo(PWINDOW->middle());
|
||||||
g_pHyprRenderer->damageMonitor(g_pCompositor->getMonitorFromID(PWINDOW->m_iMonitorID));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void CKeybindManager::moveActiveToWorkspaceSilent(std::string args) {
|
void CKeybindManager::moveActiveToWorkspaceSilent(std::string args) {
|
||||||
|
@ -1082,70 +899,31 @@ void CKeybindManager::moveActiveToWorkspaceSilent(std::string args) {
|
||||||
if (!PWINDOW)
|
if (!PWINDOW)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
int workspaceToMoveTo = 0;
|
|
||||||
std::string workspaceName = "";
|
std::string workspaceName = "";
|
||||||
|
|
||||||
workspaceToMoveTo = getWorkspaceIDFromString(args, workspaceName);
|
const int WORKSPACEID = getWorkspaceIDFromString(args, workspaceName);
|
||||||
|
|
||||||
if (workspaceToMoveTo == INT_MAX) {
|
if (WORKSPACEID == INT_MAX) {
|
||||||
Debug::log(ERR, "Error in moveActiveToWorkspaceSilent, invalid value");
|
Debug::log(ERR, "Error in moveActiveToWorkspaceSilent, invalid value");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto PMONITOR = g_pCompositor->getMonitorFromID(PWINDOW->m_iMonitorID);
|
if (WORKSPACEID == PWINDOW->m_iWorkspaceID)
|
||||||
|
|
||||||
if (workspaceToMoveTo == PWINDOW->m_iWorkspaceID)
|
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// may be null until later!
|
auto pWorkspace = g_pCompositor->getWorkspaceByID(WORKSPACEID);
|
||||||
auto PWORKSPACE = g_pCompositor->getWorkspaceByID(workspaceToMoveTo);
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(PWINDOW->m_iMonitorID);
|
||||||
|
const auto OLDMIDDLE = PWINDOW->middle();
|
||||||
|
|
||||||
auto PMONITORNEW = PWORKSPACE ? g_pCompositor->getMonitorFromID(PWORKSPACE->m_iMonitorID) : PMONITOR;
|
if (pWorkspace) {
|
||||||
if (!PWORKSPACE) {
|
g_pCompositor->moveWindowToWorkspaceSafe(PWINDOW, pWorkspace);
|
||||||
const auto BOUNDMON = g_pConfigManager->getBoundMonitorForWS(workspaceName);
|
} else {
|
||||||
if (BOUNDMON)
|
pWorkspace = g_pCompositor->createNewWorkspace(WORKSPACEID, PWINDOW->m_iMonitorID, workspaceName);
|
||||||
PMONITORNEW = BOUNDMON;
|
g_pCompositor->moveWindowToWorkspaceSafe(PWINDOW, pWorkspace);
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto OLDWORKSPACEIDONMONITOR = PMONITORNEW->activeWorkspace;
|
if (const auto PATCOORDS = g_pCompositor->vectorToWindowIdeal(OLDMIDDLE); PATCOORDS && PATCOORDS != PWINDOW)
|
||||||
const auto OLDWORKSPACEIDRETURN = PMONITOR->activeWorkspace;
|
g_pCompositor->focusWindow(PATCOORDS);
|
||||||
|
|
||||||
const auto POLDWORKSPACEONMON = g_pCompositor->getWorkspaceByID(OLDWORKSPACEIDONMONITOR);
|
|
||||||
const auto POLDWORKSPACEIDRETURN = g_pCompositor->getWorkspaceByID(OLDWORKSPACEIDRETURN);
|
|
||||||
|
|
||||||
g_pEventManager->m_bIgnoreEvents = true;
|
|
||||||
|
|
||||||
moveActiveToWorkspace(ORIGINALARGS);
|
|
||||||
|
|
||||||
PWORKSPACE = g_pCompositor->getWorkspaceByID(workspaceToMoveTo);
|
|
||||||
|
|
||||||
changeworkspace("[internal]" + std::to_string(OLDWORKSPACEIDONMONITOR));
|
|
||||||
changeworkspace("[internal]" + std::to_string(OLDWORKSPACEIDRETURN));
|
|
||||||
|
|
||||||
// revert animations
|
|
||||||
PWORKSPACE->m_vRenderOffset.setValueAndWarp(Vector2D(0, 0));
|
|
||||||
PWORKSPACE->m_fAlpha.setValueAndWarp(0.f);
|
|
||||||
|
|
||||||
POLDWORKSPACEIDRETURN->m_vRenderOffset.setValueAndWarp(Vector2D(0, 0));
|
|
||||||
POLDWORKSPACEIDRETURN->m_fAlpha.setValueAndWarp(1.f);
|
|
||||||
|
|
||||||
POLDWORKSPACEONMON->m_vRenderOffset.setValueAndWarp(Vector2D(0, 0));
|
|
||||||
POLDWORKSPACEONMON->m_fAlpha.setValueAndWarp(1.f);
|
|
||||||
|
|
||||||
g_pEventManager->m_bIgnoreEvents = false;
|
|
||||||
|
|
||||||
// manually post event cuz it got ignored above
|
|
||||||
g_pEventManager->postEvent(SHyprIPCEvent{"movewindow", getFormat("%x,%s", PWINDOW, PWORKSPACE->m_szName.c_str())});
|
|
||||||
EMIT_HOOK_EVENT("moveWindow", (std::vector<void*>{PWINDOW, PWORKSPACE}));
|
|
||||||
|
|
||||||
PWINDOW->m_iWorkspaceID = OLDWORKSPACEIDRETURN;
|
|
||||||
const auto PNEXTCANDIDATE = g_pLayoutManager->getCurrentLayout()->getNextWindowCandidate(PWINDOW);
|
|
||||||
PWINDOW->m_iWorkspaceID = workspaceToMoveTo;
|
|
||||||
|
|
||||||
if (PNEXTCANDIDATE)
|
|
||||||
g_pCompositor->focusWindow(PNEXTCANDIDATE);
|
|
||||||
else if (const auto PWINDOWATLAST = g_pCompositor->vectorToWindowIdeal(PWINDOW->m_vRealPosition.goalv() + PWINDOW->m_vRealSize.goalv() / 2.f); PWINDOWATLAST)
|
|
||||||
g_pCompositor->focusWindow(PWINDOWATLAST);
|
|
||||||
else
|
else
|
||||||
g_pInputManager->refocus();
|
g_pInputManager->refocus();
|
||||||
}
|
}
|
||||||
|
@ -1668,16 +1446,7 @@ void CKeybindManager::toggleSpecialWorkspace(std::string args) {
|
||||||
|
|
||||||
if (requestedWorkspaceIsAlreadyOpen && specialOpenOnMonitor == workspaceID) {
|
if (requestedWorkspaceIsAlreadyOpen && specialOpenOnMonitor == workspaceID) {
|
||||||
// already open on this monitor
|
// already open on this monitor
|
||||||
|
PMONITOR->setSpecialWorkspace(nullptr);
|
||||||
PMONITOR->specialWorkspaceID = 0;
|
|
||||||
g_pLayoutManager->getCurrentLayout()->recalculateMonitor(PMONITOR->ID);
|
|
||||||
|
|
||||||
g_pCompositor->getWorkspaceByID(workspaceID)->startAnim(false, false);
|
|
||||||
|
|
||||||
if (const auto PWINDOW = g_pCompositor->getWorkspaceByID(PMONITOR->activeWorkspace)->getLastFocusedWindow(); PWINDOW)
|
|
||||||
g_pCompositor->focusWindow(PWINDOW);
|
|
||||||
else
|
|
||||||
g_pInputManager->refocus();
|
|
||||||
} else if (requestedWorkspaceIsAlreadyOpen) {
|
} else if (requestedWorkspaceIsAlreadyOpen) {
|
||||||
// already open on another monitor
|
// already open on another monitor
|
||||||
|
|
||||||
|
@ -1703,13 +1472,6 @@ void CKeybindManager::toggleSpecialWorkspace(std::string args) {
|
||||||
g_pInputManager->refocus();
|
g_pInputManager->refocus();
|
||||||
} else {
|
} else {
|
||||||
// not open anywhere
|
// not open anywhere
|
||||||
|
|
||||||
if (specialOpenOnMonitor) {
|
|
||||||
g_pCompositor->getWorkspaceByID(PMONITOR->specialWorkspaceID)->startAnim(false, false);
|
|
||||||
PMONITOR->specialWorkspaceID = 0;
|
|
||||||
g_pLayoutManager->getCurrentLayout()->recalculateMonitor(PMONITOR->ID);
|
|
||||||
}
|
|
||||||
|
|
||||||
auto PSPECIALWORKSPACE = g_pCompositor->getWorkspaceByID(workspaceID);
|
auto PSPECIALWORKSPACE = g_pCompositor->getWorkspaceByID(workspaceID);
|
||||||
|
|
||||||
if (!PSPECIALWORKSPACE) {
|
if (!PSPECIALWORKSPACE) {
|
||||||
|
@ -1717,16 +1479,7 @@ void CKeybindManager::toggleSpecialWorkspace(std::string args) {
|
||||||
PSPECIALWORKSPACE = g_pCompositor->createNewWorkspace(workspaceID, PMONITOR->ID, workspaceName);
|
PSPECIALWORKSPACE = g_pCompositor->createNewWorkspace(workspaceID, PMONITOR->ID, workspaceName);
|
||||||
}
|
}
|
||||||
|
|
||||||
PMONITOR->specialWorkspaceID = workspaceID;
|
PMONITOR->setSpecialWorkspace(PSPECIALWORKSPACE);
|
||||||
g_pLayoutManager->getCurrentLayout()->recalculateMonitor(PMONITOR->ID);
|
|
||||||
|
|
||||||
PSPECIALWORKSPACE->m_iMonitorID = PMONITOR->ID;
|
|
||||||
PSPECIALWORKSPACE->startAnim(true, true);
|
|
||||||
|
|
||||||
if (const auto PWINDOW = PSPECIALWORKSPACE->getLastFocusedWindow(); PWINDOW)
|
|
||||||
g_pCompositor->focusWindow(PWINDOW);
|
|
||||||
else
|
|
||||||
g_pInputManager->refocus();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -115,9 +115,9 @@ void CInputManager::onSwipeEnd(wlr_pointer_swipe_end_event* e) {
|
||||||
const auto RENDEROFFSET = PWORKSPACEL ? PWORKSPACEL->m_vRenderOffset.vec() : Vector2D();
|
const auto RENDEROFFSET = PWORKSPACEL ? PWORKSPACEL->m_vRenderOffset.vec() : Vector2D();
|
||||||
|
|
||||||
if (PWORKSPACEL)
|
if (PWORKSPACEL)
|
||||||
g_pKeybindManager->m_mDispatchers["workspace"]("[internal]" + std::to_string(workspaceIDLeft));
|
m_sActiveSwipe.pMonitor->changeWorkspace(workspaceIDLeft);
|
||||||
else {
|
else {
|
||||||
g_pKeybindManager->m_mDispatchers["workspace"](std::to_string(workspaceIDLeft)); // so that the ID is created properly
|
m_sActiveSwipe.pMonitor->changeWorkspace(g_pCompositor->createNewWorkspace(workspaceIDLeft, m_sActiveSwipe.pMonitor->ID));
|
||||||
PWORKSPACEL = g_pCompositor->getWorkspaceByID(workspaceIDLeft);
|
PWORKSPACEL = g_pCompositor->getWorkspaceByID(workspaceIDLeft);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,9 +141,9 @@ void CInputManager::onSwipeEnd(wlr_pointer_swipe_end_event* e) {
|
||||||
const auto RENDEROFFSET = PWORKSPACER ? PWORKSPACER->m_vRenderOffset.vec() : Vector2D();
|
const auto RENDEROFFSET = PWORKSPACER ? PWORKSPACER->m_vRenderOffset.vec() : Vector2D();
|
||||||
|
|
||||||
if (PWORKSPACER)
|
if (PWORKSPACER)
|
||||||
g_pKeybindManager->m_mDispatchers["workspace"]("[internal]" + std::to_string(workspaceIDRight));
|
m_sActiveSwipe.pMonitor->changeWorkspace(workspaceIDRight);
|
||||||
else {
|
else {
|
||||||
g_pKeybindManager->m_mDispatchers["workspace"](std::to_string(workspaceIDRight)); // so that the ID is created properly
|
m_sActiveSwipe.pMonitor->changeWorkspace(g_pCompositor->createNewWorkspace(workspaceIDRight, m_sActiveSwipe.pMonitor->ID));
|
||||||
PWORKSPACER = g_pCompositor->getWorkspaceByID(workspaceIDRight);
|
PWORKSPACER = g_pCompositor->getWorkspaceByID(workspaceIDRight);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue