Files
hyprland-plugins/hyprfocus/main.cpp
LionHeartP 7644cecdb9 borders/bars/focus: chase hyprland (#687)
* borders/bars/focus: chase hyprland

* barDeco.cpp: clang-format
2026-07-15 09:59:07 +02:00

196 lines
8.6 KiB
C++

#define WLR_USE_UNSTABLE
#include <unistd.h>
#include <vector>
#include <hyprland/src/includes.hpp>
#include <any>
#include <sstream>
#define private public
#include <hyprland/src/Compositor.hpp>
#include <hyprland/src/config/ConfigValue.hpp>
#include <hyprland/src/config/shared/animation/AnimationTree.hpp>
#include <hyprland/src/helpers/AnimatedVariable.hpp>
#include <hyprland/src/animation/AnimationManager.hpp>
#include <hyprland/src/managers/eventLoop/EventLoopManager.hpp>
#include <hyprland/src/managers/fullscreen/FullscreenController.hpp>
#include <hyprland/src/layout/LayoutManager.hpp>
#include <hyprland/src/config/ConfigManager.hpp>
#include <hyprland/src/config/values/types/BoolValue.hpp>
#include <hyprland/src/config/values/types/FloatValue.hpp>
#include <hyprland/src/config/values/types/StringValue.hpp>
#include <hyprland/src/event/EventBus.hpp>
#include <hyprland/src/desktop/state/FocusState.hpp>
#include <hyprland/src/desktop/state/WindowState.hpp>
#undef private
#include "globals.hpp"
#include <hyprutils/string/VarList.hpp>
#include <hyprutils/animation/BezierCurve.hpp>
using namespace Hyprutils::String;
using namespace Hyprutils::Animation;
static struct {
SP<Config::Values::CBoolValue> enable;
SP<Config::Values::CBoolValue> animateFloating;
SP<Config::Values::CBoolValue> onlyOnMonitorChange;
SP<Config::Values::CStringValue> keyboardFocusAnimation;
SP<Config::Values::CStringValue> mouseFocusAnimation;
SP<Config::Values::CFloatValue> fadeOpacity;
SP<Config::Values::CFloatValue> shrinkPercentage;
SP<Config::Values::CFloatValue> slideHeight;
} configValues;
// Do NOT change this function.
APICALL EXPORT std::string PLUGIN_API_VERSION() {
return HYPRLAND_API_VERSION;
}
static bool isMouseReason(Desktop::eFocusReason r) {
return r == Desktop::FOCUS_REASON_CLICK || r == Desktop::FOCUS_REASON_FFM;
}
static void onFocusChange(PHLWINDOW window, Desktop::eFocusReason reason) {
if (!window)
return;
if (!configValues.enable->value())
return;
if (!configValues.animateFloating->value() && window->m_isFloating)
return;
static PHLWINDOWREF lastWindow;
if (lastWindow == window)
return;
if (configValues.onlyOnMonitorChange->value() && lastWindow && lastWindow->m_monitor == window->m_monitor)
return;
lastWindow = window;
const auto mode = isMouseReason(reason)
? configValues.mouseFocusAnimation->value()
: configValues.keyboardFocusAnimation->value();
if (mode == "none")
return;
const auto PIN = Config::animationTree()->getAnimationPropertyConfig("hyprfocusIn");
const auto POUT = Config::animationTree()->getAnimationPropertyConfig("hyprfocusOut");
if (mode == "flash") {
const auto ORIGINAL = window->alpha(Desktop::View::WINDOW_ALPHA_ACTIVE)->goal();
window->alpha(Desktop::View::WINDOW_ALPHA_ACTIVE)->setConfig(PIN);
*window->alpha(Desktop::View::WINDOW_ALPHA_ACTIVE) = configValues.fadeOpacity->value();
window->alpha(Desktop::View::WINDOW_ALPHA_ACTIVE)->setCallbackOnEnd([w = PHLWINDOWREF{window}, POUT, ORIGINAL](WP<CBaseAnimatedVariable> pav) {
if (!w)
return;
w->alpha(Desktop::View::WINDOW_ALPHA_ACTIVE)->setConfig(POUT);
*w->alpha(Desktop::View::WINDOW_ALPHA_ACTIVE) = ORIGINAL;
w->alpha(Desktop::View::WINDOW_ALPHA_ACTIVE)->setCallbackOnEnd(nullptr);
});
} else if (mode == "shrink") {
const auto ORIGINAL = CBox{window->positionAnimation()->goal(), window->sizeAnimation()->goal()};
window->positionAnimation()->setConfig(PIN);
window->sizeAnimation()->setConfig(PIN);
auto box = ORIGINAL.copy().scaleFromCenter(configValues.shrinkPercentage->value());
*window->positionAnimation() = box.pos();
*window->sizeAnimation() = box.size();
window->sizeAnimation()->setCallbackOnEnd([w = PHLWINDOWREF{window}, POUT, ORIGINAL](WP<CBaseAnimatedVariable> pav) {
if (!w)
return;
w->sizeAnimation()->setConfig(POUT);
w->positionAnimation()->setConfig(POUT);
if (w->m_isFloating || Fullscreen::controller()->isFullscreen(w.lock())) {
*w->positionAnimation() = ORIGINAL.pos();
*w->sizeAnimation() = ORIGINAL.size();
} else
w->layoutTarget()->recalc();
w->sizeAnimation()->setCallbackOnEnd(nullptr);
});
} else if (mode == "slide") {
const auto ORIGINAL = window->positionAnimation()->goal();
window->positionAnimation()->setConfig(PIN);
*window->positionAnimation() = ORIGINAL - Vector2D{0.F, configValues.slideHeight->value()};
window->positionAnimation()->setCallbackOnEnd([w = PHLWINDOWREF{window}, POUT, ORIGINAL](WP<CBaseAnimatedVariable> pav) {
if (!w)
return;
w->positionAnimation()->setConfig(POUT);
if (w->m_isFloating || Fullscreen::controller()->isFullscreen(w.lock()))
*w->positionAnimation() = ORIGINAL;
else
w->layoutTarget()->recalc();
w->positionAnimation()->setCallbackOnEnd(nullptr);
});
}
}
APICALL EXPORT PLUGIN_DESCRIPTION_INFO PLUGIN_INIT(HANDLE handle) {
PHANDLE = handle;
const std::string HASH = __hyprland_api_get_hash();
const std::string CLIENT_HASH = __hyprland_api_get_client_hash();
if (HASH != CLIENT_HASH) {
HyprlandAPI::addNotification(PHANDLE, "[hyprwinwrap] Failure in initialization: Version mismatch (headers ver is not equal to running hyprland ver)",
CHyprColor{1.0, 0.2, 0.2, 1.0}, 5000);
throw std::runtime_error("[hww] Version mismatch");
}
static auto P = Event::bus()->m_events.window.active.listen([&](PHLWINDOW w, Desktop::eFocusReason r) { onFocusChange(w, r); });
configValues.enable = makeShared<Config::Values::CBoolValue>("plugin:hyprfocus:enable", "enable or disable the plugin", true);
configValues.animateFloating = makeShared<Config::Values::CBoolValue>("plugin:hyprfocus:animate_floating", "animate floating windows", true);
configValues.onlyOnMonitorChange = makeShared<Config::Values::CBoolValue>("plugin:hyprfocus:only_on_monitor_change", "whether to fire the animation only on monitor change", false);
configValues.keyboardFocusAnimation = makeShared<Config::Values::CStringValue>("plugin:hyprfocus:keyboard_focus_animation", "animation for keyboard focus changes", "flash");
configValues.mouseFocusAnimation = makeShared<Config::Values::CStringValue>("plugin:hyprfocus:mouse_focus_animation", "animation for mouse focus changes", "none");
configValues.fadeOpacity = makeShared<Config::Values::CFloatValue>("plugin:hyprfocus:fade_opacity", "fade opacity", 0.8F, Config::Values::SFloatValueOptions{.min = 0.F, .max = 1.F});
configValues.shrinkPercentage = makeShared<Config::Values::CFloatValue>("plugin:hyprfocus:shrink_percentage", "shrink percentage", 0.95F, Config::Values::SFloatValueOptions{.min = 0.F, .max = 1.F});
configValues.slideHeight = makeShared<Config::Values::CFloatValue>("plugin:hyprfocus:slide_height", "slide height", 20.F, Config::Values::SFloatValueOptions{.min = 0.F, .max = 150.F});
HyprlandAPI::addConfigValueV2(PHANDLE, configValues.enable);
HyprlandAPI::addConfigValueV2(PHANDLE, configValues.animateFloating);
HyprlandAPI::addConfigValueV2(PHANDLE, configValues.onlyOnMonitorChange);
HyprlandAPI::addConfigValueV2(PHANDLE, configValues.keyboardFocusAnimation);
HyprlandAPI::addConfigValueV2(PHANDLE, configValues.mouseFocusAnimation);
HyprlandAPI::addConfigValueV2(PHANDLE, configValues.fadeOpacity);
HyprlandAPI::addConfigValueV2(PHANDLE, configValues.shrinkPercentage);
HyprlandAPI::addConfigValueV2(PHANDLE, configValues.slideHeight);
// this will not be cleaned up after we are unloaded but it doesn't really matter,
// as if we create this again it will just overwrite the old one.
Config::animationTree()->m_animationTree.createNode("hyprfocusIn", "windowsIn");
Config::animationTree()->m_animationTree.createNode("hyprfocusOut", "windowsOut");
return {"hyprfocus", "Flashfocus for Hyprland", "Vaxry", "1.0"};
}
APICALL EXPORT void PLUGIN_EXIT() {
// reset the callbacks to avoid crashes
for (const auto& w : Desktop::windowState()->windows()) {
if (!Desktop::View::validMapped(w))
continue;
w->sizeAnimation()->setCallbackOnEnd(nullptr);
w->positionAnimation()->setCallbackOnEnd(nullptr);
w->alpha(Desktop::View::WINDOW_ALPHA_ACTIVE)->setCallbackOnEnd(nullptr);
}
}