Commit graph

25141 commits

Author SHA1 Message Date
Kai Uwe Broulik
559d55f64f XdgPopupWindow: Disconnect relayout when role gets destroyed
Otherwise we will still react on a frameGeometryChanged signal
and try to relayout the popup when its transient parent was
already set to null leading to a crash.

BUG: 472532
2023-08-04 18:29:45 +02:00
Xaver Hugl
be6be22bae internalwindow: don't crash on pointer leave when m_handle is nullptr
BUG: 472922
2023-08-03 11:28:20 +00:00
Xaver Hugl
befb50ebec backends/drm: allow modesets with atomic tests if a modeset is already pending
Otherwise the tests will always fail

BUG: 461657
2023-08-03 10:46:07 +00:00
Xaver Hugl
8feeb9b023 backends/drm: resize shadow texture with the output gbm swapchain 2023-08-03 07:00:10 +00:00
Kai Uwe Broulik
53279fd8d3 InternalWindow: Don't be movable on a dialog with BypassWindowManagerHint
Such a dialog isn't placeable, so it shouldn't be movable.
Fixes being able to move the tabbox around if Alt is the modifier
key for moving windows.
2023-08-03 06:26:27 +00:00
l10n daemon script
7c3032777c GIT_SILENT Sync po/docbooks with svn 2023-08-03 02:59:35 +00:00
Xaver Hugl
2ea707585f input: use modifiersRelevantForGlobalShortcuts for tabbox events
This way, caps lock doesn't get in the way

BUG: 453918
2023-08-02 15:21:48 +02:00
l10n daemon script
a4dd18c138 GIT_SILENT Sync po/docbooks with svn 2023-08-02 02:25:51 +00:00
Nate Graham
d7e61b30a1 Port to modern SVG instantiation 2023-08-01 11:51:20 -06:00
Xaver Hugl
6404517976 backends/drm: increase safety margin of commit thread
Linux scheduling isn't predictable enough to run with such a tight deadline,
so increase it until this can be handled better
2023-08-01 11:06:25 +00:00
Xaver Hugl
2fff5891a5 backends/drm: wait for pending pageflips before turning outputs off 2023-08-01 11:06:25 +00:00
Xaver Hugl
db2944076a backends/drm: remove the race condition in DrmAtomicCommit
There is a chance that DrmGpu::pageFlipHandler gets executed on the main
thread while drmModeAtomicCommit hasn't returned yet on the commit thread.
When this situation happens, the destructor of DrmAtomicCommit doesn't set
the buffers to be current for the relevant drm planes, and once it gets
deleted, the framebuffers get destroyed and the output turns off.
To prevent that from happening, this commit moves the relevant code to a
method that gets explicitly called from the pageflip handler.
2023-08-01 11:06:25 +00:00
Xaver Hugl
4610a916d3 backends/drm: handle atomic commits failing correctly
If the pending pageflip flag is not reset, KWin will wait for a pageflip that
never comes
2023-08-01 11:06:25 +00:00
Vlad Zahorodnii
5fae9a944e wayland: Implement xdg-shell v5
In v5, the xdg_toplevel.wm_capabilities event had been introduced which
specifies a list of actions allowed by the compositors. Mainly useful to
client-side decorated apps.
2023-08-01 10:41:41 +00:00
l10n daemon script
950458b428 GIT_SILENT Sync po/docbooks with svn 2023-08-01 02:33:32 +00:00
Nate Graham
ade934a9d1 Port to Kirigami.Icon
Part of https://invent.kde.org/plasma/plasma-workspace/-/issues/82.
2023-07-31 16:29:49 +00:00
Vlad Zahorodnii
b25e7a849b scene: Make ImageItem use linear filter and clamp-to-edges wrap mode
Use the linear filter to ensure that the cursor doesn't look blocky with
some scale factors and use the clamp-to-edge wrap mode to avoid
potential artifacts when the image is scaled.
2023-07-31 07:02:00 +00:00
l10n daemon script
6a1418c5b1 GIT_SILENT Sync po/docbooks with svn 2023-07-31 03:00:42 +00:00
Xaver Hugl
53c2b8c68b port most remaining uses of EGLDisplay and EGLContext to their wrappers 2023-07-29 22:07:46 +00:00
l10n daemon script
04e23efe22 GIT_SILENT Sync po/docbooks with svn 2023-07-29 02:16:07 +00:00
Xaver Hugl
3820224767 backends/drm: remove "unrecognized enums" warnings
They don't serve any purpose
2023-07-28 21:07:22 +02:00
Nate Graham
fb6edd72e8 plugins/desktopchangeos: Port away from PlasmaExtras.Heading
The Kirigami version is a drop-in replacement. See
https://invent.kde.org/plasma/plasma-workspace/-/issues/75.
2023-07-28 10:18:50 -06:00
Nate Graham
6a25deed28 Revert "Port to upstream QML components where possible"
This reverts commit fd04fe04c0.

