aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/managers/input/TextInput.cpp
AgeCommit message (Collapse)Author
2024-09-15textinput: don't reset if ti isn't enabled (#7798)Sungyoon Cho
2024-09-12textinput: fix tiv3 leave (#7761)Sungyoon Cho
2024-09-10textinput: handle IME resetting (#7731)Sungyoon Cho
2024-09-09tiv1: fix deleting first character (#7716)Sungyoon Cho
2024-09-05textinput: fix ime activation in some edge cases (#7660)Sungyoon Cho
* textinput: clear ti3 state when focused surface gets destroyed * textinput: send enter to newly created ti in focus
2024-09-01textinput: don't deactivate ime if another ti is focused (#7617)Sungyoon Cho
2024-09-01textinput: send deactivate to ime on destory ti (#7614)Sungyoon Cho
2024-07-29protocols: move text-input-v1 to hyprwayland-scanner (#7096)Ikalco
* move text-input-v1 to hyprwayland-scanner * vro
2024-07-13style: fix clang-formatVaxry
2024-06-08wayland/core: move to new impl (#6268)Vaxry
* wayland/core/dmabuf: move to new impl it's the final countdown
2024-05-05internal: new shared_ptr and weak_ptr implementation (#5883)Vaxry
moves std::shared_ptrs to a new implementation Advantages: - you can dereference a weak_ptr directly. This will obviously segfault on a nullptr deref if it's expired. - this is useful to avoid the .lock() hell where we are 100% sure the pointer _should_ be valid. (and if it isn't, it should throw.) - weak_ptrs are still valid while the SP is being destroyed. - reasoning: while an object (e.g. CWindow) is being destroyed, its `weak_ptr self` should be accessible (the sp is still alive, and so is CWindow), but it's not because by stl it's already expired (to prevent resurrection) - this impl solves it differently. w_p is expired, but can still be dereferenced and used. Creating `s_p`s is not possible anymore, though. - this is useful in destructors and callbacks.
2024-05-01ime-v2: move to new implVaxry
2024-04-25text-input-v3: move to new implVaxry
2024-04-06IME: fix race condition on closing window (#5455)Sungyoon Cho
2024-04-04IME: fix crash on restarting IME (#5428)Sungyoon Cho
2024-04-01textinput: fix typo (#5365)Sungyoon Cho
2024-03-31textinput: send deactivate on disable tiVaxry
ref #5288
2024-03-30IME: don't assert on lock mismatch, just fix itVaxry
2024-03-28format: fix formatVaxry
2024-03-26textinput: fix ime when opening multiple windows (#5281)Sungyoon Cho
2024-03-24IME: Refactor and fixup popupsVaxry
2024-03-24text-input: reset lock counter on surface destroyVaxry
fixes #5231
2024-03-23input: fix crash with text-input-v1 (#5234)Sungyoon Cho
2024-03-22IME/TI: Fixes and refactoringVaxry
Fixes #5189