mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
Now all classes and members are either exposed to bindings or marked as "not available in Python bindings" in the docs. Drop test thresholds to 0. Now it should be much easier to determine what missing members have been added which are causing test failures.
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
/**
|
|
* Listens to the updates in map layer registry and does changes in layer tree.
|
|
*
|
|
* When connected to a layer tree, any layers added to the map layer registry
|
|
* will be also added to the layer tree. Similarly, map layers that are removed
|
|
* from registry will be removed from the layer tree.
|
|
*
|
|
* If a layer is completely removed from the layer tree, it will be also removed
|
|
* from the map layer registry.
|
|
*
|
|
* @note added in 2.4
|
|
*/
|
|
class QgsLayerTreeRegistryBridge : QObject
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgslayertreeregistrybridge.h>
|
|
%End
|
|
|
|
public:
|
|
explicit QgsLayerTreeRegistryBridge( QgsLayerTreeGroup* root, QObject *parent /TransferThis/ = 0 );
|
|
|
|
void setEnabled( bool enabled );
|
|
bool isEnabled() const;
|
|
|
|
void setNewLayersVisible( bool enabled );
|
|
bool newLayersVisible() const;
|
|
|
|
//! Set where the new layers should be inserted - can be used to follow current selection.
|
|
//! By default it is root group with zero index.
|
|
void setLayerInsertionPoint( QgsLayerTreeGroup* parentGroup, int index );
|
|
|
|
signals:
|
|
//! Tell others we have just added layers to the tree (used in QGIS to auto-select first newly added layer)
|
|
//! @note added in 2.6
|
|
void addedLayersToLayerTree( const QList<QgsMapLayer*>& layers );
|
|
|
|
protected slots:
|
|
void layersAdded( const QList<QgsMapLayer*>& layers );
|
|
void layersWillBeRemoved( const QStringList& layerIds );
|
|
|
|
void groupWillRemoveChildren( QgsLayerTreeNode* node, int indexFrom, int indexTo );
|
|
void groupRemovedChildren();
|
|
|
|
void removeLayersFromRegistry( const QStringList& layerIds );
|
|
|
|
};
|