mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-09 23:34:20 +00:00
150 lines
7 KiB
C++
150 lines
7 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE framework.
|
|
Copyright (c) Raw Material Software Limited
|
|
|
|
JUCE is an open source framework subject to commercial or open source
|
|
licensing.
|
|
|
|
By downloading, installing, or using the JUCE framework, or combining the
|
|
JUCE framework with any other source code, object code, content or any other
|
|
copyrightable work, you agree to the terms of the JUCE End User Licence
|
|
Agreement, and all incorporated terms including the JUCE Privacy Policy and
|
|
the JUCE Website Terms of Service, as applicable, which will bind you. If you
|
|
do not agree to the terms of these agreements, we will not license the JUCE
|
|
framework to you, and you must discontinue the installation or download
|
|
process and cease use of the JUCE framework.
|
|
|
|
JUCE End User Licence Agreement: https://juce.com/legal/juce-8-licence/
|
|
JUCE Privacy Policy: https://juce.com/juce-privacy-policy
|
|
JUCE Website Terms of Service: https://juce.com/juce-website-terms-of-service/
|
|
|
|
Or:
|
|
|
|
You may also use this code under the terms of the AGPLv3:
|
|
https://www.gnu.org/licenses/agpl-3.0.en.html
|
|
|
|
THE JUCE FRAMEWORK IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL
|
|
WARRANTIES, WHETHER EXPRESSED OR IMPLIED, INCLUDING WARRANTY OF
|
|
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE, ARE DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
|
|
namespace juce
|
|
{
|
|
|
|
//==============================================================================
|
|
/**
|
|
A PropertyComponent that shows its value as an expandable list of ToggleButtons.
|
|
|
|
This type of property component contains a list of options where multiple options
|
|
can be selected at once.
|
|
|
|
@see PropertyComponent, PropertyPanel
|
|
|
|
@tags{GUI}
|
|
*/
|
|
class MultiChoicePropertyComponent : public PropertyComponent
|
|
{
|
|
private:
|
|
/** Delegating constructor. */
|
|
MultiChoicePropertyComponent (const String&, const StringArray&, const Array<var>&);
|
|
|
|
public:
|
|
/** Creates the component. Note that the underlying var object that the Value refers to must be an array.
|
|
|
|
@param valueToControl the value that the ToggleButtons will read and control
|
|
@param propertyName the name of the property
|
|
@param choices the list of possible values that will be represented
|
|
@param correspondingValues a list of values corresponding to each item in the 'choices' StringArray.
|
|
These are the values that will be read and written to the
|
|
valueToControl value. This array must contain the same number of items
|
|
as the choices array
|
|
@param maxChoices the maximum number of values which can be selected at once. The default of
|
|
-1 will not limit the number that can be selected
|
|
*/
|
|
MultiChoicePropertyComponent (const Value& valueToControl,
|
|
const String& propertyName,
|
|
const StringArray& choices,
|
|
const Array<var>& correspondingValues,
|
|
int maxChoices = -1);
|
|
|
|
/** Creates the component using a ValueTreePropertyWithDefault object. This will select the default options.
|
|
|
|
@param valueToControl the ValueTreePropertyWithDefault object that contains the Value object that the ToggleButtons will read and control.
|
|
@param propertyName the name of the property
|
|
@param choices the list of possible values that will be represented
|
|
@param correspondingValues a list of values corresponding to each item in the 'choices' StringArray.
|
|
These are the values that will be read and written to the
|
|
valueToControl value. This array must contain the same number of items
|
|
as the choices array
|
|
@param maxChoices the maximum number of values which can be selected at once. The default of
|
|
-1 will not limit the number that can be selected
|
|
*/
|
|
MultiChoicePropertyComponent (const ValueTreePropertyWithDefault& valueToControl,
|
|
const String& propertyName,
|
|
const StringArray& choices,
|
|
const Array<var>& correspondingValues,
|
|
int maxChoices = -1);
|
|
|
|
//==============================================================================
|
|
/** Returns true if the list of options is expanded. */
|
|
bool isExpanded() const noexcept { return expanded; }
|
|
|
|
/** Returns true if the list of options has been truncated and can be expanded. */
|
|
bool isExpandable() const noexcept { return expandable; }
|
|
|
|
/** Expands or shrinks the list of options if they are not all visible.
|
|
|
|
N.B. This will just set the preferredHeight value of the PropertyComponent and attempt to
|
|
call PropertyPanel::resized(), so if you are not displaying this object in a PropertyPanel
|
|
then you should use the onHeightChange callback to resize it when the height changes.
|
|
|
|
@see onHeightChange
|
|
*/
|
|
void setExpanded (bool expanded) noexcept;
|
|
|
|
/** You can assign a lambda to this callback object to have it called when the
|
|
height of this component changes in response to being expanded/collapsed.
|
|
|
|
@see setExpanded
|
|
*/
|
|
std::function<void()> onHeightChange;
|
|
|
|
//==============================================================================
|
|
/** @internal */
|
|
void paint (Graphics& g) override;
|
|
/** @internal */
|
|
void resized() override;
|
|
/** @internal */
|
|
void refresh() override {}
|
|
|
|
private:
|
|
//==============================================================================
|
|
class MultiChoiceRemapperSource;
|
|
class MultiChoiceRemapperSourceWithDefault;
|
|
|
|
//==============================================================================
|
|
static int getTotalButtonsHeight (int);
|
|
void lookAndFeelChanged() override;
|
|
|
|
//==============================================================================
|
|
static constexpr int collapsedHeight = 125;
|
|
static constexpr int buttonHeight = 25;
|
|
static constexpr int expandAreaHeight = 20;
|
|
|
|
int maxHeight = 0, numHidden = 0;
|
|
bool expandable = false, expanded = false;
|
|
|
|
ValueTreePropertyWithDefault value;
|
|
OwnedArray<ToggleButton> choiceButtons;
|
|
ShapeButton expandButton { "Expand", Colours::transparentBlack, Colours::transparentBlack, Colours::transparentBlack };
|
|
|
|
//==============================================================================
|
|
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (MultiChoicePropertyComponent)
|
|
};
|
|
|
|
} // namespace juce
|