annotate widgets/PropertyStack.cpp @ 728:596414d20ef0 tonioni

Fix failure to delete property stack when pane is deleted (sometimes). Fixes Tony crash bug #881, needs to go in SV as well.
author Chris Cannam
date Tue, 04 Mar 2014 15:28:32 +0000
parents d1c0abfb11be
children 558c71a802d4
rev   line source
Chris@58 1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
Chris@0 2
Chris@0 3 /*
Chris@59 4 Sonic Visualiser
Chris@59 5 An audio file viewer and annotation editor.
Chris@59 6 Centre for Digital Music, Queen Mary, University of London.
Chris@59 7 This file copyright 2006 Chris Cannam.
Chris@0 8
Chris@59 9 This program is free software; you can redistribute it and/or
Chris@59 10 modify it under the terms of the GNU General Public License as
Chris@59 11 published by the Free Software Foundation; either version 2 of the
Chris@59 12 License, or (at your option) any later version. See the file
Chris@59 13 COPYING included with this distribution for more information.
Chris@0 14 */
Chris@0 15
Chris@0 16 #include "PropertyStack.h"
Chris@0 17 #include "PropertyBox.h"
Chris@0 18 #include "base/PropertyContainer.h"
Chris@128 19 #include "view/View.h"
Chris@128 20 #include "layer/Layer.h"
Chris@242 21 #include "layer/LayerFactory.h"
Chris@190 22 #include "widgets/NotifyingTabBar.h"
Chris@289 23 #include "widgets/IconLoader.h"
Chris@377 24 #include "base/Command.h"
Chris@377 25 #include "widgets/CommandHistory.h"
Chris@0 26
Chris@0 27 #include <QIcon>
Chris@0 28 #include <QTabWidget>
Chris@0 29
Chris@0 30 #include <iostream>
Chris@0 31
Chris@36 32 //#define DEBUG_PROPERTY_STACK 1
Chris@0 33
Chris@0 34 PropertyStack::PropertyStack(QWidget *parent, View *client) :
Chris@0 35 QTabWidget(parent),
Chris@0 36 m_client(client)
Chris@0 37 {
Chris@190 38 NotifyingTabBar *bar = new NotifyingTabBar();
Chris@190 39 bar->setDrawBase(false);
Chris@190 40
Chris@190 41 connect(bar, SIGNAL(mouseEntered()), this, SLOT(mouseEnteredTabBar()));
Chris@190 42 connect(bar, SIGNAL(mouseLeft()), this, SLOT(mouseLeftTabBar()));
Chris@190 43 connect(bar, SIGNAL(activeTabClicked()), this, SLOT(activeTabClicked()));
Chris@190 44
Chris@190 45 setTabBar(bar);
Chris@190 46
Chris@242 47 #if (QT_VERSION >= 0x0402)
Chris@242 48 setElideMode(Qt::ElideNone);
Chris@241 49 tabBar()->setUsesScrollButtons(true);
Chris@241 50 tabBar()->setIconSize(QSize(16, 16));
Chris@242 51 #endif
Chris@239 52
Chris@0 53 repopulate();
Chris@0 54
Chris@0 55 connect(this, SIGNAL(currentChanged(int)),
Chris@0 56 this, SLOT(selectedContainerChanged(int)));
Chris@0 57
Chris@0 58 connect(m_client, SIGNAL(propertyContainerAdded(PropertyContainer *)),
Chris@0 59 this, SLOT(propertyContainerAdded(PropertyContainer *)));
Chris@0 60
Chris@0 61 connect(m_client, SIGNAL(propertyContainerRemoved(PropertyContainer *)),
Chris@0 62 this, SLOT(propertyContainerRemoved(PropertyContainer *)));
Chris@0 63
Chris@0 64 connect(m_client, SIGNAL(propertyContainerPropertyChanged(PropertyContainer *)),
Chris@0 65 this, SLOT(propertyContainerPropertyChanged(PropertyContainer *)));
Chris@0 66
Chris@197 67 connect(m_client, SIGNAL(propertyContainerPropertyRangeChanged(PropertyContainer *)),
Chris@197 68 this, SLOT(propertyContainerPropertyRangeChanged(PropertyContainer *)));
Chris@197 69
Chris@0 70 connect(m_client, SIGNAL(propertyContainerNameChanged(PropertyContainer *)),
Chris@0 71 this, SLOT(propertyContainerNameChanged(PropertyContainer *)));
Chris@0 72
Chris@52 73 connect(this, SIGNAL(propertyContainerSelected(View *, PropertyContainer *)),
Chris@52 74 m_client, SLOT(propertyContainerSelected(View *, PropertyContainer *)));
Chris@0 75 }
Chris@0 76
Chris@728 77 PropertyStack::~PropertyStack()
Chris@728 78 {
Chris@728 79 }
Chris@728 80
Chris@0 81 void
Chris@0 82 PropertyStack::repopulate()
Chris@0 83 {
Chris@0 84 blockSignals(true);
Chris@0 85
Chris@0 86 #ifdef DEBUG_PROPERTY_STACK
Chris@587 87 SVDEBUG << "PropertyStack::repopulate" << endl;
Chris@0 88 #endif
Chris@0 89
Chris@0 90 while (count() > 0) {
Chris@0 91 removeTab(0);
Chris@0 92 }
Chris@0 93 for (size_t i = 0; i < m_boxes.size(); ++i) {
Chris@0 94 delete m_boxes[i];
Chris@0 95 }
Chris@0 96 m_boxes.clear();
Chris@0 97
Chris@0 98 for (size_t i = 0; i < m_client->getPropertyContainerCount(); ++i) {
Chris@0 99
Chris@0 100 PropertyContainer *container = m_client->getPropertyContainer(i);
Chris@0 101 QString name = container->getPropertyContainerName();
Chris@0 102
Chris@0 103 PropertyBox *box = new PropertyBox(container);
Chris@0 104
Chris@47 105 connect(box, SIGNAL(showLayer(bool)), this, SLOT(showLayer(bool)));
Chris@189 106 connect(box, SIGNAL(contextHelpChanged(const QString &)),
Chris@189 107 this, SIGNAL(contextHelpChanged(const QString &)));
Chris@47 108
Chris@185 109 Layer *layer = dynamic_cast<Layer *>(container);
Chris@185 110 if (layer) {
Chris@185 111 box->layerVisibilityChanged(!layer->isLayerDormant(m_client));
Chris@185 112 }
Chris@185 113
Chris@242 114 QString shortName = name;
Chris@242 115
Chris@242 116 if (layer) {
Chris@242 117 shortName = LayerFactory::getInstance()->getLayerPresentationName
Chris@242 118 (LayerFactory::getInstance()->getLayerType(layer));
Chris@552 119 if (layer->getLayerPresentationName() != "") {
Chris@552 120 name = layer->getLayerPresentationName();
Chris@552 121 }
Chris@242 122 }
Chris@242 123
Chris@552 124 bool nameDiffers = (name != shortName);
Chris@242 125 shortName = QString("&%1 %2").arg(i + 1).arg(shortName);
Chris@242 126
Chris@242 127 QString iconName = container->getPropertyContainerIconName();
Chris@242 128
Chris@289 129 QIcon icon(IconLoader().load(iconName));
Chris@0 130 if (icon.isNull()) {
Chris@242 131 addTab(box, shortName);
Chris@552 132 if (nameDiffers) {
Chris@552 133 setTabToolTip(i, name);
Chris@552 134 }
Chris@0 135 } else {
Chris@0 136 addTab(box, icon, QString("&%1").arg(i + 1));
Chris@242 137 setTabToolTip(i, name);
Chris@0 138 }
Chris@0 139
Chris@0 140 m_boxes.push_back(box);
Chris@0 141 }
Chris@0 142
Chris@0 143 blockSignals(false);
Chris@0 144 }
Chris@0 145
Chris@0 146 bool
Chris@0 147 PropertyStack::containsContainer(PropertyContainer *pc) const
Chris@0 148 {
Chris@0 149 for (size_t i = 0; i < m_client->getPropertyContainerCount(); ++i) {
Chris@0 150 PropertyContainer *container = m_client->getPropertyContainer(i);
Chris@0 151 if (pc == container) return true;
Chris@0 152 }
Chris@0 153
Chris@0 154 return false;
Chris@0 155 }
Chris@0 156
Chris@19 157 int
Chris@19 158 PropertyStack::getContainerIndex(PropertyContainer *pc) const
Chris@19 159 {
Chris@723 160 // This is used to obtain an index to be passed to setCurrentIndex
Chris@723 161 // -- which is the index of the property container's box in our
Chris@723 162 // stack of boxes. That is not the same thing as the index of the
Chris@723 163 // container (i.e. the layer) in the view: the view reorders its
Chris@723 164 // containers whenever one is raised to the top, while our boxes
Chris@723 165 // remain in the same order. So we must find this container in the
Chris@723 166 // box list, not in the view.
Chris@723 167
Chris@723 168 for (size_t i = 0; i < m_boxes.size(); ++i) {
Chris@723 169 PropertyContainer *container = m_boxes[i]->getContainer();
Chris@723 170 if (pc == container) {
Chris@723 171 return i;
Chris@723 172 }
Chris@19 173 }
Chris@19 174
Chris@19 175 return false;
Chris@19 176 }
Chris@19 177
Chris@0 178 void
Chris@0 179 PropertyStack::propertyContainerAdded(PropertyContainer *)
Chris@0 180 {
Chris@0 181 if (sender() != m_client) return;
Chris@0 182 repopulate();
Chris@0 183 }
Chris@0 184
Chris@0 185 void
Chris@0 186 PropertyStack::propertyContainerRemoved(PropertyContainer *)
Chris@0 187 {
Chris@0 188 if (sender() != m_client) return;
Chris@0 189 repopulate();
Chris@0 190 }
Chris@0 191
Chris@0 192 void
Chris@0 193 PropertyStack::propertyContainerPropertyChanged(PropertyContainer *pc)
Chris@0 194 {
Chris@298 195 Layer *layer = dynamic_cast<Layer *>(pc);
Chris@0 196 for (unsigned int i = 0; i < m_boxes.size(); ++i) {
Chris@0 197 if (pc == m_boxes[i]->getContainer()) {
Chris@0 198 m_boxes[i]->propertyContainerPropertyChanged(pc);
Chris@298 199 if (layer) {
Chris@298 200 m_boxes[i]->layerVisibilityChanged
Chris@298 201 (!layer->isLayerDormant(m_client));
Chris@298 202 }
Chris@0 203 }
Chris@0 204 }
Chris@0 205 }
Chris@0 206
Chris@0 207 void
Chris@197 208 PropertyStack::propertyContainerPropertyRangeChanged(PropertyContainer *pc)
Chris@197 209 {
Chris@197 210 for (unsigned int i = 0; i < m_boxes.size(); ++i) {
Chris@197 211 if (pc == m_boxes[i]->getContainer()) {
Chris@197 212 m_boxes[i]->propertyContainerPropertyRangeChanged(pc);
Chris@197 213 }
Chris@197 214 }
Chris@197 215 }
Chris@197 216
Chris@197 217 void
Chris@249 218 PropertyStack::propertyContainerNameChanged(PropertyContainer *)
Chris@0 219 {
Chris@0 220 if (sender() != m_client) return;
Chris@0 221 repopulate();
Chris@0 222 }
Chris@0 223
Chris@377 224 class ShowLayerCommand : public QObject, public Command
Chris@377 225 {
Chris@377 226 public:
Chris@397 227 ShowLayerCommand(View *view, Layer *layer, bool show, QString name) :
Chris@397 228 m_view(view), m_layer(layer), m_show(show), m_name(name) { }
Chris@377 229 void execute() {
Chris@377 230 m_layer->showLayer(m_view, m_show);
Chris@377 231 }
Chris@377 232 void unexecute() {
Chris@377 233 m_layer->showLayer(m_view, !m_show);
Chris@377 234 }
Chris@377 235 QString getName() const {
Chris@397 236 return m_name;
Chris@377 237 }
Chris@377 238 protected:
Chris@377 239 View *m_view;
Chris@377 240 Layer *m_layer;
Chris@377 241 bool m_show;
Chris@397 242 QString m_name;
Chris@377 243 };
Chris@377 244
Chris@0 245 void
Chris@47 246 PropertyStack::showLayer(bool show)
Chris@47 247 {
Chris@47 248 QObject *obj = sender();
Chris@47 249
Chris@47 250 for (unsigned int i = 0; i < m_boxes.size(); ++i) {
Chris@47 251 if (obj == m_boxes[i]) {
Chris@47 252 Layer *layer = dynamic_cast<Layer *>(m_boxes[i]->getContainer());
Chris@47 253 if (layer) {
Chris@377 254 CommandHistory::getInstance()->addCommand
Chris@397 255 (new ShowLayerCommand(m_client, layer, show,
Chris@397 256 tr("Change Layer Visibility")));
Chris@47 257 return;
Chris@47 258 }
Chris@47 259 }
Chris@47 260 }
Chris@47 261 }
Chris@47 262
Chris@47 263 void
Chris@0 264 PropertyStack::selectedContainerChanged(int n)
Chris@0 265 {
Chris@0 266 if (n >= int(m_boxes.size())) return;
Chris@52 267 emit propertyContainerSelected(m_client, m_boxes[n]->getContainer());
Chris@0 268 }
Chris@0 269
Chris@190 270 void
Chris@190 271 PropertyStack::mouseEnteredTabBar()
Chris@190 272 {
Chris@190 273 emit contextHelpChanged(tr("Click to change the current active layer"));
Chris@190 274 }
Chris@190 275
Chris@190 276 void
Chris@190 277 PropertyStack::mouseLeftTabBar()
Chris@190 278 {
Chris@190 279 emit contextHelpChanged("");
Chris@190 280 }
Chris@190 281
Chris@190 282 void
Chris@190 283 PropertyStack::activeTabClicked()
Chris@190 284 {
Chris@190 285 emit viewSelected(m_client);
Chris@190 286 }
Chris@190 287