foreign-toplevel: bypass no activate focus checks

ref #5939

those are used by focus switchers so they should bypass stuff like focus_on_activate = false
This commit is contained in:
Vaxry 2024-05-08 01:31:16 +01:00
parent 57a12476de
commit 5e7925eaeb
3 changed files with 6 additions and 7 deletions

View File

@ -1274,7 +1274,7 @@ std::unordered_map<std::string, std::string> CWindow::getEnv() {
return results;
}
void CWindow::activate() {
void CWindow::activate(bool force) {
static auto PFOCUSONACTIVATE = CConfigValue<Hyprlang::INT>("misc:focus_on_activate");
g_pEventManager->postEvent(SHyprIPCEvent{"urgent", std::format("{:x}", (uintptr_t)this)});
@ -1282,7 +1282,7 @@ void CWindow::activate() {
m_bIsUrgent = true;
if (!*PFOCUSONACTIVATE || (m_eSuppressedEvents & SUPPRESS_ACTIVATE_FOCUSONLY) || (m_eSuppressedEvents & SUPPRESS_ACTIVATE))
if (!force && (!*PFOCUSONACTIVATE || (m_eSuppressedEvents & SUPPRESS_ACTIVATE_FOCUSONLY) || (m_eSuppressedEvents & SUPPRESS_ACTIVATE)))
return;
if (m_bIsFloating)

View File

@ -422,7 +422,7 @@ class CWindow {
bool visibleOnMonitor(CMonitor* pMonitor);
int workspaceID();
bool onSpecialWorkspace();
void activate();
void activate(bool force = false);
int getRealBorderSize();
void updateSpecialRenderData();

View File

@ -17,10 +17,9 @@ CForeignToplevelHandleWlr::CForeignToplevelHandleWlr(SP<CZwlrForeignToplevelHand
if (!PWINDOW)
return;
if (PWINDOW->m_eSuppressedEvents & SUPPRESS_ACTIVATE)
return;
PWINDOW->activate();
// these requests bypass the config'd stuff cuz it's usually like
// window switchers and shit
PWINDOW->activate(true);
});
resource->setSetFullscreen([this](CZwlrForeignToplevelHandleV1* p, wl_resource* output) {