comparison base/View.cpp @ 65:e1aad27029e3

* Add stub for item-edit dialog (for editing properties of an item on double- click) -- doesn't actually do anything yet * Add code to invoke said non-working item-edit dialog on double-click in time-value, time-instants and note layers * Add overlay mode (no text, basic text, all text)
author Chris Cannam
date Thu, 30 Mar 2006 15:00:22 +0000
parents 709d63d90028
children c983dda79f72
comparison
equal deleted inserted replaced
64:4d59dc469b0f 65:e1aad27029e3
453 this, SLOT(toolModeChanged())); 453 this, SLOT(toolModeChanged()));
454 connect(m_manager, SIGNAL(selectionChanged()), 454 connect(m_manager, SIGNAL(selectionChanged()),
455 this, SLOT(selectionChanged())); 455 this, SLOT(selectionChanged()));
456 connect(m_manager, SIGNAL(inProgressSelectionChanged()), 456 connect(m_manager, SIGNAL(inProgressSelectionChanged()),
457 this, SLOT(selectionChanged())); 457 this, SLOT(selectionChanged()));
458 connect(m_manager, SIGNAL(overlayModeChanged()),
459 this, SLOT(update()));
458 460
459 connect(this, SIGNAL(centreFrameChanged(void *, unsigned long, bool)), 461 connect(this, SIGNAL(centreFrameChanged(void *, unsigned long, bool)),
460 m_manager, SIGNAL(centreFrameChanged(void *, unsigned long, bool))); 462 m_manager, SIGNAL(centreFrameChanged(void *, unsigned long, bool)));
461 connect(this, SIGNAL(zoomLevelChanged(void *, unsigned long, bool)), 463 connect(this, SIGNAL(zoomLevelChanged(void *, unsigned long, bool)),
462 m_manager, SIGNAL(zoomLevelChanged(void *, unsigned long, bool))); 464 m_manager, SIGNAL(zoomLevelChanged(void *, unsigned long, bool)));