mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 14:05:59 +01:00
renderer: render fonts with pango, add global font_family
config option (#6138)
This commit is contained in:
parent
e419ef1873
commit
93fea89043
7 changed files with 157 additions and 136 deletions
|
@ -324,7 +324,8 @@ CConfigManager::CConfigManager() {
|
||||||
m_pConfig->addConfigValue("misc:disable_hyprland_logo", Hyprlang::INT{0});
|
m_pConfig->addConfigValue("misc:disable_hyprland_logo", Hyprlang::INT{0});
|
||||||
m_pConfig->addConfigValue("misc:disable_splash_rendering", Hyprlang::INT{0});
|
m_pConfig->addConfigValue("misc:disable_splash_rendering", Hyprlang::INT{0});
|
||||||
m_pConfig->addConfigValue("misc:col.splash", Hyprlang::INT{0x55ffffff});
|
m_pConfig->addConfigValue("misc:col.splash", Hyprlang::INT{0x55ffffff});
|
||||||
m_pConfig->addConfigValue("misc:splash_font_family", {"Sans"});
|
m_pConfig->addConfigValue("misc:splash_font_family", {STRVAL_EMPTY});
|
||||||
|
m_pConfig->addConfigValue("misc:font_family", {"Sans"});
|
||||||
m_pConfig->addConfigValue("misc:force_default_wallpaper", Hyprlang::INT{-1});
|
m_pConfig->addConfigValue("misc:force_default_wallpaper", Hyprlang::INT{-1});
|
||||||
m_pConfig->addConfigValue("misc:vfr", Hyprlang::INT{1});
|
m_pConfig->addConfigValue("misc:vfr", Hyprlang::INT{1});
|
||||||
m_pConfig->addConfigValue("misc:vrr", Hyprlang::INT{0});
|
m_pConfig->addConfigValue("misc:vrr", Hyprlang::INT{0});
|
||||||
|
@ -353,7 +354,7 @@ CConfigManager::CConfigManager() {
|
||||||
m_pConfig->addConfigValue("group:insert_after_current", Hyprlang::INT{1});
|
m_pConfig->addConfigValue("group:insert_after_current", Hyprlang::INT{1});
|
||||||
m_pConfig->addConfigValue("group:focus_removed_window", Hyprlang::INT{1});
|
m_pConfig->addConfigValue("group:focus_removed_window", Hyprlang::INT{1});
|
||||||
m_pConfig->addConfigValue("group:groupbar:enabled", Hyprlang::INT{1});
|
m_pConfig->addConfigValue("group:groupbar:enabled", Hyprlang::INT{1});
|
||||||
m_pConfig->addConfigValue("group:groupbar:font_family", {"Sans"});
|
m_pConfig->addConfigValue("group:groupbar:font_family", {STRVAL_EMPTY});
|
||||||
m_pConfig->addConfigValue("group:groupbar:font_size", Hyprlang::INT{8});
|
m_pConfig->addConfigValue("group:groupbar:font_size", Hyprlang::INT{8});
|
||||||
m_pConfig->addConfigValue("group:groupbar:gradients", Hyprlang::INT{1});
|
m_pConfig->addConfigValue("group:groupbar:gradients", Hyprlang::INT{1});
|
||||||
m_pConfig->addConfigValue("group:groupbar:height", Hyprlang::INT{14});
|
m_pConfig->addConfigValue("group:groupbar:height", Hyprlang::INT{14});
|
||||||
|
|
|
@ -1,4 +1,6 @@
|
||||||
|
#include <pango/pangocairo.h>
|
||||||
#include "HyprDebugOverlay.hpp"
|
#include "HyprDebugOverlay.hpp"
|
||||||
|
#include "config/ConfigValue.hpp"
|
||||||
#include "../Compositor.hpp"
|
#include "../Compositor.hpp"
|
||||||
|
|
||||||
void CHyprMonitorDebugOverlay::renderData(CMonitor* pMonitor, float µs) {
|
void CHyprMonitorDebugOverlay::renderData(CMonitor* pMonitor, float µs) {
|
||||||
|
@ -47,11 +49,6 @@ int CHyprMonitorDebugOverlay::draw(int offset) {
|
||||||
if (!m_pMonitor)
|
if (!m_pMonitor)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
int yOffset = offset;
|
|
||||||
cairo_text_extents_t cairoExtents;
|
|
||||||
float maxX = 0;
|
|
||||||
std::string text = "";
|
|
||||||
|
|
||||||
// get avg fps
|
// get avg fps
|
||||||
float avgFrametime = 0;
|
float avgFrametime = 0;
|
||||||
float maxFrametime = 0;
|
float maxFrametime = 0;
|
||||||
|
@ -108,20 +105,46 @@ int CHyprMonitorDebugOverlay::draw(int offset) {
|
||||||
const float FPS = 1.f / (avgFrametime / 1000.f); // frametimes are in ms
|
const float FPS = 1.f / (avgFrametime / 1000.f); // frametimes are in ms
|
||||||
const float idealFPS = m_dLastFrametimes.size();
|
const float idealFPS = m_dLastFrametimes.size();
|
||||||
|
|
||||||
cairo_select_font_face(g_pDebugOverlay->m_pCairo, "Sans", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
|
static auto fontFamily = CConfigValue<std::string>("misc:font_family");
|
||||||
|
PangoLayout* layoutText = pango_cairo_create_layout(g_pDebugOverlay->m_pCairo);
|
||||||
|
PangoFontDescription* pangoFD = pango_font_description_new();
|
||||||
|
|
||||||
cairo_set_font_size(g_pDebugOverlay->m_pCairo, 10);
|
pango_font_description_set_family(pangoFD, (*fontFamily).c_str());
|
||||||
|
pango_font_description_set_style(pangoFD, PANGO_STYLE_NORMAL);
|
||||||
|
pango_font_description_set_weight(pangoFD, PANGO_WEIGHT_NORMAL);
|
||||||
|
|
||||||
|
float maxTextW = 0;
|
||||||
|
int fontSize = 0;
|
||||||
|
auto cr = g_pDebugOverlay->m_pCairo;
|
||||||
|
|
||||||
|
auto showText = [cr, layoutText, pangoFD, &maxTextW, &fontSize](const char* text, int size) {
|
||||||
|
if (fontSize != size) {
|
||||||
|
pango_font_description_set_absolute_size(pangoFD, size * PANGO_SCALE);
|
||||||
|
pango_layout_set_font_description(layoutText, pangoFD);
|
||||||
|
fontSize = size;
|
||||||
|
}
|
||||||
|
|
||||||
|
pango_layout_set_text(layoutText, text, -1);
|
||||||
|
pango_cairo_show_layout(cr, layoutText);
|
||||||
|
|
||||||
|
int textW = 0, textH = 0;
|
||||||
|
pango_layout_get_size(layoutText, &textW, &textH);
|
||||||
|
textW /= PANGO_SCALE;
|
||||||
|
textH /= PANGO_SCALE;
|
||||||
|
if (textW > maxTextW)
|
||||||
|
maxTextW = textW;
|
||||||
|
|
||||||
|
// move to next line
|
||||||
|
cairo_rel_move_to(cr, 0, fontSize + 1);
|
||||||
|
};
|
||||||
|
|
||||||
|
const int MARGIN_TOP = 8;
|
||||||
|
const int MARGIN_LEFT = 4;
|
||||||
|
cairo_move_to(cr, MARGIN_LEFT, MARGIN_TOP + offset);
|
||||||
cairo_set_source_rgba(g_pDebugOverlay->m_pCairo, 1.f, 1.f, 1.f, 1.f);
|
cairo_set_source_rgba(g_pDebugOverlay->m_pCairo, 1.f, 1.f, 1.f, 1.f);
|
||||||
|
|
||||||
yOffset += 10;
|
std::string text;
|
||||||
cairo_move_to(g_pDebugOverlay->m_pCairo, 0, yOffset);
|
showText(m_pMonitor->szName.c_str(), 10);
|
||||||
text = m_pMonitor->szName;
|
|
||||||
cairo_show_text(g_pDebugOverlay->m_pCairo, text.c_str());
|
|
||||||
cairo_text_extents(g_pDebugOverlay->m_pCairo, text.c_str(), &cairoExtents);
|
|
||||||
if (cairoExtents.width > maxX)
|
|
||||||
maxX = cairoExtents.width;
|
|
||||||
|
|
||||||
cairo_set_font_size(g_pDebugOverlay->m_pCairo, 16);
|
|
||||||
|
|
||||||
if (FPS > idealFPS * 0.95f)
|
if (FPS > idealFPS * 0.95f)
|
||||||
cairo_set_source_rgba(g_pDebugOverlay->m_pCairo, 0.2f, 1.f, 0.2f, 1.f);
|
cairo_set_source_rgba(g_pDebugOverlay->m_pCairo, 0.2f, 1.f, 0.2f, 1.f);
|
||||||
|
@ -130,57 +153,35 @@ int CHyprMonitorDebugOverlay::draw(int offset) {
|
||||||
else
|
else
|
||||||
cairo_set_source_rgba(g_pDebugOverlay->m_pCairo, 1.f, 0.2f, 0.2f, 1.f);
|
cairo_set_source_rgba(g_pDebugOverlay->m_pCairo, 1.f, 0.2f, 0.2f, 1.f);
|
||||||
|
|
||||||
yOffset += 17;
|
|
||||||
cairo_move_to(g_pDebugOverlay->m_pCairo, 0, yOffset);
|
|
||||||
text = std::format("{} FPS", (int)FPS);
|
text = std::format("{} FPS", (int)FPS);
|
||||||
cairo_show_text(g_pDebugOverlay->m_pCairo, text.c_str());
|
showText(text.c_str(), 16);
|
||||||
cairo_text_extents(g_pDebugOverlay->m_pCairo, text.c_str(), &cairoExtents);
|
|
||||||
if (cairoExtents.width > maxX)
|
|
||||||
maxX = cairoExtents.width;
|
|
||||||
|
|
||||||
cairo_set_font_size(g_pDebugOverlay->m_pCairo, 10);
|
|
||||||
cairo_set_source_rgba(g_pDebugOverlay->m_pCairo, 1.f, 1.f, 1.f, 1.f);
|
cairo_set_source_rgba(g_pDebugOverlay->m_pCairo, 1.f, 1.f, 1.f, 1.f);
|
||||||
|
|
||||||
yOffset += 11;
|
|
||||||
cairo_move_to(g_pDebugOverlay->m_pCairo, 0, yOffset);
|
|
||||||
text = std::format("Avg Frametime: {:.2f}ms (var {:.2f}ms)", avgFrametime, varFrametime);
|
text = std::format("Avg Frametime: {:.2f}ms (var {:.2f}ms)", avgFrametime, varFrametime);
|
||||||
cairo_show_text(g_pDebugOverlay->m_pCairo, text.c_str());
|
showText(text.c_str(), 10);
|
||||||
cairo_text_extents(g_pDebugOverlay->m_pCairo, text.c_str(), &cairoExtents);
|
|
||||||
if (cairoExtents.width > maxX)
|
|
||||||
maxX = cairoExtents.width;
|
|
||||||
|
|
||||||
yOffset += 11;
|
|
||||||
cairo_move_to(g_pDebugOverlay->m_pCairo, 0, yOffset);
|
|
||||||
text = std::format("Avg Rendertime: {:.2f}ms (var {:.2f}ms)", avgRenderTime, varRenderTime);
|
text = std::format("Avg Rendertime: {:.2f}ms (var {:.2f}ms)", avgRenderTime, varRenderTime);
|
||||||
cairo_show_text(g_pDebugOverlay->m_pCairo, text.c_str());
|
showText(text.c_str(), 10);
|
||||||
cairo_text_extents(g_pDebugOverlay->m_pCairo, text.c_str(), &cairoExtents);
|
|
||||||
if (cairoExtents.width > maxX)
|
|
||||||
maxX = cairoExtents.width;
|
|
||||||
|
|
||||||
yOffset += 11;
|
|
||||||
cairo_move_to(g_pDebugOverlay->m_pCairo, 0, yOffset);
|
|
||||||
text = std::format("Avg Rendertime (No Overlay): {:.2f}ms (var {:.2f}ms)", avgRenderTimeNoOverlay, varRenderTimeNoOverlay);
|
text = std::format("Avg Rendertime (No Overlay): {:.2f}ms (var {:.2f}ms)", avgRenderTimeNoOverlay, varRenderTimeNoOverlay);
|
||||||
cairo_show_text(g_pDebugOverlay->m_pCairo, text.c_str());
|
showText(text.c_str(), 10);
|
||||||
cairo_text_extents(g_pDebugOverlay->m_pCairo, text.c_str(), &cairoExtents);
|
|
||||||
if (cairoExtents.width > maxX)
|
|
||||||
maxX = cairoExtents.width;
|
|
||||||
|
|
||||||
yOffset += 11;
|
|
||||||
cairo_move_to(g_pDebugOverlay->m_pCairo, 0, yOffset);
|
|
||||||
text = std::format("Avg Anim Tick: {:.2f}ms (var {:.2f}ms) ({:.2f} TPS)", avgAnimMgrTick, varAnimMgrTick, 1.0 / (avgAnimMgrTick / 1000.0));
|
text = std::format("Avg Anim Tick: {:.2f}ms (var {:.2f}ms) ({:.2f} TPS)", avgAnimMgrTick, varAnimMgrTick, 1.0 / (avgAnimMgrTick / 1000.0));
|
||||||
cairo_show_text(g_pDebugOverlay->m_pCairo, text.c_str());
|
showText(text.c_str(), 10);
|
||||||
cairo_text_extents(g_pDebugOverlay->m_pCairo, text.c_str(), &cairoExtents);
|
|
||||||
if (cairoExtents.width > maxX)
|
|
||||||
maxX = cairoExtents.width;
|
|
||||||
|
|
||||||
yOffset += 11;
|
pango_font_description_free(pangoFD);
|
||||||
|
g_object_unref(layoutText);
|
||||||
|
|
||||||
|
double posX = 0, posY = 0;
|
||||||
|
cairo_get_current_point(cr, &posX, &posY);
|
||||||
|
|
||||||
g_pHyprRenderer->damageBox(&m_wbLastDrawnBox);
|
g_pHyprRenderer->damageBox(&m_wbLastDrawnBox);
|
||||||
m_wbLastDrawnBox = {(int)g_pCompositor->m_vMonitors.front()->vecPosition.x, (int)g_pCompositor->m_vMonitors.front()->vecPosition.y + offset - 1, (int)maxX + 2,
|
m_wbLastDrawnBox = {(int)g_pCompositor->m_vMonitors.front()->vecPosition.x + MARGIN_LEFT - 1, (int)g_pCompositor->m_vMonitors.front()->vecPosition.y + offset + MARGIN_TOP - 1,
|
||||||
yOffset - offset + 2};
|
(int)maxTextW + 2, posY - offset - MARGIN_TOP + 2};
|
||||||
g_pHyprRenderer->damageBox(&m_wbLastDrawnBox);
|
g_pHyprRenderer->damageBox(&m_wbLastDrawnBox);
|
||||||
|
|
||||||
return yOffset - offset;
|
return posY - offset;
|
||||||
}
|
}
|
||||||
|
|
||||||
void CHyprDebugOverlay::renderData(CMonitor* pMonitor, float µs) {
|
void CHyprDebugOverlay::renderData(CMonitor* pMonitor, float µs) {
|
||||||
|
|
|
@ -1,6 +1,20 @@
|
||||||
|
#include <numeric>
|
||||||
|
#include <pango/pangocairo.h>
|
||||||
#include "HyprNotificationOverlay.hpp"
|
#include "HyprNotificationOverlay.hpp"
|
||||||
#include "../Compositor.hpp"
|
#include "../Compositor.hpp"
|
||||||
#include <pango/pangocairo.h>
|
#include "../config/ConfigValue.hpp"
|
||||||
|
|
||||||
|
inline auto iconBackendFromLayout(PangoLayout* layout) {
|
||||||
|
// preference: Nerd > FontAwesome > text
|
||||||
|
auto eIconBackendChecks = std::array<eIconBackend, 2>{ICONS_BACKEND_NF, ICONS_BACKEND_FA};
|
||||||
|
for (auto iconID : eIconBackendChecks) {
|
||||||
|
auto iconsText = std::accumulate(ICONS_ARRAY[iconID].begin(), ICONS_ARRAY[iconID].end(), std::string());
|
||||||
|
pango_layout_set_text(layout, iconsText.c_str(), -1);
|
||||||
|
if (pango_layout_get_unknown_glyphs_count(layout) == 0)
|
||||||
|
return iconID;
|
||||||
|
}
|
||||||
|
return ICONS_BACKEND_NONE;
|
||||||
|
}
|
||||||
|
|
||||||
CHyprNotificationOverlay::CHyprNotificationOverlay() {
|
CHyprNotificationOverlay::CHyprNotificationOverlay() {
|
||||||
static auto P = g_pHookSystem->hookDynamic("focusedMon", [&](void* self, SCallbackInfo& info, std::any param) {
|
static auto P = g_pHookSystem->hookDynamic("focusedMon", [&](void* self, SCallbackInfo& info, std::any param) {
|
||||||
|
@ -9,31 +23,6 @@ CHyprNotificationOverlay::CHyprNotificationOverlay() {
|
||||||
|
|
||||||
g_pHyprRenderer->damageBox(&m_bLastDamage);
|
g_pHyprRenderer->damageBox(&m_bLastDamage);
|
||||||
});
|
});
|
||||||
|
|
||||||
// check for the icon backend
|
|
||||||
std::string fonts = execAndGet("fc-list");
|
|
||||||
std::string fontsLower = fonts;
|
|
||||||
std::transform(fontsLower.begin(), fontsLower.end(), fontsLower.begin(), [&](char& i) { return std::tolower(i); });
|
|
||||||
|
|
||||||
size_t index = 0;
|
|
||||||
|
|
||||||
if (index = fontsLower.find("nerd"); index != std::string::npos) {
|
|
||||||
m_eIconBackend = ICONS_BACKEND_NF;
|
|
||||||
} else if (index = fontsLower.find("font awesome"); index != std::string::npos) {
|
|
||||||
m_eIconBackend = ICONS_BACKEND_FA;
|
|
||||||
} else if (index = fontsLower.find("fontawesome"); index != std::string::npos) {
|
|
||||||
m_eIconBackend = ICONS_BACKEND_FA;
|
|
||||||
} else {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
const auto LASTNEWLINE = fonts.find_last_of('\n', index);
|
|
||||||
const auto COLON = fonts.find(':', LASTNEWLINE);
|
|
||||||
const auto COMMA = fonts.find(',', COLON);
|
|
||||||
const auto NEWLINE = fonts.find('\n', COLON);
|
|
||||||
const auto LASTCHAR = COMMA < NEWLINE ? COMMA : NEWLINE;
|
|
||||||
|
|
||||||
m_szIconFontName = fonts.substr(COLON + 2, LASTCHAR - (COLON + 2));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
CHyprNotificationOverlay::~CHyprNotificationOverlay() {
|
CHyprNotificationOverlay::~CHyprNotificationOverlay() {
|
||||||
|
@ -82,25 +71,24 @@ CBox CHyprNotificationOverlay::drawNotifications(CMonitor* pMonitor) {
|
||||||
float maxWidth = 0;
|
float maxWidth = 0;
|
||||||
|
|
||||||
const auto SCALE = pMonitor->scale;
|
const auto SCALE = pMonitor->scale;
|
||||||
|
|
||||||
const auto MONSIZE = pMonitor->vecTransformedSize;
|
const auto MONSIZE = pMonitor->vecTransformedSize;
|
||||||
|
|
||||||
cairo_text_extents_t cairoExtents;
|
static auto fontFamily = CConfigValue<std::string>("misc:font_family");
|
||||||
int iconW = 0, iconH = 0;
|
|
||||||
|
|
||||||
cairo_select_font_face(m_pCairo, "Sans", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
|
PangoLayout* layout = pango_cairo_create_layout(m_pCairo);
|
||||||
|
PangoFontDescription* pangoFD = pango_font_description_new();
|
||||||
|
|
||||||
|
pango_font_description_set_family(pangoFD, (*fontFamily).c_str());
|
||||||
|
pango_font_description_set_style(pangoFD, PANGO_STYLE_NORMAL);
|
||||||
|
pango_font_description_set_weight(pangoFD, PANGO_WEIGHT_NORMAL);
|
||||||
|
|
||||||
|
const auto iconBackendID = iconBackendFromLayout(layout);
|
||||||
const auto PBEZIER = g_pAnimationManager->getBezier("default");
|
const auto PBEZIER = g_pAnimationManager->getBezier("default");
|
||||||
|
|
||||||
for (auto& notif : m_dNotifications) {
|
for (auto& notif : m_dNotifications) {
|
||||||
const auto ICONPADFORNOTIF = notif->icon == ICON_NONE ? 0 : ICON_PAD;
|
const auto ICONPADFORNOTIF = notif->icon == ICON_NONE ? 0 : ICON_PAD;
|
||||||
const auto FONTSIZE = std::clamp((int)(notif->fontSize * ((pMonitor->vecPixelSize.x * SCALE) / 1920.f)), 8, 40);
|
const auto FONTSIZE = std::clamp((int)(notif->fontSize * ((pMonitor->vecPixelSize.x * SCALE) / 1920.f)), 8, 40);
|
||||||
|
|
||||||
PangoLayout* pangoLayout = pango_cairo_create_layout(m_pCairo);
|
|
||||||
PangoFontDescription* pangoFD = pango_font_description_from_string(("Sans " + std::to_string(FONTSIZE * ICON_SCALE)).c_str());
|
|
||||||
pango_layout_set_font_description(pangoLayout, pangoFD);
|
|
||||||
cairo_set_font_size(m_pCairo, FONTSIZE);
|
|
||||||
|
|
||||||
// first rect (bg, col)
|
// first rect (bg, col)
|
||||||
const float FIRSTRECTANIMP =
|
const float FIRSTRECTANIMP =
|
||||||
(notif->started.getMillis() > (ANIM_DURATION_MS - ANIM_LAG_MS) ?
|
(notif->started.getMillis() > (ANIM_DURATION_MS - ANIM_LAG_MS) ?
|
||||||
|
@ -122,31 +110,37 @@ CBox CHyprNotificationOverlay::drawNotifications(CMonitor* pMonitor) {
|
||||||
const float THIRDRECTPERC = notif->started.getMillis() / notif->timeMs;
|
const float THIRDRECTPERC = notif->started.getMillis() / notif->timeMs;
|
||||||
|
|
||||||
// get text size
|
// get text size
|
||||||
cairo_text_extents(m_pCairo, notif->text.c_str(), &cairoExtents);
|
const auto ICON = ICONS_ARRAY[iconBackendID][notif->icon];
|
||||||
const auto ICON = ICONS_ARRAY[m_eIconBackend][notif->icon];
|
|
||||||
const auto ICONCOLOR = ICONS_COLORS[notif->icon];
|
const auto ICONCOLOR = ICONS_COLORS[notif->icon];
|
||||||
pango_layout_set_text(pangoLayout, ICON.c_str(), -1);
|
|
||||||
pango_layout_set_font_description(pangoLayout, pangoFD);
|
int iconW = 0, iconH = 0;
|
||||||
pango_cairo_update_layout(m_pCairo, pangoLayout);
|
pango_font_description_set_absolute_size(pangoFD, PANGO_SCALE * FONTSIZE * ICON_SCALE);
|
||||||
pango_layout_get_size(pangoLayout, &iconW, &iconH);
|
pango_layout_set_font_description(layout, pangoFD);
|
||||||
|
pango_layout_set_text(layout, ICON.c_str(), -1);
|
||||||
|
pango_layout_get_size(layout, &iconW, &iconH);
|
||||||
iconW /= PANGO_SCALE;
|
iconW /= PANGO_SCALE;
|
||||||
iconH /= PANGO_SCALE;
|
iconH /= PANGO_SCALE;
|
||||||
|
|
||||||
cairo_set_source_rgba(m_pCairo, notif->color.r, notif->color.g, notif->color.b, notif->color.a);
|
int textW = 0, textH = 0;
|
||||||
|
pango_font_description_set_absolute_size(pangoFD, PANGO_SCALE * FONTSIZE);
|
||||||
|
pango_layout_set_font_description(layout, pangoFD);
|
||||||
|
pango_layout_set_text(layout, notif->text.c_str(), -1);
|
||||||
|
pango_layout_get_size(layout, &textW, &textH);
|
||||||
|
textW /= PANGO_SCALE;
|
||||||
|
textH /= PANGO_SCALE;
|
||||||
|
|
||||||
const auto NOTIFSIZE = Vector2D{cairoExtents.width + 20 + iconW + 2 * ICONPADFORNOTIF, cairoExtents.height + 10};
|
const auto NOTIFSIZE = Vector2D{textW + 20 + iconW + 2 * ICONPADFORNOTIF, textH + 10};
|
||||||
|
|
||||||
// draw rects
|
// draw rects
|
||||||
|
cairo_set_source_rgba(m_pCairo, notif->color.r, notif->color.g, notif->color.b, notif->color.a);
|
||||||
cairo_rectangle(m_pCairo, MONSIZE.x - (NOTIFSIZE.x + NOTIF_LEFTBAR_SIZE) * FIRSTRECTPERC, offsetY, (NOTIFSIZE.x + NOTIF_LEFTBAR_SIZE) * FIRSTRECTPERC, NOTIFSIZE.y);
|
cairo_rectangle(m_pCairo, MONSIZE.x - (NOTIFSIZE.x + NOTIF_LEFTBAR_SIZE) * FIRSTRECTPERC, offsetY, (NOTIFSIZE.x + NOTIF_LEFTBAR_SIZE) * FIRSTRECTPERC, NOTIFSIZE.y);
|
||||||
cairo_fill(m_pCairo);
|
cairo_fill(m_pCairo);
|
||||||
|
|
||||||
cairo_set_source_rgb(m_pCairo, 0.f, 0.f, 0.f);
|
cairo_set_source_rgb(m_pCairo, 0.f, 0.f, 0.f);
|
||||||
|
|
||||||
cairo_rectangle(m_pCairo, MONSIZE.x - NOTIFSIZE.x * SECONDRECTPERC, offsetY, NOTIFSIZE.x * SECONDRECTPERC, NOTIFSIZE.y);
|
cairo_rectangle(m_pCairo, MONSIZE.x - NOTIFSIZE.x * SECONDRECTPERC, offsetY, NOTIFSIZE.x * SECONDRECTPERC, NOTIFSIZE.y);
|
||||||
cairo_fill(m_pCairo);
|
cairo_fill(m_pCairo);
|
||||||
|
|
||||||
cairo_set_source_rgba(m_pCairo, notif->color.r, notif->color.g, notif->color.b, notif->color.a);
|
cairo_set_source_rgba(m_pCairo, notif->color.r, notif->color.g, notif->color.b, notif->color.a);
|
||||||
|
|
||||||
cairo_rectangle(m_pCairo, MONSIZE.x - NOTIFSIZE.x * SECONDRECTPERC + 3, offsetY + NOTIFSIZE.y - 4, THIRDRECTPERC * (NOTIFSIZE.x - 6), 2);
|
cairo_rectangle(m_pCairo, MONSIZE.x - NOTIFSIZE.x * SECONDRECTPERC + 3, offsetY + NOTIFSIZE.y - 4, THIRDRECTPERC * (NOTIFSIZE.x - 6), 2);
|
||||||
cairo_fill(m_pCairo);
|
cairo_fill(m_pCairo);
|
||||||
|
|
||||||
|
@ -164,25 +158,26 @@ CBox CHyprNotificationOverlay::drawNotifications(CMonitor* pMonitor) {
|
||||||
|
|
||||||
// draw icon
|
// draw icon
|
||||||
cairo_set_source_rgb(m_pCairo, 1.f, 1.f, 1.f);
|
cairo_set_source_rgb(m_pCairo, 1.f, 1.f, 1.f);
|
||||||
cairo_move_to(m_pCairo, MONSIZE.x - NOTIFSIZE.x * SECONDRECTPERC + NOTIF_LEFTBAR_SIZE + ICONPADFORNOTIF - 1, offsetY + std::round((NOTIFSIZE.y - iconH - 4) / 2.0));
|
cairo_move_to(m_pCairo, MONSIZE.x - NOTIFSIZE.x * SECONDRECTPERC + NOTIF_LEFTBAR_SIZE + ICONPADFORNOTIF - 1, offsetY - 2 + std::round((NOTIFSIZE.y - iconH) / 2.0));
|
||||||
pango_cairo_show_layout(m_pCairo, pangoLayout);
|
pango_layout_set_text(layout, ICON.c_str(), -1);
|
||||||
|
pango_cairo_show_layout(m_pCairo, layout);
|
||||||
}
|
}
|
||||||
|
|
||||||
// draw text
|
// draw text
|
||||||
cairo_set_font_size(m_pCairo, FONTSIZE);
|
|
||||||
cairo_set_source_rgb(m_pCairo, 1.f, 1.f, 1.f);
|
cairo_set_source_rgb(m_pCairo, 1.f, 1.f, 1.f);
|
||||||
cairo_move_to(m_pCairo, MONSIZE.x - NOTIFSIZE.x * SECONDRECTPERC + NOTIF_LEFTBAR_SIZE + iconW + 2 * ICONPADFORNOTIF, offsetY + FONTSIZE + (FONTSIZE / 10.0));
|
cairo_move_to(m_pCairo, MONSIZE.x - NOTIFSIZE.x * SECONDRECTPERC + NOTIF_LEFTBAR_SIZE + iconW + 2 * ICONPADFORNOTIF, offsetY - 2 + std::round((NOTIFSIZE.y - textH) / 2.0));
|
||||||
cairo_show_text(m_pCairo, notif->text.c_str());
|
pango_layout_set_text(layout, notif->text.c_str(), -1);
|
||||||
|
pango_cairo_show_layout(m_pCairo, layout);
|
||||||
|
|
||||||
// adjust offset and move on
|
// adjust offset and move on
|
||||||
offsetY += NOTIFSIZE.y + 10;
|
offsetY += NOTIFSIZE.y + 10;
|
||||||
|
|
||||||
if (maxWidth < NOTIFSIZE.x)
|
if (maxWidth < NOTIFSIZE.x)
|
||||||
maxWidth = NOTIFSIZE.x;
|
maxWidth = NOTIFSIZE.x;
|
||||||
|
}
|
||||||
|
|
||||||
pango_font_description_free(pangoFD);
|
pango_font_description_free(pangoFD);
|
||||||
g_object_unref(pangoLayout);
|
g_object_unref(layout);
|
||||||
}
|
|
||||||
|
|
||||||
// cleanup notifs
|
// cleanup notifs
|
||||||
std::erase_if(m_dNotifications, [](const auto& notif) { return notif->started.getMillis() > notif->timeMs; });
|
std::erase_if(m_dNotifications, [](const auto& notif) { return notif->started.getMillis() > notif->timeMs; });
|
||||||
|
|
|
@ -59,9 +59,6 @@ class CHyprNotificationOverlay {
|
||||||
Vector2D m_vecLastSize = Vector2D(-1, -1);
|
Vector2D m_vecLastSize = Vector2D(-1, -1);
|
||||||
|
|
||||||
CTexture m_tTexture;
|
CTexture m_tTexture;
|
||||||
|
|
||||||
eIconBackend m_eIconBackend = ICONS_BACKEND_NONE;
|
|
||||||
std::string m_szIconFontName = "Sans";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
inline std::unique_ptr<CHyprNotificationOverlay> g_pHyprNotificationOverlay;
|
inline std::unique_ptr<CHyprNotificationOverlay> g_pHyprNotificationOverlay;
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
#include <pango/pangocairo.h>
|
||||||
#include "HyprError.hpp"
|
#include "HyprError.hpp"
|
||||||
#include "../Compositor.hpp"
|
#include "../Compositor.hpp"
|
||||||
#include "../config/ConfigValue.hpp"
|
#include "../config/ConfigValue.hpp"
|
||||||
|
@ -94,12 +95,19 @@ void CHyprError::createQueued() {
|
||||||
|
|
||||||
// draw the text with a common font
|
// draw the text with a common font
|
||||||
const CColor textColor = m_cQueued.r + m_cQueued.g + m_cQueued.b < 0.2f ? CColor(1.0, 1.0, 1.0, 1.0) : CColor(0, 0, 0, 1.0);
|
const CColor textColor = m_cQueued.r + m_cQueued.g + m_cQueued.b < 0.2f ? CColor(1.0, 1.0, 1.0, 1.0) : CColor(0, 0, 0, 1.0);
|
||||||
|
|
||||||
cairo_select_font_face(CAIRO, "Sans", CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
|
|
||||||
cairo_set_font_size(CAIRO, FONTSIZE);
|
|
||||||
cairo_set_source_rgba(CAIRO, textColor.r, textColor.g, textColor.b, textColor.a);
|
cairo_set_source_rgba(CAIRO, textColor.r, textColor.g, textColor.b, textColor.a);
|
||||||
|
|
||||||
float yoffset = TOPBAR ? FONTSIZE : Y - PAD + FONTSIZE;
|
static auto fontFamily = CConfigValue<std::string>("misc:font_family");
|
||||||
|
PangoLayout* layoutText = pango_cairo_create_layout(CAIRO);
|
||||||
|
PangoFontDescription* pangoFD = pango_font_description_new();
|
||||||
|
|
||||||
|
pango_font_description_set_family(pangoFD, (*fontFamily).c_str());
|
||||||
|
pango_font_description_set_absolute_size(pangoFD, FONTSIZE * PANGO_SCALE);
|
||||||
|
pango_font_description_set_style(pangoFD, PANGO_STYLE_NORMAL);
|
||||||
|
pango_font_description_set_weight(pangoFD, PANGO_WEIGHT_NORMAL);
|
||||||
|
pango_layout_set_font_description(layoutText, pangoFD);
|
||||||
|
|
||||||
|
float yoffset = TOPBAR ? 0 : Y - PAD;
|
||||||
int renderedcnt = 0;
|
int renderedcnt = 0;
|
||||||
while (!m_szQueued.empty() && renderedcnt < VISLINECOUNT) {
|
while (!m_szQueued.empty() && renderedcnt < VISLINECOUNT) {
|
||||||
std::string current = m_szQueued.substr(0, m_szQueued.find('\n'));
|
std::string current = m_szQueued.substr(0, m_szQueued.find('\n'));
|
||||||
|
@ -108,17 +116,22 @@ void CHyprError::createQueued() {
|
||||||
else
|
else
|
||||||
m_szQueued = "";
|
m_szQueued = "";
|
||||||
cairo_move_to(CAIRO, PAD + 1 + RADIUS, yoffset + PAD + 1);
|
cairo_move_to(CAIRO, PAD + 1 + RADIUS, yoffset + PAD + 1);
|
||||||
cairo_show_text(CAIRO, current.c_str());
|
pango_layout_set_text(layoutText, current.c_str(), -1);
|
||||||
|
pango_cairo_show_layout(CAIRO, layoutText);
|
||||||
yoffset += FONTSIZE + (FONTSIZE / 10.f);
|
yoffset += FONTSIZE + (FONTSIZE / 10.f);
|
||||||
renderedcnt++;
|
renderedcnt++;
|
||||||
}
|
}
|
||||||
if (VISLINECOUNT < LINECOUNT) {
|
if (VISLINECOUNT < LINECOUNT) {
|
||||||
std::string moreString = std::format("({} more...)", LINECOUNT - VISLINECOUNT);
|
std::string moreString = std::format("({} more...)", LINECOUNT - VISLINECOUNT);
|
||||||
cairo_move_to(CAIRO, PAD + 1 + RADIUS, yoffset + PAD + 1);
|
cairo_move_to(CAIRO, PAD + 1 + RADIUS, yoffset + PAD + 1);
|
||||||
cairo_show_text(CAIRO, moreString.c_str());
|
pango_layout_set_text(layoutText, moreString.c_str(), -1);
|
||||||
|
pango_cairo_show_layout(CAIRO, layoutText);
|
||||||
}
|
}
|
||||||
m_szQueued = "";
|
m_szQueued = "";
|
||||||
|
|
||||||
|
pango_font_description_free(pangoFD);
|
||||||
|
g_object_unref(layoutText);
|
||||||
|
|
||||||
cairo_surface_flush(CAIROSURFACE);
|
cairo_surface_flush(CAIROSURFACE);
|
||||||
|
|
||||||
// copy the data to an OpenGL texture we have
|
// copy the data to an OpenGL texture we have
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
|
#include <random>
|
||||||
|
#include <pango/pangocairo.h>
|
||||||
#include "Shaders.hpp"
|
#include "Shaders.hpp"
|
||||||
#include "OpenGL.hpp"
|
#include "OpenGL.hpp"
|
||||||
#include "../Compositor.hpp"
|
#include "../Compositor.hpp"
|
||||||
#include "../helpers/MiscFunctions.hpp"
|
#include "../helpers/MiscFunctions.hpp"
|
||||||
#include "Shaders.hpp"
|
|
||||||
#include <random>
|
|
||||||
#include "../config/ConfigValue.hpp"
|
#include "../config/ConfigValue.hpp"
|
||||||
#include "../desktop/LayerSurface.hpp"
|
#include "../desktop/LayerSurface.hpp"
|
||||||
#include "../protocols/LayerShell.hpp"
|
#include "../protocols/LayerShell.hpp"
|
||||||
|
@ -2098,24 +2098,35 @@ void CHyprOpenGLImpl::renderMirrored() {
|
||||||
|
|
||||||
void CHyprOpenGLImpl::renderSplash(cairo_t* const CAIRO, cairo_surface_t* const CAIROSURFACE, double offsetY, const Vector2D& size) {
|
void CHyprOpenGLImpl::renderSplash(cairo_t* const CAIRO, cairo_surface_t* const CAIROSURFACE, double offsetY, const Vector2D& size) {
|
||||||
static auto PSPLASHCOLOR = CConfigValue<Hyprlang::INT>("misc:col.splash");
|
static auto PSPLASHCOLOR = CConfigValue<Hyprlang::INT>("misc:col.splash");
|
||||||
|
|
||||||
static auto PSPLASHFONT = CConfigValue<std::string>("misc:splash_font_family");
|
static auto PSPLASHFONT = CConfigValue<std::string>("misc:splash_font_family");
|
||||||
|
static auto FALLBACKFONT = CConfigValue<std::string>("misc:font_family");
|
||||||
|
|
||||||
cairo_select_font_face(CAIRO, (*PSPLASHFONT).c_str(), CAIRO_FONT_SLANT_NORMAL, CAIRO_FONT_WEIGHT_NORMAL);
|
const auto FONTFAMILY = *PSPLASHFONT != STRVAL_EMPTY ? *PSPLASHFONT : *FALLBACKFONT;
|
||||||
|
|
||||||
const auto FONTSIZE = (int)(size.y / 76);
|
const auto FONTSIZE = (int)(size.y / 76);
|
||||||
cairo_set_font_size(CAIRO, FONTSIZE);
|
|
||||||
|
|
||||||
const auto COLOR = CColor(*PSPLASHCOLOR);
|
const auto COLOR = CColor(*PSPLASHCOLOR);
|
||||||
|
|
||||||
|
PangoLayout* layoutText = pango_cairo_create_layout(CAIRO);
|
||||||
|
PangoFontDescription* pangoFD = pango_font_description_new();
|
||||||
|
|
||||||
|
pango_font_description_set_family_static(pangoFD, FONTFAMILY.c_str());
|
||||||
|
pango_font_description_set_absolute_size(pangoFD, FONTSIZE * PANGO_SCALE);
|
||||||
|
pango_font_description_set_style(pangoFD, PANGO_STYLE_NORMAL);
|
||||||
|
pango_font_description_set_weight(pangoFD, PANGO_WEIGHT_NORMAL);
|
||||||
|
pango_layout_set_font_description(layoutText, pangoFD);
|
||||||
|
|
||||||
cairo_set_source_rgba(CAIRO, COLOR.r, COLOR.g, COLOR.b, COLOR.a);
|
cairo_set_source_rgba(CAIRO, COLOR.r, COLOR.g, COLOR.b, COLOR.a);
|
||||||
|
|
||||||
cairo_text_extents_t textExtents;
|
int textW = 0, textH = 0;
|
||||||
cairo_text_extents(CAIRO, g_pCompositor->m_szCurrentSplash.c_str(), &textExtents);
|
pango_layout_set_text(layoutText, g_pCompositor->m_szCurrentSplash.c_str(), -1);
|
||||||
|
pango_layout_get_size(layoutText, &textW, &textH);
|
||||||
|
textW /= PANGO_SCALE;
|
||||||
|
textH /= PANGO_SCALE;
|
||||||
|
|
||||||
cairo_move_to(CAIRO, (size.x - textExtents.width) / 2.0, size.y - textExtents.height + offsetY);
|
cairo_move_to(CAIRO, (size.x - textW) / 2.0, size.y - textH * 2 + offsetY);
|
||||||
|
pango_cairo_show_layout(CAIRO, layoutText);
|
||||||
|
|
||||||
cairo_show_text(CAIRO, g_pCompositor->m_szCurrentSplash.c_str());
|
pango_font_description_free(pangoFD);
|
||||||
|
g_object_unref(layoutText);
|
||||||
|
|
||||||
cairo_surface_flush(CAIROSURFACE);
|
cairo_surface_flush(CAIROSURFACE);
|
||||||
}
|
}
|
||||||
|
|
|
@ -209,11 +209,13 @@ CTitleTex::CTitleTex(PHLWINDOW pWindow, const Vector2D& bufferSize, const float
|
||||||
const auto CAIROSURFACE = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, bufferSize.x, bufferSize.y);
|
const auto CAIROSURFACE = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, bufferSize.x, bufferSize.y);
|
||||||
const auto CAIRO = cairo_create(CAIROSURFACE);
|
const auto CAIRO = cairo_create(CAIROSURFACE);
|
||||||
|
|
||||||
|
static auto FALLBACKFONT = CConfigValue<std::string>("misc:font_family");
|
||||||
static auto PTITLEFONTFAMILY = CConfigValue<std::string>("group:groupbar:font_family");
|
static auto PTITLEFONTFAMILY = CConfigValue<std::string>("group:groupbar:font_family");
|
||||||
static auto PTITLEFONTSIZE = CConfigValue<Hyprlang::INT>("group:groupbar:font_size");
|
static auto PTITLEFONTSIZE = CConfigValue<Hyprlang::INT>("group:groupbar:font_size");
|
||||||
static auto PTEXTCOLOR = CConfigValue<Hyprlang::INT>("group:groupbar:text_color");
|
static auto PTEXTCOLOR = CConfigValue<Hyprlang::INT>("group:groupbar:text_color");
|
||||||
|
|
||||||
const CColor COLOR = CColor(*PTEXTCOLOR);
|
const CColor COLOR = CColor(*PTEXTCOLOR);
|
||||||
|
const auto FONTFAMILY = *PTITLEFONTFAMILY != STRVAL_EMPTY ? *PTITLEFONTFAMILY : *FALLBACKFONT;
|
||||||
|
|
||||||
// clear the pixmap
|
// clear the pixmap
|
||||||
cairo_save(CAIRO);
|
cairo_save(CAIRO);
|
||||||
|
@ -225,7 +227,8 @@ CTitleTex::CTitleTex(PHLWINDOW pWindow, const Vector2D& bufferSize, const float
|
||||||
PangoLayout* layout = pango_cairo_create_layout(CAIRO);
|
PangoLayout* layout = pango_cairo_create_layout(CAIRO);
|
||||||
pango_layout_set_text(layout, szContent.c_str(), -1);
|
pango_layout_set_text(layout, szContent.c_str(), -1);
|
||||||
|
|
||||||
PangoFontDescription* fontDesc = pango_font_description_from_string((*PTITLEFONTFAMILY).c_str());
|
PangoFontDescription* fontDesc = pango_font_description_new();
|
||||||
|
pango_font_description_set_family_static(fontDesc, FONTFAMILY.c_str());
|
||||||
pango_font_description_set_size(fontDesc, *PTITLEFONTSIZE * PANGO_SCALE * monitorScale);
|
pango_font_description_set_size(fontDesc, *PTITLEFONTSIZE * PANGO_SCALE * monitorScale);
|
||||||
pango_layout_set_font_description(layout, fontDesc);
|
pango_layout_set_font_description(layout, fontDesc);
|
||||||
pango_font_description_free(fontDesc);
|
pango_font_description_free(fontDesc);
|
||||||
|
|
Loading…
Reference in a new issue