comparison widgets/PropertyStack.cpp @ 189:5b7472db612b

* Add large chunks of context help in the optional status bar * Add an extra overlay mode in which even the centre frame is disabled * Fixes to FTP retrieval
author Chris Cannam
date Fri, 19 Jan 2007 13:13:14 +0000
parents dd932fe5f3ff
children 53835534a9d3
comparison
equal deleted inserted replaced
188:dd573e090eed 189:5b7472db612b
76 QString iconName = container->getPropertyContainerIconName(); 76 QString iconName = container->getPropertyContainerIconName();
77 77
78 PropertyBox *box = new PropertyBox(container); 78 PropertyBox *box = new PropertyBox(container);
79 79
80 connect(box, SIGNAL(showLayer(bool)), this, SLOT(showLayer(bool))); 80 connect(box, SIGNAL(showLayer(bool)), this, SLOT(showLayer(bool)));
81 connect(box, SIGNAL(contextHelpChanged(const QString &)),
82 this, SIGNAL(contextHelpChanged(const QString &)));
81 83
82 Layer *layer = dynamic_cast<Layer *>(container); 84 Layer *layer = dynamic_cast<Layer *>(container);
83 if (layer) { 85 if (layer) {
84 box->layerVisibilityChanged(!layer->isLayerDormant(m_client)); 86 box->layerVisibilityChanged(!layer->isLayerDormant(m_client));
85 } 87 }