2022-06-30 12:09:05 +02:00
|
|
|
#include "IHyprLayout.hpp"
|
|
|
|
#include "../defines.hpp"
|
|
|
|
#include "../Compositor.hpp"
|
|
|
|
|
|
|
|
void IHyprLayout::onWindowCreated(CWindow* pWindow) {
|
|
|
|
if (pWindow->m_bIsFloating) {
|
|
|
|
onWindowCreatedFloating(pWindow);
|
|
|
|
} else {
|
2022-08-05 17:52:14 +02:00
|
|
|
wlr_box desiredGeometry = {0};
|
|
|
|
g_pXWaylandManager->getGeometryForWindow(pWindow, &desiredGeometry);
|
|
|
|
|
|
|
|
if (desiredGeometry.width <= 5 || desiredGeometry.height <= 5) {
|
2022-12-16 18:17:31 +01:00
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(pWindow->m_iMonitorID);
|
2022-08-05 17:52:14 +02:00
|
|
|
pWindow->m_vLastFloatingSize = PMONITOR->vecSize / 2.f;
|
|
|
|
} else {
|
|
|
|
pWindow->m_vLastFloatingSize = Vector2D(desiredGeometry.width, desiredGeometry.height);
|
|
|
|
}
|
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
onWindowCreatedTiling(pWindow);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void IHyprLayout::onWindowRemoved(CWindow* pWindow) {
|
2022-12-07 19:55:56 +01:00
|
|
|
if (pWindow->m_bIsFullscreen)
|
|
|
|
g_pCompositor->setWindowFullscreen(pWindow, false, FULLSCREEN_FULL);
|
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
if (pWindow->m_bIsFloating) {
|
|
|
|
onWindowRemovedFloating(pWindow);
|
|
|
|
} else {
|
|
|
|
onWindowRemovedTiling(pWindow);
|
|
|
|
}
|
2022-10-24 13:25:36 +02:00
|
|
|
|
|
|
|
if (pWindow == m_pLastTiledWindow)
|
|
|
|
m_pLastTiledWindow = nullptr;
|
2022-06-30 12:09:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IHyprLayout::onWindowRemovedFloating(CWindow* pWindow) {
|
|
|
|
return; // no-op
|
|
|
|
}
|
|
|
|
|
|
|
|
void IHyprLayout::onWindowCreatedFloating(CWindow* pWindow) {
|
|
|
|
wlr_box desiredGeometry = {0};
|
|
|
|
g_pXWaylandManager->getGeometryForWindow(pWindow, &desiredGeometry);
|
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(pWindow->m_iMonitorID);
|
|
|
|
|
|
|
|
if (!PMONITOR) {
|
|
|
|
Debug::log(ERR, "Window %x (%s) has an invalid monitor in onWindowCreatedFloating!!!", pWindow, pWindow->m_szTitle.c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-07-18 13:14:31 +02:00
|
|
|
if (desiredGeometry.width <= 5 || desiredGeometry.height <= 5) {
|
2022-06-30 12:09:05 +02:00
|
|
|
const auto PWINDOWSURFACE = g_pXWaylandManager->getWindowSurface(pWindow);
|
2022-12-16 18:17:31 +01:00
|
|
|
pWindow->m_vRealSize = Vector2D(PWINDOWSURFACE->current.width, PWINDOWSURFACE->current.height);
|
2022-07-28 15:40:06 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
if ((desiredGeometry.width <= 1 || desiredGeometry.height <= 1) && pWindow->m_bIsX11 &&
|
|
|
|
pWindow->m_iX11Type == 2) { // XDG windows should be fine. TODO: check for weird atoms?
|
2022-10-14 21:46:32 +02:00
|
|
|
pWindow->setHidden(true);
|
2022-07-28 15:40:06 +02:00
|
|
|
return;
|
|
|
|
}
|
2022-09-25 20:07:48 +02:00
|
|
|
|
2022-07-18 13:14:31 +02:00
|
|
|
// reject any windows with size <= 5x5
|
|
|
|
if (pWindow->m_vRealSize.goalv().x <= 5 || pWindow->m_vRealSize.goalv().y <= 5) {
|
|
|
|
pWindow->m_vRealSize = PMONITOR->vecSize / 2.f;
|
|
|
|
}
|
2022-06-30 12:09:05 +02:00
|
|
|
|
2023-02-03 22:09:11 +01:00
|
|
|
if (pWindow->m_bIsX11 && pWindow->m_uSurface.xwayland->override_redirect) {
|
|
|
|
|
|
|
|
if (pWindow->m_uSurface.xwayland->x != 0 && pWindow->m_uSurface.xwayland->y != 0)
|
|
|
|
pWindow->m_vRealPosition = Vector2D{pWindow->m_uSurface.xwayland->x, pWindow->m_uSurface.xwayland->y};
|
|
|
|
else
|
|
|
|
pWindow->m_vRealPosition = Vector2D(PMONITOR->vecPosition.x + (PMONITOR->vecSize.x - pWindow->m_vRealSize.goalv().x) / 2.f,
|
|
|
|
PMONITOR->vecPosition.y + (PMONITOR->vecSize.y - pWindow->m_vRealSize.goalv().y) / 2.f);
|
|
|
|
} else {
|
|
|
|
pWindow->m_vRealPosition = Vector2D(PMONITOR->vecPosition.x + (PMONITOR->vecSize.x - pWindow->m_vRealSize.goalv().x) / 2.f,
|
|
|
|
PMONITOR->vecPosition.y + (PMONITOR->vecSize.y - pWindow->m_vRealSize.goalv().y) / 2.f);
|
|
|
|
}
|
2022-06-30 12:09:05 +02:00
|
|
|
} else {
|
|
|
|
// we respect the size.
|
|
|
|
pWindow->m_vRealSize = Vector2D(desiredGeometry.width, desiredGeometry.height);
|
|
|
|
|
|
|
|
// check if it's on the correct monitor!
|
|
|
|
Vector2D middlePoint = Vector2D(desiredGeometry.x, desiredGeometry.y) + Vector2D(desiredGeometry.width, desiredGeometry.height) / 2.f;
|
|
|
|
|
2022-09-13 22:23:48 +02:00
|
|
|
// check if it's visible on any monitor (only for XDG)
|
|
|
|
bool visible = pWindow->m_bIsX11;
|
2022-09-13 12:29:56 +02:00
|
|
|
|
2022-09-13 22:23:48 +02:00
|
|
|
if (!pWindow->m_bIsX11) {
|
|
|
|
for (auto& m : g_pCompositor->m_vMonitors) {
|
2022-12-16 18:17:31 +01:00
|
|
|
if (VECINRECT(Vector2D(desiredGeometry.x, desiredGeometry.y), m->vecPosition.x, m->vecPosition.y, m->vecPosition.x + m->vecSize.x,
|
|
|
|
m->vecPosition.y + m->vecPosition.y) ||
|
|
|
|
VECINRECT(Vector2D(desiredGeometry.x + desiredGeometry.width, desiredGeometry.y), m->vecPosition.x, m->vecPosition.y, m->vecPosition.x + m->vecSize.x,
|
|
|
|
m->vecPosition.y + m->vecPosition.y) ||
|
|
|
|
VECINRECT(Vector2D(desiredGeometry.x, desiredGeometry.y + desiredGeometry.height), m->vecPosition.x, m->vecPosition.y, m->vecPosition.x + m->vecSize.x,
|
|
|
|
m->vecPosition.y + m->vecPosition.y) ||
|
|
|
|
VECINRECT(Vector2D(desiredGeometry.x + desiredGeometry.width, desiredGeometry.y + desiredGeometry.height), m->vecPosition.x, m->vecPosition.y,
|
|
|
|
m->vecPosition.x + m->vecSize.x, m->vecPosition.y + m->vecPosition.y)) {
|
2022-09-13 22:23:48 +02:00
|
|
|
|
|
|
|
visible = true;
|
|
|
|
break;
|
|
|
|
}
|
2022-09-13 12:29:56 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
// TODO: detect a popup in a more consistent way.
|
2022-09-13 12:29:56 +02:00
|
|
|
if ((desiredGeometry.x == 0 && desiredGeometry.y == 0) || !visible) {
|
2022-06-30 12:09:05 +02:00
|
|
|
// if it's not, fall back to the center placement
|
|
|
|
pWindow->m_vRealPosition = PMONITOR->vecPosition + Vector2D((PMONITOR->vecSize.x - desiredGeometry.width) / 2.f, (PMONITOR->vecSize.y - desiredGeometry.height) / 2.f);
|
|
|
|
} else {
|
|
|
|
// if it is, we respect where it wants to put itself, but apply monitor offset if outside
|
|
|
|
// most of these are popups
|
|
|
|
|
|
|
|
if (const auto POPENMON = g_pCompositor->getMonitorFromVector(middlePoint); POPENMON->ID != PMONITOR->ID) {
|
|
|
|
pWindow->m_vRealPosition = Vector2D(desiredGeometry.x, desiredGeometry.y) - POPENMON->vecPosition + PMONITOR->vecPosition;
|
|
|
|
} else {
|
|
|
|
pWindow->m_vRealPosition = Vector2D(desiredGeometry.x, desiredGeometry.y);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-03 22:09:11 +01:00
|
|
|
if (pWindow->m_bX11DoesntWantBorders || (pWindow->m_bIsX11 && pWindow->m_uSurface.xwayland->override_redirect)) {
|
2022-06-30 12:09:05 +02:00
|
|
|
pWindow->m_vRealPosition.setValue(pWindow->m_vRealPosition.goalv());
|
|
|
|
pWindow->m_vRealSize.setValue(pWindow->m_vRealSize.goalv());
|
|
|
|
}
|
|
|
|
|
2022-07-08 11:24:07 +02:00
|
|
|
if (pWindow->m_iX11Type != 2) {
|
|
|
|
g_pXWaylandManager->setWindowSize(pWindow, pWindow->m_vRealSize.goalv());
|
2022-06-30 12:09:05 +02:00
|
|
|
|
2022-07-08 11:24:07 +02:00
|
|
|
g_pCompositor->moveWindowToTop(pWindow);
|
|
|
|
}
|
2022-06-30 12:09:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IHyprLayout::onBeginDragWindow() {
|
|
|
|
const auto DRAGGINGWINDOW = g_pInputManager->currentlyDraggedWindow;
|
|
|
|
|
|
|
|
m_vBeginDragSizeXY = Vector2D();
|
|
|
|
|
|
|
|
// Window will be floating. Let's check if it's valid. It should be, but I don't like crashing.
|
|
|
|
if (!g_pCompositor->windowValidMapped(DRAGGINGWINDOW)) {
|
|
|
|
Debug::log(ERR, "Dragging attempted on an invalid window!");
|
2023-01-20 16:30:30 +01:00
|
|
|
g_pInputManager->currentlyDraggedWindow = nullptr;
|
2022-06-30 12:09:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (DRAGGINGWINDOW->m_bIsFullscreen) {
|
|
|
|
Debug::log(LOG, "Rejecting drag on a fullscreen window.");
|
2023-01-20 16:30:30 +01:00
|
|
|
g_pInputManager->currentlyDraggedWindow = nullptr;
|
2022-06-30 12:09:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(DRAGGINGWINDOW->m_iWorkspaceID);
|
|
|
|
|
2022-12-08 18:45:25 +01:00
|
|
|
if (PWORKSPACE->m_bHasFullscreenWindow && (!DRAGGINGWINDOW->m_bCreatedOverFullscreen || !DRAGGINGWINDOW->m_bIsFloating)) {
|
|
|
|
Debug::log(LOG, "Rejecting drag on a fullscreen workspace. (window under fullscreen)");
|
2023-01-20 16:30:30 +01:00
|
|
|
g_pInputManager->currentlyDraggedWindow = nullptr;
|
2022-06-30 12:09:05 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
DRAGGINGWINDOW->m_bDraggingTiled = false;
|
|
|
|
|
|
|
|
if (!DRAGGINGWINDOW->m_bIsFloating) {
|
2022-09-19 20:04:48 +02:00
|
|
|
if (g_pInputManager->dragMode == MBIND_MOVE) {
|
2022-06-30 12:09:05 +02:00
|
|
|
changeWindowFloatingMode(DRAGGINGWINDOW);
|
2022-12-16 18:17:31 +01:00
|
|
|
DRAGGINGWINDOW->m_bIsFloating = true;
|
2022-06-30 12:09:05 +02:00
|
|
|
DRAGGINGWINDOW->m_bDraggingTiled = true;
|
2022-08-05 17:52:14 +02:00
|
|
|
|
|
|
|
DRAGGINGWINDOW->m_vRealPosition = g_pInputManager->getMouseCoordsInternal() - DRAGGINGWINDOW->m_vRealSize.goalv() / 2.f;
|
2022-06-30 12:09:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
m_vBeginDragXY = g_pInputManager->getMouseCoordsInternal();
|
2022-08-05 17:52:14 +02:00
|
|
|
m_vBeginDragPositionXY = DRAGGINGWINDOW->m_vRealPosition.goalv();
|
2022-12-16 18:17:31 +01:00
|
|
|
m_vBeginDragSizeXY = DRAGGINGWINDOW->m_vRealSize.goalv();
|
|
|
|
m_vLastDragXY = m_vBeginDragXY;
|
2022-06-30 12:09:05 +02:00
|
|
|
|
2022-10-03 23:41:05 +02:00
|
|
|
// get the grab corner
|
|
|
|
if (m_vBeginDragXY.x < m_vBeginDragPositionXY.x + m_vBeginDragSizeXY.x / 2.0) {
|
|
|
|
if (m_vBeginDragXY.y < m_vBeginDragPositionXY.y + m_vBeginDragSizeXY.y / 2.0)
|
2023-02-12 23:24:47 +01:00
|
|
|
m_eGrabbedCorner = CORNER_TOPLEFT;
|
2022-10-03 23:41:05 +02:00
|
|
|
else
|
2023-02-12 23:24:47 +01:00
|
|
|
m_eGrabbedCorner = CORNER_BOTTOMLEFT;
|
2022-10-03 23:41:05 +02:00
|
|
|
} else {
|
|
|
|
if (m_vBeginDragXY.y < m_vBeginDragPositionXY.y + m_vBeginDragSizeXY.y / 2.0)
|
2023-02-12 23:24:47 +01:00
|
|
|
m_eGrabbedCorner = CORNER_TOPRIGHT;
|
2022-10-03 23:41:05 +02:00
|
|
|
else
|
2023-02-12 23:24:47 +01:00
|
|
|
m_eGrabbedCorner = CORNER_BOTTOMRIGHT;
|
2022-10-03 23:41:05 +02:00
|
|
|
}
|
|
|
|
|
2023-01-27 12:31:56 +01:00
|
|
|
g_pInputManager->setCursorImageUntilUnset("grab");
|
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
g_pHyprRenderer->damageWindow(DRAGGINGWINDOW);
|
2022-07-21 19:44:34 +02:00
|
|
|
|
|
|
|
g_pKeybindManager->shadowKeybinds();
|
2022-06-30 12:09:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IHyprLayout::onEndDragWindow() {
|
|
|
|
const auto DRAGGINGWINDOW = g_pInputManager->currentlyDraggedWindow;
|
|
|
|
|
2023-02-18 23:35:31 +01:00
|
|
|
if (!g_pCompositor->windowValidMapped(DRAGGINGWINDOW)) {
|
|
|
|
if (DRAGGINGWINDOW) {
|
|
|
|
g_pInputManager->unsetCursorImage();
|
|
|
|
g_pInputManager->currentlyDraggedWindow = nullptr;
|
|
|
|
}
|
2022-06-30 12:09:05 +02:00
|
|
|
return;
|
2023-02-18 23:35:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
g_pInputManager->unsetCursorImage();
|
2022-06-30 12:09:05 +02:00
|
|
|
|
2023-01-02 12:06:06 +01:00
|
|
|
g_pInputManager->currentlyDraggedWindow = nullptr;
|
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
if (DRAGGINGWINDOW->m_bDraggingTiled) {
|
|
|
|
DRAGGINGWINDOW->m_bIsFloating = false;
|
2022-11-08 21:28:41 +01:00
|
|
|
g_pInputManager->refocus();
|
2022-06-30 12:09:05 +02:00
|
|
|
changeWindowFloatingMode(DRAGGINGWINDOW);
|
|
|
|
}
|
|
|
|
|
|
|
|
g_pHyprRenderer->damageWindow(DRAGGINGWINDOW);
|
2022-11-08 21:28:41 +01:00
|
|
|
|
|
|
|
g_pCompositor->focusWindow(DRAGGINGWINDOW);
|
2022-06-30 12:09:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IHyprLayout::onMouseMove(const Vector2D& mousePos) {
|
|
|
|
const auto DRAGGINGWINDOW = g_pInputManager->currentlyDraggedWindow;
|
|
|
|
|
|
|
|
// Window invalid or drag begin size 0,0 meaning we rejected it.
|
|
|
|
if (!g_pCompositor->windowValidMapped(DRAGGINGWINDOW) || m_vBeginDragSizeXY == Vector2D()) {
|
2022-12-12 15:32:23 +01:00
|
|
|
onEndDragWindow();
|
2022-06-30 12:09:05 +02:00
|
|
|
g_pInputManager->currentlyDraggedWindow = nullptr;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-12-09 18:08:04 +01:00
|
|
|
const auto SPECIAL = g_pCompositor->isWorkspaceSpecial(DRAGGINGWINDOW->m_iWorkspaceID);
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
const auto DELTA = Vector2D(mousePos.x - m_vBeginDragXY.x, mousePos.y - m_vBeginDragXY.y);
|
2022-06-30 12:09:05 +02:00
|
|
|
const auto TICKDELTA = Vector2D(mousePos.x - m_vLastDragXY.x, mousePos.y - m_vLastDragXY.y);
|
|
|
|
|
2022-08-16 21:56:54 +02:00
|
|
|
const auto PANIMATE = &g_pConfigManager->getConfigValuePtr("misc:animate_manual_resizes")->intValue;
|
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
if (abs(TICKDELTA.x) < 1.f && abs(TICKDELTA.y) < 1.f)
|
|
|
|
return;
|
|
|
|
|
|
|
|
m_vLastDragXY = mousePos;
|
|
|
|
|
|
|
|
g_pHyprRenderer->damageWindow(DRAGGINGWINDOW);
|
|
|
|
|
2022-09-19 20:04:48 +02:00
|
|
|
if (g_pInputManager->dragMode == MBIND_MOVE) {
|
2022-10-19 22:17:49 +02:00
|
|
|
|
|
|
|
if (*PANIMATE) {
|
|
|
|
DRAGGINGWINDOW->m_vRealPosition = m_vBeginDragPositionXY + DELTA;
|
|
|
|
} else {
|
|
|
|
DRAGGINGWINDOW->m_vRealPosition.setValueAndWarp(m_vBeginDragPositionXY + DELTA);
|
|
|
|
}
|
2022-06-30 12:09:05 +02:00
|
|
|
|
|
|
|
g_pXWaylandManager->setWindowSize(DRAGGINGWINDOW, DRAGGINGWINDOW->m_vRealSize.goalv());
|
2022-09-19 20:04:48 +02:00
|
|
|
} else if (g_pInputManager->dragMode == MBIND_RESIZE) {
|
2022-06-30 12:09:05 +02:00
|
|
|
if (DRAGGINGWINDOW->m_bIsFloating) {
|
2022-08-05 17:58:08 +02:00
|
|
|
|
2022-08-05 18:10:59 +02:00
|
|
|
const auto MAXSIZE = g_pXWaylandManager->getMaxSizeForWindow(DRAGGINGWINDOW);
|
2022-08-05 17:58:08 +02:00
|
|
|
|
2022-10-03 23:41:05 +02:00
|
|
|
// calc the new size and pos
|
|
|
|
|
|
|
|
Vector2D newSize = m_vBeginDragSizeXY;
|
2022-12-16 18:17:31 +01:00
|
|
|
Vector2D newPos = m_vBeginDragPositionXY;
|
2022-10-03 23:41:05 +02:00
|
|
|
|
2023-02-12 23:24:47 +01:00
|
|
|
if (m_eGrabbedCorner == CORNER_BOTTOMRIGHT) {
|
|
|
|
newSize = (newSize + DELTA).clamp(Vector2D(20, 20), MAXSIZE);
|
|
|
|
} else if (m_eGrabbedCorner == CORNER_TOPLEFT) {
|
|
|
|
newSize = (newSize - DELTA).clamp(Vector2D(20, 20), MAXSIZE);
|
|
|
|
newPos = newPos - newSize + m_vBeginDragSizeXY;
|
|
|
|
} else if (m_eGrabbedCorner == CORNER_TOPRIGHT) {
|
|
|
|
newSize = (newSize + Vector2D(DELTA.x, -DELTA.y)).clamp(Vector2D(20, 20), MAXSIZE);
|
|
|
|
newPos = newPos + Vector2D(0, (m_vBeginDragSizeXY - newSize).y);
|
|
|
|
} else if (m_eGrabbedCorner == CORNER_BOTTOMLEFT) {
|
|
|
|
newSize = (newSize + Vector2D(-DELTA.x, DELTA.y)).clamp(Vector2D(20, 20), MAXSIZE);
|
|
|
|
newPos = newPos + Vector2D((m_vBeginDragSizeXY - newSize).x, 0);
|
2022-10-03 23:41:05 +02:00
|
|
|
}
|
|
|
|
|
2022-08-16 21:56:54 +02:00
|
|
|
if (*PANIMATE) {
|
2022-12-16 18:17:31 +01:00
|
|
|
DRAGGINGWINDOW->m_vRealSize = newSize;
|
2022-10-03 23:41:05 +02:00
|
|
|
DRAGGINGWINDOW->m_vRealPosition = newPos;
|
2022-08-16 21:56:54 +02:00
|
|
|
} else {
|
2022-10-03 23:41:05 +02:00
|
|
|
DRAGGINGWINDOW->m_vRealSize.setValueAndWarp(newSize);
|
|
|
|
DRAGGINGWINDOW->m_vRealPosition.setValueAndWarp(newPos);
|
2022-08-16 21:56:54 +02:00
|
|
|
}
|
2022-09-25 20:07:48 +02:00
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
g_pXWaylandManager->setWindowSize(DRAGGINGWINDOW, DRAGGINGWINDOW->m_vRealSize.goalv());
|
|
|
|
} else {
|
|
|
|
resizeActiveWindow(TICKDELTA, DRAGGINGWINDOW);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// get middle point
|
|
|
|
Vector2D middle = DRAGGINGWINDOW->m_vRealPosition.vec() + DRAGGINGWINDOW->m_vRealSize.vec() / 2.f;
|
|
|
|
|
|
|
|
// and check its monitor
|
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromVector(middle);
|
|
|
|
|
2022-12-09 18:08:04 +01:00
|
|
|
if (PMONITOR && !SPECIAL) {
|
2022-06-30 12:09:05 +02:00
|
|
|
DRAGGINGWINDOW->m_iMonitorID = PMONITOR->ID;
|
2022-08-21 17:01:26 +02:00
|
|
|
DRAGGINGWINDOW->moveToWorkspace(PMONITOR->activeWorkspace);
|
2022-09-25 20:07:48 +02:00
|
|
|
|
2022-08-06 20:57:38 +02:00
|
|
|
DRAGGINGWINDOW->updateToplevel();
|
2022-06-30 12:09:05 +02:00
|
|
|
}
|
|
|
|
|
2022-08-05 19:23:53 +02:00
|
|
|
DRAGGINGWINDOW->updateWindowDecos();
|
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
g_pHyprRenderer->damageWindow(DRAGGINGWINDOW);
|
|
|
|
}
|
|
|
|
|
|
|
|
void IHyprLayout::changeWindowFloatingMode(CWindow* pWindow) {
|
|
|
|
|
|
|
|
if (pWindow->m_bIsFullscreen) {
|
|
|
|
Debug::log(LOG, "Rejecting a change float order because window is fullscreen.");
|
|
|
|
|
|
|
|
// restore its' floating mode
|
|
|
|
pWindow->m_bIsFloating = !pWindow->m_bIsFloating;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-09-10 13:11:02 +02:00
|
|
|
pWindow->m_bPinned = false;
|
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
const auto TILED = isWindowTiled(pWindow);
|
|
|
|
|
2022-12-09 19:51:44 +01:00
|
|
|
// event
|
2022-12-16 18:17:31 +01:00
|
|
|
g_pEventManager->postEvent(SHyprIPCEvent{"changefloatingmode", getFormat("%x,%d", pWindow, (int)TILED)});
|
2022-12-09 19:51:44 +01:00
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
if (!TILED) {
|
2022-12-16 18:17:31 +01:00
|
|
|
const auto PNEWMON = g_pCompositor->getMonitorFromVector(pWindow->m_vRealPosition.vec() + pWindow->m_vRealSize.vec() / 2.f);
|
2022-06-30 12:09:05 +02:00
|
|
|
pWindow->m_iMonitorID = PNEWMON->ID;
|
2022-08-21 17:01:26 +02:00
|
|
|
pWindow->moveToWorkspace(PNEWMON->activeWorkspace);
|
2022-06-30 12:09:05 +02:00
|
|
|
|
|
|
|
// save real pos cuz the func applies the default 5,5 mid
|
2022-12-16 18:17:31 +01:00
|
|
|
const auto PSAVEDPOS = pWindow->m_vRealPosition.goalv();
|
2022-11-09 23:01:53 +01:00
|
|
|
const auto PSAVEDSIZE = pWindow->m_vRealSize.goalv();
|
2022-06-30 12:09:05 +02:00
|
|
|
|
|
|
|
// if the window is pseudo, update its size
|
2022-11-09 23:01:53 +01:00
|
|
|
pWindow->m_vPseudoSize = pWindow->m_vRealSize.goalv();
|
2022-06-30 12:09:05 +02:00
|
|
|
|
2022-08-05 17:52:14 +02:00
|
|
|
pWindow->m_vLastFloatingSize = PSAVEDSIZE;
|
|
|
|
|
2022-10-19 22:32:30 +02:00
|
|
|
// move to narnia because we don't wanna find our own node. onWindowCreatedTiling should apply the coords back.
|
|
|
|
pWindow->m_vPosition = Vector2D(-999999, -999999);
|
|
|
|
|
2022-06-30 12:09:05 +02:00
|
|
|
onWindowCreatedTiling(pWindow);
|
|
|
|
|
|
|
|
pWindow->m_vRealPosition.setValue(PSAVEDPOS);
|
|
|
|
pWindow->m_vRealSize.setValue(PSAVEDSIZE);
|
|
|
|
|
|
|
|
// fix pseudo leaving artifacts
|
|
|
|
g_pHyprRenderer->damageMonitor(g_pCompositor->getMonitorFromID(pWindow->m_iMonitorID));
|
2022-10-24 13:25:36 +02:00
|
|
|
|
|
|
|
if (pWindow == g_pCompositor->m_pLastWindow)
|
|
|
|
m_pLastTiledWindow = pWindow;
|
2022-06-30 12:09:05 +02:00
|
|
|
} else {
|
|
|
|
onWindowRemovedTiling(pWindow);
|
|
|
|
|
|
|
|
g_pCompositor->moveWindowToTop(pWindow);
|
2022-07-08 21:52:52 +02:00
|
|
|
|
2022-11-09 23:01:53 +01:00
|
|
|
pWindow->m_vRealPosition = pWindow->m_vRealPosition.goalv() + (pWindow->m_vRealSize.goalv() - pWindow->m_vLastFloatingSize) / 2.f;
|
2022-12-16 18:17:31 +01:00
|
|
|
pWindow->m_vRealSize = pWindow->m_vLastFloatingSize;
|
2022-07-08 21:52:52 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
pWindow->m_vSize = pWindow->m_vRealSize.goalv();
|
2022-11-09 23:01:53 +01:00
|
|
|
pWindow->m_vPosition = pWindow->m_vRealPosition.goalv();
|
|
|
|
|
2022-07-08 21:52:52 +02:00
|
|
|
g_pHyprRenderer->damageMonitor(g_pCompositor->getMonitorFromID(pWindow->m_iMonitorID));
|
2022-08-05 18:08:23 +02:00
|
|
|
|
|
|
|
pWindow->m_sSpecialRenderData.rounding = true;
|
2023-01-31 13:15:34 +01:00
|
|
|
pWindow->m_sSpecialRenderData.border = true;
|
|
|
|
pWindow->m_sSpecialRenderData.decorate = true;
|
2022-10-24 13:25:36 +02:00
|
|
|
|
|
|
|
if (pWindow == m_pLastTiledWindow)
|
|
|
|
m_pLastTiledWindow = nullptr;
|
2022-06-30 12:09:05 +02:00
|
|
|
}
|
2022-08-06 20:57:38 +02:00
|
|
|
|
2022-08-11 19:29:39 +02:00
|
|
|
g_pCompositor->updateWindowAnimatedDecorationValues(pWindow);
|
|
|
|
|
2022-08-06 20:57:38 +02:00
|
|
|
pWindow->updateToplevel();
|
2022-06-30 12:09:05 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void IHyprLayout::moveActiveWindow(const Vector2D& delta, CWindow* pWindow) {
|
|
|
|
const auto PWINDOW = pWindow ? pWindow : g_pCompositor->m_pLastWindow;
|
|
|
|
|
|
|
|
if (!g_pCompositor->windowValidMapped(PWINDOW))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!PWINDOW->m_bIsFloating) {
|
|
|
|
Debug::log(LOG, "Dwindle cannot move a tiled window in moveActiveWindow!");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
PWINDOW->m_vRealPosition = PWINDOW->m_vRealPosition.goalv() + delta;
|
|
|
|
|
|
|
|
g_pHyprRenderer->damageWindow(PWINDOW);
|
2022-09-25 20:07:48 +02:00
|
|
|
}
|
2022-10-24 13:25:36 +02:00
|
|
|
|
|
|
|
void IHyprLayout::onWindowFocusChange(CWindow* pNewFocus) {
|
|
|
|
m_pLastTiledWindow = pNewFocus && !pNewFocus->m_bIsFloating ? pNewFocus : m_pLastTiledWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
CWindow* IHyprLayout::getNextWindowCandidate(CWindow* pWindow) {
|
|
|
|
// although we don't expect nullptrs here, let's verify jic
|
|
|
|
if (!pWindow)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(pWindow->m_iWorkspaceID);
|
|
|
|
|
|
|
|
// first of all, if this is a fullscreen workspace,
|
|
|
|
if (PWORKSPACE->m_bHasFullscreenWindow)
|
|
|
|
return g_pCompositor->getFullscreenWindowOnWorkspace(pWindow->m_iWorkspaceID);
|
|
|
|
|
|
|
|
if (pWindow->m_bIsFloating) {
|
|
|
|
|
2022-11-27 13:11:45 +01:00
|
|
|
// find whether there is a floating window below this one
|
|
|
|
for (auto& w : g_pCompositor->m_vWindows) {
|
2022-12-16 18:17:31 +01:00
|
|
|
if (w->m_bIsMapped && !w->isHidden() && w->m_bIsFloating && w->m_iX11Type != 2 && w->m_iWorkspaceID == pWindow->m_iWorkspaceID && !w->m_bX11ShouldntFocus &&
|
2022-12-16 21:07:44 +01:00
|
|
|
!w->m_bNoFocus && w.get() != pWindow) {
|
2022-12-16 18:17:31 +01:00
|
|
|
if (VECINRECT((pWindow->m_vSize / 2.f + pWindow->m_vPosition), w->m_vPosition.x, w->m_vPosition.y, w->m_vPosition.x + w->m_vSize.x,
|
|
|
|
w->m_vPosition.y + w->m_vSize.y)) {
|
2022-11-27 13:11:45 +01:00
|
|
|
return w.get();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// let's try the last tiled window.
|
2022-10-24 13:25:36 +02:00
|
|
|
if (m_pLastTiledWindow && m_pLastTiledWindow->m_iWorkspaceID == pWindow->m_iWorkspaceID)
|
|
|
|
return m_pLastTiledWindow;
|
|
|
|
|
|
|
|
// if we don't, let's try to find any window that is in the middle
|
2022-12-28 19:52:12 +01:00
|
|
|
if (const auto PWINDOWCANDIDATE = g_pCompositor->vectorToWindowIdeal(pWindow->m_vRealPosition.goalv() + pWindow->m_vRealSize.goalv() / 2.f);
|
|
|
|
PWINDOWCANDIDATE && PWINDOWCANDIDATE != pWindow)
|
2022-10-24 13:25:36 +02:00
|
|
|
return PWINDOWCANDIDATE;
|
|
|
|
|
|
|
|
// if not, floating window
|
|
|
|
for (auto& w : g_pCompositor->m_vWindows) {
|
2022-12-16 18:17:31 +01:00
|
|
|
if (w->m_bIsMapped && !w->isHidden() && w->m_bIsFloating && w->m_iX11Type != 2 && w->m_iWorkspaceID == pWindow->m_iWorkspaceID && !w->m_bX11ShouldntFocus &&
|
2022-12-16 21:07:44 +01:00
|
|
|
!w->m_bNoFocus && w.get() != pWindow)
|
2022-10-24 13:25:36 +02:00
|
|
|
return w.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
// if there is no candidate, too bad
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// if it was a tiled window, we first try to find the window that will replace it.
|
|
|
|
const auto PWINDOWCANDIDATE = g_pCompositor->vectorToWindowIdeal(pWindow->m_vRealPosition.goalv() + pWindow->m_vRealSize.goalv() / 2.f);
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
if (!PWINDOWCANDIDATE || pWindow == PWINDOWCANDIDATE || !PWINDOWCANDIDATE->m_bIsMapped || PWINDOWCANDIDATE->isHidden() || PWINDOWCANDIDATE->m_bX11ShouldntFocus ||
|
|
|
|
PWINDOWCANDIDATE->m_iX11Type == 2 || PWINDOWCANDIDATE->m_iMonitorID != g_pCompositor->m_pLastMonitor->ID)
|
2022-10-24 13:25:36 +02:00
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return PWINDOWCANDIDATE;
|
|
|
|
}
|
2022-11-28 20:04:24 +01:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
IHyprLayout::~IHyprLayout() {}
|