comparison base/ViewManager.cpp @ 34:aaf73f7309f2

* Add "Export Audio File" option * Make note layer align in frequency with any spectrogram layer on the same view (if it's set to frequency mode) * Start to implement mouse editing for ranges of points by dragging the selection * First scrappy attempt at a vertical scale for time value layer
author Chris Cannam
date Mon, 27 Feb 2006 17:34:41 +0000
parents 4b16526b011b
children 935a2419a77c
comparison
equal deleted inserted replaced
33:51e158b505da 34:aaf73f7309f2
102 { 102 {
103 m_inProgressSelection = Selection(); 103 m_inProgressSelection = Selection();
104 emit inProgressSelectionChanged(); 104 emit inProgressSelectionChanged();
105 } 105 }
106 106
107 const MultiSelection &
108 ViewManager::getSelection() const
109 {
110 return m_selections;
111 }
112
107 const MultiSelection::SelectionList & 113 const MultiSelection::SelectionList &
108 ViewManager::getSelections() const 114 ViewManager::getSelections() const
109 { 115 {
110 return m_selections.getSelections(); 116 return m_selections.getSelections();
111 } 117 }