comparison base/Layer.cpp @ 12:f67ddc287bc3

* Add ability to create empty layers for editing * Add first basic editing capability (adding points to a time instant layer) * Add various keyboard and mouse shortcuts for navigation &c * Add ability to resize a selection by dragging its edges * Add maximum zoom level
author Chris Cannam
date Thu, 26 Jan 2006 16:15:40 +0000
parents 44bbf5793d84
children 47500c27ac26
comparison
equal deleted inserted replaced
11:cb05ba39664a 12:f67ddc287bc3
23 } 23 }
24 24
25 Layer::~Layer() 25 Layer::~Layer()
26 { 26 {
27 m_view->removeLayer(this); 27 m_view->removeLayer(this);
28 }
29
30 QString
31 Layer::getPropertyContainerIconName() const
32 {
33 return LayerFactory::instance()->getLayerIconName
34 (LayerFactory::instance()->getLayerType(this));
28 } 35 }
29 36
30 void 37 void
31 Layer::setObjectName(const QString &name) 38 Layer::setObjectName(const QString &name)
32 { 39 {