|
JUCE-7.0.12-0-g4f43011b96 JUCE-7.0.12-0-g4f43011b96
JUCE — C++ application framework with suport for VST, VST3, LV2 audio plug-ins
« « « Anklang Documentation |
A class that imposes restrictions on a Component's size or position. More...
#include "juce_ComponentBoundsConstrainer.h"
Public Member Functions | |
| ComponentBoundsConstrainer () noexcept | |
| When first created, the object will not impose any restrictions on the components. | |
| virtual | ~ComponentBoundsConstrainer () |
| Destructor. | |
| void | setMinimumWidth (int minimumWidth) noexcept |
| Imposes a minimum width limit. | |
| int | getMinimumWidth () const noexcept |
| Returns the current minimum width. | |
| void | setMaximumWidth (int maximumWidth) noexcept |
| Imposes a maximum width limit. | |
| int | getMaximumWidth () const noexcept |
| Returns the current maximum width. | |
| void | setMinimumHeight (int minimumHeight) noexcept |
| Imposes a minimum height limit. | |
| int | getMinimumHeight () const noexcept |
| Returns the current minimum height. | |
| void | setMaximumHeight (int maximumHeight) noexcept |
| Imposes a maximum height limit. | |
| int | getMaximumHeight () const noexcept |
| Returns the current maximum height. | |
| void | setMinimumSize (int minimumWidth, int minimumHeight) noexcept |
| Imposes a minimum width and height limit. | |
| void | setMaximumSize (int maximumWidth, int maximumHeight) noexcept |
| Imposes a maximum width and height limit. | |
| void | setSizeLimits (int minimumWidth, int minimumHeight, int maximumWidth, int maximumHeight) noexcept |
| Set all the maximum and minimum dimensions. | |
| void | setMinimumOnscreenAmounts (int minimumWhenOffTheTop, int minimumWhenOffTheLeft, int minimumWhenOffTheBottom, int minimumWhenOffTheRight) noexcept |
| Sets the amount by which the component is allowed to go off-screen. | |
| int | getMinimumWhenOffTheTop () const noexcept |
| Returns the minimum distance the bounds can be off-screen. | |
| int | getMinimumWhenOffTheLeft () const noexcept |
| Returns the minimum distance the bounds can be off-screen. | |
| int | getMinimumWhenOffTheBottom () const noexcept |
| Returns the minimum distance the bounds can be off-screen. | |
| int | getMinimumWhenOffTheRight () const noexcept |
| Returns the minimum distance the bounds can be off-screen. | |
| void | setFixedAspectRatio (double widthOverHeight) noexcept |
| Specifies a width-to-height ratio that the resizer should always maintain. | |
| double | getFixedAspectRatio () const noexcept |
| Returns the aspect ratio that was set with setFixedAspectRatio(). | |
| virtual void | checkBounds (Rectangle< int > &bounds, const Rectangle< int > &previousBounds, const Rectangle< int > &limits, bool isStretchingTop, bool isStretchingLeft, bool isStretchingBottom, bool isStretchingRight) |
| This callback changes the given coordinates to impose whatever the current constraints are set to be. | |
| virtual void | resizeStart () |
| This callback happens when the resizer is about to start dragging. | |
| virtual void | resizeEnd () |
| This callback happens when the resizer has finished dragging. | |
| void | setBoundsForComponent (Component *component, Rectangle< int > bounds, bool isStretchingTop, bool isStretchingLeft, bool isStretchingBottom, bool isStretchingRight) |
| Checks the given bounds, and then sets the component to the corrected size. | |
| void | checkComponentBounds (Component *component) |
| Performs a check on the current size of a component, and moves or resizes it if it fails the constraints. | |
| virtual void | applyBoundsToComponent (Component &, Rectangle< int > bounds) |
| Called by setBoundsForComponent() to apply a new constrained size to a component. | |
A class that imposes restrictions on a Component's size or position.
This is used by classes such as ResizableCornerComponent, ResizableBorderComponent and ResizableWindow.
The base class can impose some basic size and position limits, but you can also subclass this for custom uses.
@tags{GUI}
Definition at line 43 of file juce_ComponentBoundsConstrainer.h.
|
noexcept |
When first created, the object will not impose any restrictions on the components.
Definition at line 29 of file juce_ComponentBoundsConstrainer.cpp.
|
virtual |
Destructor.
Definition at line 30 of file juce_ComponentBoundsConstrainer.cpp.
|
virtual |
Called by setBoundsForComponent() to apply a new constrained size to a component.
By default this just calls setBounds(), but is virtual in case it's needed for extremely cunning purposes.
Definition at line 151 of file juce_ComponentBoundsConstrainer.cpp.
|
virtual |
This callback changes the given coordinates to impose whatever the current constraints are set to be.
| bounds | the target position that should be examined and adjusted |
| previousBounds | the component's current size |
| limits | the region in which the component can be positioned |
| isStretchingTop | whether the top edge of the component is being resized |
| isStretchingLeft | whether the left edge of the component is being resized |
| isStretchingBottom | whether the bottom edge of the component is being resized |
| isStretchingRight | whether the right edge of the component is being resized |
Reimplemented in juce::BorderedComponentBoundsConstrainer.
Definition at line 169 of file juce_ComponentBoundsConstrainer.cpp.
Performs a check on the current size of a component, and moves or resizes it if it fails the constraints.
Definition at line 145 of file juce_ComponentBoundsConstrainer.cpp.
|
noexcept |
Returns the aspect ratio that was set with setFixedAspectRatio().
If no aspect ratio is being enforced, this will return 0.
Definition at line 93 of file juce_ComponentBoundsConstrainer.cpp.
|
noexcept |
Returns the current maximum height.
Definition at line 76 of file juce_ComponentBoundsConstrainer.h.
|
noexcept |
Returns the current maximum width.
Definition at line 64 of file juce_ComponentBoundsConstrainer.h.
|
noexcept |
Returns the current minimum height.
Definition at line 70 of file juce_ComponentBoundsConstrainer.h.
|
noexcept |
Returns the minimum distance the bounds can be off-screen.
Definition at line 120 of file juce_ComponentBoundsConstrainer.h.
|
noexcept |
Returns the minimum distance the bounds can be off-screen.
Definition at line 118 of file juce_ComponentBoundsConstrainer.h.
|
noexcept |
Returns the minimum distance the bounds can be off-screen.
Definition at line 122 of file juce_ComponentBoundsConstrainer.h.
|
noexcept |
Returns the minimum distance the bounds can be off-screen.
Definition at line 116 of file juce_ComponentBoundsConstrainer.h.
|
noexcept |
Returns the current minimum width.
Definition at line 58 of file juce_ComponentBoundsConstrainer.h.
|
virtual |
This callback happens when the resizer has finished dragging.
Definition at line 164 of file juce_ComponentBoundsConstrainer.cpp.
|
virtual |
This callback happens when the resizer is about to start dragging.
Definition at line 160 of file juce_ComponentBoundsConstrainer.cpp.
| void juce::ComponentBoundsConstrainer::setBoundsForComponent | ( | Component * | component, |
| Rectangle< int > | bounds, | ||
| bool | isStretchingTop, | ||
| bool | isStretchingLeft, | ||
| bool | isStretchingBottom, | ||
| bool | isStretchingRight | ||
| ) |
Checks the given bounds, and then sets the component to the corrected size.
Definition at line 98 of file juce_ComponentBoundsConstrainer.cpp.
Specifies a width-to-height ratio that the resizer should always maintain.
If the value is 0, no aspect ratio is enforced. If it's non-zero, the width will always be maintained as this multiple of the height.
Definition at line 88 of file juce_ComponentBoundsConstrainer.cpp.
Imposes a maximum height limit.
Definition at line 36 of file juce_ComponentBoundsConstrainer.cpp.
|
noexcept |
Imposes a maximum width and height limit.
Definition at line 51 of file juce_ComponentBoundsConstrainer.cpp.
Imposes a maximum width limit.
Definition at line 34 of file juce_ComponentBoundsConstrainer.cpp.
Imposes a minimum height limit.
Definition at line 35 of file juce_ComponentBoundsConstrainer.cpp.
|
noexcept |
Sets the amount by which the component is allowed to go off-screen.
The values indicate how many pixels must remain on-screen when dragged off one of its parent's edges, so e.g. if minimumWhenOffTheTop is set to 10, then when the component goes off the top of the screen, its y-position will be clipped so that there are always at least 10 pixels on-screen. In other words, the lowest y-position it can take would be (10 - the component's height).
If you pass 0 or less for one of these amounts, the component is allowed to move beyond that edge completely, with no restrictions at all.
If you pass a very large number (i.e. larger that the dimensions of the component itself), then the component won't be allowed to overlap that edge at all. So e.g. setting minimumWhenOffTheLeft to 0xffffff will mean that the component will bump into the left side of the screen and go no further.
Definition at line 77 of file juce_ComponentBoundsConstrainer.cpp.
|
noexcept |
Imposes a minimum width and height limit.
Definition at line 38 of file juce_ComponentBoundsConstrainer.cpp.
Imposes a minimum width limit.
Definition at line 33 of file juce_ComponentBoundsConstrainer.cpp.
|
noexcept |
Set all the maximum and minimum dimensions.
Definition at line 61 of file juce_ComponentBoundsConstrainer.cpp.