aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/desktop/WindowRule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/desktop/WindowRule.cpp')
-rw-r--r--src/desktop/WindowRule.cpp100
1 files changed, 100 insertions, 0 deletions
diff --git a/src/desktop/WindowRule.cpp b/src/desktop/WindowRule.cpp
new file mode 100644
index 00000000..d721c4bd
--- /dev/null
+++ b/src/desktop/WindowRule.cpp
@@ -0,0 +1,100 @@
+#include "WindowRule.hpp"
+#include <unordered_set>
+#include <algorithm>
+#include "../config/ConfigManager.hpp"
+
+static const auto RULES = std::unordered_set<std::string>{
+ "float", "fullscreen", "maximize", "noinitialfocus", "pin", "stayfocused", "tile", "renderunfocused",
+};
+static const auto RULES_PREFIX = std::unordered_set<std::string>{
+ "animation", "bordercolor", "bordersize", "center", "fullscreenstate", "group", "idleinhibit", "maxsize", "minsize", "monitor", "move", "opacity",
+ "plugin:", "prop", "pseudo", "rounding", "scrollmouse", "scrolltouchpad", "size", "suppressevent", "tag", "workspace", "xray",
+};
+
+CWindowRule::CWindowRule(const std::string& rule, const std::string& value, bool isV2, bool isExecRule) : szValue(value), szRule(rule), v2(isV2), execRule(isExecRule) {
+ const auto VALS = CVarList(rule, 2, ' ');
+ const bool VALID = RULES.contains(rule) || std::any_of(RULES_PREFIX.begin(), RULES_PREFIX.end(), [&rule](auto prefix) { return rule.starts_with(prefix); }) ||
+ (g_pConfigManager->mbWindowProperties.find(VALS[0]) != g_pConfigManager->mbWindowProperties.end()) ||
+ (g_pConfigManager->miWindowProperties.find(VALS[0]) != g_pConfigManager->miWindowProperties.end()) ||
+ (g_pConfigManager->mfWindowProperties.find(VALS[0]) != g_pConfigManager->mfWindowProperties.end());
+
+ if (!VALID)
+ return;
+
+ if (rule == "float")
+ ruleType = RULE_FLOAT;
+ else if (rule == "fullscreen")
+ ruleType = RULE_FULLSCREEN;
+ else if (rule == "maximize")
+ ruleType = RULE_MAXIMIZE;
+ else if (rule == "noinitialfocus")
+ ruleType = RULE_NOINITIALFOCUS;
+ else if (rule == "pin")
+ ruleType = RULE_PIN;
+ else if (rule == "stayfocused")
+ ruleType = RULE_STAYFOCUSED;
+ else if (rule == "tile")
+ ruleType = RULE_TILE;
+ else if (rule == "renderunfocused")
+ ruleType = RULE_RENDERUNFOCUSED;
+ else if (rule.starts_with("animation"))
+ ruleType = RULE_ANIMATION;
+ else if (rule.starts_with("bordercolor"))
+ ruleType = RULE_BORDERCOLOR;
+ else if (rule.starts_with("bordersize"))
+ ruleType = RULE_BORDERSIZE;
+ else if (rule.starts_with("center"))
+ ruleType = RULE_CENTER;
+ else if (rule.starts_with("fullscreenstate"))
+ ruleType = RULE_FULLSCREENSTATE;
+ else if (rule.starts_with("group"))
+ ruleType = RULE_GROUP;
+ else if (rule.starts_with("idleinhibit"))
+ ruleType = RULE_IDLEINHIBIT;
+ else if (rule.starts_with("maxsize"))
+ ruleType = RULE_MAXSIZE;
+ else if (rule.starts_with("minsize"))
+ ruleType = RULE_MINSIZE;
+ else if (rule.starts_with("monitor"))
+ ruleType = RULE_MONITOR;
+ else if (rule.starts_with("move"))
+ ruleType = RULE_MOVE;
+ else if (rule.starts_with("opacity"))
+ ruleType = RULE_OPACITY;
+ else if (rule.starts_with("plugin:"))
+ ruleType = RULE_PLUGIN;
+ else if (rule.starts_with("pseudo"))
+ ruleType = RULE_PSEUDO;
+ else if (rule.starts_with("rounding"))
+ ruleType = RULE_ROUNDING;
+ else if (rule.starts_with("scrollmouse"))
+ ruleType = RULE_SCROLLMOUSE;
+ else if (rule.starts_with("scrolltouchpad"))
+ ruleType = RULE_SCROLLTOUCHPAD;
+ else if (rule.starts_with("size"))
+ ruleType = RULE_SIZE;
+ else if (rule.starts_with("suppressevent"))
+ ruleType = RULE_SUPPRESSEVENT;
+ else if (rule.starts_with("tag"))
+ ruleType = RULE_TAG;
+ else if (rule.starts_with("workspace"))
+ ruleType = RULE_WORKSPACE;
+ else if (rule.starts_with("xray"))
+ ruleType = RULE_XRAY;
+ else if (rule.starts_with("prop"))
+ ruleType = RULE_PROP;
+ else {
+ // check if this is a prop.
+ const CVarList VARS(rule, 0, 's', true);
+ if (g_pConfigManager->miWindowProperties.find(VARS[0]) != g_pConfigManager->miWindowProperties.end() ||
+ g_pConfigManager->mbWindowProperties.find(VARS[0]) != g_pConfigManager->mbWindowProperties.end() ||
+ g_pConfigManager->mfWindowProperties.find(VARS[0]) != g_pConfigManager->mfWindowProperties.end()) {
+ *const_cast<std::string*>(&szRule) = "prop " + rule;
+ ruleType = RULE_PROP;
+ Debug::log(LOG, "CWindowRule: direct prop rule found, rewritten {} -> {}", rule, szRule);
+ } else {
+ Debug::log(ERR, "CWindowRule: didn't match a rule that was found valid?!");
+ ruleType = RULE_INVALID;
+ }
+ }
+} \ No newline at end of file