Skip to content

Commit

Permalink
Only close popup in the the hierchary
Browse files Browse the repository at this point in the history
Imagine following event sequences:
1. a tooltip is shown. activePopups = {tooltip}
2. user click menu bar to show the menu, QMenu::setVisible is called.
    now activePopups(tooltip, menu}
3. tooltip visibility changed to false.
4. closePopups() close both tooltip and menu.

This is a common pattern under wayland that menu is shown as a invisible
state. This patch tries to memorize the surface hierchary used to create
the popup role. And only close those popups whose ancesotor is hidden.

Pick-to: 6.4
Change-Id: I78aa0b4e32a5812603e003e756d8bcd202e94af4
Reviewed-by: David Edmundson <davidedmundson@kde.org>
  • Loading branch information
wengxt committed Jul 24, 2022
1 parent d07192a commit f8e3257
Show file tree
Hide file tree
Showing 5 changed files with 127 additions and 26 deletions.
33 changes: 16 additions & 17 deletions src/client/qwaylandwindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,7 @@ void QWaylandWindow::endFrame()

void QWaylandWindow::reset()
{
closeChildPopups();
delete mShellSurface;
mShellSurface = nullptr;
delete mSubSurfaceWindow;
Expand Down Expand Up @@ -429,20 +430,6 @@ void QWaylandWindow::sendExposeEvent(const QRect &rect)
mLastExposeGeometry = rect;
}

static QList<QPointer<QWaylandWindow>> activePopups;

void QWaylandWindow::closePopups(QWaylandWindow *parent)
{
while (!activePopups.isEmpty()) {
auto popup = activePopups.takeLast();
if (popup.isNull())
continue;
if (popup.data() == parent)
return;
popup->reset();
}
}

QPlatformScreen *QWaylandWindow::calculateScreenFromSurfaceEvents() const
{
QReadLocker lock(&mSurfaceLock);
Expand All @@ -462,8 +449,6 @@ void QWaylandWindow::setVisible(bool visible)
lastVisible = visible;

if (visible) {
if (window()->type() == Qt::Popup || window()->type() == Qt::ToolTip)
activePopups << this;
initWindow();

setGeometry(windowGeometry());
Expand All @@ -472,7 +457,6 @@ void QWaylandWindow::setVisible(bool visible)
// QWaylandShmBackingStore::beginPaint().
} else {
sendExposeEvent(QRect());
closePopups(this);
reset();
}
}
Expand Down Expand Up @@ -1520,6 +1504,21 @@ void QWaylandWindow::setXdgActivationToken(const QString &token)
{
mShellSurface->setXdgActivationToken(token);
}

void QWaylandWindow::addChildPopup(QWaylandWindow *surface) {
mChildPopups.append(surface);
}

void QWaylandWindow::removeChildPopup(QWaylandWindow *surface) {
mChildPopups.removeAll(surface);
}

void QWaylandWindow::closeChildPopups() {
while (!mChildPopups.isEmpty()) {
auto popup = mChildPopups.takeLast();
popup->reset();
}
}
}

QT_END_NAMESPACE
Expand Down
6 changes: 6 additions & 0 deletions src/client/qwaylandwindow_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ class Q_WAYLANDCLIENT_EXPORT QWaylandWindow : public QObject, public QPlatformWi
void beginFrame();
void endFrame();

void addChildPopup(QWaylandWindow* child);
void removeChildPopup(QWaylandWindow* child);
void closeChildPopups();

public slots:
void applyConfigure();

Expand Down Expand Up @@ -292,6 +296,8 @@ public slots:

QMargins mCustomMargins;

QList<QPointer<QWaylandWindow>> mChildPopups;

private:
void setGeometry_helper(const QRect &rect);
void initWindow();
Expand Down
22 changes: 15 additions & 7 deletions src/plugins/shellintegration/xdg-shell/qwaylandxdgshell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -174,23 +174,32 @@ QtWayland::xdg_toplevel::resize_edge QWaylandXdgSurface::Toplevel::convertToResi
| ((edges & Qt::RightEdge) ? resize_edge_right : 0));
}

