Mercurial > hg > svgui
annotate view/view.pro @ 552:2e8194a30f40 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 | 44f391ec2172 |
children |
rev | line source |
---|---|
Chris@128 | 1 TEMPLATE = lib |
Chris@128 | 2 |
Chris@128 | 3 SV_UNIT_PACKAGES = |
Chris@528 | 4 load(../prf/sv.prf) |
Chris@128 | 5 |
Chris@128 | 6 CONFIG += sv staticlib qt thread warn_on stl rtti exceptions |
Chris@128 | 7 QT += xml |
Chris@128 | 8 |
Chris@128 | 9 TARGET = svview |
Chris@128 | 10 |
Chris@128 | 11 DEPENDPATH += . .. |
Chris@128 | 12 INCLUDEPATH += . .. |
Chris@128 | 13 OBJECTS_DIR = tmp_obj |
Chris@128 | 14 MOC_DIR = tmp_moc |
Chris@128 | 15 |
Chris@128 | 16 # Input |
Chris@173 | 17 HEADERS += Overview.h \ |
Chris@173 | 18 Pane.h \ |
Chris@173 | 19 PaneStack.h \ |
Chris@173 | 20 View.h \ |
Chris@173 | 21 ViewManager.h |
Chris@173 | 22 SOURCES += Overview.cpp \ |
Chris@173 | 23 Pane.cpp \ |
Chris@173 | 24 PaneStack.cpp \ |
Chris@173 | 25 View.cpp \ |
Chris@173 | 26 ViewManager.cpp |