hyprland-plugins/borders-plus-plus/main.cpp

51 lines
1.7 KiB
C++
Raw Normal View History

2023-02-27 16:24:28 +01:00
#define WLR_USE_UNSTABLE
#include <unistd.h>
#include <any>
#include <src/Compositor.hpp>
#include <src/Window.hpp>
#include <src/config/ConfigManager.hpp>
#include "borderDeco.hpp"
#include "globals.hpp"
// Do NOT change this function.
2023-02-28 13:06:21 +01:00
APICALL EXPORT std::string PLUGIN_API_VERSION() {
return HYPRLAND_API_VERSION;
}
2023-02-27 16:24:28 +01:00
void onNewWindow(void* self, std::any data) {
// data is guaranteed
auto* const PWINDOW = std::any_cast<CWindow*>(data);
HyprlandAPI::addWindowDecoration(PHANDLE, PWINDOW, new CBordersPlusPlus(PWINDOW));
}
APICALL EXPORT PLUGIN_DESCRIPTION_INFO PLUGIN_INIT(HANDLE handle) {
PHANDLE = handle;
2023-02-28 13:06:21 +01:00
HyprlandAPI::addConfigValue(PHANDLE, "plugin:borders-plus-plus:add_borders", SConfigValue{.intValue = 1});
HyprlandAPI::addConfigValue(PHANDLE, "plugin:borders-plus-plus:col.border_1", SConfigValue{.intValue = configStringToInt("rgba(000000ee)")});
HyprlandAPI::addConfigValue(PHANDLE, "plugin:borders-plus-plus:col.border_2", SConfigValue{.intValue = configStringToInt("rgba(000000ee)")});
2023-02-27 16:24:28 +01:00
HyprlandAPI::registerCallbackDynamic(PHANDLE, "openWindow", [&](void* self, std::any data) { onNewWindow(self, data); });
// add deco to existing windows
for (auto& w : g_pCompositor->m_vWindows) {
if (w->isHidden() || !w->m_bIsMapped)
continue;
HyprlandAPI::addWindowDecoration(PHANDLE, w.get(), new CBordersPlusPlus(w.get()));
}
HyprlandAPI::reloadConfig();
2023-02-28 13:06:21 +01:00
HyprlandAPI::addNotification(PHANDLE, "[borders-plus-plus] Initialized successfully!", CColor{0.2, 1.0, 0.2, 1.0}, 5000);
2023-02-27 16:24:28 +01:00
2023-02-28 13:06:21 +01:00
return {"borders-plus-plus", "A plugin to add more borders to windows.", "Vaxry", "1.0"};
2023-02-27 16:24:28 +01:00
}
2023-02-28 13:06:21 +01:00
APICALL EXPORT void PLUGIN_EXIT() {
;
}