mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Added a method for changing the corner size of a CallOutBox
This commit is contained in:
parent
2fe00ba4da
commit
3c9fe89636
4 changed files with 8 additions and 1 deletions
|
|
@ -2513,6 +2513,11 @@ int LookAndFeel_V2::getCallOutBoxBorderSize (const CallOutBox&)
|
|||
return 20;
|
||||
}
|
||||
|
||||
float LookAndFeel_V2::getCallOutBoxCornerSize (const CallOutBox&)
|
||||
{
|
||||
return 9.0f;
|
||||
}
|
||||
|
||||
//==============================================================================
|
||||
AttributedString LookAndFeel_V2::createFileChooserHeaderText (const String& title,
|
||||
const String& instructions)
|
||||
|
|
|
|||
|
|
@ -327,6 +327,7 @@ public:
|
|||
//==============================================================================
|
||||
void drawCallOutBoxBackground (CallOutBox&, Graphics&, const Path& path, Image& cachedImage) override;
|
||||
int getCallOutBoxBorderSize (const CallOutBox&) override;
|
||||
float getCallOutBoxCornerSize (const CallOutBox&) override;
|
||||
|
||||
//==============================================================================
|
||||
void drawLevelMeter (Graphics&, int width, int height, float level) override;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue