123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222 |
- /*
- ==============================================================================
- This file is part of the JUCE library.
- Copyright (c) 2013 - Raw Material Software Ltd.
- Permission is granted to use this software under the terms of either:
- a) the GPL v2 (or any later version)
- b) the Affero GPL v3
- Details of these licenses can be found at: www.gnu.org/licenses
- JUCE is distributed in the hope that it will be useful, but WITHOUT ANY
- WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- ------------------------------------------------------------------------------
- To release a closed-source product which uses JUCE, commercial licenses are
- available: visit www.juce.com for more information.
- ==============================================================================
- */
- DrawableButton::DrawableButton (const String& name, const DrawableButton::ButtonStyle buttonStyle)
- : Button (name),
- style (buttonStyle),
- currentImage (nullptr),
- edgeIndent (3)
- {
- }
- DrawableButton::~DrawableButton()
- {
- }
- //==============================================================================
- static Drawable* copyDrawableIfNotNull (const Drawable* const d)
- {
- return d != nullptr ? d->createCopy() : nullptr;
- }
- void DrawableButton::setImages (const Drawable* normal,
- const Drawable* over,
- const Drawable* down,
- const Drawable* disabled,
- const Drawable* normalOn,
- const Drawable* overOn,
- const Drawable* downOn,
- const Drawable* disabledOn)
- {
- jassert (normal != nullptr); // you really need to give it at least a normal image..
- normalImage = copyDrawableIfNotNull (normal);
- overImage = copyDrawableIfNotNull (over);
- downImage = copyDrawableIfNotNull (down);
- disabledImage = copyDrawableIfNotNull (disabled);
- normalImageOn = copyDrawableIfNotNull (normalOn);
- overImageOn = copyDrawableIfNotNull (overOn);
- downImageOn = copyDrawableIfNotNull (downOn);
- disabledImageOn = copyDrawableIfNotNull (disabledOn);
- buttonStateChanged();
- }
- //==============================================================================
- void DrawableButton::setButtonStyle (const DrawableButton::ButtonStyle newStyle)
- {
- if (style != newStyle)
- {
- style = newStyle;
- buttonStateChanged();
- }
- }
- void DrawableButton::setEdgeIndent (const int numPixelsIndent)
- {
- edgeIndent = numPixelsIndent;
- repaint();
- resized();
- }
- Rectangle<float> DrawableButton::getImageBounds() const
- {
- Rectangle<int> r (getLocalBounds());
- if (style != ImageStretched)
- {
- int indentX = jmin (edgeIndent, proportionOfWidth (0.3f));
- int indentY = jmin (edgeIndent, proportionOfHeight (0.3f));
- if (style == ImageOnButtonBackground)
- {
- indentX = jmax (getWidth() / 4, indentX);
- indentY = jmax (getHeight() / 4, indentY);
- }
- else if (style == ImageAboveTextLabel)
- {
- r = r.withTrimmedBottom (jmin (16, proportionOfHeight (0.25f)));
- }
- r = r.reduced (indentX, indentY);
- }
- return r.toFloat();
- }
- void DrawableButton::resized()
- {
- Button::resized();
- if (currentImage != nullptr)
- {
- if (style == ImageRaw)
- currentImage->setOriginWithOriginalSize (Point<float>());
- else
- currentImage->setTransformToFit (getImageBounds(),
- style == ImageStretched ? RectanglePlacement::stretchToFit
- : RectanglePlacement::centred);
- }
- }
- void DrawableButton::buttonStateChanged()
- {
- repaint();
- Drawable* imageToDraw = nullptr;
- float opacity = 1.0f;
- if (isEnabled())
- {
- imageToDraw = getCurrentImage();
- }
- else
- {
- imageToDraw = getToggleState() ? disabledImageOn
- : disabledImage;
- if (imageToDraw == nullptr)
- {
- opacity = 0.4f;
- imageToDraw = getNormalImage();
- }
- }
- if (imageToDraw != currentImage)
- {
- removeChildComponent (currentImage);
- currentImage = imageToDraw;
- if (currentImage != nullptr)
- {
- currentImage->setInterceptsMouseClicks (false, false);
- addAndMakeVisible (currentImage);
- resized();
- }
- }
- if (currentImage != nullptr)
- currentImage->setAlpha (opacity);
- }
- void DrawableButton::enablementChanged()
- {
- Button::enablementChanged();
- buttonStateChanged();
- }
- void DrawableButton::colourChanged()
- {
- repaint();
- }
- void DrawableButton::paintButton (Graphics& g,
- const bool isMouseOverButton,
- const bool isButtonDown)
- {
- LookAndFeel& lf = getLookAndFeel();
- if (style == ImageOnButtonBackground)
- lf.drawButtonBackground (g, *this,
- findColour (getToggleState() ? TextButton::buttonOnColourId
- : TextButton::buttonColourId),
- isMouseOverButton, isButtonDown);
- else
- lf.drawDrawableButton (g, *this, isMouseOverButton, isButtonDown);
- }
- //==============================================================================
- Drawable* DrawableButton::getCurrentImage() const noexcept
- {
- if (isDown()) return getDownImage();
- if (isOver()) return getOverImage();
- return getNormalImage();
- }
- Drawable* DrawableButton::getNormalImage() const noexcept
- {
- return (getToggleState() && normalImageOn != nullptr) ? normalImageOn
- : normalImage;
- }
- Drawable* DrawableButton::getOverImage() const noexcept
- {
- if (getToggleState())
- {
- if (overImageOn != nullptr) return overImageOn;
- if (normalImageOn != nullptr) return normalImageOn;
- }
- return overImage != nullptr ? overImage : normalImage;
- }
- Drawable* DrawableButton::getDownImage() const noexcept
- {
- if (Drawable* const d = getToggleState() ? downImageOn : downImage)
- return d;
- return getOverImage();
- }
|