mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
69 lines
2.1 KiB
Plaintext
69 lines
2.1 KiB
Plaintext
/***************************************************************************
|
|
qgstransactiongroup.h - QgsTransactionGroup
|
|
|
|
---------------------
|
|
begin : 15.1.2016
|
|
copyright : (C) 2016 by Matthias Kuhn
|
|
email : mmatthias@opengis.ch
|
|
***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
class QgsTransactionGroup : QObject
|
|
{
|
|
%TypeHeaderCode
|
|
#include "qgstransactiongroup.h"
|
|
%End
|
|
public:
|
|
explicit QgsTransactionGroup( QObject *parent = 0 );
|
|
|
|
~QgsTransactionGroup();
|
|
|
|
/**
|
|
* Add a layer to this transaction group.
|
|
*
|
|
* Will return true if it is compatible and has been added.
|
|
*/
|
|
bool addLayer( QgsVectorLayer* layer );
|
|
|
|
/**
|
|
* Get the set of layers currently managed by this transaction group.
|
|
*
|
|
* @return Layer set
|
|
*/
|
|
QSet<QgsVectorLayer*> layers() const;
|
|
|
|
/**
|
|
* Returns true if any of the layers in this group reports a modification.
|
|
*/
|
|
bool modified() const;
|
|
|
|
/**
|
|
* Return the connection string used by this transaction group.
|
|
* Layers need be compatible when added.
|
|
*/
|
|
QString connString() const;
|
|
|
|
/**
|
|
* Return the provider key used by this transaction group.
|
|
* Layers need be compatible when added.
|
|
*/
|
|
QString providerKey() const;
|
|
|
|
/**
|
|
* Returns true if there are no layers in this transaction group.
|
|
*/
|
|
bool isEmpty() const;
|
|
|
|
signals:
|
|
/**
|
|
* Will be emitted whenever there is a commit error
|
|
*/
|
|
void commitError( const QString& msg );
|
|
};
|