2022-04-11 19:51:37 +02:00
|
|
|
#include "Workspace.hpp"
|
|
|
|
#include "../Compositor.hpp"
|
|
|
|
|
2022-06-28 12:39:56 +02:00
|
|
|
CWorkspace::CWorkspace(int monitorID, std::string name, bool special) {
|
2022-04-11 19:51:37 +02:00
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(monitorID);
|
|
|
|
|
|
|
|
if (!PMONITOR) {
|
|
|
|
Debug::log(ERR, "Attempted a creation of CWorkspace with an invalid monitor?");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_iMonitorID = monitorID;
|
2022-06-28 12:39:56 +02:00
|
|
|
m_szName = name;
|
2022-05-31 14:01:00 +02:00
|
|
|
m_bIsSpecialWorkspace = special;
|
2022-09-25 20:07:48 +02:00
|
|
|
|
2022-05-31 14:01:00 +02:00
|
|
|
if (!special) {
|
|
|
|
m_pWlrHandle = wlr_ext_workspace_handle_v1_create(PMONITOR->pWLRWorkspaceGroupHandle);
|
|
|
|
|
|
|
|
// set geometry here cuz we can
|
|
|
|
wl_array_init(&m_wlrCoordinateArr);
|
|
|
|
*reinterpret_cast<int*>(wl_array_add(&m_wlrCoordinateArr, sizeof(int))) = (int)PMONITOR->vecPosition.x;
|
|
|
|
*reinterpret_cast<int*>(wl_array_add(&m_wlrCoordinateArr, sizeof(int))) = (int)PMONITOR->vecPosition.y;
|
|
|
|
wlr_ext_workspace_handle_v1_set_coordinates(m_pWlrHandle, &m_wlrCoordinateArr);
|
|
|
|
wlr_ext_workspace_handle_v1_set_hidden(m_pWlrHandle, false);
|
|
|
|
wlr_ext_workspace_handle_v1_set_urgent(m_pWlrHandle, false);
|
|
|
|
}
|
2022-05-12 11:27:31 +02:00
|
|
|
|
|
|
|
m_vRenderOffset.m_pWorkspace = this;
|
2022-08-26 11:26:23 +02:00
|
|
|
m_vRenderOffset.create(AVARTYPE_VECTOR, special ? g_pConfigManager->getAnimationPropertyConfig("specialWorkspace") : g_pConfigManager->getAnimationPropertyConfig("workspaces"), nullptr, AVARDAMAGE_ENTIRE);
|
2022-05-17 13:24:23 +02:00
|
|
|
m_fAlpha.m_pWorkspace = this;
|
2022-08-26 11:26:23 +02:00
|
|
|
m_fAlpha.create(AVARTYPE_FLOAT, special ? g_pConfigManager->getAnimationPropertyConfig("specialWorkspace") : g_pConfigManager->getAnimationPropertyConfig("workspaces"), nullptr, AVARDAMAGE_ENTIRE);
|
2022-05-16 23:13:32 +02:00
|
|
|
m_fAlpha.setValueAndWarp(255.f);
|
2022-06-28 12:39:56 +02:00
|
|
|
|
2022-11-04 16:56:31 +01:00
|
|
|
m_vRenderOffset.registerVar();
|
|
|
|
m_fAlpha.registerVar();
|
|
|
|
|
2022-06-29 18:19:06 +02:00
|
|
|
g_pEventManager->postEvent({"createworkspace", m_szName}, true);
|
2022-04-11 19:51:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CWorkspace::~CWorkspace() {
|
2022-05-12 11:27:31 +02:00
|
|
|
m_vRenderOffset.unregister();
|
|
|
|
|
2022-05-30 20:05:38 +02:00
|
|
|
Debug::log(LOG, "Destroying workspace ID %d", m_iID);
|
|
|
|
|
2022-04-11 19:51:37 +02:00
|
|
|
if (m_pWlrHandle) {
|
|
|
|
wlr_ext_workspace_handle_v1_set_active(m_pWlrHandle, false);
|
|
|
|
wlr_ext_workspace_handle_v1_destroy(m_pWlrHandle);
|
|
|
|
m_pWlrHandle = nullptr;
|
|
|
|
}
|
2022-06-28 12:39:56 +02:00
|
|
|
|
2022-06-29 18:19:06 +02:00
|
|
|
g_pEventManager->postEvent({"destroyworkspace", m_szName}, true);
|
2022-05-16 23:13:32 +02:00
|
|
|
}
|
|
|
|
|
2022-05-30 20:05:38 +02:00
|
|
|
void CWorkspace::startAnim(bool in, bool left, bool instant) {
|
2022-07-28 13:28:43 +02:00
|
|
|
const auto ANIMSTYLE = m_fAlpha.m_pConfig->pValues->internalStyle;
|
2022-05-16 23:13:32 +02:00
|
|
|
|
|
|
|
if (ANIMSTYLE == "fade") {
|
2022-05-18 12:39:20 +02:00
|
|
|
m_vRenderOffset.setValueAndWarp(Vector2D(0, 0)); // fix a bug, if switching from slide -> fade.
|
|
|
|
|
2022-05-16 23:13:32 +02:00
|
|
|
if (in) {
|
|
|
|
m_fAlpha.setValueAndWarp(0.f);
|
|
|
|
m_fAlpha = 255.f;
|
|
|
|
} else {
|
|
|
|
m_fAlpha.setValueAndWarp(255.f);
|
|
|
|
m_fAlpha = 0.f;
|
|
|
|
}
|
2022-06-01 20:51:21 +02:00
|
|
|
} else if (ANIMSTYLE == "slidevert") {
|
2022-05-31 17:56:33 +02:00
|
|
|
// fallback is slide
|
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(m_iMonitorID);
|
|
|
|
|
|
|
|
m_fAlpha.setValueAndWarp(255.f); // fix a bug, if switching from fade -> slide.
|
|
|
|
|
|
|
|
if (in) {
|
|
|
|
m_vRenderOffset.setValueAndWarp(Vector2D(0, left ? PMONITOR->vecSize.y : -PMONITOR->vecSize.y));
|
|
|
|
m_vRenderOffset = Vector2D(0, 0);
|
|
|
|
} else {
|
|
|
|
m_vRenderOffset = Vector2D(0, left ? -PMONITOR->vecSize.y : PMONITOR->vecSize.y);
|
|
|
|
}
|
2022-05-16 23:13:32 +02:00
|
|
|
} else {
|
|
|
|
// fallback is slide
|
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(m_iMonitorID);
|
2022-05-18 12:39:20 +02:00
|
|
|
|
|
|
|
m_fAlpha.setValueAndWarp(255.f); // fix a bug, if switching from fade -> slide.
|
|
|
|
|
2022-05-16 23:13:32 +02:00
|
|
|
if (in) {
|
|
|
|
m_vRenderOffset.setValueAndWarp(Vector2D(left ? PMONITOR->vecSize.x : -PMONITOR->vecSize.x, 0));
|
|
|
|
m_vRenderOffset = Vector2D(0, 0);
|
|
|
|
} else {
|
|
|
|
m_vRenderOffset = Vector2D(left ? -PMONITOR->vecSize.x : PMONITOR->vecSize.x, 0);
|
|
|
|
}
|
|
|
|
}
|
2022-05-30 20:05:38 +02:00
|
|
|
|
|
|
|
if (instant) {
|
|
|
|
m_vRenderOffset.warp();
|
|
|
|
m_fAlpha.warp();
|
|
|
|
}
|
2022-09-19 11:40:42 +02:00
|
|
|
|
|
|
|
// check LS-es
|
|
|
|
if (in) {
|
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(m_iMonitorID);
|
|
|
|
for (auto& ls : PMONITOR->m_aLayerSurfaceLists[ZWLR_LAYER_SHELL_V1_LAYER_TOP]) {
|
2022-09-20 10:46:46 +02:00
|
|
|
if (!ls->fadingOut)
|
|
|
|
ls->alpha = m_bHasFullscreenWindow && m_efFullscreenMode == FULLSCREEN_FULL ? 0.f : 255.f;
|
2022-09-19 11:40:42 +02:00
|
|
|
}
|
|
|
|
}
|
2022-05-25 10:25:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CWorkspace::setActive(bool on) {
|
|
|
|
if (m_pWlrHandle) {
|
|
|
|
wlr_ext_workspace_handle_v1_set_active(m_pWlrHandle, on);
|
|
|
|
}
|
2022-05-30 20:51:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CWorkspace::moveToMonitor(const int& id) {
|
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(id);
|
|
|
|
|
2022-05-31 14:01:00 +02:00
|
|
|
if (!PMONITOR || m_bIsSpecialWorkspace)
|
2022-05-30 20:51:45 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
wlr_ext_workspace_handle_v1_set_active(m_pWlrHandle, false);
|
|
|
|
wlr_ext_workspace_handle_v1_destroy(m_pWlrHandle);
|
|
|
|
|
|
|
|
m_pWlrHandle = wlr_ext_workspace_handle_v1_create(PMONITOR->pWLRWorkspaceGroupHandle);
|
|
|
|
|
|
|
|
// set geometry here cuz we can
|
|
|
|
wl_array_init(&m_wlrCoordinateArr);
|
|
|
|
*reinterpret_cast<int*>(wl_array_add(&m_wlrCoordinateArr, sizeof(int))) = (int)PMONITOR->vecPosition.x;
|
|
|
|
*reinterpret_cast<int*>(wl_array_add(&m_wlrCoordinateArr, sizeof(int))) = (int)PMONITOR->vecPosition.y;
|
|
|
|
wlr_ext_workspace_handle_v1_set_coordinates(m_pWlrHandle, &m_wlrCoordinateArr);
|
|
|
|
wlr_ext_workspace_handle_v1_set_hidden(m_pWlrHandle, false);
|
|
|
|
wlr_ext_workspace_handle_v1_set_urgent(m_pWlrHandle, false);
|
|
|
|
|
|
|
|
wlr_ext_workspace_handle_v1_set_name(m_pWlrHandle, m_szName.c_str());
|
2022-09-01 11:46:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CWindow* CWorkspace::getLastFocusedWindow() {
|
|
|
|
if (!g_pCompositor->windowValidMapped(m_pLastFocusedWindow) || m_pLastFocusedWindow->m_iWorkspaceID != m_iID)
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
return m_pLastFocusedWindow;
|
|
|
|
}
|