2022-03-19 17:48:18 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "../defines.hpp"
|
|
|
|
#include <deque>
|
2024-05-16 12:48:30 +02:00
|
|
|
#include <set>
|
2022-03-19 17:48:18 +01:00
|
|
|
#include "../Compositor.hpp"
|
2022-04-21 15:50:52 +02:00
|
|
|
#include <unordered_map>
|
|
|
|
#include <functional>
|
2024-07-21 13:09:54 +02:00
|
|
|
#include <xkbcommon/xkbcommon.h>
|
2024-05-05 23:18:10 +02:00
|
|
|
#include "../devices/IPointer.hpp"
|
2022-03-19 17:48:18 +01:00
|
|
|
|
2022-07-31 15:46:42 +02:00
|
|
|
class CInputManager;
|
2022-11-10 14:50:16 +01:00
|
|
|
class CConfigManager;
|
2023-02-27 13:32:38 +01:00
|
|
|
class CPluginSystem;
|
2024-05-03 23:34:10 +02:00
|
|
|
class IKeyboard;
|
2022-07-31 15:46:42 +02:00
|
|
|
|
2022-03-19 17:48:18 +01:00
|
|
|
struct SKeybind {
|
2024-06-11 19:49:54 +02:00
|
|
|
std::string key = "";
|
|
|
|
std::set<xkb_keysym_t> sMkKeys = {};
|
|
|
|
uint32_t keycode = 0;
|
|
|
|
bool catchAll = false;
|
|
|
|
uint32_t modmask = 0;
|
|
|
|
std::set<xkb_keysym_t> sMkMods = {};
|
|
|
|
std::string handler = "";
|
|
|
|
std::string arg = "";
|
|
|
|
bool locked = false;
|
|
|
|
std::string submap = "";
|
|
|
|
std::string description = "";
|
|
|
|
bool release = false;
|
|
|
|
bool repeat = false;
|
|
|
|
bool mouse = false;
|
|
|
|
bool nonConsuming = false;
|
|
|
|
bool transparent = false;
|
|
|
|
bool ignoreMods = false;
|
|
|
|
bool multiKey = false;
|
|
|
|
bool hasDescription = false;
|
2024-07-24 14:10:36 +02:00
|
|
|
bool dontInhibit = false;
|
2022-07-20 23:17:26 +02:00
|
|
|
|
|
|
|
// DO NOT INITIALIZE
|
2022-12-16 18:17:31 +01:00
|
|
|
bool shadowed = false;
|
2022-03-19 17:48:18 +01:00
|
|
|
};
|
|
|
|
|
2023-12-06 23:54:56 +01:00
|
|
|
enum eFocusWindowMode {
|
2022-07-26 17:30:30 +02:00
|
|
|
MODE_CLASS_REGEX = 0,
|
2024-04-21 16:19:59 +02:00
|
|
|
MODE_INITIAL_CLASS_REGEX,
|
2022-07-26 17:30:30 +02:00
|
|
|
MODE_TITLE_REGEX,
|
2024-04-21 16:19:59 +02:00
|
|
|
MODE_INITIAL_TITLE_REGEX,
|
2022-07-26 17:30:30 +02:00
|
|
|
MODE_ADDRESS,
|
2024-04-21 16:19:59 +02:00
|
|
|
MODE_PID,
|
|
|
|
MODE_ACTIVE_WINDOW
|
2022-07-26 17:30:30 +02:00
|
|
|
};
|
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
struct SPressedKeyWithMods {
|
|
|
|
std::string keyName = "";
|
|
|
|
xkb_keysym_t keysym = 0;
|
|
|
|
uint32_t keycode = 0;
|
|
|
|
uint32_t modmaskAtPressTime = 0;
|
2024-01-10 18:06:38 +01:00
|
|
|
bool sent = false;
|
2024-03-09 17:08:07 +01:00
|
|
|
std::string submapAtPress = "";
|
2024-01-01 18:29:51 +01:00
|
|
|
};
|
|
|
|
|
2024-03-03 01:17:02 +01:00
|
|
|
struct SParsedKey {
|
|
|
|
std::string key = "";
|
|
|
|
uint32_t keycode = 0;
|
|
|
|
bool catchAll = false;
|
|
|
|
};
|
|
|
|
|
2024-05-16 12:48:30 +02:00
|
|
|
enum eMultiKeyCase {
|
|
|
|
MK_NO_MATCH = 0,
|
|
|
|
MK_PARTIAL_MATCH,
|
|
|
|
MK_FULL_MATCH
|
|
|
|
};
|
|
|
|
|
2024-08-24 18:45:53 +02:00
|
|
|
struct SDispatchResult {
|
|
|
|
bool passEvent = false;
|
|
|
|
bool success = true;
|
|
|
|
std::string error;
|
|
|
|
};
|
|
|
|
|
2022-03-19 17:48:18 +01:00
|
|
|
class CKeybindManager {
|
2022-12-16 18:17:31 +01:00
|
|
|
public:
|
2022-04-21 15:50:52 +02:00
|
|
|
CKeybindManager();
|
2024-05-03 15:42:08 +02:00
|
|
|
~CKeybindManager();
|
2022-04-21 15:50:52 +02:00
|
|
|
|
2024-08-24 18:45:53 +02:00
|
|
|
bool onKeyEvent(std::any, SP<IKeyboard>);
|
|
|
|
bool onAxisEvent(const IPointer::SAxisEvent&);
|
|
|
|
bool onMouseEvent(const IPointer::SButtonEvent&);
|
|
|
|
void resizeWithBorder(const IPointer::SButtonEvent&);
|
|
|
|
void onSwitchEvent(const std::string&);
|
|
|
|
void onSwitchOnEvent(const std::string&);
|
|
|
|
void onSwitchOffEvent(const std::string&);
|
2022-09-25 20:07:48 +02:00
|
|
|
|
2024-08-24 18:45:53 +02:00
|
|
|
void addKeybind(SKeybind);
|
|
|
|
void removeKeybind(uint32_t, const SParsedKey&);
|
|
|
|
uint32_t stringToModMask(std::string);
|
|
|
|
uint32_t keycodeToModifier(xkb_keycode_t);
|
|
|
|
void clearKeybinds();
|
|
|
|
void shadowKeybinds(const xkb_keysym_t& doesntHave = 0, const uint32_t doesntHaveCode = 0);
|
2022-03-19 17:48:18 +01:00
|
|
|
|
2024-08-24 18:45:53 +02:00
|
|
|
std::unordered_map<std::string, std::function<SDispatchResult(std::string)>> m_mDispatchers;
|
2022-04-21 15:50:52 +02:00
|
|
|
|
2024-08-24 18:45:53 +02:00
|
|
|
wl_event_source* m_pActiveKeybindEventSource = nullptr;
|
2022-07-25 14:42:49 +02:00
|
|
|
|
2024-08-24 18:45:53 +02:00
|
|
|
bool m_bGroupsLocked = false;
|
2023-02-21 13:13:35 +01:00
|
|
|
|
2024-08-24 18:45:53 +02:00
|
|
|
std::list<SKeybind> m_lKeybinds;
|
2023-01-06 14:32:25 +01:00
|
|
|
|
2024-05-24 20:58:26 +02:00
|
|
|
//since we cant find keycode through keyname in xkb:
|
|
|
|
//on sendshortcut call, we once search for keyname (e.g. "g") the correct keycode (e.g. 42)
|
|
|
|
//and cache it in this map to make sendshortcut calls faster
|
|
|
|
//we also store the keyboard pointer (in the string) to differentiate between different keyboard (layouts)
|
|
|
|
std::unordered_map<std::string, xkb_keycode_t> m_mKeyToCodeCache;
|
|
|
|
|
2024-08-24 18:45:53 +02:00
|
|
|
static SDispatchResult changeMouseBindMode(const eMouseBindMode mode);
|
2024-07-27 18:46:19 +02:00
|
|
|
|
2022-12-16 18:17:31 +01:00
|
|
|
private:
|
2024-01-01 18:29:51 +01:00
|
|
|
std::deque<SPressedKeyWithMods> m_dPressedKeys;
|
2022-03-19 17:48:18 +01:00
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
inline static std::string m_szCurrentSelectedSubmap = "";
|
2022-06-22 20:23:20 +02:00
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
SKeybind* m_pActiveKeybind = nullptr;
|
2022-07-25 14:42:49 +02:00
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
uint32_t m_uTimeLastMs = 0;
|
|
|
|
uint32_t m_uLastCode = 0;
|
|
|
|
uint32_t m_uLastMouseCode = 0;
|
2022-07-26 17:30:30 +02:00
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
std::vector<SKeybind*> m_vPressedSpecialBinds;
|
2022-09-20 11:02:20 +02:00
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
int m_iPassPressed = -1; // used for pass
|
2022-08-27 19:29:28 +02:00
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
CTimer m_tScrollTimer;
|
2022-07-26 23:34:03 +02:00
|
|
|
|
2024-08-24 18:45:53 +02:00
|
|
|
SDispatchResult handleKeybinds(const uint32_t, const SPressedKeyWithMods&, bool);
|
2022-07-20 23:17:26 +02:00
|
|
|
|
2024-05-16 12:48:30 +02:00
|
|
|
std::set<xkb_keysym_t> m_sMkKeys = {};
|
|
|
|
std::set<xkb_keysym_t> m_sMkMods = {};
|
|
|
|
eMultiKeyCase mkBindMatches(const SKeybind);
|
|
|
|
eMultiKeyCase mkKeysymSetMatches(const std::set<xkb_keysym_t>, const std::set<xkb_keysym_t>);
|
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
bool handleInternalKeybinds(xkb_keysym_t);
|
|
|
|
bool handleVT(xkb_keysym_t);
|
2022-03-19 17:48:18 +01:00
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
xkb_state* m_pXKBTranslationState = nullptr;
|
2022-08-21 16:43:18 +02:00
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
void updateXKBTranslationState();
|
|
|
|
bool ensureMouseBindState();
|
2022-08-21 16:43:18 +02:00
|
|
|
|
2024-01-01 18:29:51 +01:00
|
|
|
static bool tryMoveFocusToMonitor(CMonitor* monitor);
|
2024-04-27 13:43:12 +02:00
|
|
|
static void moveWindowOutOfGroup(PHLWINDOW pWindow, const std::string& dir = "");
|
|
|
|
static void moveWindowIntoGroup(PHLWINDOW pWindow, PHLWINDOW pWindowInDirection);
|
|
|
|
static void switchToWindow(PHLWINDOW PWINDOWTOCHANGETO);
|
2024-08-24 18:45:53 +02:00
|
|
|
static uint64_t spawnRawProc(std::string);
|
2023-04-10 15:40:03 +02:00
|
|
|
|
2022-03-19 17:48:18 +01:00
|
|
|
// -------------- Dispatchers -------------- //
|
2024-08-24 18:45:53 +02:00
|
|
|
static SDispatchResult killActive(std::string);
|
|
|
|
static SDispatchResult kill(std::string);
|
|
|
|
static SDispatchResult spawn(std::string);
|
|
|
|
static SDispatchResult spawnRaw(std::string);
|
|
|
|
static SDispatchResult toggleActiveFloating(std::string);
|
|
|
|
static SDispatchResult toggleActivePseudo(std::string);
|
|
|
|
static SDispatchResult setActiveFloating(std::string);
|
|
|
|
static SDispatchResult setActiveTiled(std::string);
|
|
|
|
static SDispatchResult changeworkspace(std::string);
|
|
|
|
static SDispatchResult fullscreenActive(std::string);
|
|
|
|
static SDispatchResult fullscreenStateActive(std::string args);
|
|
|
|
static SDispatchResult moveActiveToWorkspace(std::string);
|
|
|
|
static SDispatchResult moveActiveToWorkspaceSilent(std::string);
|
|
|
|
static SDispatchResult moveFocusTo(std::string);
|
|
|
|
static SDispatchResult focusUrgentOrLast(std::string);
|
|
|
|
static SDispatchResult focusCurrentOrLast(std::string);
|
|
|
|
static SDispatchResult centerWindow(std::string);
|
|
|
|
static SDispatchResult moveActiveTo(std::string);
|
|
|
|
static SDispatchResult swapActive(std::string);
|
|
|
|
static SDispatchResult toggleGroup(std::string);
|
|
|
|
static SDispatchResult changeGroupActive(std::string);
|
|
|
|
static SDispatchResult alterSplitRatio(std::string);
|
|
|
|
static SDispatchResult focusMonitor(std::string);
|
|
|
|
static SDispatchResult toggleSplit(std::string);
|
|
|
|
static SDispatchResult swapSplit(std::string);
|
|
|
|
static SDispatchResult moveCursorToCorner(std::string);
|
|
|
|
static SDispatchResult moveCursor(std::string);
|
|
|
|
static SDispatchResult workspaceOpt(std::string);
|
|
|
|
static SDispatchResult renameWorkspace(std::string);
|
|
|
|
static SDispatchResult exitHyprland(std::string);
|
|
|
|
static SDispatchResult moveCurrentWorkspaceToMonitor(std::string);
|
|
|
|
static SDispatchResult moveWorkspaceToMonitor(std::string);
|
|
|
|
static SDispatchResult focusWorkspaceOnCurrentMonitor(std::string);
|
|
|
|
static SDispatchResult toggleSpecialWorkspace(std::string);
|
|
|
|
static SDispatchResult forceRendererReload(std::string);
|
|
|
|
static SDispatchResult resizeActive(std::string);
|
|
|
|
static SDispatchResult moveActive(std::string);
|
|
|
|
static SDispatchResult moveWindow(std::string);
|
|
|
|
static SDispatchResult resizeWindow(std::string);
|
|
|
|
static SDispatchResult circleNext(std::string);
|
|
|
|
static SDispatchResult focusWindow(std::string);
|
|
|
|
static SDispatchResult tagWindow(std::string);
|
|
|
|
static SDispatchResult setSubmap(std::string);
|
|
|
|
static SDispatchResult pass(std::string);
|
|
|
|
static SDispatchResult sendshortcut(std::string);
|
|
|
|
static SDispatchResult layoutmsg(std::string);
|
|
|
|
static SDispatchResult dpms(std::string);
|
|
|
|
static SDispatchResult swapnext(std::string);
|
|
|
|
static SDispatchResult swapActiveWorkspaces(std::string);
|
|
|
|
static SDispatchResult pinActive(std::string);
|
|
|
|
static SDispatchResult mouse(std::string);
|
|
|
|
static SDispatchResult bringActiveToTop(std::string);
|
|
|
|
static SDispatchResult alterZOrder(std::string);
|
|
|
|
static SDispatchResult lockGroups(std::string);
|
|
|
|
static SDispatchResult lockActiveGroup(std::string);
|
|
|
|
static SDispatchResult moveIntoGroup(std::string);
|
|
|
|
static SDispatchResult moveOutOfGroup(std::string);
|
|
|
|
static SDispatchResult moveGroupWindow(std::string);
|
|
|
|
static SDispatchResult moveWindowOrGroup(std::string);
|
|
|
|
static SDispatchResult setIgnoreGroupLock(std::string);
|
|
|
|
static SDispatchResult denyWindowFromGroup(std::string);
|
|
|
|
static SDispatchResult global(std::string);
|
|
|
|
static SDispatchResult event(std::string);
|
2022-05-30 17:11:35 +02:00
|
|
|
|
|
|
|
friend class CCompositor;
|
2022-07-31 15:46:42 +02:00
|
|
|
friend class CInputManager;
|
2022-11-10 14:50:16 +01:00
|
|
|
friend class CConfigManager;
|
2024-04-06 16:53:32 +02:00
|
|
|
friend class CWorkspace;
|
2022-03-19 17:48:18 +01:00
|
|
|
};
|
|
|
|
|
2022-07-18 01:00:12 +02:00
|
|
|
inline std::unique_ptr<CKeybindManager> g_pKeybindManager;
|