ed
d6fd33b38d
Accessibility: Disable accessibility for PopupMenu windows on the desktop when their parent window or target component have accessibility disabled
3 years ago
ed
b65dc65bc2
Android Accessibility: Don't send accessibility events when inside populateNodeInfo() callback
Calling AccessibilityHandler::getChildren() or getParent() may cause an AccessibilityHandler object to be created and an InternalAccessibilityEvent::elementCreated notification to be sent. Calling AndroidAccessibilityEvent.setSource may then cause a recursive populateNodeInfo() call.
3 years ago
ed
d8214732ed
Android Accessibility: Send appropriate content change types for TYPE_WINDOW_CONTENT_CHANGED accessibility event
3 years ago
ed
74a83440e2
Android Accessibility: Check for valid host pointer when calling into C++ peer code from Java accessibility callbacks
3 years ago
ed
9db2647971
Docs: Fix a typo
3 years ago
ed
24910cc4b4
Fix GCC Wshadow warnings
3 years ago
Tom Poole
5109e30c6f
Bump version number to 6.1.1
3 years ago
ed
8370542eb2
Accessibility: Only use AccessibilityRole::toggleButton role and add AccessibilityActionType::toggle for ToggleButtons
3 years ago
ed
90eb878d16
Accessibility: Make createAccessibilityHandler() private in Component subclasses
3 years ago
ed
dd08be6215
Android Accessibility: Guard app context calls in a few places to prevent potential nullptr dereferences
3 years ago
ed
3739fe4829
Accessibility: Added ScopedDragNotification for sending slider drag notifications
3 years ago
ed
8d6ba3b54e
Accessibility: Use AccessibilityRole::ignored for UI elements that should not be accessible to screen readers but have accessible children
3 years ago
ed
baa1bbafdf
Windows: Fall back to old-style modal dialog when showing native message box modally since TaskDialog does not support fully modal dialogs
3 years ago
ed
06ca1156e1
macOS Accessibility: Always set our NSWindow as accessible so its title bar is navigable
3 years ago
ed
59333870f5
Accessibility: Disable accessibility of child components when calling `Component::setAccessible (false);`
3 years ago
ed
8bb08f558e
Accessibility: Fix off-by-one row index bug when using a ListBox with an accessible header component
3 years ago
ed
945a7f4477
Accessibility: Send value change notifications from SliderAccessibilityHandler
3 years ago
ed
f5eee033ba
NativeMessageBox: Return correctly mapped value when shown modally
3 years ago
ed
3b97c40c2d
iOS: Fix a crash in NativeMessageBox implementation when shown modally
3 years ago
Tom Poole
6542446594
Update the JUCE logo
3 years ago
Tom Poole
46fe3789fc
Bump version number to 6.1.0
3 years ago
ed
c799b56b60
Fix missing prototypes warnings
3 years ago
ed
6f8c464747
TextEditor: Fix a highlighting bug
3 years ago
ed
c3cb59d6ae
TextEditor: Avoid some potential nullptr dereferences in the Iterator class
3 years ago
ed
6d40b627ba
AlertWindow: Fix incorrect return value when using modal native ok/cancel and yes/no/cancel dialogs
3 years ago
ed
d1f16f0643
Accessibility: Add missing static keyword to areAnyAccessibilityClientsActive() implementations
3 years ago
ed
dd18711493
iOS: Use UIAccessibilityContainer methods for correct accessibility hierarchy and navigation
3 years ago
ed
17fe5a54d8
iOS: Removed private API method
3 years ago
ed
2db1bbdc0f
Add missing AlertWindow::showNativeDialogBox() implementation that was removed in 551d7b9c
3 years ago
reuk
3c1393ecb6
ChoicePropertyComponent: Allow slightly more relaxed matching in getValue
3 years ago
reuk
087cda7e1f
HWNDComponentPeer: Fix reentrancy bug in DPICHANGED handler
Sometimes, changing the bounds of the window inside the DPICHANGED
handler can cause further DPI change events to be processed. Previously,
the scaleFactor set by the "inner" events was also being used when
notifying listeners about the "outer" events, leading to graphical
glitches.
An effect of the bug was that VST2 views in the AudioPluginHost would
occasionally render with an incorrect size and position after dragging
them between displays with different scale factors.
With this change in place, we only notify listeners and update window
bounds once there are no DPI changes in progress.
3 years ago
reuk
20c23700e5
MinGW: Fix some build issues for 32-bit platforms
3 years ago
ed
5d7f59a19d
Accessibility: Fix focus transfer issue when hiding modal components
3 years ago
ed
c66e8baf7e
Whitespace
3 years ago
ed
8f03215a9e
Accessibility: Add Android support
3 years ago
ed
30654fb8ec
Accessibility: Add iOS support
3 years ago
ed
da57f65f3f
Accessibility: Add juce_AccessibilityTextHelpers.h
3 years ago
ed
588e776bb6
Accessibility: Remove redundant method declaration and general fixups
3 years ago
ed
17ca903aaa
Accessibility: Don't give focus to currently keyboard focused component in AccessibilityHandler::giveAwayFocusInternal()
3 years ago
ed
1028b6e5d1
Accessibility: Fix inaccessible MenuBarComponent items
3 years ago
ed
a2f7aaab2f
Accessibility: Don't create AccessibilityHandler for Components without a native window handle
3 years ago
ed
d6a5156dd5
Objective-C++: Make getIvar() a free function so it can be used without a class instance
3 years ago
ed
ddb59d1361
Docs: Fix typo in Component child adding methods
3 years ago
ed
c5bcfd5c3f
macOS: Use the NSOpenPanel message property to display the FileChooser title correctly
3 years ago
reuk
3c68581567
Use jassertquiet where possible
3 years ago
reuk
19e1488e18
Slider: Add getScrollWheelEnabled function
3 years ago
ed
88d2edf189
ModalCallbackFunction: Use NullCheckedInvocation helper to fix potential crash due to calling null std::function
3 years ago
ed
3d4d0caca8
ModalCallbackFunction: Fix crash due to dangling reference
3 years ago
ed
551d7b9c5b
Add MessageBoxOptions class for specifying a set of AlertWindow and NativeMessageBox options
- Add AlertWindow::show() and showAsync() methods that take a MessageBoxOptions argument
- Add NativeMessageBox::show() and showAsync() methods that take a MessageBoxOptions argument
- Update the DialogsDemo to demonstrate the new methods
- Deprecate AlertWindow::showNativeDialogBox() in favour of the NativeMessageBox methods
- Pass button strings specified in MesssageBoxOptions to native dialog boxes correctly
- Use modern TaskDialog on Windows for the native dialog box where available
3 years ago
ed
d3556dfd7f
macOS Accessibility: Fixed a memory leak when checking for active accessibility clients
3 years ago