IJPL-43735 Support NSWindowShouldDragOnGesture - #521
Open
Charles Wang (wan9chi) wants to merge 1409 commits into
Open
IJPL-43735 Support NSWindowShouldDragOnGesture#521Charles Wang (wan9chi) wants to merge 1409 commits into
Charles Wang (wan9chi) wants to merge 1409 commits into
Conversation
(cherry picked from commit 2fb5308)
… events for compatibility [WLToolkit] (JetBrains#371) (cherry picked from commit bc5bdd2)
Clean up the damage list when resizing a surface. Additionally, clamp the damaged area before copying to its current actual size in order to safeguard against invalid external input. (cherry picked from commit 392a016)
(cherry picked from commit e42b747)
(cherry picked from commit eabaada)
Use -Dawt.window.counters to enable. To output counters per second to stdout/stderr, use -Dawt.window.counters=stdout or =stderr. A counter by the name swing.RepaintManager.updateWindows is always available for Swing applications, but it does not accurately correspond to frames per second. Toolkit-dependent counters provide much better accuracy. On Wayland with memory buffers as the backend two are available: java2d.native.frames - frames delivered to the Wayland server java2d.native.framesDropped - fully formed frames that were not delivered to the Wayland server (cherry picked from commit 639a7b4)
(cherry picked from commit 8227e43)
Do not copy the buffer if the drawing buffer has not been resized yet as the size will not match that of the show buffer. Also, properly guard against the size change by another thread while copying. (cherry picked from commit 8ff1d3c)
(cherry picked from commit 33a7167)
(cherry picked from commit d3496bc)
JBR-6543 Vulkan: migrate current code to pure c Replaced C++ vulkan rendering with C one (cherry picked from commit 85e44bf)
(cherry picked from commit 996d4f7)
(cherry picked from commit 64660b0)
(cherry picked from commit 768d46d)
…r rendering (cherry picked from commit 57dc1a9)
…ed (JetBrains#405) JBR-7072 Wayland: clicks on items of floating context menus are ignored (cherry picked from commit 4083b43)
…etBrains#396) (cherry picked from commit cde482c)
(cherry picked from commit e834ce8)
Implemented flat color shape rendering (cherry picked from commit 6f84d82)
Added missing header (jni_util.h) (cherry picked from commit 02fb3ae)
…o Line dialog (cherry picked from commit c381634)
(cherry picked from commit 762cd2b)
Popup's positioner size has to be in sync with popup's buffer size (cherry picked from commit 5d67a13)
(cherry picked from commit b68c0ec)
- Separate instance and device-specific function tables - Avoid using device from global context when possible - Set up debug logger (cherry picked from commit af4eb8b)
…r rendering (JetBrains#426) Refactored rendering code. Provided common implementation for fill and draw operations. (cherry picked from commit 902f65c)
Check if all non-optional interfaces are supported before actually starting to run (cherry picked from commit 632a0ac)
(cherry picked from commit a1dcba2)
…ured maximized state (cherry picked from commit 4bb0306)
Nikita Gubarkov (YaaZ)
force-pushed
the
main
branch
from
April 13, 2025 17:42
563e2bd to
69ea0a0
Compare
Vitaly Provodin (vprovodin)
force-pushed
the
main
branch
7 times, most recently
from
April 20, 2025 00:02
3e06d69 to
12d271c
Compare
Vitaly Provodin (vprovodin)
force-pushed
the
main
branch
from
April 22, 2025 00:03
12d271c to
2ca37cb
Compare
Nikita Gubarkov (YaaZ)
force-pushed
the
main
branch
from
April 23, 2025 10:32
e64b31b to
887e8e8
Compare
Vitaly Provodin (vprovodin)
force-pushed
the
main
branch
5 times, most recently
from
April 28, 2025 00:02
302ee14 to
15d0be1
Compare
Nikita Gubarkov (YaaZ)
force-pushed
the
main
branch
3 times, most recently
from
April 29, 2025 09:28
44e8fcf to
637442a
Compare
Vitaly Provodin (vprovodin)
force-pushed
the
main
branch
6 times, most recently
from
May 7, 2025 00:03
f1de5e7 to
b212d6f
Compare
Vitaly Provodin (vprovodin)
force-pushed
the
main
branch
4 times, most recently
from
May 11, 2025 00:03
9fa4fe5 to
f0a57b1
Compare
Maxim Kartashёv (mkartashev)
force-pushed
the
main
branch
2 times, most recently
from
May 13, 2025 09:48
ad2a335 to
74c8b09
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Custom titlebars make NSWindow's
movableset toNOatJetBrainsRuntime/src/java.desktop/macosx/native/libawt_lwawt/awt/AWTWindow.m
Line 1669 in 380bc81
This causes
NSWindowShouldDragOnGestureto be ignored.This PR enables
movablewhen the drag is initiated and disables it after the drag finishes.