QWaylandXdgSurface::Popup::Popup(QWaylandXdgSurface *xdgSurface, QWaylandXdgSurface *parent,
QWaylandXdgSurface::Popup::Popup(QWaylandXdgSurface *xdgSurface, QWaylandWindow *parent,
QtWayland::xdg_positioner *positioner)
: xdg_popup(xdgSurface->get_popup(parent ? parent->object() : nullptr, positioner->object()))
, m_xdgSurface(xdgSurface)
: m_xdgSurface(xdgSurface)
, m_parentXdgSurface(qobject_cast<QWaylandXdgSurface *>(parent->shellSurface()))
, m_parent(parent)
{

init(xdgSurface->get_popup(m_parentXdgSurface ? m_parentXdgSurface->object() : nullptr, positioner->object()));
if (m_parent) {
m_parent->addChildPopup(m_xdgSurface->window());
}
}

QWaylandXdgSurface::Popup::~Popup()
{
if (isInitialized())
destroy();

if (m_parent) {
m_parent->removeChildPopup(m_xdgSurface->window());
}

if (m_grabbing) {
auto *shell = m_xdgSurface->m_shell;
Q_ASSERT(shell->m_topmostGrabbingPopup == this);
shell->m_topmostGrabbingPopup = m_parent ? m_parent->m_popup : nullptr;
shell->m_topmostGrabbingPopup = m_parentXdgSurface ? m_parentXdgSurface->m_popup : nullptr;
m_grabbing = false;

// Synthesize Qt enter/leave events for popup
Expand Down Expand Up @@ -396,8 +405,6 @@ void QWaylandXdgSurface::setPopup(QWaylandWindow *parent)
{
Q_ASSERT(!m_toplevel && !m_popup);

auto parentXdgSurface = qobject_cast<QWaylandXdgSurface *>(parent->shellSurface());

auto positioner = new QtWayland::xdg_positioner(m_shell->create_positioner());
// set_popup expects a position relative to the parent
QPoint transientPos = m_window->geometry().topLeft(); // this is absolute
Expand All @@ -414,8 +421,9 @@ void QWaylandXdgSurface::setPopup(QWaylandWindow *parent)
| QtWayland::xdg_positioner::constraint_adjustment_slide_y
| QtWayland::xdg_positioner::constraint_adjustment_flip_x
| QtWayland::xdg_positioner::constraint_adjustment_flip_y);
m_popup = new Popup(this, parentXdgSurface, positioner);
m_popup = new Popup(this, parent, positioner);
positioner->destroy();

delete positioner;
}

Expand Down
5 changes: 3 additions & 2 deletions src/plugins/shellintegration/xdg-shell/qwaylandxdgshell_p.h
Original file line number Diff line number Diff line change
Expand Up @@ -102,14 +102,15 @@ class Q_WAYLANDCLIENT_EXPORT QWaylandXdgSurface : public QWaylandShellSurface, p

class Popup : public QtWayland::xdg_popup {
public:
Popup(QWaylandXdgSurface *xdgSurface, QWaylandXdgSurface *parent, QtWayland::xdg_positioner *positioner);
Popup(QWaylandXdgSurface *xdgSurface, QWaylandWindow *parent, QtWayland::xdg_positioner *positioner);
~Popup() override;

void grab(QWaylandInputDevice *seat, uint serial);
void xdg_popup_popup_done() override;

QWaylandXdgSurface *m_xdgSurface = nullptr;
QWaylandXdgSurface *m_parent = nullptr;
QWaylandXdgSurface *m_parentXdgSurface = nullptr;
QWaylandWindow *m_parent = nullptr;
bool m_grabbing = false;
};

Expand Down
87 changes: 87 additions & 0 deletions tests/auto/client/xdgshell/tst_xdgshell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ private slots:
void configureStates();
void popup();
void tooltipOnPopup();
void tooltipAndSiblingPopup();
void switchPopups();
void hidePopupParent();
void pongs();
Expand Down Expand Up @@ -321,6 +322,92 @@ void tst_xdgshell::tooltipOnPopup()
QCOMPOSITOR_TRY_COMPARE(xdgPopup(0), nullptr);
}

void tst_xdgshell::tooltipAndSiblingPopup()
{
class ToolTip : public QRasterWindow {
public:
explicit ToolTip(QWindow *parent) {
setTransientParent(parent);
setFlags(Qt::ToolTip);
resize(100, 100);
show();
}
void mousePressEvent(QMouseEvent *event) override {
QRasterWindow::mousePressEvent(event);
m_popup = new QRasterWindow;
m_popup->setTransientParent(transientParent());
m_popup->setFlags(Qt::Popup);
m_popup->resize(100, 100);
m_popup->show();
}

QRasterWindow *m_popup = nullptr;
};

class Window : public QRasterWindow {
public:
void mousePressEvent(QMouseEvent *event) override {
QRasterWindow::mousePressEvent(event);
m_tooltip = new ToolTip(this);
}
ToolTip *m_tooltip = nullptr;
};

Window window;
window.resize(200, 200);
window.show();

QCOMPOSITOR_TRY_VERIFY(xdgToplevel());
exec([=] { xdgToplevel()->sendCompleteConfigure(); });
QCOMPOSITOR_TRY_VERIFY(xdgToplevel()->m_xdgSurface->m_committedConfigureSerial);

exec([=] {
auto *surface = xdgToplevel()->surface();
auto *p = pointer();
auto *c = client();
p->sendEnter(surface, {100, 100});
p->sendFrame(c);
p->sendButton(client(), BTN_LEFT, Pointer::button_state_pressed);
p->sendButton(client(), BTN_LEFT, Pointer::button_state_released);
p->sendFrame(c);
p->sendLeave(surface);
p->sendFrame(c);
});

QCOMPOSITOR_TRY_VERIFY(xdgPopup());
exec([=] { xdgPopup()->sendCompleteConfigure(QRect(100, 100, 100, 100)); });
QCOMPOSITOR_TRY_VERIFY(xdgPopup()->m_xdgSurface->m_committedConfigureSerial);
QCOMPOSITOR_TRY_VERIFY(!xdgPopup()->m_grabbed);

exec([=] {
auto *surface = xdgPopup()->surface();
auto *p = pointer();
auto *c = client();
p->sendEnter(surface, {100, 100});
p->sendFrame(c);
p->sendButton(client(), BTN_LEFT, Pointer::button_state_pressed);
p->sendButton(client(), BTN_LEFT, Pointer::button_state_released);
p->sendFrame(c);
});

QCOMPOSITOR_TRY_VERIFY(xdgPopup(1));
exec([=] { xdgPopup(1)->sendCompleteConfigure(QRect(100, 100, 100, 100)); });
QCOMPOSITOR_TRY_VERIFY(xdgPopup(1)->m_xdgSurface->m_committedConfigureSerial);
QCOMPOSITOR_TRY_VERIFY(xdgPopup(1)->m_grabbed);

// Close the middle tooltip (it should not close the sibling popup)
window.m_tooltip->close();

QCOMPOSITOR_TRY_COMPARE(xdgPopup(1), nullptr);
// Verify the remaining xdg surface is a grab popup..
QCOMPOSITOR_TRY_VERIFY(xdgPopup(0));
QCOMPOSITOR_TRY_VERIFY(xdgPopup(0)->m_grabbed);

window.m_tooltip->m_popup->close();
QCOMPOSITOR_TRY_COMPARE(xdgPopup(1), nullptr);
QCOMPOSITOR_TRY_COMPARE(xdgPopup(0), nullptr);
}

// QTBUG-65680
void tst_xdgshell::switchPopups()
{
Expand Down

0 comments on commit f8e3257

Please sign in to comment.