2023-02-28 21:30:51 +01:00
|
|
|
#include "barDeco.hpp"
|
|
|
|
|
2023-05-01 03:57:48 +02:00
|
|
|
#include <hyprland/src/Compositor.hpp>
|
|
|
|
#include <hyprland/src/Window.hpp>
|
2023-05-01 21:02:05 +02:00
|
|
|
#include <pango/pangocairo.h>
|
2023-02-28 21:30:51 +01:00
|
|
|
|
|
|
|
#include "globals.hpp"
|
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
constexpr int BAR_PADDING = 10;
|
2023-05-01 21:02:05 +02:00
|
|
|
constexpr int BUTTONS_PAD = 5;
|
2023-02-28 22:59:58 +01:00
|
|
|
|
2023-09-19 12:24:57 +02:00
|
|
|
CHyprBar::CHyprBar(CWindow* pWindow) : IHyprWindowDecoration(pWindow) {
|
2023-02-28 21:30:51 +01:00
|
|
|
m_pWindow = pWindow;
|
|
|
|
m_vLastWindowPos = pWindow->m_vRealPosition.vec();
|
|
|
|
m_vLastWindowSize = pWindow->m_vRealSize.vec();
|
2023-02-28 22:17:46 +01:00
|
|
|
|
|
|
|
const auto PMONITOR = g_pCompositor->getMonitorFromID(pWindow->m_iMonitorID);
|
|
|
|
PMONITOR->scheduledRecalc = true;
|
2023-02-28 22:59:58 +01:00
|
|
|
|
|
|
|
m_pMouseButtonCallback =
|
|
|
|
HyprlandAPI::registerCallbackDynamic(PHANDLE, "mouseButton", [&](void* self, std::any param) { onMouseDown(std::any_cast<wlr_pointer_button_event*>(param)); });
|
2023-02-28 23:53:49 +01:00
|
|
|
|
|
|
|
m_pMouseMoveCallback = HyprlandAPI::registerCallbackDynamic(PHANDLE, "mouseMove", [&](void* self, std::any param) { onMouseMove(std::any_cast<Vector2D>(param)); });
|
2023-02-28 21:30:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CHyprBar::~CHyprBar() {
|
|
|
|
damageEntire();
|
2023-02-28 22:59:58 +01:00
|
|
|
HyprlandAPI::unregisterCallback(PHANDLE, m_pMouseButtonCallback);
|
2023-04-28 16:27:39 +02:00
|
|
|
HyprlandAPI::unregisterCallback(PHANDLE, m_pMouseMoveCallback);
|
2023-02-28 21:30:51 +01:00
|
|
|
}
|
|
|
|
|
2023-02-28 23:53:49 +01:00
|
|
|
bool CHyprBar::allowsInput() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-02-28 21:30:51 +01:00
|
|
|
SWindowDecorationExtents CHyprBar::getWindowDecorationExtents() {
|
|
|
|
return m_seExtents;
|
|
|
|
}
|
|
|
|
|
2023-02-28 22:59:58 +01:00
|
|
|
void CHyprBar::onMouseDown(wlr_pointer_button_event* e) {
|
|
|
|
if (m_pWindow != g_pCompositor->m_pLastWindow)
|
|
|
|
return;
|
|
|
|
|
2023-03-16 17:00:59 +01:00
|
|
|
const auto COORDS = cursorRelativeToBar();
|
|
|
|
|
2023-05-01 21:02:05 +02:00
|
|
|
static auto* const PHEIGHT = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:bar_height")->intValue;
|
|
|
|
static auto* const PBORDERSIZE = &HyprlandAPI::getConfigValue(PHANDLE, "general:border_size")->intValue;
|
2023-03-16 17:00:59 +01:00
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
if (!VECINRECT(COORDS, 0, 0, m_vLastWindowSize.x + *PBORDERSIZE * 2, *PHEIGHT + *PBORDERSIZE)) {
|
2023-04-18 20:50:09 +02:00
|
|
|
|
|
|
|
if (m_bDraggingThis) {
|
|
|
|
g_pKeybindManager->m_mDispatchers["mouse"]("0movewindow");
|
2023-09-19 12:24:57 +02:00
|
|
|
Debug::log(LOG, "[hyprbars] Dragging ended on {:x}", (uintptr_t)m_pWindow);
|
2023-04-18 20:50:09 +02:00
|
|
|
}
|
|
|
|
|
2023-03-16 17:00:59 +01:00
|
|
|
m_bDraggingThis = false;
|
|
|
|
m_bDragPending = false;
|
|
|
|
return;
|
|
|
|
}
|
2023-02-28 22:59:58 +01:00
|
|
|
|
2023-02-28 23:53:49 +01:00
|
|
|
if (e->state != WLR_BUTTON_PRESSED) {
|
|
|
|
if (m_bDraggingThis) {
|
|
|
|
g_pKeybindManager->m_mDispatchers["mouse"]("0movewindow");
|
|
|
|
m_bDraggingThis = false;
|
|
|
|
|
2023-09-19 12:24:57 +02:00
|
|
|
Debug::log(LOG, "[hyprbars] Dragging ended on {:x}", (uintptr_t)m_pWindow);
|
2023-02-28 23:53:49 +01:00
|
|
|
}
|
|
|
|
|
2023-02-28 22:59:58 +01:00
|
|
|
return;
|
2023-02-28 23:53:49 +01:00
|
|
|
}
|
2023-02-28 22:59:58 +01:00
|
|
|
|
|
|
|
// check if on a button
|
2023-05-01 21:02:05 +02:00
|
|
|
static auto* const PBUTTONSIZE = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:buttons:button_size")->intValue;
|
2023-02-28 22:59:58 +01:00
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
const auto BARBUF = Vector2D{(int)m_vLastWindowSize.x + 2 * *PBORDERSIZE, *PHEIGHT + *PBORDERSIZE};
|
|
|
|
Vector2D currentPos = Vector2D{BARBUF.x - 2 * BUTTONS_PAD - *PBUTTONSIZE, (BARBUF.y - *PBUTTONSIZE) / 2.0}.floor();
|
2023-02-28 22:59:58 +01:00
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
currentPos.x -= BUTTONS_PAD / 2.0;
|
|
|
|
if (VECINRECT(COORDS, currentPos.x, currentPos.y, currentPos.x + *PBUTTONSIZE + BUTTONS_PAD, currentPos.y + *PBUTTONSIZE)) {
|
2023-02-28 22:59:58 +01:00
|
|
|
// hit on close
|
|
|
|
g_pCompositor->closeWindow(m_pWindow);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-05-01 21:02:05 +02:00
|
|
|
currentPos.x -= BUTTONS_PAD + *PBUTTONSIZE;
|
2023-08-17 10:10:33 +02:00
|
|
|
if (VECINRECT(COORDS, currentPos.x, currentPos.y, currentPos.x + *PBUTTONSIZE + BUTTONS_PAD, currentPos.y + *PBUTTONSIZE)) {
|
2023-02-28 22:59:58 +01:00
|
|
|
// hit on maximize
|
|
|
|
g_pKeybindManager->m_mDispatchers["fullscreen"]("1");
|
|
|
|
return;
|
|
|
|
}
|
2023-02-28 23:53:49 +01:00
|
|
|
|
2023-03-16 17:00:59 +01:00
|
|
|
m_bDragPending = true;
|
2023-02-28 23:53:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void CHyprBar::onMouseMove(Vector2D coords) {
|
|
|
|
if (m_bDragPending) {
|
|
|
|
m_bDragPending = false;
|
|
|
|
g_pKeybindManager->m_mDispatchers["mouse"]("1movewindow");
|
|
|
|
m_bDraggingThis = true;
|
|
|
|
|
2023-09-19 12:24:57 +02:00
|
|
|
Debug::log(LOG, "[hyprbars] Dragging initiated on {:x}", (uintptr_t)m_pWindow);
|
2023-02-28 23:53:49 +01:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2023-02-28 22:59:58 +01:00
|
|
|
}
|
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
void CHyprBar::renderBarTitle(const Vector2D& bufferSize, const float scale) {
|
2023-05-01 21:02:05 +02:00
|
|
|
static auto* const PCOLOR = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:col.text")->intValue;
|
|
|
|
static auto* const PSIZE = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:bar_text_size")->intValue;
|
|
|
|
static auto* const PFONT = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:bar_text_font")->strValue;
|
|
|
|
static auto* const PBUTTONSIZE = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:buttons:button_size")->intValue;
|
|
|
|
static auto* const PBORDERSIZE = &HyprlandAPI::getConfigValue(PHANDLE, "general:border_size")->intValue;
|
2023-02-28 21:30:51 +01:00
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
const auto scaledSize = *PSIZE * scale;
|
|
|
|
const auto scaledButtonSize = *PBUTTONSIZE * scale;
|
|
|
|
const auto scaledBorderSize = *PBORDERSIZE * scale;
|
|
|
|
const auto scaledButtonsPad = BUTTONS_PAD * scale;
|
|
|
|
const auto scaledBarPadding = BAR_PADDING * scale;
|
|
|
|
|
2023-02-28 21:30:51 +01:00
|
|
|
const CColor COLOR = *PCOLOR;
|
|
|
|
|
|
|
|
const auto CAIROSURFACE = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, bufferSize.x, bufferSize.y);
|
2023-05-01 21:02:05 +02:00
|
|
|
const auto CAIRO = cairo_create(CAIROSURFACE);
|
2023-02-28 21:30:51 +01:00
|
|
|
|
|
|
|
// clear the pixmap
|
|
|
|
cairo_save(CAIRO);
|
|
|
|
cairo_set_operator(CAIRO, CAIRO_OPERATOR_CLEAR);
|
|
|
|
cairo_paint(CAIRO);
|
|
|
|
cairo_restore(CAIRO);
|
|
|
|
|
2023-05-01 21:02:05 +02:00
|
|
|
// draw title using Pango
|
|
|
|
PangoLayout* layout = pango_cairo_create_layout(CAIRO);
|
|
|
|
pango_layout_set_text(layout, m_szLastTitle.c_str(), -1);
|
|
|
|
|
|
|
|
PangoFontDescription* fontDesc = pango_font_description_from_string(PFONT->c_str());
|
2023-08-17 10:10:33 +02:00
|
|
|
pango_font_description_set_size(fontDesc, scaledSize * PANGO_SCALE);
|
2023-05-01 21:02:05 +02:00
|
|
|
pango_layout_set_font_description(layout, fontDesc);
|
|
|
|
pango_font_description_free(fontDesc);
|
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
const int leftPadding = scaledBorderSize + scaledBarPadding;
|
|
|
|
const int rightPadding = (scaledButtonSize * 2) + (scaledButtonsPad * 3) + scaledBorderSize + scaledBarPadding;
|
2023-05-01 21:02:05 +02:00
|
|
|
const int maxWidth = bufferSize.x - leftPadding - rightPadding;
|
|
|
|
|
|
|
|
pango_layout_set_width(layout, maxWidth * PANGO_SCALE);
|
|
|
|
pango_layout_set_ellipsize(layout, PANGO_ELLIPSIZE_END);
|
|
|
|
|
2023-02-28 21:30:51 +01:00
|
|
|
cairo_set_source_rgba(CAIRO, COLOR.r, COLOR.g, COLOR.b, COLOR.a);
|
|
|
|
|
2023-05-01 21:02:05 +02:00
|
|
|
int layoutWidth, layoutHeight;
|
|
|
|
pango_layout_get_size(layout, &layoutWidth, &layoutHeight);
|
2023-08-17 10:10:33 +02:00
|
|
|
const int xOffset = std::round(((bufferSize.x - scaledBorderSize) / 2.0 - layoutWidth / PANGO_SCALE / 2.0));
|
2023-05-01 21:02:05 +02:00
|
|
|
const int yOffset = std::round((bufferSize.y / 2.0 - layoutHeight / PANGO_SCALE / 2.0));
|
|
|
|
|
|
|
|
cairo_move_to(CAIRO, xOffset, yOffset);
|
|
|
|
pango_cairo_show_layout(CAIRO, layout);
|
2023-02-28 21:30:51 +01:00
|
|
|
|
2023-05-01 21:02:05 +02:00
|
|
|
g_object_unref(layout);
|
2023-02-28 21:30:51 +01:00
|
|
|
|
|
|
|
cairo_surface_flush(CAIROSURFACE);
|
|
|
|
|
|
|
|
// copy the data to an OpenGL texture we have
|
|
|
|
const auto DATA = cairo_image_surface_get_data(CAIROSURFACE);
|
|
|
|
m_tTextTex.allocate();
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_tTextTex.m_iTexID);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
|
|
|
|
#ifndef GLES2
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_R, GL_BLUE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_B, GL_RED);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bufferSize.x, bufferSize.y, 0, GL_RGBA, GL_UNSIGNED_BYTE, DATA);
|
|
|
|
|
|
|
|
// delete cairo
|
|
|
|
cairo_destroy(CAIRO);
|
|
|
|
cairo_surface_destroy(CAIROSURFACE);
|
|
|
|
}
|
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
void CHyprBar::renderBarButtons(const Vector2D& bufferSize, const float scale) {
|
2023-05-01 21:02:05 +02:00
|
|
|
static auto* const PCLOSECOLOR = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:buttons:col.close")->intValue;
|
|
|
|
static auto* const PMAXCOLOR = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:buttons:col.maximize")->intValue;
|
|
|
|
static auto* const PBUTTONSIZE = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:buttons:button_size")->intValue;
|
2023-02-28 22:59:58 +01:00
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
const auto scaledButtonSize = *PBUTTONSIZE * scale;
|
|
|
|
const auto scaledButtonsPad = BUTTONS_PAD * scale;
|
|
|
|
|
2023-05-01 21:02:05 +02:00
|
|
|
const auto CAIROSURFACE = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, bufferSize.x, bufferSize.y);
|
|
|
|
const auto CAIRO = cairo_create(CAIROSURFACE);
|
2023-02-28 22:59:58 +01:00
|
|
|
|
|
|
|
// clear the pixmap
|
|
|
|
cairo_save(CAIRO);
|
|
|
|
cairo_set_operator(CAIRO, CAIRO_OPERATOR_CLEAR);
|
|
|
|
cairo_paint(CAIRO);
|
|
|
|
cairo_restore(CAIRO);
|
|
|
|
|
|
|
|
// draw buttons for close and max
|
|
|
|
|
|
|
|
auto drawButton = [&](Vector2D pos, CColor col) -> void {
|
2023-05-01 21:02:05 +02:00
|
|
|
const int X = pos.x;
|
|
|
|
const int Y = pos.y;
|
2023-08-17 10:10:33 +02:00
|
|
|
const int RADIUS = static_cast<int>(std::ceil(scaledButtonSize / 2.0));
|
2023-02-28 22:59:58 +01:00
|
|
|
|
|
|
|
cairo_set_source_rgba(CAIRO, col.r, col.g, col.b, col.a);
|
2023-05-01 21:02:05 +02:00
|
|
|
cairo_arc(CAIRO, X, Y + RADIUS, RADIUS, 0, 2 * M_PI);
|
|
|
|
cairo_fill(CAIRO);
|
2023-02-28 22:59:58 +01:00
|
|
|
};
|
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
Vector2D currentPos = Vector2D{bufferSize.x - scaledButtonsPad - scaledButtonSize, (bufferSize.y - scaledButtonSize) / 2.0}.floor();
|
2023-02-28 22:59:58 +01:00
|
|
|
|
2023-05-01 21:02:05 +02:00
|
|
|
drawButton(currentPos, CColor(*PCLOSECOLOR));
|
2023-02-28 22:59:58 +01:00
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
currentPos.x -= scaledButtonsPad + scaledButtonSize;
|
2023-02-28 22:59:58 +01:00
|
|
|
|
2023-05-01 21:02:05 +02:00
|
|
|
drawButton(currentPos, CColor(*PMAXCOLOR));
|
2023-02-28 22:59:58 +01:00
|
|
|
|
|
|
|
// copy the data to an OpenGL texture we have
|
|
|
|
const auto DATA = cairo_image_surface_get_data(CAIROSURFACE);
|
|
|
|
m_tButtonsTex.allocate();
|
|
|
|
glBindTexture(GL_TEXTURE_2D, m_tButtonsTex.m_iTexID);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
|
|
|
|
|
|
|
|
#ifndef GLES2
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_R, GL_BLUE);
|
|
|
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_SWIZZLE_B, GL_RED);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, bufferSize.x, bufferSize.y, 0, GL_RGBA, GL_UNSIGNED_BYTE, DATA);
|
|
|
|
|
|
|
|
// delete cairo
|
|
|
|
cairo_destroy(CAIRO);
|
|
|
|
cairo_surface_destroy(CAIROSURFACE);
|
|
|
|
}
|
|
|
|
|
2023-02-28 21:30:51 +01:00
|
|
|
void CHyprBar::draw(CMonitor* pMonitor, float a, const Vector2D& offset) {
|
|
|
|
if (!g_pCompositor->windowValidMapped(m_pWindow))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!m_pWindow->m_sSpecialRenderData.decorate)
|
|
|
|
return;
|
|
|
|
|
|
|
|
static auto* const PROUNDING = &HyprlandAPI::getConfigValue(PHANDLE, "decoration:rounding")->intValue;
|
|
|
|
static auto* const PBORDERSIZE = &HyprlandAPI::getConfigValue(PHANDLE, "general:border_size")->intValue;
|
|
|
|
static auto* const PCOLOR = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:bar_color")->intValue;
|
|
|
|
static auto* const PHEIGHT = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:bar_height")->intValue;
|
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
const auto scaledRounding = *PROUNDING * pMonitor->scale;
|
|
|
|
const auto scaledBorderSize = *PBORDERSIZE * pMonitor->scale;
|
|
|
|
|
2023-02-28 21:30:51 +01:00
|
|
|
CColor color = *PCOLOR;
|
|
|
|
color.a *= a;
|
|
|
|
|
|
|
|
const auto ROUNDING = !m_pWindow->m_sSpecialRenderData.rounding ?
|
|
|
|
0 :
|
|
|
|
(m_pWindow->m_sAdditionalConfigData.rounding.toUnderlying() == -1 ? *PROUNDING : m_pWindow->m_sAdditionalConfigData.rounding.toUnderlying());
|
|
|
|
|
2023-02-28 22:17:46 +01:00
|
|
|
m_seExtents = {{0, *PHEIGHT + 1}, {}};
|
2023-02-28 21:30:51 +01:00
|
|
|
|
|
|
|
const auto BARBUF = Vector2D{(int)m_vLastWindowSize.x + 2 * *PBORDERSIZE, *PHEIGHT} * pMonitor->scale;
|
|
|
|
|
2023-05-01 21:02:05 +02:00
|
|
|
wlr_box titleBarBox = {(int)m_vLastWindowPos.x - *PBORDERSIZE - pMonitor->vecPosition.x, (int)m_vLastWindowPos.y - *PBORDERSIZE - *PHEIGHT - pMonitor->vecPosition.y,
|
2023-06-26 19:57:47 +02:00
|
|
|
(int)m_vLastWindowSize.x + 2 * *PBORDERSIZE, *PHEIGHT + *PROUNDING * 3 /* to fill the bottom cuz we can't disable rounding there */};
|
2023-02-28 21:30:51 +01:00
|
|
|
|
|
|
|
titleBarBox.x += offset.x;
|
|
|
|
titleBarBox.y += offset.y;
|
|
|
|
|
|
|
|
scaleBox(&titleBarBox, pMonitor->scale);
|
|
|
|
|
|
|
|
g_pHyprOpenGL->scissor(&titleBarBox);
|
|
|
|
|
|
|
|
if (*PROUNDING) {
|
|
|
|
glClearStencil(0);
|
|
|
|
glClear(GL_STENCIL_BUFFER_BIT);
|
|
|
|
|
|
|
|
glEnable(GL_STENCIL_TEST);
|
|
|
|
|
|
|
|
glStencilFunc(GL_ALWAYS, 1, -1);
|
|
|
|
glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
|
|
|
|
|
|
|
|
glColorMask(GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
|
2023-04-05 12:18:47 +02:00
|
|
|
wlr_box windowBox = {(int)m_vLastWindowPos.x + offset.x - pMonitor->vecPosition.x, (int)m_vLastWindowPos.y + offset.y - pMonitor->vecPosition.y, (int)m_vLastWindowSize.x,
|
|
|
|
(int)m_vLastWindowSize.y};
|
2023-02-28 21:30:51 +01:00
|
|
|
scaleBox(&windowBox, pMonitor->scale);
|
2023-08-17 10:10:33 +02:00
|
|
|
g_pHyprOpenGL->renderRect(&windowBox, CColor(0, 0, 0, 0), scaledRounding + scaledBorderSize);
|
2023-02-28 21:30:51 +01:00
|
|
|
glColorMask(GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
|
|
|
|
|
2023-02-28 22:17:46 +01:00
|
|
|
glStencilFunc(GL_NOTEQUAL, 1, -1);
|
2023-02-28 21:30:51 +01:00
|
|
|
glStencilOp(GL_KEEP, GL_KEEP, GL_REPLACE);
|
|
|
|
}
|
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
g_pHyprOpenGL->renderRect(&titleBarBox, color, scaledRounding);
|
2023-02-28 21:30:51 +01:00
|
|
|
|
|
|
|
// render title
|
2023-05-14 14:39:38 +02:00
|
|
|
if (m_szLastTitle != m_pWindow->m_szTitle || m_bWindowSizeChanged || m_tTextTex.m_iTexID == 0) {
|
2023-02-28 21:30:51 +01:00
|
|
|
m_szLastTitle = m_pWindow->m_szTitle;
|
2023-08-17 10:10:33 +02:00
|
|
|
renderBarTitle(BARBUF, pMonitor->scale);
|
2023-02-28 21:30:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (*PROUNDING) {
|
|
|
|
// cleanup stencil
|
|
|
|
glClearStencil(0);
|
|
|
|
glClear(GL_STENCIL_BUFFER_BIT);
|
|
|
|
glDisable(GL_STENCIL_TEST);
|
|
|
|
glStencilMask(-1);
|
|
|
|
glStencilFunc(GL_ALWAYS, 1, 0xFF);
|
|
|
|
}
|
|
|
|
|
2023-02-28 22:17:46 +01:00
|
|
|
wlr_box textBox = {titleBarBox.x, titleBarBox.y, (int)BARBUF.x, (int)BARBUF.y};
|
|
|
|
g_pHyprOpenGL->renderTexture(m_tTextTex, &textBox, a);
|
|
|
|
|
2023-08-17 10:10:33 +02:00
|
|
|
renderBarButtons(BARBUF, pMonitor->scale);
|
2023-02-28 22:59:58 +01:00
|
|
|
|
|
|
|
g_pHyprOpenGL->renderTexture(m_tButtonsTex, &textBox, a);
|
2023-02-28 22:17:46 +01:00
|
|
|
|
2023-02-28 21:30:51 +01:00
|
|
|
g_pHyprOpenGL->scissor((wlr_box*)nullptr);
|
2023-02-28 22:17:46 +01:00
|
|
|
|
|
|
|
m_bWindowSizeChanged = false;
|
2023-02-28 21:30:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
eDecorationType CHyprBar::getDecorationType() {
|
|
|
|
return DECORATION_CUSTOM;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHyprBar::updateWindow(CWindow* pWindow) {
|
|
|
|
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(pWindow->m_iWorkspaceID);
|
|
|
|
|
|
|
|
const auto WORKSPACEOFFSET = PWORKSPACE && !pWindow->m_bPinned ? PWORKSPACE->m_vRenderOffset.vec() : Vector2D();
|
|
|
|
|
2023-02-28 22:17:46 +01:00
|
|
|
if (m_vLastWindowSize != pWindow->m_vRealSize.vec())
|
|
|
|
m_bWindowSizeChanged = true;
|
|
|
|
|
2023-02-28 21:30:51 +01:00
|
|
|
m_vLastWindowPos = pWindow->m_vRealPosition.vec() + WORKSPACEOFFSET;
|
|
|
|
m_vLastWindowSize = pWindow->m_vRealSize.vec();
|
|
|
|
|
|
|
|
damageEntire();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CHyprBar::damageEntire() {
|
2023-06-26 19:57:47 +02:00
|
|
|
wlr_box dm = {(int)(m_vLastWindowPos.x - m_seExtents.topLeft.x - 2), (int)(m_vLastWindowPos.y - m_seExtents.topLeft.y - 2),
|
|
|
|
(int)(m_vLastWindowSize.x + m_seExtents.topLeft.x + m_seExtents.bottomRight.x + 4), (int)m_seExtents.topLeft.y + 4};
|
2023-02-28 21:30:51 +01:00
|
|
|
g_pHyprRenderer->damageBox(&dm);
|
|
|
|
}
|
|
|
|
|
|
|
|
SWindowDecorationExtents CHyprBar::getWindowDecorationReservedArea() {
|
|
|
|
static auto* const PHEIGHT = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:bar_height")->intValue;
|
|
|
|
return SWindowDecorationExtents{{0, *PHEIGHT}, {}};
|
2023-02-28 22:59:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
Vector2D CHyprBar::cursorRelativeToBar() {
|
|
|
|
static auto* const PHEIGHT = &HyprlandAPI::getConfigValue(PHANDLE, "plugin:hyprbars:bar_height")->intValue;
|
2023-05-01 21:02:05 +02:00
|
|
|
static auto* const PBORDER = &HyprlandAPI::getConfigValue(PHANDLE, "general:border_size")->intValue;
|
|
|
|
return g_pInputManager->getMouseCoordsInternal() - m_pWindow->m_vRealPosition.vec() + Vector2D{*PBORDER, *PHEIGHT + *PBORDER};
|
|
|
|
}
|