//==============================================================================
    void showFile (const File& file)
    {
        loadFileIntoTransport (file);

        zoomSlider.setValue (0, dontSendNotification);
        thumbnail->setFile (file);
    }
void AudioDemoPlaybackPage::showFile (const File& file)
{
    loadFileIntoTransport (file);

    zoomSlider->setValue (0, dontSendNotification);
    thumbnail->setFile (file);
}
void AudioDemoPlaybackPage::selectionChanged()
{
    loadFileIntoTransport (fileTreeComp->getSelectedFile());

    zoomSlider->setValue (0, false, false);
    thumbnail->setFile (fileTreeComp->getSelectedFile());
}
void AudioDemoPlaybackPage::showFile (const File& file)
{
    loadFileIntoTransport (file);

    zoomSlider->setValue (0, false, false);
    thumbnail->setFile (file);
}