From 98ce867104b855824ee218296f91664e1fd60545 Mon Sep 17 00:00:00 2001 From: vaxerski Date: Fri, 6 Jan 2023 14:32:25 +0100 Subject: [PATCH] added hyprctl binds --- hyprctl/main.cpp | 5 +++- src/debug/HyprCtl.cpp | 47 +++++++++++++++++++++++++++++++++ src/managers/KeybindManager.hpp | 3 ++- 3 files changed, 53 insertions(+), 2 deletions(-) diff --git a/hyprctl/main.cpp b/hyprctl/main.cpp index 469baddc..acb7b1b1 100644 --- a/hyprctl/main.cpp +++ b/hyprctl/main.cpp @@ -27,6 +27,7 @@ commands: activewindow layers devices + binds dispatch keyword version @@ -44,7 +45,7 @@ flags: --batch -> execute a batch of commands, separated by ';' )#"; -void request(std::string arg, int minArgs = 0) { +void request(std::string arg, int minArgs = 0) { const auto SERVERSOCKET = socket(AF_UNIX, SOCK_STREAM, 0); const auto ARGS = std::count(arg.begin(), arg.end(), ' '); @@ -334,6 +335,8 @@ int main(int argc, char** argv) { request(fullRequest); else if (fullRequest.contains("/getoption")) request(fullRequest); + else if (fullRequest.contains("/binds")) + request(fullRequest); else if (fullRequest.contains("/cursorpos")) request(fullRequest); else if (fullRequest.contains("/switchxkblayout")) diff --git a/src/debug/HyprCtl.cpp b/src/debug/HyprCtl.cpp index e0d4d845..3223ac89 100644 --- a/src/debug/HyprCtl.cpp +++ b/src/debug/HyprCtl.cpp @@ -461,6 +461,51 @@ std::string devicesRequest(HyprCtl::eHyprCtlOutputFormat format) { return result; } +std::string bindsRequest(HyprCtl::eHyprCtlOutputFormat format) { + std::string ret = ""; + if (format == HyprCtl::eHyprCtlOutputFormat::FORMAT_NORMAL) { + for (auto& kb : g_pKeybindManager->m_lKeybinds) { + ret += "bind"; + if (kb.locked) + ret += "l"; + if (kb.mouse) + ret += "m"; + if (kb.release) + ret += "r"; + if (kb.repeat) + ret += "e"; + + ret += getFormat("\n\tmodmask: %u\n\tsubmap: %s\n\tkey: %s\n\tkeycode: %d\n\tdispatcher: %s\n\targ: %s\n\n", kb.modmask, kb.submap.c_str(), kb.key.c_str(), kb.keycode, + kb.handler.c_str(), kb.arg.c_str()); + } + } else { + // json + ret += "["; + for (auto& kb : g_pKeybindManager->m_lKeybinds) { + ret += getFormat( + R"#( +{ + "locked": %s, + "mouse": %s, + "release": %s, + "repeat": %s, + "modmask": %u, + "submap": "%s", + "key": "%s", + "keycode": %i, + "dispatcher": "%s", + "arg": "%s" +},)#", + kb.locked ? "true" : "false", kb.mouse ? "true" : "false", kb.release ? "true" : "false", kb.repeat ? "true" : "false", kb.modmask, kb.submap.c_str(), + kb.key.c_str(), kb.keycode, kb.handler.c_str(), kb.arg.c_str()); + } + ret.pop_back(); + ret += "]"; + } + + return ret; +} + std::string versionRequest(HyprCtl::eHyprCtlOutputFormat format) { if (format == HyprCtl::eHyprCtlOutputFormat::FORMAT_NORMAL) { @@ -913,6 +958,8 @@ std::string getReply(std::string request) { return splashRequest(); else if (request == "cursorpos") return cursorPosRequest(format); + else if (request == "binds") + return bindsRequest(format); else if (request.find("switchxkblayout") == 0) return switchXKBLayoutRequest(request); else if (request.find("output") == 0) diff --git a/src/managers/KeybindManager.hpp b/src/managers/KeybindManager.hpp index 9498c529..7794c24c 100644 --- a/src/managers/KeybindManager.hpp +++ b/src/managers/KeybindManager.hpp @@ -51,8 +51,9 @@ class CKeybindManager { wl_event_source* m_pActiveKeybindEventSource = nullptr; + std::list m_lKeybinds; + private: - std::list m_lKeybinds; std::deque m_dPressedKeysyms; std::deque m_dPressedKeycodes;