mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-02 08:45:58 +01:00
examples: update plugin headers
This commit is contained in:
parent
d7935356da
commit
ba714b3b71
6 changed files with 8 additions and 8 deletions
|
@ -1,6 +1,6 @@
|
||||||
#include "customDecoration.hpp"
|
#include "customDecoration.hpp"
|
||||||
#include "../../src/Window.hpp"
|
#include <hyprland/src/Window.hpp>
|
||||||
#include "../../src/Compositor.hpp"
|
#include <hyprland/src/Compositor.hpp>
|
||||||
#include "globals.hpp"
|
#include "globals.hpp"
|
||||||
|
|
||||||
CCustomDecoration::CCustomDecoration(CWindow* pWindow) {
|
CCustomDecoration::CCustomDecoration(CWindow* pWindow) {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#define WLR_USE_UNSTABLE
|
#define WLR_USE_UNSTABLE
|
||||||
|
|
||||||
#include "../../src/render/decorations/IHyprWindowDecoration.hpp"
|
#include <hyprland/src/render/decorations/IHyprWindowDecoration.hpp>
|
||||||
|
|
||||||
class CCustomDecoration : public IHyprWindowDecoration {
|
class CCustomDecoration : public IHyprWindowDecoration {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#include "customLayout.hpp"
|
#include "customLayout.hpp"
|
||||||
#include "../../src/Compositor.hpp"
|
#include <hyprland/src/Compositor.hpp>
|
||||||
#include "globals.hpp"
|
#include "globals.hpp"
|
||||||
|
|
||||||
void CHyprCustomLayout::onWindowCreatedTiling(CWindow* pWindow) {
|
void CHyprCustomLayout::onWindowCreatedTiling(CWindow* pWindow) {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#define WLR_USE_UNSTABLE
|
#define WLR_USE_UNSTABLE
|
||||||
|
|
||||||
#include "../../src/layout/IHyprLayout.hpp"
|
#include <hyprland/src/layout/IHyprLayout.hpp>
|
||||||
|
|
||||||
struct SWindowData {
|
struct SWindowData {
|
||||||
CWindow* pWindow = nullptr;
|
CWindow* pWindow = nullptr;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include <src/plugins/PluginAPI.hpp>
|
#include <hyprland/src/plugins/PluginAPI.hpp>
|
||||||
|
|
||||||
inline HANDLE PHANDLE = nullptr;
|
inline HANDLE PHANDLE = nullptr;
|
|
@ -2,8 +2,8 @@
|
||||||
|
|
||||||
#include "globals.hpp"
|
#include "globals.hpp"
|
||||||
|
|
||||||
#include <src/Window.hpp>
|
#include <hyprland/src/Window.hpp>
|
||||||
#include <src/Compositor.hpp>
|
#include <hyprland/src/Compositor.hpp>
|
||||||
#include "customLayout.hpp"
|
#include "customLayout.hpp"
|
||||||
#include "customDecoration.hpp"
|
#include "customDecoration.hpp"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue