mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-26 06:49:49 +01:00
format
This commit is contained in:
parent
29171cd0e1
commit
0581cf73da
1 changed files with 19 additions and 19 deletions
|
@ -1210,14 +1210,14 @@ std::string dispatchGetOption(eHyprCtlOutputFormat format, std::string request)
|
||||||
else if (TYPE == typeid(Hyprlang::FLOAT))
|
else if (TYPE == typeid(Hyprlang::FLOAT))
|
||||||
return std::format("{{\"option\": \"{}\", \"float\": {:2f}, \"set\": {} }}", curitem, std::any_cast<Hyprlang::FLOAT>(VAL), VAR->m_bSetByUser);
|
return std::format("{{\"option\": \"{}\", \"float\": {:2f}, \"set\": {} }}", curitem, std::any_cast<Hyprlang::FLOAT>(VAL), VAR->m_bSetByUser);
|
||||||
else if (TYPE == typeid(Hyprlang::VEC2))
|
else if (TYPE == typeid(Hyprlang::VEC2))
|
||||||
return std::format("{{\"option\": \"{}\", \"vec2\": [{},{}], \"set\": {} }}", curitem, std::any_cast<Hyprlang::VEC2>(VAL).x, std::any_cast<Hyprlang::VEC2>(VAL).y, VAR->m_bSetByUser);
|
return std::format("{{\"option\": \"{}\", \"vec2\": [{},{}], \"set\": {} }}", curitem, std::any_cast<Hyprlang::VEC2>(VAL).x, std::any_cast<Hyprlang::VEC2>(VAL).y,
|
||||||
|
VAR->m_bSetByUser);
|
||||||
else if (TYPE == typeid(Hyprlang::STRING))
|
else if (TYPE == typeid(Hyprlang::STRING))
|
||||||
return std::format("{{\"option\": \"{}\", \"str\": \"{}\", \"set\": {} }}", curitem, escapeJSONStrings(std::any_cast<Hyprlang::STRING>(VAL)), VAR->m_bSetByUser);
|
return std::format("{{\"option\": \"{}\", \"str\": \"{}\", \"set\": {} }}", curitem, escapeJSONStrings(std::any_cast<Hyprlang::STRING>(VAL)), VAR->m_bSetByUser);
|
||||||
else if (TYPE == typeid(Hyprlang::CUSTOMTYPE*))
|
else if (TYPE == typeid(Hyprlang::CUSTOMTYPE*))
|
||||||
return std::format("{{\"option\": \"{}\", \"custom\": \"{:x}\", \"set\": {} }}", curitem, (uintptr_t)std::any_cast<Hyprlang::CUSTOMTYPE*>(VAL), VAR->m_bSetByUser);
|
return std::format("{{\"option\": \"{}\", \"custom\": \"{:x}\", \"set\": {} }}", curitem, (uintptr_t)std::any_cast<Hyprlang::CUSTOMTYPE*>(VAL), VAR->m_bSetByUser);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
return "invalid type (internal error)";
|
return "invalid type (internal error)";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue