2023-03-31 11:48:22 +00:00
|
|
|
#pragma once
|
|
|
|
|
2024-04-03 23:28:19 +00:00
|
|
|
#include <hyprland/src/desktop/DesktopTypes.hpp> // needed for DwindleLayout.hpp
|
2023-10-02 20:27:13 +00:00
|
|
|
#include <hyprland/src/layout/DwindleLayout.hpp>
|
|
|
|
#include <hyprland/src/plugins/HookSystem.hpp>
|
2023-06-06 21:37:45 +00:00
|
|
|
#include <hyprland/src/plugins/PluginAPI.hpp>
|
2023-03-31 11:48:22 +00:00
|
|
|
|
2023-10-02 20:27:13 +00:00
|
|
|
const CColor s_notifyColor = {0x61 / 255.0f, 0xAF / 255.0f, 0xEF / 255.0f, 1.0f}; // RGBA
|
|
|
|
const PLUGIN_DESCRIPTION_INFO s_pluginDescription = {"dwindle-autogroup", "Dwindle Autogroup", "ItsDrike", "1.0"};
|
|
|
|
|
2023-03-31 11:48:22 +00:00
|
|
|
inline HANDLE PHANDLE = nullptr;
|
2023-10-02 20:27:13 +00:00
|
|
|
|
|
|
|
typedef void* (*createGroupFuncT)(CWindow*);
|
|
|
|
inline CFunctionHook* g_pCreateGroupHook = nullptr;
|
|
|
|
|
|
|
|
typedef void* (*destroyGroupFuncT)(CWindow*);
|
|
|
|
inline CFunctionHook* g_pDestroyGroupHook = nullptr;
|
|
|
|
|
|
|
|
typedef SDwindleNodeData* (*nodeFromWindowFuncT)(void*, CWindow*);
|
|
|
|
inline nodeFromWindowFuncT g_pNodeFromWindow = nullptr;
|