2022-07-16 15:57:31 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "IHyprLayout.hpp"
|
2023-09-04 16:45:58 +02:00
|
|
|
#include "../config/ConfigManager.hpp"
|
2022-12-10 22:59:16 +01:00
|
|
|
#include <vector>
|
2022-07-16 15:57:31 +02:00
|
|
|
#include <list>
|
|
|
|
#include <deque>
|
2022-12-16 18:17:31 +01:00
|
|
|
#include <any>
|
2022-07-16 15:57:31 +02:00
|
|
|
|
|
|
|
enum eFullscreenMode : uint8_t;
|
|
|
|
|
2022-12-10 22:59:16 +01:00
|
|
|
//orientation determines which side of the screen the master area resides
|
2023-09-04 15:34:07 +02:00
|
|
|
enum eOrientation : uint8_t
|
|
|
|
{
|
2022-12-10 22:59:16 +01:00
|
|
|
ORIENTATION_LEFT = 0,
|
|
|
|
ORIENTATION_TOP,
|
|
|
|
ORIENTATION_RIGHT,
|
2023-02-27 00:12:14 +01:00
|
|
|
ORIENTATION_BOTTOM,
|
|
|
|
ORIENTATION_CENTER
|
2022-12-10 22:59:16 +01:00
|
|
|
};
|
|
|
|
|
2022-07-16 15:57:31 +02:00
|
|
|
struct SMasterNodeData {
|
2022-12-16 18:17:31 +01:00
|
|
|
bool isMaster = false;
|
|
|
|
float percMaster = 0.5f;
|
2022-07-16 15:57:31 +02:00
|
|
|
|
|
|
|
CWindow* pWindow = nullptr;
|
|
|
|
|
|
|
|
Vector2D position;
|
|
|
|
Vector2D size;
|
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
float percSize = 1.f; // size multiplier for resizing children
|
2022-11-10 13:05:22 +01:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
int workspaceID = -1;
|
2022-07-16 15:57:31 +02:00
|
|
|
|
2023-01-31 01:03:23 +01:00
|
|
|
bool operator==(const SMasterNodeData& rhs) const {
|
2023-09-04 16:45:58 +02:00
|
|
|
return pWindow == rhs.pWindow;
|
2022-07-16 15:57:31 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-12-10 22:59:16 +01:00
|
|
|
struct SMasterWorkspaceData {
|
2022-12-16 18:17:31 +01:00
|
|
|
int workspaceID = -1;
|
2022-12-10 22:59:16 +01:00
|
|
|
eOrientation orientation = ORIENTATION_LEFT;
|
|
|
|
|
2023-01-31 01:03:23 +01:00
|
|
|
bool operator==(const SMasterWorkspaceData& rhs) const {
|
2023-09-04 16:45:58 +02:00
|
|
|
return workspaceID == rhs.workspaceID;
|
2022-12-10 22:59:16 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-07-16 15:57:31 +02:00
|
|
|
class CHyprMasterLayout : public IHyprLayout {
|
2022-12-16 18:17:31 +01:00
|
|
|
public:
|
2023-09-13 12:13:29 +02:00
|
|
|
virtual void onWindowCreatedTiling(CWindow*, eDirection direction = DIRECTION_DEFAULT);
|
2022-12-16 18:17:31 +01:00
|
|
|
virtual void onWindowRemovedTiling(CWindow*);
|
|
|
|
virtual bool isWindowTiled(CWindow*);
|
|
|
|
virtual void recalculateMonitor(const int&);
|
|
|
|
virtual void recalculateWindow(CWindow*);
|
2023-07-13 16:52:11 +02:00
|
|
|
virtual void resizeActiveWindow(const Vector2D&, eRectCorner corner = CORNER_NONE, CWindow* pWindow = nullptr);
|
2022-12-16 18:17:31 +01:00
|
|
|
virtual void fullscreenRequestForWindow(CWindow*, eFullscreenMode, bool);
|
|
|
|
virtual std::any layoutMessage(SLayoutMessageHeader, std::string);
|
2022-07-16 15:57:31 +02:00
|
|
|
virtual SWindowRenderLayoutHints requestRenderHints(CWindow*);
|
2022-12-16 18:17:31 +01:00
|
|
|
virtual void switchWindows(CWindow*, CWindow*);
|
2023-09-04 15:34:07 +02:00
|
|
|
virtual void moveWindowTo(CWindow*, const std::string& dir);
|
2022-12-17 23:37:44 +01:00
|
|
|
virtual void alterSplitRatio(CWindow*, float, bool);
|
2022-12-16 18:17:31 +01:00
|
|
|
virtual std::string getLayoutName();
|
2023-02-19 22:07:32 +01:00
|
|
|
virtual void replaceWindowDataWith(CWindow* from, CWindow* to);
|
2022-07-16 15:57:31 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
virtual void onEnable();
|
|
|
|
virtual void onDisable();
|
2022-07-16 15:57:31 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
private:
|
|
|
|
std::list<SMasterNodeData> m_lMasterNodesData;
|
2022-12-10 22:59:16 +01:00
|
|
|
std::vector<SMasterWorkspaceData> m_lMasterWorkspacesData;
|
2022-07-16 15:57:31 +02:00
|
|
|
|
2023-09-15 23:13:23 +02:00
|
|
|
bool m_bForceWarps = false;
|
|
|
|
|
2023-09-04 16:45:58 +02:00
|
|
|
void buildOrientationCycleVectorFromVars(std::vector<eOrientation>& cycle, CVarList& vars);
|
|
|
|
void buildOrientationCycleVectorFromEOperation(std::vector<eOrientation>& cycle);
|
|
|
|
void runOrientationCycle(SLayoutMessageHeader& header, CVarList* vars, int next);
|
2022-12-16 18:17:31 +01:00
|
|
|
int getNodesOnWorkspace(const int&);
|
|
|
|
void applyNodeDataToWindow(SMasterNodeData*);
|
|
|
|
SMasterNodeData* getNodeFromWindow(CWindow*);
|
|
|
|
SMasterNodeData* getMasterNodeOnWorkspace(const int&);
|
|
|
|
SMasterWorkspaceData* getMasterWorkspaceData(const int&);
|
|
|
|
void calculateWorkspace(const int&);
|
|
|
|
CWindow* getNextWindow(CWindow*, bool);
|
|
|
|
int getMastersOnWorkspace(const int&);
|
|
|
|
bool prepareLoseFocus(CWindow*);
|
|
|
|
void prepareNewFocus(CWindow*, bool inherit_fullscreen);
|
2022-07-16 15:57:31 +02:00
|
|
|
|
|
|
|
friend struct SMasterNodeData;
|
2022-12-10 22:59:16 +01:00
|
|
|
friend struct SMasterWorkspaceData;
|
|
|
|
};
|