Mercurial > hg > svapp
changeset 187:5a40619c72d8 sv-v1.7.1
* Layer data editor window: fix sorting for columns in region model,
add Find feature
* RDF import: assign names to layers based on event types, if no suitable
labels are found in the RDF
* Add label to status bar showing the last text that was passed in current
layer (so e.g. counting 1, 2, 3, 4 if that's what beats are labelled)
* Better layout of text labels for region layers in segmentation mode when
they are close together
* Give text layer the same method for finding "nearest point" as region and
note layers, should improve its editability
author | Chris Cannam |
---|---|
date | Thu, 22 Oct 2009 15:54:21 +0000 |
parents | f694ee2567fe |
children | 32c13c46abd6 |
files | framework/MainWindowBase.cpp framework/MainWindowBase.h |
diffstat | 2 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/framework/MainWindowBase.cpp Thu Oct 15 10:50:43 2009 +0000 +++ b/framework/MainWindowBase.cpp Thu Oct 22 15:54:21 2009 +0000 @@ -2625,6 +2625,8 @@ { if (!(m_playSource && m_playSource->isPlaying()) || !getMainModel()) return; + updatePositionStatusDisplays(); + RealTime now = RealTime::frame2RealTime (frame, getMainModel()->getSampleRate());
--- a/framework/MainWindowBase.h Thu Oct 15 10:50:43 2009 +0000 +++ b/framework/MainWindowBase.h Thu Oct 22 15:54:21 2009 +0000 @@ -396,6 +396,7 @@ virtual void setupMenus() = 0; virtual void updateVisibleRangeDisplay(Pane *p) const = 0; + virtual void updatePositionStatusDisplays() const = 0; virtual bool shouldCreateNewSessionForRDFAudio(bool *) { return true; }