comparison base/ViewManager.cpp @ 60:3086ff194ea0

* More structural work on feature extraction plugin C <-> C++ adapter * Allow use of LADSPA/DSSI plugins with control outputs as feature extraction plugins (DSSI with MIDI output still to come) * Reorder labels on spectrogram status box * Minor tweaks in doc etc.
author Chris Cannam
date Mon, 27 Mar 2006 15:03:02 +0000
parents 709d63d90028
children e1aad27029e3
comparison
equal deleted inserted replaced
59:9705a1978ecc 60:3086ff194ea0
74 void 74 void
75 ViewManager::setPlaybackFrame(unsigned long f) 75 ViewManager::setPlaybackFrame(unsigned long f)
76 { 76 {
77 if (m_playbackFrame != f) { 77 if (m_playbackFrame != f) {
78 m_playbackFrame = f; 78 m_playbackFrame = f;
79 emit playbackFrameChanged(f);
79 if (m_playSource && m_playSource->isPlaying()) { 80 if (m_playSource && m_playSource->isPlaying()) {
80 m_playSource->play(f); 81 m_playSource->play(f);
81 } 82 }
82 emit playbackFrameChanged(f);
83 } 83 }
84 } 84 }
85 85
86 bool 86 bool
87 ViewManager::haveInProgressSelection() const 87 ViewManager::haveInProgressSelection() const