mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Accessibility: Make createAccessibilityHandler() private in Component subclasses
This commit is contained in:
parent
dd08be6215
commit
90eb878d16
40 changed files with 69 additions and 101 deletions
|
|
@ -97,11 +97,10 @@ public:
|
|||
Rectangle<float> getDrawableBounds() const override;
|
||||
/** @internal */
|
||||
Path getOutlineAsPath() const override;
|
||||
/** @internal */
|
||||
std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override;
|
||||
|
||||
private:
|
||||
//==============================================================================
|
||||
std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override;
|
||||
bool setImageInternal (const Image&);
|
||||
|
||||
//==============================================================================
|
||||
|
|
|
|||
|
|
@ -98,8 +98,6 @@ public:
|
|||
Path getOutlineAsPath() const override;
|
||||
/** @internal */
|
||||
bool replaceColour (Colour originalColour, Colour replacementColour) override;
|
||||
/** @internal */
|
||||
std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override;
|
||||
|
||||
private:
|
||||
//==============================================================================
|
||||
|
|
@ -110,6 +108,7 @@ private:
|
|||
Colour colour;
|
||||
Justification justification;
|
||||
|
||||
std::unique_ptr<AccessibilityHandler> createAccessibilityHandler() override;
|
||||
void refreshBounds();
|
||||
Rectangle<int> getTextArea (float width, float height) const;
|
||||
AffineTransform getTextTransform (float width, float height) const;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue