diff view/View.cpp @ 132:5d3a483856ff

* Add Thumbwheel widget for all our zooming needs * Use QSettings to save/restore window size and position -- precursor to switching our preferences to QSettings as well -- wish I'd noticed it sooner * Only suspend writes (not reads from the underlying cache objects) from the fft caches when repainting the spectrogram -- performance should now be significantly better
author Chris Cannam
date Thu, 03 Aug 2006 15:40:11 +0000
parents eaae73b6bd28
children 9e6b3e239b9d
line wrap: on
line diff
--- a/view/View.cpp	Thu Aug 03 12:42:15 2006 +0000
+++ b/view/View.cpp	Thu Aug 03 15:40:11 2006 +0000
@@ -923,10 +923,10 @@
     bool metUnscrollable = false;
 
     for (LayerList::const_iterator i = m_layers.begin(); i != m_layers.end(); ++i) {
-        std::cerr << "View::getScrollableBackLayers: calling isLayerDormant on layer " << *i << std::endl;
-        std::cerr << "(name is " << (*i)->objectName().toStdString() << ")"
-                  << std::endl;
-        std::cerr << "View::getScrollableBackLayers: I am " << this << std::endl;
+//        std::cerr << "View::getScrollableBackLayers: calling isLayerDormant on layer " << *i << std::endl;
+//        std::cerr << "(name is " << (*i)->objectName().toStdString() << ")"
+//                  << std::endl;
+//        std::cerr << "View::getScrollableBackLayers: I am " << this << std::endl;
 	if ((*i)->isLayerDormant(this)) continue;
 	if ((*i)->isLayerOpaque()) {
 	    // You can't see anything behind an opaque layer!
@@ -1069,6 +1069,9 @@
 	    } else {
 
 		i->second->setText(i->first->getPropertyContainerName());
+
+//                std::cerr << this << "::checkProgress: completion " << completion << std::endl;
+
 		i->second->setValue(completion);
 		i->second->move(0, ph - i->second->height());