This change wasn't technically wrong, but presents an awkward developer
API until the point where we can port *all* PlasmaComponents to their
upstream QQC2 versions, and as such, it was premature.
2023-07-28 10:17:58 -06:00
Nate Graham
fd04fe04c0 Port to upstream QML components where possible
Basically:
- PlasmaExtras.Heading -> Kirigami.Heading
- PlasmaComponents3.Label -> QQC2.label

We can do this because these components only existed in the past to use
special Plasma colors, but no visual styling. And the color stuff is
obsolete because Kirigami colors work correctly in Plasma now.

Everything was tested with a dark Plasma theme and a light color scheme
to ensure no regressions.
2023-07-28 12:58:20 +00:00
l10n daemon script
a2df0707a9 GIT_SILENT Sync po/docbooks with svn 2023-07-28 02:24:46 +00:00
Vlad Zahorodnii
50bc9bb1f1 scene,wayland: Make tracking of the buffer source box less error prone
At the moment, the SurfaceItem needs to track individual properties that
may contribute to the buffer source box. That's error prone.

To fix that, this change makes the SurfaceInterface indicate when the
source box has changed and the SurfaceItem should sync its source box,
discard quads, etc.
2023-07-27 10:55:14 +00:00
Xaver Hugl
7d02bc17d6 backends/drm: rework how atomic commits are tracked
Pending buffers for drm planes and crtcs are no longer tracked in the planes
and crtcs themselves, but instead in a DrmCommit object that is used as
the user data for the pageflip handler. This way multiple commits can be
pending at the same time without causing conflicts, and the handling of
pending buffers is simplified as well.
2023-07-27 12:30:19 +02:00
Xaver Hugl
fcf24d98bf plugins/backgroundcontrast: use the same texture format as the main framebuffer
With color management, the main framebuffer has values over 1. As the effect used GL_RGBA8 for its
fbos, all values in them got clamped to 1, making the result look much darker than it should be. To
fix that, this commit changes it to use the same format as the main framebuffer, ensuring that the
range of values that can be stored is the same
2023-07-27 09:15:39 +00:00
l10n daemon script
47c415c119 GIT_SILENT Sync po/docbooks with svn 2023-07-27 02:16:20 +00:00
Xaver Hugl
90425f46db input: create shape cursor source before using it
BUG: 472358
2023-07-26 20:42:47 +00:00
Xaver Hugl
87444f6ce3 backends/drm: offload atomic commits to a separate thread
This separate thread submits commits as late as possible, so that until
immediately before vblank the cursor position can still be updated, reducing
its latency and opening the door for more optimizations.
2023-07-26 13:44:36 +02:00
Vlad Zahorodnii
febdee08b9 wayland: Fix SurfaceInterface::bufferSourceBox() when the viewport source rect is unset
Vscode starts with a valid source rect but it resets it eventually by
calling wp_viewport.set_source(-1, -1, -1, -1).

On the other hand, `current.viewport.sourceGeometryIsSet` would be true
if that happens.

SurfaceInterface::bufferSourceBox() should use the buffer size when the
source rect has been unset otherwise the damage handling code will be
confused and it's likely that the scene won't issue repaint requests.
2023-07-26 10:52:11 +00:00
Vlad Zahorodnii
762254c354 qpa: Port BackingStore to shared memory graphics buffer allocator
At the moment, graphics buffers coming from wayland and internal windows
use different code paths to update textures. However, they don't have
to.

