mirror of
https://github.com/hyprwm/Hyprland.git
synced 2025-09-19 17:58:24 +00:00
inputs: refactor class member vars (#10230)
This commit is contained in:
@@ -7,48 +7,48 @@
|
||||
#include "../../protocols/InputMethodV2.hpp"
|
||||
#include "../../protocols/core/Compositor.hpp"
|
||||
|
||||
CTextInput::CTextInput(WP<CTextInputV1> ti) : pV1Input(ti) {
|
||||
CTextInput::CTextInput(WP<CTextInputV1> ti) : m_v1Input(ti) {
|
||||
initCallbacks();
|
||||
}
|
||||
|
||||
CTextInput::CTextInput(WP<CTextInputV3> ti) : pV3Input(ti) {
|
||||
CTextInput::CTextInput(WP<CTextInputV3> ti) : m_v3Input(ti) {
|
||||
initCallbacks();
|
||||
}
|
||||
|
||||
void CTextInput::initCallbacks() {
|
||||
if (isV3()) {
|
||||
const auto INPUT = pV3Input.lock();
|
||||
const auto INPUT = m_v3Input.lock();
|
||||
|
||||
listeners.enable = INPUT->events.enable.registerListener([this](std::any p) { onEnabled(); });
|
||||
listeners.disable = INPUT->events.disable.registerListener([this](std::any p) { onDisabled(); });
|
||||
listeners.commit = INPUT->events.onCommit.registerListener([this](std::any p) { onCommit(); });
|
||||
listeners.reset = INPUT->events.reset.registerListener([this](std::any p) { onReset(); });
|
||||
listeners.destroy = INPUT->events.destroy.registerListener([this](std::any p) {
|
||||
listeners.surfaceUnmap.reset();
|
||||
listeners.surfaceDestroy.reset();
|
||||
g_pInputManager->m_sIMERelay.removeTextInput(this);
|
||||
if (!g_pInputManager->m_sIMERelay.getFocusedTextInput())
|
||||
g_pInputManager->m_sIMERelay.deactivateIME(this);
|
||||
m_listeners.enable = INPUT->events.enable.registerListener([this](std::any p) { onEnabled(); });
|
||||
m_listeners.disable = INPUT->events.disable.registerListener([this](std::any p) { onDisabled(); });
|
||||
m_listeners.commit = INPUT->events.onCommit.registerListener([this](std::any p) { onCommit(); });
|
||||
m_listeners.reset = INPUT->events.reset.registerListener([this](std::any p) { onReset(); });
|
||||
m_listeners.destroy = INPUT->events.destroy.registerListener([this](std::any p) {
|
||||
m_listeners.surfaceUnmap.reset();
|
||||
m_listeners.surfaceDestroy.reset();
|
||||
g_pInputManager->m_relay.removeTextInput(this);
|
||||
if (!g_pInputManager->m_relay.getFocusedTextInput())
|
||||
g_pInputManager->m_relay.deactivateIME(this);
|
||||
});
|
||||
|
||||
if (!g_pCompositor->m_lastFocus.expired() && g_pCompositor->m_lastFocus->client() == INPUT->client())
|
||||
enter(g_pCompositor->m_lastFocus.lock());
|
||||
} else {
|
||||
const auto INPUT = pV1Input.lock();
|
||||
const auto INPUT = m_v1Input.lock();
|
||||
|
||||
listeners.enable = INPUT->events.enable.registerListener([this](std::any p) {
|
||||
m_listeners.enable = INPUT->events.enable.registerListener([this](std::any p) {
|
||||
const auto SURFACE = std::any_cast<SP<CWLSurfaceResource>>(p);
|
||||
onEnabled(SURFACE);
|
||||
});
|
||||
listeners.disable = INPUT->events.disable.registerListener([this](std::any p) { onDisabled(); });
|
||||
listeners.commit = INPUT->events.onCommit.registerListener([this](std::any p) { onCommit(); });
|
||||
listeners.reset = INPUT->events.reset.registerListener([this](std::any p) { onReset(); });
|
||||
listeners.destroy = INPUT->events.destroy.registerListener([this](std::any p) {
|
||||
listeners.surfaceUnmap.reset();
|
||||
listeners.surfaceDestroy.reset();
|
||||
g_pInputManager->m_sIMERelay.removeTextInput(this);
|
||||
if (!g_pInputManager->m_sIMERelay.getFocusedTextInput())
|
||||
g_pInputManager->m_sIMERelay.deactivateIME(this);
|
||||
m_listeners.disable = INPUT->events.disable.registerListener([this](std::any p) { onDisabled(); });
|
||||
m_listeners.commit = INPUT->events.onCommit.registerListener([this](std::any p) { onCommit(); });
|
||||
m_listeners.reset = INPUT->events.reset.registerListener([this](std::any p) { onReset(); });
|
||||
m_listeners.destroy = INPUT->events.destroy.registerListener([this](std::any p) {
|
||||
m_listeners.surfaceUnmap.reset();
|
||||
m_listeners.surfaceDestroy.reset();
|
||||
g_pInputManager->m_relay.removeTextInput(this);
|
||||
if (!g_pInputManager->m_relay.getFocusedTextInput())
|
||||
g_pInputManager->m_relay.deactivateIME(this);
|
||||
});
|
||||
}
|
||||
}
|
||||
@@ -56,24 +56,24 @@ void CTextInput::initCallbacks() {
|
||||
void CTextInput::onEnabled(SP<CWLSurfaceResource> surfV1) {
|
||||
Debug::log(LOG, "TI ENABLE");
|
||||
|
||||
if (g_pInputManager->m_sIMERelay.m_pIME.expired()) {
|
||||
if (g_pInputManager->m_relay.m_inputMethod.expired()) {
|
||||
// Debug::log(WARN, "Enabling TextInput on no IME!");
|
||||
return;
|
||||
}
|
||||
|
||||
// v1 only, map surface to PTI
|
||||
if (!isV3()) {
|
||||
if (g_pCompositor->m_lastFocus != surfV1 || !pV1Input->active)
|
||||
if (g_pCompositor->m_lastFocus != surfV1 || !m_v1Input->active)
|
||||
return;
|
||||
|
||||
enter(surfV1);
|
||||
}
|
||||
|
||||
g_pInputManager->m_sIMERelay.activateIME(this);
|
||||
g_pInputManager->m_relay.activateIME(this);
|
||||
}
|
||||
|
||||
void CTextInput::onDisabled() {
|
||||
if (g_pInputManager->m_sIMERelay.m_pIME.expired()) {
|
||||
if (g_pInputManager->m_relay.m_inputMethod.expired()) {
|
||||
// Debug::log(WARN, "Disabling TextInput on no IME!");
|
||||
return;
|
||||
}
|
||||
@@ -81,103 +81,103 @@ void CTextInput::onDisabled() {
|
||||
if (!isV3())
|
||||
leave();
|
||||
|
||||
listeners.surfaceUnmap.reset();
|
||||
listeners.surfaceDestroy.reset();
|
||||
m_listeners.surfaceUnmap.reset();
|
||||
m_listeners.surfaceDestroy.reset();
|
||||
|
||||
if (!focusedSurface())
|
||||
return;
|
||||
|
||||
const auto PFOCUSEDTI = g_pInputManager->m_sIMERelay.getFocusedTextInput();
|
||||
const auto PFOCUSEDTI = g_pInputManager->m_relay.getFocusedTextInput();
|
||||
if (!PFOCUSEDTI || PFOCUSEDTI != this)
|
||||
return;
|
||||
|
||||
g_pInputManager->m_sIMERelay.deactivateIME(this);
|
||||
g_pInputManager->m_relay.deactivateIME(this);
|
||||
}
|
||||
|
||||
void CTextInput::onReset() {
|
||||
if (g_pInputManager->m_sIMERelay.m_pIME.expired())
|
||||
if (g_pInputManager->m_relay.m_inputMethod.expired())
|
||||
return;
|
||||
|
||||
if (!focusedSurface())
|
||||
return;
|
||||
|
||||
const auto PFOCUSEDTI = g_pInputManager->m_sIMERelay.getFocusedTextInput();
|
||||
const auto PFOCUSEDTI = g_pInputManager->m_relay.getFocusedTextInput();
|
||||
if (!PFOCUSEDTI || PFOCUSEDTI != this)
|
||||
return;
|
||||
|
||||
g_pInputManager->m_sIMERelay.deactivateIME(this, false);
|
||||
g_pInputManager->m_sIMERelay.activateIME(this);
|
||||
g_pInputManager->m_relay.deactivateIME(this, false);
|
||||
g_pInputManager->m_relay.activateIME(this);
|
||||
}
|
||||
|
||||
void CTextInput::onCommit() {
|
||||
if (g_pInputManager->m_sIMERelay.m_pIME.expired()) {
|
||||
if (g_pInputManager->m_relay.m_inputMethod.expired()) {
|
||||
// Debug::log(WARN, "Committing TextInput on no IME!");
|
||||
return;
|
||||
}
|
||||
|
||||
if (!(isV3() ? pV3Input->current.enabled.value : pV1Input->active)) {
|
||||
if (!(isV3() ? m_v3Input->current.enabled.value : m_v1Input->active)) {
|
||||
Debug::log(WARN, "Disabled TextInput commit?");
|
||||
return;
|
||||
}
|
||||
|
||||
g_pInputManager->m_sIMERelay.commitIMEState(this);
|
||||
g_pInputManager->m_relay.commitIMEState(this);
|
||||
}
|
||||
|
||||
void CTextInput::setFocusedSurface(SP<CWLSurfaceResource> pSurface) {
|
||||
if (pSurface == pFocusedSurface)
|
||||
if (pSurface == m_focusedSurface)
|
||||
return;
|
||||
|
||||
pFocusedSurface = pSurface;
|
||||
m_focusedSurface = pSurface;
|
||||
|
||||
if (!pSurface)
|
||||
return;
|
||||
|
||||
listeners.surfaceUnmap.reset();
|
||||
listeners.surfaceDestroy.reset();
|
||||
m_listeners.surfaceUnmap.reset();
|
||||
m_listeners.surfaceDestroy.reset();
|
||||
|
||||
listeners.surfaceUnmap = pSurface->events.unmap.registerListener([this](std::any d) {
|
||||
m_listeners.surfaceUnmap = pSurface->events.unmap.registerListener([this](std::any d) {
|
||||
Debug::log(LOG, "Unmap TI owner1");
|
||||
|
||||
if (enterLocks)
|
||||
enterLocks--;
|
||||
pFocusedSurface.reset();
|
||||
listeners.surfaceUnmap.reset();
|
||||
listeners.surfaceDestroy.reset();
|
||||
if (m_enterLocks)
|
||||
m_enterLocks--;
|
||||
m_focusedSurface.reset();
|
||||
m_listeners.surfaceUnmap.reset();
|
||||
m_listeners.surfaceDestroy.reset();
|
||||
|
||||
if (isV3() && !pV3Input.expired() && pV3Input->current.enabled.value) {
|
||||
pV3Input->pending.enabled.value = false;
|
||||
pV3Input->pending.enabled.isDisablePending = false;
|
||||
pV3Input->pending.enabled.isEnablePending = false;
|
||||
pV3Input->current.enabled.value = false;
|
||||
if (isV3() && !m_v3Input.expired() && m_v3Input->current.enabled.value) {
|
||||
m_v3Input->pending.enabled.value = false;
|
||||
m_v3Input->pending.enabled.isDisablePending = false;
|
||||
m_v3Input->pending.enabled.isEnablePending = false;
|
||||
m_v3Input->current.enabled.value = false;
|
||||
}
|
||||
|
||||
if (!g_pInputManager->m_sIMERelay.getFocusedTextInput())
|
||||
g_pInputManager->m_sIMERelay.deactivateIME(this);
|
||||
if (!g_pInputManager->m_relay.getFocusedTextInput())
|
||||
g_pInputManager->m_relay.deactivateIME(this);
|
||||
});
|
||||
|
||||
listeners.surfaceDestroy = pSurface->events.destroy.registerListener([this](std::any d) {
|
||||
m_listeners.surfaceDestroy = pSurface->events.destroy.registerListener([this](std::any d) {
|
||||
Debug::log(LOG, "Destroy TI owner1");
|
||||
|
||||
if (enterLocks)
|
||||
enterLocks--;
|
||||
pFocusedSurface.reset();
|
||||
listeners.surfaceUnmap.reset();
|
||||
listeners.surfaceDestroy.reset();
|
||||
if (m_enterLocks)
|
||||
m_enterLocks--;
|
||||
m_focusedSurface.reset();
|
||||
m_listeners.surfaceUnmap.reset();
|
||||
m_listeners.surfaceDestroy.reset();
|
||||
|
||||
if (isV3() && !pV3Input.expired() && pV3Input->current.enabled.value) {
|
||||
pV3Input->pending.enabled.value = false;
|
||||
pV3Input->pending.enabled.isDisablePending = false;
|
||||
pV3Input->pending.enabled.isEnablePending = false;
|
||||
pV3Input->current.enabled.value = false;
|
||||
if (isV3() && !m_v3Input.expired() && m_v3Input->current.enabled.value) {
|
||||
m_v3Input->pending.enabled.value = false;
|
||||
m_v3Input->pending.enabled.isDisablePending = false;
|
||||
m_v3Input->pending.enabled.isEnablePending = false;
|
||||
m_v3Input->current.enabled.value = false;
|
||||
}
|
||||
|
||||
if (!g_pInputManager->m_sIMERelay.getFocusedTextInput())
|
||||
g_pInputManager->m_sIMERelay.deactivateIME(this);
|
||||
if (!g_pInputManager->m_relay.getFocusedTextInput())
|
||||
g_pInputManager->m_relay.deactivateIME(this);
|
||||
});
|
||||
}
|
||||
|
||||
bool CTextInput::isV3() {
|
||||
return pV3Input && !pV1Input;
|
||||
return m_v3Input && !m_v1Input;
|
||||
}
|
||||
|
||||
void CTextInput::enter(SP<CWLSurfaceResource> pSurface) {
|
||||
@@ -190,17 +190,17 @@ void CTextInput::enter(SP<CWLSurfaceResource> pSurface) {
|
||||
if (focusedSurface())
|
||||
leave();
|
||||
|
||||
enterLocks++;
|
||||
if (enterLocks != 1) {
|
||||
m_enterLocks++;
|
||||
if (m_enterLocks != 1) {
|
||||
Debug::log(ERR, "BUG THIS: TextInput has != 1 locks in enter");
|
||||
leave();
|
||||
enterLocks = 1;
|
||||
m_enterLocks = 1;
|
||||
}
|
||||
|
||||
if (isV3())
|
||||
pV3Input->enter(pSurface);
|
||||
m_v3Input->enter(pSurface);
|
||||
else {
|
||||
pV1Input->enter(pSurface);
|
||||
m_v1Input->enter(pSurface);
|
||||
}
|
||||
|
||||
setFocusedSurface(pSurface);
|
||||
@@ -210,33 +210,33 @@ void CTextInput::leave() {
|
||||
if (!focusedSurface())
|
||||
return;
|
||||
|
||||
enterLocks--;
|
||||
if (enterLocks != 0) {
|
||||
m_enterLocks--;
|
||||
if (m_enterLocks != 0) {
|
||||
Debug::log(ERR, "BUG THIS: TextInput has != 0 locks in leave");
|
||||
enterLocks = 0;
|
||||
m_enterLocks = 0;
|
||||
}
|
||||
|
||||
if (isV3())
|
||||
pV3Input->leave(focusedSurface());
|
||||
m_v3Input->leave(focusedSurface());
|
||||
else
|
||||
pV1Input->leave();
|
||||
m_v1Input->leave();
|
||||
|
||||
setFocusedSurface(nullptr);
|
||||
|
||||
g_pInputManager->m_sIMERelay.deactivateIME(this);
|
||||
g_pInputManager->m_relay.deactivateIME(this);
|
||||
}
|
||||
|
||||
SP<CWLSurfaceResource> CTextInput::focusedSurface() {
|
||||
return pFocusedSurface.lock();
|
||||
return m_focusedSurface.lock();
|
||||
}
|
||||
|
||||
wl_client* CTextInput::client() {
|
||||
return isV3() ? pV3Input->client() : pV1Input->client();
|
||||
return isV3() ? m_v3Input->client() : m_v1Input->client();
|
||||
}
|
||||
|
||||
void CTextInput::commitStateToIME(SP<CInputMethodV2> ime) {
|
||||
if (isV3() && !pV3Input.expired()) {
|
||||
const auto INPUT = pV3Input.lock();
|
||||
if (isV3() && !m_v3Input.expired()) {
|
||||
const auto INPUT = m_v3Input.lock();
|
||||
|
||||
if (INPUT->current.surrounding.updated)
|
||||
ime->surroundingText(INPUT->current.surrounding.text, INPUT->current.surrounding.cursor, INPUT->current.surrounding.anchor);
|
||||
@@ -245,26 +245,26 @@ void CTextInput::commitStateToIME(SP<CInputMethodV2> ime) {
|
||||
|
||||
if (INPUT->current.contentType.updated)
|
||||
ime->textContentType(INPUT->current.contentType.hint, INPUT->current.contentType.purpose);
|
||||
} else if (!pV1Input.expired()) {
|
||||
const auto INPUT = pV1Input.lock();
|
||||
} else if (!m_v1Input.expired()) {
|
||||
const auto INPUT = m_v1Input.lock();
|
||||
|
||||
if (INPUT->pendingSurrounding.isPending)
|
||||
ime->surroundingText(INPUT->pendingSurrounding.text, INPUT->pendingSurrounding.cursor, INPUT->pendingSurrounding.anchor);
|
||||
|
||||
ime->textChangeCause(ZWP_TEXT_INPUT_V3_CHANGE_CAUSE_INPUT_METHOD);
|
||||
|
||||
if (pV1Input->pendingContentType.isPending)
|
||||
if (m_v1Input->pendingContentType.isPending)
|
||||
ime->textContentType((zwpTextInputV3ContentHint)INPUT->pendingContentType.hint, (zwpTextInputV3ContentPurpose)INPUT->pendingContentType.purpose);
|
||||
}
|
||||
|
||||
g_pInputManager->m_sIMERelay.updateAllPopups();
|
||||
g_pInputManager->m_relay.updateAllPopups();
|
||||
|
||||
ime->done();
|
||||
}
|
||||
|
||||
void CTextInput::updateIMEState(SP<CInputMethodV2> ime) {
|
||||
if (isV3()) {
|
||||
const auto INPUT = pV3Input.lock();
|
||||
const auto INPUT = m_v3Input.lock();
|
||||
|
||||
if (ime->current.preeditString.committed)
|
||||
INPUT->preeditString(ime->current.preeditString.string, ime->current.preeditString.begin, ime->current.preeditString.end);
|
||||
@@ -277,35 +277,35 @@ void CTextInput::updateIMEState(SP<CInputMethodV2> ime) {
|
||||
|
||||
INPUT->sendDone();
|
||||
} else {
|
||||
const auto INPUT = pV1Input.lock();
|
||||
const auto INPUT = m_v1Input.lock();
|
||||
|
||||
if (ime->current.preeditString.committed) {
|
||||
INPUT->preeditCursor(ime->current.preeditString.begin);
|
||||
INPUT->preeditStyling(0, std::string(ime->current.preeditString.string).length(), ZWP_TEXT_INPUT_V1_PREEDIT_STYLE_HIGHLIGHT);
|
||||
INPUT->preeditString(pV1Input->serial, ime->current.preeditString.string.c_str(), "");
|
||||
INPUT->preeditString(m_v1Input->serial, ime->current.preeditString.string.c_str(), "");
|
||||
} else {
|
||||
INPUT->preeditCursor(0);
|
||||
INPUT->preeditStyling(0, 0, ZWP_TEXT_INPUT_V1_PREEDIT_STYLE_HIGHLIGHT);
|
||||
INPUT->preeditString(pV1Input->serial, "", "");
|
||||
INPUT->preeditString(m_v1Input->serial, "", "");
|
||||
}
|
||||
|
||||
if (ime->current.committedString.committed)
|
||||
INPUT->commitString(pV1Input->serial, ime->current.committedString.string.c_str());
|
||||
INPUT->commitString(m_v1Input->serial, ime->current.committedString.string.c_str());
|
||||
|
||||
if (ime->current.deleteSurrounding.committed) {
|
||||
INPUT->deleteSurroundingText(std::string(ime->current.preeditString.string).length() - ime->current.deleteSurrounding.before,
|
||||
ime->current.deleteSurrounding.after + ime->current.deleteSurrounding.before);
|
||||
|
||||
if (ime->current.preeditString.committed)
|
||||
INPUT->commitString(pV1Input->serial, ime->current.preeditString.string.c_str());
|
||||
INPUT->commitString(m_v1Input->serial, ime->current.preeditString.string.c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
bool CTextInput::hasCursorRectangle() {
|
||||
return !isV3() || pV3Input->current.box.updated;
|
||||
return !isV3() || m_v3Input->current.box.updated;
|
||||
}
|
||||
|
||||
CBox CTextInput::cursorBox() {
|
||||
return CBox{isV3() ? pV3Input->current.box.cursorBox : pV1Input->cursorRectangle};
|
||||
return CBox{isV3() ? m_v3Input->current.box.cursorBox : m_v1Input->cursorRectangle};
|
||||
}
|
||||
|
Reference in New Issue
Block a user