| 4 | |
| 5 | #include "Playhead.h" |
| 6 | Playhead::Playhead(NeuralNoteAudioProcessor* inProcessor, double inNumPixelsPerSecond) |
| 7 | : mProcessor(inProcessor) |
| 8 | , mVBlankAttachment(this, [this]() { _onVBlankCallback(); }) |
| 9 | , mBaseNumPixelsPerSecond(inNumPixelsPerSecond) |
| 10 | { |
| 11 | setInterceptsMouseClicks(false, false); |
| 12 | } |
| 13 | |
| 14 | void Playhead::resized() |
| 15 | { |
nothing calls this directly
no outgoing calls
no test coverage detected