2022-05-28 20:46:20 +02:00
|
|
|
#include "CHyprGroupBarDecoration.hpp"
|
|
|
|
#include "../../Compositor.hpp"
|
|
|
|
|
|
|
|
CHyprGroupBarDecoration::CHyprGroupBarDecoration(CWindow* pWindow) {
|
|
|
|
m_pWindow = pWindow;
|
|
|
|
updateWindow(pWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
CHyprGroupBarDecoration::~CHyprGroupBarDecoration() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
SWindowDecorationExtents CHyprGroupBarDecoration::getWindowDecorationExtents() {
|
|
|
|
return m_seExtents;
|
|
|
|
}
|
|
|
|
|
|
|
|
eDecorationType CHyprGroupBarDecoration::getDecorationType() {
|
|
|
|
return DECORATION_GROUPBAR;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHyprGroupBarDecoration::updateWindow(CWindow* pWindow) {
|
|
|
|
damageEntire();
|
|
|
|
|
2022-06-27 00:25:37 +02:00
|
|
|
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(pWindow->m_iWorkspaceID);
|
|
|
|
|
2022-06-27 14:07:33 +02:00
|
|
|
const auto WORKSPACEOFFSET = PWORKSPACE ? PWORKSPACE->m_vRenderOffset.vec() : Vector2D();
|
|
|
|
|
|
|
|
if (pWindow->m_vRealPosition.vec() + WORKSPACEOFFSET != m_vLastWindowPos || pWindow->m_vRealSize.vec() != m_vLastWindowSize) {
|
2022-05-28 20:46:20 +02:00
|
|
|
// we draw 3px above the window's border with 3px
|
|
|
|
const auto BORDERSIZE = g_pConfigManager->getInt("general:border_size");
|
|
|
|
|
|
|
|
m_seExtents.topLeft = Vector2D(0, BORDERSIZE + 3 + 3);
|
|
|
|
m_seExtents.bottomRight = Vector2D();
|
|
|
|
|
2022-06-27 14:07:33 +02:00
|
|
|
m_vLastWindowPos = pWindow->m_vRealPosition.vec() + WORKSPACEOFFSET;
|
2022-05-28 20:46:20 +02:00
|
|
|
m_vLastWindowSize = pWindow->m_vRealSize.vec();
|
|
|
|
}
|
|
|
|
|
|
|
|
// let's check if the window group is different.
|
|
|
|
|
|
|
|
if (g_pLayoutManager->getCurrentLayout()->getLayoutName() != "dwindle") {
|
|
|
|
// ????
|
2022-07-05 17:31:47 +02:00
|
|
|
m_pWindow->m_vDecosToRemove.push_back(this);
|
|
|
|
return;
|
2022-05-28 20:46:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// get the group info
|
|
|
|
SLayoutMessageHeader header;
|
|
|
|
header.pWindow = g_pCompositor->m_pLastWindow;
|
|
|
|
|
|
|
|
m_dwGroupMembers = std::any_cast<std::deque<CWindow*>>(g_pLayoutManager->getCurrentLayout()->layoutMessage(header, "groupinfo"));
|
|
|
|
|
|
|
|
damageEntire();
|
|
|
|
|
|
|
|
if (m_dwGroupMembers.size() == 0) {
|
|
|
|
// remove
|
2022-07-05 17:31:47 +02:00
|
|
|
m_pWindow->m_vDecosToRemove.push_back(this);
|
|
|
|
return;
|
2022-05-28 20:46:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHyprGroupBarDecoration::damageEntire() {
|
|
|
|
wlr_box dm = {m_vLastWindowPos.x - m_seExtents.topLeft.x, m_vLastWindowPos.y - m_seExtents.topLeft.y, m_vLastWindowSize.x + m_seExtents.topLeft.x + m_seExtents.bottomRight.x, m_seExtents.topLeft.y};
|
|
|
|
g_pHyprRenderer->damageBox(&dm);
|
|
|
|
}
|
|
|
|
|
2022-06-25 20:31:54 +02:00
|
|
|
void CHyprGroupBarDecoration::draw(SMonitor* pMonitor, float a) {
|
2022-05-28 20:46:20 +02:00
|
|
|
// get how many bars we will draw
|
|
|
|
int barsToDraw = m_dwGroupMembers.size();
|
|
|
|
|
|
|
|
if (barsToDraw < 1 || m_pWindow->m_bHidden || !g_pCompositor->windowValidMapped(m_pWindow))
|
|
|
|
return;
|
|
|
|
|
|
|
|
const int PAD = 2; //2px
|
|
|
|
|
|
|
|
const int BARW = (m_vLastWindowSize.x - PAD * (barsToDraw - 1)) / barsToDraw;
|
|
|
|
|
|
|
|
int xoff = 0;
|
|
|
|
|
|
|
|
for (int i = 0; i < barsToDraw; ++i) {
|
|
|
|
wlr_box rect = {m_vLastWindowPos.x + xoff - pMonitor->vecPosition.x, m_vLastWindowPos.y - m_seExtents.topLeft.y - pMonitor->vecPosition.y, BARW, 3};
|
|
|
|
|
|
|
|
if (rect.width <= 0 || rect.height <= 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
CColor color = m_dwGroupMembers[i] == g_pCompositor->m_pLastWindow ? CColor(g_pConfigManager->getInt("dwindle:col.group_border_active")) : CColor(g_pConfigManager->getInt("dwindle:col.group_border"));
|
2022-06-25 20:31:54 +02:00
|
|
|
color.a *= a;
|
2022-05-28 20:46:20 +02:00
|
|
|
g_pHyprOpenGL->renderRect(&rect, color);
|
|
|
|
|
|
|
|
xoff += PAD + BARW;
|
|
|
|
}
|
|
|
|
}
|