void ControlToolBar::PlayCurrentRegion(bool looped /* = false */, bool cutpreview /* = false */) { if (!CanStopAudioStream()) return; AudacityProject *p = GetActiveProject(); if (p) { double playRegionStart, playRegionEnd; p->GetPlayRegion(&playRegionStart, &playRegionEnd); AudioIOStartStreamOptions options(p->GetDefaultPlayOptions()); options.playLooped = looped; if (cutpreview) options.timeTrack = NULL; ControlToolBar::PlayAppearance appearance = cutpreview ? ControlToolBar::PlayAppearance::CutPreview : looped ? ControlToolBar::PlayAppearance::Looped : ControlToolBar::PlayAppearance::Straight; PlayPlayRegion(SelectedRegion(playRegionStart, playRegionEnd), options, (looped ? PlayMode::loopedPlay : PlayMode::normalPlay), appearance); } }
void ControlToolBar::PlayCurrentRegion(bool looped /* = false */) { mPlay->SetAlternate(looped); AudacityProject *p = GetActiveProject(); if (p) { if (looped) p->mLastPlayMode = loopedPlay; else p->mLastPlayMode = normalPlay; PlayPlayRegion(p->GetSel0(), p->GetSel1(), looped); } }
void ControlToolBar::PlayCurrentRegion(bool looped /* = false */, bool cutpreview /* = false */) { AudacityProject *p = GetActiveProject(); if (p) { if (looped) p->mLastPlayMode = loopedPlay; else p->mLastPlayMode = normalPlay; double playRegionStart, playRegionEnd; p->GetPlayRegion(&playRegionStart, &playRegionEnd); PlayPlayRegion(playRegionStart, playRegionEnd, looped, cutpreview); } }