1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
|
/*
==============================================================================
This file is part of the IEM plug-in suite.
Author: Daniel Rudrich
Copyright (c) 2017 - Institute of Electronic Music and Acoustics (IEM)
https://iem.at
The IEM plug-in suite is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
The IEM plug-in suite 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.
You should have received a copy of the GNU General Public License
along with this software. If not, see <https://www.gnu.org/licenses/>.
==============================================================================
*/
#pragma once
#include "../JuceLibraryCode/JuceHeader.h"
//==============================================================================
/*
*/
class SimpleLabel : public juce::Component
{
public:
SimpleLabel() {}
SimpleLabel (juce::String textToDisplay) { text = textToDisplay; }
void setText (juce::String newText)
{
text = newText;
repaint();
}
void setText (juce::String newText, bool newBold)
{
text = newText;
isBold = newBold;
repaint();
}
void setText (juce::String newText, bool newBold, juce::Justification newJustification)
{
text = newText;
isBold = newBold;
justification = newJustification;
repaint();
}
void setJustification (juce::Justification newJustification)
{
justification = newJustification;
repaint();
}
void setTextColour (const juce::Colour newColour)
{
if (colour != newColour)
{
colour = newColour;
repaint();
}
}
void enablementChanged() override { repaint(); }
void paint (juce::Graphics& g) override
{
juce::Rectangle<int> bounds = getLocalBounds();
paintSimpleLabel (g, bounds, text, isBold, justification);
}
virtual void paintSimpleLabel (juce::Graphics& g,
juce::Rectangle<int> bounds,
juce::String labelText,
bool isBoldFlag,
juce::Justification labelJustification)
{
g.setColour (colour.withMultipliedAlpha (this->isEnabled() ? 1.0f : 0.4f));
g.setFont (bounds.getHeight());
g.setFont (juce::FontOptions (
getLookAndFeel().getTypefaceForFont (juce::FontOptions (isBoldFlag ? 1 : 0))));
g.drawText (labelText, bounds, labelJustification, true);
}
void resized() override {}
private:
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (SimpleLabel)
juce::String text = "";
bool isBold = false;
juce::Colour colour = juce::Colours::white;
juce::Justification justification = juce::Justification::centred;
};
//==============================================================================
/*
*/
class TripleLabel : public juce::Component
{
public:
TripleLabel()
{
// In your constructor, you should add any child components, and
// initialise any special settings that your component needs.
}
void setText (juce::String newLeftText,
juce::String newMiddleText,
juce::String newRightText,
bool newLeftBold,
bool newMiddleBold,
bool newRightBold)
{
leftText = newLeftText;
middleText = newMiddleText;
rightText = newRightText;
leftBold = newLeftBold;
middleBold = newMiddleBold;
rightBold = newRightBold;
repaint();
}
void paint (juce::Graphics& g) override
{
juce::Rectangle<int> bounds = getLocalBounds();
paintTripleLabel (g,
bounds,
leftText,
middleText,
rightText,
leftBold,
middleBold,
rightBold);
}
virtual void paintTripleLabel (juce::Graphics& g,
juce::Rectangle<int> bounds,
juce::String leftLabelText,
juce::String middleLabelText,
juce::String rightLabelText,
bool leftBoldFlag,
bool middleBoldFlag,
bool rightBoldFlag)
{
g.setColour (juce::Colours::white);
int height = bounds.getHeight();
juce::FontOptions tempFont (height, leftBoldFlag ? 1 : 0);
g.setFont (juce::FontOptions (getLookAndFeel().getTypefaceForFont (tempFont)));
g.setFont (height);
g.drawText (leftLabelText, bounds, juce::Justification::left, true);
tempFont = juce::FontOptions (height, middleBoldFlag ? 1 : 0);
g.setFont (juce::FontOptions (getLookAndFeel().getTypefaceForFont (tempFont)));
g.setFont (height + (middleBold ? 2 : 0));
g.drawText (middleLabelText, bounds, juce::Justification::centred, true);
tempFont = juce::FontOptions (height, rightBoldFlag ? 1 : 0);
g.setFont (juce::FontOptions (getLookAndFeel().getTypefaceForFont (tempFont)));
g.setFont (height);
g.drawText (rightLabelText, bounds, juce::Justification::right, true);
}
void resized() override {}
private:
JUCE_DECLARE_NON_COPYABLE_WITH_LEAK_DETECTOR (TripleLabel)
juce::String leftText = "";
juce::String middleText = "";
juce::String rightText = "";
bool leftBold, middleBold, rightBold;
};
|