Hyprland/src/layout/IHyprLayout.hpp

196 lines
5.7 KiB
C++
Raw Normal View History

#pragma once
#include "../defines.hpp"
#include "../Window.hpp"
#include <any>
struct SWindowRenderLayoutHints {
bool isBorderGradient = false;
CGradientValueData* borderGradient;
};
2022-05-16 17:37:46 +02:00
struct SLayoutMessageHeader {
CWindow* pWindow = nullptr;
2022-05-16 17:37:46 +02:00
};
enum eFullscreenMode : int8_t;
enum eRectCorner
{
CORNER_NONE = 0,
CORNER_TOPLEFT,
CORNER_TOPRIGHT,
CORNER_BOTTOMRIGHT,
CORNER_BOTTOMLEFT
};
enum eDirection
{
DIRECTION_DEFAULT = -1,
DIRECTION_UP = 0,
DIRECTION_RIGHT,
DIRECTION_DOWN,
DIRECTION_LEFT
};
2023-08-07 13:35:19 +02:00
class IHyprLayout {
public:
virtual ~IHyprLayout() = 0;
virtual void onEnable() = 0;
virtual void onDisable() = 0;
2022-03-21 19:18:33 +01:00
/*
Called when a window is created (mapped)
2022-05-14 16:43:30 +02:00
The layout HAS TO set the goal pos and size (anim mgr will use it)
If !animationinprogress, then the anim mgr will not apply an anim.
2022-03-21 19:18:33 +01:00
*/
virtual void onWindowCreated(CWindow*, eDirection direction = DIRECTION_DEFAULT);
virtual void onWindowCreatedTiling(CWindow*, eDirection direction = DIRECTION_DEFAULT) = 0;
virtual void onWindowCreatedFloating(CWindow*);
2022-06-30 12:09:05 +02:00
/*
Return tiled status
*/
virtual bool isWindowTiled(CWindow*) = 0;
2022-06-30 12:09:05 +02:00
2022-03-21 19:18:33 +01:00
/*
Called when a window is removed (unmapped)
*/
virtual void onWindowRemoved(CWindow*);
virtual void onWindowRemovedTiling(CWindow*) = 0;
virtual void onWindowRemovedFloating(CWindow*);
2022-03-21 19:18:33 +01:00
/*
2022-04-02 20:04:32 +02:00
Called when the monitor requires a layout recalculation
2022-03-21 19:18:33 +01:00
this usually means reserved area changes
*/
virtual void recalculateMonitor(const int&) = 0;
2022-03-20 11:14:24 +01:00
2022-04-02 20:04:32 +02:00
/*
Called when the compositor requests a window
to be recalculated, e.g. when pseudo is toggled.
*/
virtual void recalculateWindow(CWindow*) = 0;
2022-04-02 20:04:32 +02:00
2022-03-21 19:18:33 +01:00
/*
Called when a window is requested to be floated
*/
virtual void changeWindowFloatingMode(CWindow*);
2022-03-21 19:18:33 +01:00
/*
Called when a window is clicked on, beginning a drag
this might be a resize, move, whatever the layout defines it
as.
*/
virtual void onBeginDragWindow();
2022-06-06 19:32:14 +02:00
/*
Called when a user requests a resize of the current window by a vec
Vector2D holds pixel values
Optional pWindow for a specific window
*/
virtual void resizeActiveWindow(const Vector2D&, eRectCorner corner = CORNER_NONE, CWindow* pWindow = nullptr) = 0;
/*
Called when a user requests a move of the current window by a vec
Vector2D holds pixel values
Optional pWindow for a specific window
*/
virtual void moveActiveWindow(const Vector2D&, CWindow* pWindow = nullptr);
2022-04-03 13:49:21 +02:00
/*
Called when a window is ended being dragged
(mouse up)
*/
virtual void onEndDragWindow();
2022-03-21 19:18:33 +01:00
/*
2022-09-25 20:07:48 +02:00
Called whenever the mouse moves, should the layout want to
2022-03-21 19:18:33 +01:00
do anything with it.
Useful for dragging.
*/
virtual void onMouseMove(const Vector2D&);
2022-03-21 19:18:33 +01:00
/*
Called when a window / the user requests to toggle the fullscreen state of a window
2022-03-21 19:18:33 +01:00
The layout sets all the fullscreen flags.
It can either accept or ignore.
*/
virtual void fullscreenRequestForWindow(CWindow*, eFullscreenMode, bool) = 0;
2022-03-21 19:18:33 +01:00
/*
2022-05-16 17:37:46 +02:00
Called when a dispatcher requests a custom message
2022-09-25 20:07:48 +02:00
The layout is free to ignore.
std::any is the reply. Can be empty.
*/
virtual std::any layoutMessage(SLayoutMessageHeader, std::string) = 0;
2022-09-25 20:07:48 +02:00
/*
Required to be handled, but may return just SWindowRenderLayoutHints()
Called when the renderer requests any special draw flags for
a specific window, e.g. border color for groups.
*/
virtual SWindowRenderLayoutHints requestRenderHints(CWindow*) = 0;
2022-04-20 16:18:58 +02:00
2022-09-25 20:07:48 +02:00
/*
2022-04-20 16:18:58 +02:00
Called when the user requests two windows to be swapped places.
The layout is free to ignore.
*/
virtual void switchWindows(CWindow*, CWindow*) = 0;
2022-04-20 16:53:41 +02:00
/*
Called when the user requests a window move in a direction.
The layout is free to ignore.
*/
virtual void moveWindowTo(CWindow*, const std::string& direction) = 0;
2022-04-20 16:53:41 +02:00
/*
Called when the user requests to change the splitratio by or to X
2022-04-20 16:53:41 +02:00
on a window
*/
virtual void alterSplitRatio(CWindow*, float, bool exact = false) = 0;
/*
Called when something wants the current layout's name
*/
virtual std::string getLayoutName() = 0;
2022-06-30 12:09:05 +02:00
/*
Called for getting the next candidate for a focus
*/
virtual CWindow* getNextWindowCandidate(CWindow*);
/*
Internal: called when window focus changes
*/
virtual void onWindowFocusChange(CWindow*);
2023-02-19 22:07:32 +01:00
/*
Called for replacing any data a layout has for a new window
*/
virtual void replaceWindowDataWith(CWindow* from, CWindow* to) = 0;
2023-02-19 22:07:32 +01:00
/*
Determines if a window can be focused. If hidden this usually means the window is part of a group.
*/
virtual bool isWindowReachable(CWindow*);
/*
Called before an attempt is made to focus a window.
Brings the window to the top of any groups and ensures it is not hidden.
If the window is unmapped following this call, the focus attempt will fail.
*/
virtual void bringWindowToTop(CWindow*);
/*
Called via the foreign toplevel activation protocol.
Focuses a window, bringing it to the top of its group if applicable.
May be ignored.
*/
virtual void requestFocusForWindow(CWindow*);
private:
Vector2D m_vBeginDragXY;
Vector2D m_vLastDragXY;
Vector2D m_vBeginDragPositionXY;
Vector2D m_vBeginDragSizeXY;
Vector2D m_vDraggingWindowOriginalFloatSize;
eRectCorner m_eGrabbedCorner = CORNER_TOPLEFT;
CWindow* m_pLastTiledWindow = nullptr;
2022-09-25 20:07:48 +02:00
};