reuk
e247e06fb7
FlexBox: Refactor and tidy implementation
3 years ago
reuk
0dad809264
FlexBox: Add tests, and fix layout bugs
3 years ago
ed
4d350ffcc3
Fix documentation typo
3 years ago
ed
d49d203974
Tooltip: Ignore dismissal mouse events when tooltip window is not showing
3 years ago
ed
1fe8fa467b
TextEditor: Fix floating-point -> integer bounds conversion of text selection bounds
3 years ago
ed
057b555f08
Tooltip: Track mouse clicks using global Desktop mouse listener callbacks to fix bug with Timer callbacks missing events
3 years ago
ed
903657b0b8
Tooltip: Prevent tip from being immediately dismissed when shown from TooltipWindow::displayTip()
3 years ago
ed
fdd9eb8eeb
X11: Correctly reset drag and drop state when drag has ended
3 years ago
ed
274ce967e4
AlertWindow: Prevent accessible label component from intercepting mouse clicks
3 years ago
ed
49db3ce12e
AlertWindow: Make accessible label component colours fully transparent to prevent it from drawing over custom L&Fs
3 years ago
reuk
49bbadbca9
NSViewComponentPeer: Fix naming of drawRectWithContext
3 years ago
reuk
4196b5e45b
macOS: Silence deprecation warnings on Monterey
3 years ago
ed
7098b13b44
X11: Make synchronous error handling opt-in due to graphics performance issues when XSynchronize is enabled for a display
3 years ago
ed
66f8af98e7
Windows Accessibility: Don't set UIA_NamePropertyId of ignored elements to prevent it from being read out by Narrator
3 years ago
ed
4727084838
PopupMenu: Store Options::targetComponent and ::parentComponent in WeakReferences to allow for deletion checks
3 years ago
reuk
eca02270ee
Component: Add Point<float> overloads for some common functions
3 years ago
reuk
cdbefa3b51
Windows: Ensure that new windows are brought to the front after creation
3 years ago
reuk
496e454e9c
XWindowSystem: Update frame extents as soon as they change
3 years ago
reuk
4ca923a34b
NSViewComponentPeer: Allow mouse events to reach unfocused windows
This change allows mouse events (including enter and exit events) to
reach unfocused views on macOS. This matches the behaviour of unfocused
windows on Linux and Windows, where components paint in their "hovered"
states even when the application window is in the background.
As a byproduct of using tracking areas on macOS, we can remove the fake
mouse move generator.
3 years ago
reuk
fe4515adb6
MouseCursor: Refactor platform-specific MouseCursor internals
This new factoring is a bit more typesafe, as it avoids casting
internals to void*.
It also allows cursors to scale appropriately on high resolution
displays on Windows.
3 years ago
reuk
5c50ee4f94
MouseCursor: Simplify implementation using shared_ptr instead of manual refcounting
3 years ago
reuk
4d572411e0
FlexBox: Update the default value of FlexItem::alignSelf to match CSS implementations
3 years ago
reuk
25c9841131
Windows: Tidy up cursor creation function
3 years ago
reuk
f85ede6b47
Component: Ensure that mouseEnter and mouseExit calls are balanced when entering/leaving modal state
3 years ago
reuk
b465f60851
HWNDComponentPeer: Dismiss temporary modal windows when a window loses focus
3 years ago
reuk
44ca96271d
NSViewComponentPeer: Give up keyboard focus and dismiss temporary modals when window loses key status
3 years ago
reuk
c2f661171a
PopupMenu: Avoid giving focus back to previous component on dismiss
This change is designed to fix issues with views stealing focus and
being brought to the front when popup menus are dismissed.
To test this behaviour:
- Open two instances "a" and "b" of a plugin editor containing a
ComboBox
- Click the ComboBox in editor "a", opening its PopupMenu
- Drag the titlebar of editor "b" to move it
- The PopupMenu should be dismissed, but editor "a" should *not* steal
keyboard focus or be brought to the front
3 years ago
ed
b70fbb9bca
TreeView: Fix drag-to-scroll viewport jump on mouse exit
3 years ago
reuk
acddcd550d
DropShadower: Detect when window is no longer being displayed on the current desktop and hide shadows
3 years ago
reuk
6ae1137d91
MinGW: Fix Windows build
3 years ago
reuk
7f0a305199
Slider: Ensure that current Value is always treated as a double
3 years ago
reuk
05c2261efe
LinuxComponentPeer: Use constrainer to limit native window size
3 years ago
reuk
cfda532c9f
iOS Windowing: Avoid crashing when displaying a message box from a background thread
3 years ago
ed
51355b03df
ChoicePropertyComponent: Ensure that ComboBox is always initialised with underlying Value object
3 years ago
ed
6218e2f92b
Fix bug in LabelKeyboardFocusTraverser causing editable labels to consume focus traversal events
3 years ago
ed
de375ab6d7
TreeView: Prevent dragging items from scrolling viewport on mobile and fix issue with dragged item component being deleted during drag operations
3 years ago
ed
1e0acdf83d
Accessibility: Update ComboBox label accessibility when editable state changed
3 years ago
ed
aabd65b0fd
Text: Fix some build issues when JUCE_STRING_UTF_TYPE != 8
3 years ago
reuk
cc2a563725
NSViewComponentPeer: Fix framesize bug introduced in f73f8ee849
3 years ago
reuk
2c90261bd4
Windows: Fix missing field initialiser
3 years ago
reuk
6bc51f97e4
Grid: Avoid crashing in performLayout when the grid contains no items
3 years ago
reuk
b41aeec9b1
Build: Fix arm64 gcc build warnings
3 years ago
ed
428260a6fd
Whitespace
3 years ago
ed
7d1918b385
macOS/iOS: Replace compile-time deployment target checks with runtime checks using the available keyword
3 years ago
ed
70968d46c8
TreeView: Coalesce item position recalculation to fix performance issues with large trees
3 years ago
attila
175de90c49
DropShadower: Fix issue with shadows disappearing in TabbedComponent
The issue was caused by DropShadower using the ComponentListener interface
to listen to its target Component's changes and creating shadow Components
only if the target was visible during the event callbacks. However it was
possible that during the events the target was not yet visible because one
of its parents was not visible. When the parent became visible it would not
trigger a callback for the observed child component.
The fix attaches a ComponentListener recursively to all parents starting
from the target and responds to each componentVisibilityChanged() event.
3 years ago
ed
b3a6e796f9
Fix potential nullptr dereference in Slider::ScopedDragNotification destructor
3 years ago
ed
3fac215534
Component: Give away keyboard focus when disabled
3 years ago
ed
a852f4f45f
Component: Only pass mouse wheel and magnify events up to enabled parents
3 years ago
ed
7a8a4944cb
ComboBox: Hide active menu when disabled
3 years ago