1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

WebBrowserComponent: Windows: Add accessibility integration

This commit is contained in:
attila 2023-04-17 10:21:48 +02:00 committed by Attila Szarvas
parent 6ef45eb20c
commit 7657efd227
12 changed files with 381 additions and 29 deletions

View file

@ -264,12 +264,17 @@ public:
/** @internal */
void visibilityChanged() override;
/** @internal */
void focusGained (FocusChangeType) override;
void focusGainedWithDirection (FocusChangeType, FocusChangeDirection) override;
/** @internal */
class Pimpl;
private:
std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override
{
return std::make_unique<AccessibilityHandler> (*this, AccessibilityRole::group);
}
//==============================================================================
std::unique_ptr<Pimpl> browser;
bool blankPageShown = false, unloadPageWhenHidden;