This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class ChoiceParameterRadioGroup : public Component, | |
| private Button::Listener, | |
| private AudioProcessorValueTreeState::Listener | |
| { | |
| public: | |
| enum Orientation | |
| { | |
| horizontal, | |
| vertical | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| Stop watch to measure time intervals | |
| \code{.cpp} | |
| ElapsedTime timer; | |
| // do stuff | |
| DBG ("Doing stuff took: " << String (timer.elapsed()) << " milliseconds"); | |
| timer.pause(); | |
| // that doesn't count | |
| timer.resume(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| String RelativeTime::toString (bool includeDays) const | |
| { | |
| String result; | |
| result.preallocateBytes (32); | |
| if (numSeconds < 0) | |
| result << '-'; | |
| bool empty = true; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| ============================================================================== | |
| PluginEditor.cpp | |
| ============================================================================== | |
| */ | |
| #include "PluginProcessor.h" | |
| #include "PluginEditor.h" |
NewerOlder