-
Notifications
You must be signed in to change notification settings - Fork 248
IJPL-43735 Support NSWindowShouldDragOnGesture #521
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
branchseer
wants to merge
1,409
commits into
JetBrains:main
Choose a base branch
from
branchseer:ijpl-43735-fix
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+179,536
−11,629
Conversation
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
(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)
68c38b8 to
a56e68d
Compare
874acc9 to
d8489a2
Compare
424c60f to
f807fbf
Compare
c092ab6 to
ae19bfc
Compare
2dd9602 to
725da52
Compare
b67d996 to
56e393c
Compare
15e769b to
93bb78f
Compare
6cffaf8 to
f6231ed
Compare
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.