If the internal windows are ported to GraphicsBuffer, it will be
possible to unify SurfacePixmapInternal and SurfacePixmapWayland to make
pixmap logic a bit simpler.
2023-07-26 07:29:27 +00:00
Vlad Zahorodnii
84149945f6 core: Keep shared memory graphics buffer memory map persistent
This simplifies the logic a bit if a graphics buffer is mapped both by
the SurfacePixmap and QPA.
2023-07-26 07:29:27 +00:00
l10n daemon script
bd7a802d01 GIT_SILENT Sync po/docbooks with svn 2023-07-26 02:19:37 +00:00
Xaver Hugl
d3fed712f0 platformsupport/opengl: support implicit modifiers even with explicit modifiers
This is needed to make the combination of explicit modifier OpenGL + implicit modifier drm
backend work
2023-07-25 16:08:38 +00:00
Vlad Zahorodnii
29229c5aff scene: Fix syncing buffer source box with 100% scale
The buffer source box is synchronized when the surface-to-buffer matrix
changes. However, when using 100% scaling, it's likely that the
surface-to-buffer matrix will be identity and therefore no corresponding
signal to indicate the change will be emitted.

To fix that, we need to update the buffer source box also when the
buffer size changes.
2023-07-25 14:28:01 +03:00
Vlad Zahorodnii
9a2355339c core: Rework OutputTransform type
In some cases, it's desired to know what the inverse transform of a
given output transform is. It's possible to make it work by providing
helper functions, but we tend to avoid doing so.

This change converts the OutputTransform from an enum to a class so it's
possible to have both data + methods in the same type. Unfortunately,
unlike Rust, C++ provides no way to attach methods to enums, classes and
structs is the only way to go.
2023-07-25 12:09:19 +03:00
Vlad Zahorodnii
637e3a6389 core: Move Output::Transform enum to KWin namespace
Being in the KWin namespace has a couple of advantages: the enum can be
forward declared, and the transform can be replaced with a slightly more
complex but useful type.
2023-07-25 12:09:01 +03:00
Vlad Zahorodnii
9e898c0e68 scene: Expand surface damage if the surface is scaled
If the surface item's contents is scaled, i.e. its scale factor doesn't
match the output's scale, GL_LINEAR will be applied to smooth the
contents. The unfortunate thing is that it's possible some of the
changed pixels will bleed to the neighbor ones.

In order to handle that scenario better, this change makes the
SurfaceItem expand the damage if there's scale factor mismatch.

bufferSourceBox and bufferTransform properties were introduced to detect
if the surface contents is going to be scaled. bufferSourceBox covers
both crop transform from wp_viewport and scale factor from wl_surface.
bufferTransform is same as wl_surface's buffer transform property.
2023-07-25 12:09:01 +03:00
Vlad Zahorodnii
b98ffaf785 wayland: Introduce SurfaceInterface::bufferSourceBox()
The bufferSourceBox provides a way to get the source region of the
attached buffer. It can be used to compute the effective scale factor
when using wp_viewport.
2023-07-25 12:09:01 +03:00
Vlad Zahorodnii
bad25bd5c7 Revert "scene: Pad damage if scale factor is fractional"
This reverts commit 56f6bab0c3.
2023-07-25 12:09:00 +03:00
l10n daemon script
7363ac6a94 GIT_SILENT Sync po/docbooks with svn 2023-07-25 02:18:15 +00:00
David Edmundson
35adcfe36a delete platform cursor before Application
We want the platform cursor to have roughly the same lifespan as the
application.

By using QObject parent mechanism, this gets deleted after the
Application destructor in the QObject destructor.

This causes an issue that removing an event filter (used by the X11
cursor) calls into the application singleton which is no longer valid.

BUG: 465970
2023-07-24 14:52:38 +00:00
l10n daemon script
44b06a7baf GIT_SILENT Sync po/docbooks with svn 2023-07-24 09:57:37 +00:00
l10n daemon script
239266c13e SVN_SILENT made messages (.desktop file) - always resolve ours
In case of conflict in i18n, keep the version of the branch "ours"
To resolve a particular conflict, "git checkout --ours path/to/file.desktop"
2023-07-24 09:49:25 +00:00
l10n daemon script
b6e820bb93 GIT_SILENT Sync po/docbooks with svn 2023-07-22 02:28:15 +00:00
l10n daemon script
de07471c48 GIT_SILENT Sync po/docbooks with svn 2023-07-21 02:41:25 +00:00
Luca Weiss
21420a8671 backends/drm: add missing sys/types.h include
This include is needed for the type dev_t used in this file. Issue seen
when compiling with musl libc on Alpine / postmarketOS.
2023-07-20 10:54:18 +00:00
l10n daemon script
07eafe3b0b GIT_SILENT Sync po/docbooks with svn 2023-07-20 02:33:36 +00:00