openshot-audio
0.1.6
|
#include <juce_events.h>
Classes | |
class | TimerThread |
Public Member Functions | |
virtual | ~Timer () |
virtual void | timerCallback ()=0 |
void | startTimer (int intervalInMilliseconds) noexcept |
void | startTimerHz (int timerFrequencyHz) noexcept |
void | stopTimer () noexcept |
bool | isTimerRunning () const noexcept |
int | getTimerInterval () const noexcept |
Static Public Member Functions | |
static void JUCE_CALLTYPE | callPendingTimersSynchronously () |
Protected Member Functions | |
Timer () noexcept | |
Timer (const Timer &) noexcept | |
Friends | |
class | TimerThread |
Makes repeated callbacks to a virtual method at a specified time interval.
A Timer's timerCallback() method will be repeatedly called at a given interval. When you create a Timer object, it will do nothing until the startTimer() method is called, which will cause the message thread to start making callbacks at the specified interval, until stopTimer() is called or the object is deleted.
The time interval isn't guaranteed to be precise to any more than maybe 10-20ms, and the intervals may end up being much longer than requested if the system is busy. Because the callbacks are made by the main message thread, anything that blocks the message queue for a period of time will also prevent any timers from running until it can carry on.
If you need to have a single callback that is shared by multiple timers with different frequencies, then the MultiTimer class allows you to do that - its structure is very similar to the Timer class, but contains multiple timers internally, each one identified by an ID number.
|
protectednoexcept |
Creates a Timer. When created, the timer is stopped, so use startTimer() to get it going.
Creates a copy of another timer.
Note that this timer won't be started, even if the one you're copying is running.
|
virtual |
Destructor.
|
static |
For internal use only: invokes any timers that need callbacks. Don't call this unless you really know what you're doing!
|
inlinenoexcept |
Returns the timer's interval.
|
inlinenoexcept |
Returns true if the timer is currently running.
|
noexcept |
Starts the timer and sets the length of interval required.
If the timer is already started, this will reset it, so the time between calling this method and the next timer callback will not be less than the interval length passed in.
intervalInMilliseconds | the interval to use (any value less than 1 will be rounded up to 1) |
|
noexcept |
Starts the timer with an interval specified in Hertz. This is effectively the same as calling startTimer (1000 / timerFrequencyHz).
|
noexcept |
Stops the timer.
No more callbacks will be made after this method returns.
If this is called from a different thread, any callbacks that may be currently executing may be allowed to finish before the method returns.
|
pure virtual |
The user-defined callback routine that actually gets called periodically.
It's perfectly ok to call startTimer() or stopTimer() from within this callback to change the subsequent intervals.
Implemented in juce::Slider::Pimpl::PopupDisplayComponent, juce::PopupMenu::HelperClasses::MouseSourceState, juce::TextEditor::TextHolderComponent, juce::MouseInputSource::SourceList, juce::DragAndDropContainer::DragImageComponent, juce::BubbleMessageComponent, juce::ImageCache::Pimpl, juce::CallOutBoxCallback, juce::ProcessorParameterPropertyComp, juce::ImagePreviewComponent, juce::Button::CallbackHelper, and juce::MultiTimerCallback.
|
friend |