mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
110 lines
2.7 KiB
C++
110 lines
2.7 KiB
C++
/*
|
|
==============================================================================
|
|
|
|
This file is part of the JUCE 6 technical preview.
|
|
Copyright (c) 2017 - ROLI Ltd.
|
|
|
|
You may use this code under the terms of the GPL v3
|
|
(see www.gnu.org/licenses).
|
|
|
|
For this technical preview, this file is not subject to commercial licensing.
|
|
|
|
JUCE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, AND ALL WARRANTIES, WHETHER
|
|
EXPRESSED OR IMPLIED, INCLUDING MERCHANTABILITY AND FITNESS FOR PURPOSE, ARE
|
|
DISCLAIMED.
|
|
|
|
==============================================================================
|
|
*/
|
|
|
|
namespace juce
|
|
{
|
|
|
|
ProgressBar::ProgressBar (double& progress_)
|
|
: progress (progress_),
|
|
displayPercentage (true),
|
|
lastCallbackTime (0)
|
|
{
|
|
currentValue = jlimit (0.0, 1.0, progress);
|
|
}
|
|
|
|
ProgressBar::~ProgressBar()
|
|
{
|
|
}
|
|
|
|
//==============================================================================
|
|
void ProgressBar::setPercentageDisplay (const bool shouldDisplayPercentage)
|
|
{
|
|
displayPercentage = shouldDisplayPercentage;
|
|
repaint();
|
|
}
|
|
|
|
void ProgressBar::setTextToDisplay (const String& text)
|
|
{
|
|
displayPercentage = false;
|
|
displayedMessage = text;
|
|
}
|
|
|
|
void ProgressBar::lookAndFeelChanged()
|
|
{
|
|
setOpaque (getLookAndFeel().isProgressBarOpaque (*this));
|
|
}
|
|
|
|
void ProgressBar::colourChanged()
|
|
{
|
|
lookAndFeelChanged();
|
|
}
|
|
|
|
void ProgressBar::paint (Graphics& g)
|
|
{
|
|
String text;
|
|
|
|
if (displayPercentage)
|
|
{
|
|
if (currentValue >= 0 && currentValue <= 1.0)
|
|
text << roundToInt (currentValue * 100.0) << '%';
|
|
}
|
|
else
|
|
{
|
|
text = displayedMessage;
|
|
}
|
|
|
|
getLookAndFeel().drawProgressBar (g, *this,
|
|
getWidth(), getHeight(),
|
|
currentValue, text);
|
|
}
|
|
|
|
void ProgressBar::visibilityChanged()
|
|
{
|
|
if (isVisible())
|
|
startTimer (30);
|
|
else
|
|
stopTimer();
|
|
}
|
|
|
|
void ProgressBar::timerCallback()
|
|
{
|
|
double newProgress = progress;
|
|
|
|
const uint32 now = Time::getMillisecondCounter();
|
|
const int timeSinceLastCallback = (int) (now - lastCallbackTime);
|
|
lastCallbackTime = now;
|
|
|
|
if (currentValue != newProgress
|
|
|| newProgress < 0 || newProgress >= 1.0
|
|
|| currentMessage != displayedMessage)
|
|
{
|
|
if (currentValue < newProgress
|
|
&& newProgress >= 0 && newProgress < 1.0
|
|
&& currentValue >= 0 && currentValue < 1.0)
|
|
{
|
|
newProgress = jmin (currentValue + 0.0008 * timeSinceLastCallback,
|
|
newProgress);
|
|
}
|
|
|
|
currentValue = newProgress;
|
|
currentMessage = displayedMessage;
|
|
repaint();
|
|
}
|
|
}
|
|
|
|
} // namespace juce
|