Merge "Merge remote-tracking branch 'origin/5.14' into 5.15"
This commit is contained in:
commit
72ff196c47
@ -219,7 +219,7 @@ wl_cursor *QWaylandCursorTheme::requestCursor(WaylandCursor shape)
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
::wl_cursor_image *QWaylandCursorTheme::cursorImage(Qt::CursorShape shape, uint millisecondsIntoAnimation)
|
::wl_cursor *QWaylandCursorTheme::cursor(Qt::CursorShape shape)
|
||||||
{
|
{
|
||||||
struct wl_cursor *waylandCursor = nullptr;
|
struct wl_cursor *waylandCursor = nullptr;
|
||||||
|
|
||||||
@ -237,15 +237,7 @@ wl_cursor *QWaylandCursorTheme::requestCursor(WaylandCursor shape)
|
|||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
int frame = wl_cursor_frame(waylandCursor, millisecondsIntoAnimation);
|
return waylandCursor;
|
||||||
::wl_cursor_image *image = waylandCursor->images[frame];
|
|
||||||
::wl_buffer *buffer = wl_cursor_image_get_buffer(image);
|
|
||||||
if (!buffer) {
|
|
||||||
qCWarning(lcQpaWayland) << "Could not find buffer for cursor";
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
|
|
||||||
return image;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
QWaylandCursor::QWaylandCursor(QWaylandDisplay *display)
|
QWaylandCursor::QWaylandCursor(QWaylandDisplay *display)
|
||||||
|
@ -75,7 +75,7 @@ class Q_WAYLAND_CLIENT_EXPORT QWaylandCursorTheme
|
|||||||
public:
|
public:
|
||||||
static QWaylandCursorTheme *create(QWaylandShm *shm, int size, const QString &themeName);
|
static QWaylandCursorTheme *create(QWaylandShm *shm, int size, const QString &themeName);
|
||||||
~QWaylandCursorTheme();
|
~QWaylandCursorTheme();
|
||||||
::wl_cursor_image *cursorImage(Qt::CursorShape shape, uint millisecondsIntoAnimation = 0);
|
::wl_cursor *cursor(Qt::CursorShape shape);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
enum WaylandCursor {
|
enum WaylandCursor {
|
||||||
@ -129,7 +129,6 @@ public:
|
|||||||
void setPos(const QPoint &pos) override;
|
void setPos(const QPoint &pos) override;
|
||||||
|
|
||||||
static QSharedPointer<QWaylandBuffer> cursorBitmapBuffer(QWaylandDisplay *display, const QCursor *cursor);
|
static QSharedPointer<QWaylandBuffer> cursorBitmapBuffer(QWaylandDisplay *display, const QCursor *cursor);
|
||||||
struct wl_cursor_image *cursorImage(Qt::CursorShape shape);
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
QWaylandDisplay *mDisplay = nullptr;
|
QWaylandDisplay *mDisplay = nullptr;
|
||||||
|
@ -283,8 +283,8 @@ void QWaylandInputDevice::Pointer::updateCursorTheme()
|
|||||||
if (!mCursor.theme)
|
if (!mCursor.theme)
|
||||||
return; // A warning has already been printed in loadCursorTheme
|
return; // A warning has already been printed in loadCursorTheme
|
||||||
|
|
||||||
if (auto *arrow = mCursor.theme->cursorImage(Qt::ArrowCursor)) {
|
if (auto *arrow = mCursor.theme->cursor(Qt::ArrowCursor)) {
|
||||||
int arrowPixelSize = qMax(arrow->width, arrow->height); // Not all cursor themes are square
|
int arrowPixelSize = qMax(arrow->images[0]->width, arrow->images[0]->height); // Not all cursor themes are square
|
||||||
while (scale > 1 && arrowPixelSize / scale < cursorSize())
|
while (scale > 1 && arrowPixelSize / scale < cursorSize())
|
||||||
--scale;
|
--scale;
|
||||||
} else {
|
} else {
|
||||||
@ -326,12 +326,20 @@ void QWaylandInputDevice::Pointer::updateCursor()
|
|||||||
|
|
||||||
// Set from shape using theme
|
// Set from shape using theme
|
||||||
uint time = seat()->mCursor.animationTimer.elapsed();
|
uint time = seat()->mCursor.animationTimer.elapsed();
|
||||||
if (struct ::wl_cursor_image *image = mCursor.theme->cursorImage(shape, time)) {
|
|
||||||
|
if (struct ::wl_cursor *waylandCursor = mCursor.theme->cursor(shape)) {
|
||||||
|
int frame = wl_cursor_frame(waylandCursor, time);
|
||||||
|
::wl_cursor_image *image = waylandCursor->images[frame];
|
||||||
|
|
||||||
struct wl_buffer *buffer = wl_cursor_image_get_buffer(image);
|
struct wl_buffer *buffer = wl_cursor_image_get_buffer(image);
|
||||||
|
if (!buffer) {
|
||||||
|
qCWarning(lcQpaWayland) << "Could not find buffer for cursor" << shape;
|
||||||
|
return;
|
||||||
|
}
|
||||||
int bufferScale = mCursor.themeBufferScale;
|
int bufferScale = mCursor.themeBufferScale;
|
||||||
QPoint hotspot = QPoint(image->hotspot_x, image->hotspot_y) / bufferScale;
|
QPoint hotspot = QPoint(image->hotspot_x, image->hotspot_y) / bufferScale;
|
||||||
QSize size = QSize(image->width, image->height) / bufferScale;
|
QSize size = QSize(image->width, image->height) / bufferScale;
|
||||||
bool animated = image->delay > 0;
|
bool animated = waylandCursor->image_count > 1 && image->delay > 0;
|
||||||
getOrCreateCursorSurface()->update(buffer, hotspot, size, bufferScale, animated);
|
getOrCreateCursorSurface()->update(buffer, hotspot, size, bufferScale, animated);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -71,6 +71,7 @@ private slots:
|
|||||||
void singleTapFloat();
|
void singleTapFloat();
|
||||||
void multiTouch();
|
void multiTouch();
|
||||||
void multiTouchUpAndMotionFrame();
|
void multiTouchUpAndMotionFrame();
|
||||||
|
void tapAndMoveInSameFrame();
|
||||||
};
|
};
|
||||||
|
|
||||||
void tst_seatv5::bindsToSeat()
|
void tst_seatv5::bindsToSeat()
|
||||||
@ -586,5 +587,37 @@ void tst_seatv5::multiTouchUpAndMotionFrame()
|
|||||||
QVERIFY(window.m_events.empty());
|
QVERIFY(window.m_events.empty());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void tst_seatv5::tapAndMoveInSameFrame()
|
||||||
|
{
|
||||||
|
TouchWindow window;
|
||||||
|
QCOMPOSITOR_TRY_VERIFY(xdgSurface() && xdgSurface()->m_committedConfigureSerial);
|
||||||
|
|
||||||
|
exec([=] {
|
||||||
|
auto *t = touch();
|
||||||
|
auto *c = client();
|
||||||
|
|
||||||
|
t->sendDown(xdgToplevel()->surface(), {32, 32}, 0);
|
||||||
|
t->sendMotion(c, {33, 33}, 0);
|
||||||
|
t->sendFrame(c);
|
||||||
|
|
||||||
|
// Don't leave touch in a weird state
|
||||||
|
t->sendUp(c, 0);
|
||||||
|
t->sendFrame(c);
|
||||||
|
});
|
||||||
|
|
||||||
|
QTRY_VERIFY(!window.m_events.empty());
|
||||||
|
{
|
||||||
|
auto e = window.m_events.takeFirst();
|
||||||
|
QCOMPARE(e.type, QEvent::TouchBegin);
|
||||||
|
QCOMPARE(e.touchPoints.size(), 1);
|
||||||
|
QCOMPARE(e.touchPoints[0].state(), Qt::TouchPointState::TouchPointPressed);
|
||||||
|
// Position isn't that important, we just want to make sure we actually get the pressed event
|
||||||
|
}
|
||||||
|
|
||||||
|
// Make sure we eventually release
|
||||||
|
QTRY_VERIFY(!window.m_events.empty());
|
||||||
|
QTRY_COMPARE(window.m_events.last().touchPoints.first().state(), Qt::TouchPointState::TouchPointReleased);
|
||||||
|
}
|
||||||
|
|
||||||
QCOMPOSITOR_TEST_MAIN(tst_seatv5)
|
QCOMPOSITOR_TEST_MAIN(tst_seatv5)
|
||||||
#include "tst_seatv5.moc"
|
#include "tst_seatv5.moc"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user