mirror of
https://github.com/hyprwm/Hyprland
synced 2024-11-07 17:46:00 +01:00
add hyprctl setprop
This commit is contained in:
parent
eb9fa8460f
commit
a2ae37396f
7 changed files with 218 additions and 70 deletions
|
@ -39,6 +39,8 @@ commands:
|
||||||
getoption
|
getoption
|
||||||
cursorpos
|
cursorpos
|
||||||
switchxkblayout
|
switchxkblayout
|
||||||
|
seterror
|
||||||
|
setprop
|
||||||
|
|
||||||
flags:
|
flags:
|
||||||
-j -> output in JSON
|
-j -> output in JSON
|
||||||
|
@ -343,6 +345,8 @@ int main(int argc, char** argv) {
|
||||||
request(fullRequest, 2);
|
request(fullRequest, 2);
|
||||||
else if (fullRequest.contains("/seterror"))
|
else if (fullRequest.contains("/seterror"))
|
||||||
request(fullRequest, 1);
|
request(fullRequest, 1);
|
||||||
|
else if (fullRequest.contains("/setprop"))
|
||||||
|
request(fullRequest, 3);
|
||||||
else if (fullRequest.contains("/output"))
|
else if (fullRequest.contains("/output"))
|
||||||
exitStatus = outputRequest(argc, argv);
|
exitStatus = outputRequest(argc, argv);
|
||||||
else if (fullRequest.contains("/setcursor"))
|
else if (fullRequest.contains("/setcursor"))
|
||||||
|
|
|
@ -1559,9 +1559,12 @@ void CCompositor::updateWindowAnimatedDecorationValues(CWindow* pWindow) {
|
||||||
if (RENDERDATA.isBorderGradient)
|
if (RENDERDATA.isBorderGradient)
|
||||||
setBorderColor(*RENDERDATA.borderGradient);
|
setBorderColor(*RENDERDATA.borderGradient);
|
||||||
else
|
else
|
||||||
setBorderColor(pWindow == m_pLastWindow ?
|
setBorderColor(pWindow == m_pLastWindow ? (pWindow->m_sSpecialRenderData.activeBorderColor.toUnderlying() >= 0 ?
|
||||||
(pWindow->m_sSpecialRenderData.activeBorderColor >= 0 ? CGradientValueData(CColor(pWindow->m_sSpecialRenderData.activeBorderColor)) : *ACTIVECOL) :
|
CGradientValueData(CColor(pWindow->m_sSpecialRenderData.activeBorderColor.toUnderlying())) :
|
||||||
(pWindow->m_sSpecialRenderData.inactiveBorderColor >= 0 ? CGradientValueData(CColor(pWindow->m_sSpecialRenderData.inactiveBorderColor)) : *INACTIVECOL));
|
*ACTIVECOL) :
|
||||||
|
(pWindow->m_sSpecialRenderData.inactiveBorderColor.toUnderlying() >= 0 ?
|
||||||
|
CGradientValueData(CColor(pWindow->m_sSpecialRenderData.inactiveBorderColor.toUnderlying())) :
|
||||||
|
*INACTIVECOL));
|
||||||
|
|
||||||
// opacity
|
// opacity
|
||||||
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(pWindow->m_iWorkspaceID);
|
const auto PWORKSPACE = g_pCompositor->getWorkspaceByID(pWindow->m_iWorkspaceID);
|
||||||
|
@ -1570,11 +1573,11 @@ void CCompositor::updateWindowAnimatedDecorationValues(CWindow* pWindow) {
|
||||||
} else {
|
} else {
|
||||||
if (pWindow == m_pLastWindow)
|
if (pWindow == m_pLastWindow)
|
||||||
pWindow->m_fActiveInactiveAlpha =
|
pWindow->m_fActiveInactiveAlpha =
|
||||||
pWindow->m_sSpecialRenderData.alphaOverride ? pWindow->m_sSpecialRenderData.alpha : pWindow->m_sSpecialRenderData.alpha * *PACTIVEALPHA;
|
pWindow->m_sSpecialRenderData.alphaOverride.toUnderlying() ? pWindow->m_sSpecialRenderData.alpha.toUnderlying() : pWindow->m_sSpecialRenderData.alpha.toUnderlying() * *PACTIVEALPHA;
|
||||||
else
|
else
|
||||||
pWindow->m_fActiveInactiveAlpha = pWindow->m_sSpecialRenderData.alphaInactive != -1 ?
|
pWindow->m_fActiveInactiveAlpha = pWindow->m_sSpecialRenderData.alphaInactive.toUnderlying() != -1 ?
|
||||||
(pWindow->m_sSpecialRenderData.alphaInactiveOverride ? pWindow->m_sSpecialRenderData.alphaInactive :
|
(pWindow->m_sSpecialRenderData.alphaInactiveOverride.toUnderlying() ? pWindow->m_sSpecialRenderData.alphaInactive.toUnderlying() :
|
||||||
pWindow->m_sSpecialRenderData.alphaInactive * *PINACTIVEALPHA) :
|
pWindow->m_sSpecialRenderData.alphaInactive.toUnderlying() * *PINACTIVEALPHA) :
|
||||||
*PINACTIVEALPHA;
|
*PINACTIVEALPHA;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -379,7 +379,7 @@ void CWindow::updateDynamicRules() {
|
||||||
if (!m_sAdditionalConfigData.forceOpaqueOverriden)
|
if (!m_sAdditionalConfigData.forceOpaqueOverriden)
|
||||||
m_sAdditionalConfigData.forceOpaque = false;
|
m_sAdditionalConfigData.forceOpaque = false;
|
||||||
m_sAdditionalConfigData.forceNoAnims = false;
|
m_sAdditionalConfigData.forceNoAnims = false;
|
||||||
m_sAdditionalConfigData.animationStyle = "";
|
m_sAdditionalConfigData.animationStyle = std::string("");
|
||||||
m_sAdditionalConfigData.rounding = -1;
|
m_sAdditionalConfigData.rounding = -1;
|
||||||
m_sAdditionalConfigData.dimAround = false;
|
m_sAdditionalConfigData.dimAround = false;
|
||||||
|
|
||||||
|
|
109
src/Window.hpp
109
src/Window.hpp
|
@ -15,14 +15,85 @@ enum eIdleInhibitMode {
|
||||||
IDLEINHIBIT_FOCUS
|
IDLEINHIBIT_FOCUS
|
||||||
};
|
};
|
||||||
|
|
||||||
struct SWindowSpecialRenderData {
|
template <typename T>
|
||||||
bool alphaOverride = false;
|
class CWindowOverridableVar {
|
||||||
float alpha = 1.f;
|
public:
|
||||||
bool alphaInactiveOverride = false;
|
CWindowOverridableVar(T val) {
|
||||||
float alphaInactive = -1.f; // -1 means unset
|
value = val;
|
||||||
|
}
|
||||||
|
|
||||||
int64_t activeBorderColor = -1; // -1 means unset
|
cCWindowOverridableVar<T> operator=(CWindowOverridableVar<T> other) {
|
||||||
int64_t inactiveBorderColor = -1; // -1 means unset
|
if (locked)
|
||||||
|
return *this;
|
||||||
|
|
||||||
|
locked = other.locked;
|
||||||
|
value = other.value;
|
||||||
|
|
||||||
|
return *this;
|
||||||
|
}
|
||||||
|
|
||||||
|
T operator=(T& other) {
|
||||||
|
if (locked)
|
||||||
|
return value;
|
||||||
|
value = other;
|
||||||
|
return other;
|
||||||
|
}
|
||||||
|
|
||||||
|
void forceSetIgnoreLocked(T val, bool lock = false) {
|
||||||
|
value = val;
|
||||||
|
locked = lock;
|
||||||
|
}
|
||||||
|
|
||||||
|
T operator*(T& other) {
|
||||||
|
return value * other;
|
||||||
|
}
|
||||||
|
|
||||||
|
T operator+(T& other) {
|
||||||
|
return value + other;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator==(T& other) {
|
||||||
|
return other == value;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator>=(T& other) {
|
||||||
|
return value >= other;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator<=(T& other) {
|
||||||
|
return value <= other;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator>(T& other) {
|
||||||
|
return value > other;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator<(T& other) {
|
||||||
|
return value < other;
|
||||||
|
}
|
||||||
|
|
||||||
|
explicit operator bool() {
|
||||||
|
return static_cast<bool>(value);
|
||||||
|
}
|
||||||
|
|
||||||
|
T toUnderlying() {
|
||||||
|
return value;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool locked = false;
|
||||||
|
|
||||||
|
private:
|
||||||
|
T value;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct SWindowSpecialRenderData {
|
||||||
|
CWindowOverridableVar<bool> alphaOverride = false;
|
||||||
|
CWindowOverridableVar<float> alpha = 1.f;
|
||||||
|
CWindowOverridableVar<bool> alphaInactiveOverride = false;
|
||||||
|
CWindowOverridableVar<float> alphaInactive = -1.f; // -1 means unset
|
||||||
|
|
||||||
|
CWindowOverridableVar<int64_t> activeBorderColor = -1; // -1 means unset
|
||||||
|
CWindowOverridableVar<int64_t> inactiveBorderColor = -1; // -1 means unset
|
||||||
|
|
||||||
// set by the layout
|
// set by the layout
|
||||||
bool rounding = true;
|
bool rounding = true;
|
||||||
|
@ -31,18 +102,18 @@ struct SWindowSpecialRenderData {
|
||||||
};
|
};
|
||||||
|
|
||||||
struct SWindowAdditionalConfigData {
|
struct SWindowAdditionalConfigData {
|
||||||
std::string animationStyle = "";
|
std::string animationStyle = std::string("");
|
||||||
int rounding = -1; // -1 means no
|
CWindowOverridableVar<int> rounding = -1; // -1 means no
|
||||||
bool forceNoBlur = false;
|
CWindowOverridableVar<bool> forceNoBlur = false;
|
||||||
bool forceOpaque = false;
|
CWindowOverridableVar<bool> forceOpaque = false;
|
||||||
bool forceOpaqueOverriden = false; // if true, a rule will not change the forceOpaque state. This is for the force opaque dispatcher.
|
CWindowOverridableVar<bool> forceOpaqueOverriden = false; // if true, a rule will not change the forceOpaque state. This is for the force opaque dispatcher.
|
||||||
bool forceAllowsInput = false;
|
CWindowOverridableVar<bool> forceAllowsInput = false;
|
||||||
bool forceNoAnims = false;
|
CWindowOverridableVar<bool> forceNoAnims = false;
|
||||||
bool forceNoBorder = false;
|
CWindowOverridableVar<bool> forceNoBorder = false;
|
||||||
bool forceNoShadow = false;
|
CWindowOverridableVar<bool> forceNoShadow = false;
|
||||||
bool windowDanceCompat = false;
|
CWindowOverridableVar<bool> windowDanceCompat = false;
|
||||||
bool noMaxSize = false;
|
CWindowOverridableVar<bool> noMaxSize = false;
|
||||||
bool dimAround = false;
|
CWindowOverridableVar<bool> dimAround = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct SWindowRule {
|
struct SWindowRule {
|
||||||
|
|
|
@ -836,6 +836,73 @@ std::string dispatchSeterror(std::string request) {
|
||||||
return "ok";
|
return "ok";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string dispatchSetProp(std::string request) {
|
||||||
|
CVarList vars(request, 0, ' ');
|
||||||
|
|
||||||
|
if (vars.size() < 4)
|
||||||
|
return "not enough args";
|
||||||
|
|
||||||
|
const auto PWINDOW = g_pCompositor->getWindowByRegex(vars[1]);
|
||||||
|
|
||||||
|
if (!PWINDOW)
|
||||||
|
return "window not found";
|
||||||
|
|
||||||
|
const auto PROP = vars[2];
|
||||||
|
const auto VAL = vars[3];
|
||||||
|
|
||||||
|
bool lock = false;
|
||||||
|
|
||||||
|
if (vars.size() > 4) {
|
||||||
|
if (vars[4].find("lock") == 0) {
|
||||||
|
lock = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
if (PROP == "animationstyle") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.animationStyle = VAL;
|
||||||
|
} else if (PROP == "rounding") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.rounding.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "forcenoblur") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.forceNoBlur.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "forceopaque") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.forceOpaque.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "forceopaqueoverriden") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.forceOpaqueOverriden.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "forceallowsinput") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.forceAllowsInput.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "forcenoanims") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.forceNoAnims.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "forcenoborder") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.forceNoBorder.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "forcenoshadow") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.forceNoShadow.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "windowdancecompat") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.windowDanceCompat.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "nomaxsize") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.noMaxSize.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "dimaround") {
|
||||||
|
PWINDOW->m_sAdditionalConfigData.dimAround.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "alphaoverride") {
|
||||||
|
PWINDOW->m_sSpecialRenderData.alphaOverride.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "alpha") {
|
||||||
|
PWINDOW->m_sSpecialRenderData.alpha.forceSetIgnoreLocked(std::stof(VAL), lock);
|
||||||
|
} else if (PROP == "alphainactiveoverride") {
|
||||||
|
PWINDOW->m_sSpecialRenderData.alphaInactiveOverride.forceSetIgnoreLocked(std::stoi(VAL), lock);
|
||||||
|
} else if (PROP == "alphainactive") {
|
||||||
|
PWINDOW->m_sSpecialRenderData.alphaInactive.forceSetIgnoreLocked(std::stof(VAL), lock);
|
||||||
|
} else if (PROP == "activebordercolor") {
|
||||||
|
PWINDOW->m_sSpecialRenderData.activeBorderColor.forceSetIgnoreLocked(std::stoll(VAL), lock);
|
||||||
|
} else if (PROP == "inactivebordercolor") {
|
||||||
|
PWINDOW->m_sSpecialRenderData.inactiveBorderColor.forceSetIgnoreLocked(std::stoll(VAL), lock);
|
||||||
|
} else {
|
||||||
|
return "prop not found";
|
||||||
|
}
|
||||||
|
} catch (std::exception& e) { return "error in parsing prop value: " + std::string(e.what()); }
|
||||||
|
|
||||||
|
return "ok";
|
||||||
|
}
|
||||||
|
|
||||||
std::string dispatchGetOption(std::string request, HyprCtl::eHyprCtlOutputFormat format) {
|
std::string dispatchGetOption(std::string request, HyprCtl::eHyprCtlOutputFormat format) {
|
||||||
std::string curitem = "";
|
std::string curitem = "";
|
||||||
|
|
||||||
|
@ -1004,6 +1071,8 @@ std::string getReply(std::string request) {
|
||||||
return cursorPosRequest(format);
|
return cursorPosRequest(format);
|
||||||
else if (request == "binds")
|
else if (request == "binds")
|
||||||
return bindsRequest(format);
|
return bindsRequest(format);
|
||||||
|
else if (request.find("setprop") == 0)
|
||||||
|
return dispatchSetProp(request);
|
||||||
else if (request.find("seterror") == 0)
|
else if (request.find("seterror") == 0)
|
||||||
return dispatchSeterror(request);
|
return dispatchSeterror(request);
|
||||||
else if (request.find("switchxkblayout") == 0)
|
else if (request.find("switchxkblayout") == 0)
|
||||||
|
|
|
@ -247,7 +247,7 @@ void CHyprRenderer::renderWindow(CWindow* pWindow, CMonitor* pMonitor, timespec*
|
||||||
renderdata.alpha = pWindow->m_fActiveInactiveAlpha.fl();
|
renderdata.alpha = pWindow->m_fActiveInactiveAlpha.fl();
|
||||||
renderdata.decorate = decorate && !pWindow->m_bX11DoesntWantBorders && (pWindow->m_bIsFloating ? *PNOFLOATINGBORDERS == 0 : true) &&
|
renderdata.decorate = decorate && !pWindow->m_bX11DoesntWantBorders && (pWindow->m_bIsFloating ? *PNOFLOATINGBORDERS == 0 : true) &&
|
||||||
(!pWindow->m_bIsFullscreen || PWORKSPACE->m_efFullscreenMode != FULLSCREEN_FULL);
|
(!pWindow->m_bIsFullscreen || PWORKSPACE->m_efFullscreenMode != FULLSCREEN_FULL);
|
||||||
renderdata.rounding = ignoreAllGeometry ? 0 : pWindow->m_sAdditionalConfigData.rounding;
|
renderdata.rounding = ignoreAllGeometry ? 0 : pWindow->m_sAdditionalConfigData.rounding.toUnderlying();
|
||||||
renderdata.blur = !ignoreAllGeometry; // if it shouldn't, it will be ignored later
|
renderdata.blur = !ignoreAllGeometry; // if it shouldn't, it will be ignored later
|
||||||
renderdata.pWindow = pWindow;
|
renderdata.pWindow = pWindow;
|
||||||
|
|
||||||
|
|
|
@ -73,8 +73,9 @@ void CHyprDropShadowDecoration::draw(CMonitor* pMonitor, float a, const Vector2D
|
||||||
if (*PSHADOWS != 1)
|
if (*PSHADOWS != 1)
|
||||||
return; // disabled
|
return; // disabled
|
||||||
|
|
||||||
const auto ROUNDING =
|
const auto ROUNDING = !m_pWindow->m_sSpecialRenderData.rounding ?
|
||||||
!m_pWindow->m_sSpecialRenderData.rounding ? 0 : (m_pWindow->m_sAdditionalConfigData.rounding == -1 ? *PROUNDING : m_pWindow->m_sAdditionalConfigData.rounding);
|
0 :
|
||||||
|
(m_pWindow->m_sAdditionalConfigData.rounding.toUnderlying() == -1 ? *PROUNDING : m_pWindow->m_sAdditionalConfigData.rounding.toUnderlying());
|
||||||
|
|
||||||
// draw the shadow
|
// draw the shadow
|
||||||
wlr_box fullBox = {m_vLastWindowPos.x - *PSHADOWSIZE, m_vLastWindowPos.y - *PSHADOWSIZE, m_vLastWindowSize.x + 2.0 * *PSHADOWSIZE, m_vLastWindowSize.y + 2.0 * *PSHADOWSIZE};
|
wlr_box fullBox = {m_vLastWindowPos.x - *PSHADOWSIZE, m_vLastWindowPos.y - *PSHADOWSIZE, m_vLastWindowSize.x + 2.0 * *PSHADOWSIZE, m_vLastWindowSize.y + 2.0 * *PSHADOWSIZE};
|
||||||
|
|
Loading…
Reference in a new issue