mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-17 00:04:02 -04:00
used as a generic api for registering actions which can apply to a specific map layer or layer type. Create a QgsMapLayerAction for setting features as the current atlas feature for compositions. This work was kindly sponsored by SIGE (www.sige.ch).
149 lines
3.4 KiB
Plaintext
149 lines
3.4 KiB
Plaintext
class QgsDualView : QStackedWidget
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsdualview.h>
|
|
%End
|
|
|
|
public:
|
|
/**
|
|
* The view modes, in which this widget can present information.
|
|
* Relates to the QStackedWidget stacks.
|
|
*
|
|
*/
|
|
enum ViewMode
|
|
{
|
|
/**
|
|
* Shows the features and attributes in a table layout
|
|
*/
|
|
AttributeTable,
|
|
/**
|
|
* Show a list of the features, where one can be chosen
|
|
* and the according attribute dialog will be presented
|
|
* in the neighbouring frame.
|
|
*/
|
|
AttributeEditor
|
|
};
|
|
|
|
/**
|
|
* @brief Constructor
|
|
* @param parent The parent widget
|
|
*/
|
|
explicit QgsDualView( QWidget* parent = 0 );
|
|
virtual ~QgsDualView();
|
|
|
|
/**
|
|
* Change the current view mode.
|
|
*
|
|
* @param view The view mode to set
|
|
*/
|
|
void setView( ViewMode view );
|
|
|
|
/**
|
|
* Set the filter mode
|
|
*
|
|
* @param filterMode
|
|
*/
|
|
void setFilterMode( QgsAttributeTableFilterModel::FilterMode filterMode );
|
|
|
|
/**
|
|
* Toggle the selectedOnTop flag. If enabled, selected features will be moved to top.
|
|
*
|
|
* @param selectedOnTop True: Show selected features on top.
|
|
* False: Use defined sorting column.
|
|
*/
|
|
void setSelectedOnTop( bool selectedOnTop );
|
|
|
|
/**
|
|
* Returns the number of features on the layer.
|
|
*
|
|
* @return Number of features
|
|
*/
|
|
int featureCount();
|
|
|
|
/**
|
|
* Returns the number of features which are currently visible, according to the
|
|
* filter restrictions
|
|
*
|
|
* @return Number of features
|
|
*/
|
|
int filteredFeatureCount();
|
|
|
|
/**
|
|
* Set a list of currently visible features
|
|
*
|
|
* @param filteredFeatures A list of feature ids
|
|
*
|
|
*/
|
|
void setFilteredFeatures( QgsFeatureIds filteredFeatures );
|
|
|
|
/**
|
|
* Returns the model which has the information about all features (not only filtered)
|
|
*
|
|
* @return The master model
|
|
*/
|
|
QgsAttributeTableModel* masterModel() const;
|
|
|
|
protected:
|
|
/**
|
|
* Initializes widgets which depend on the attributes of this layer
|
|
*/
|
|
void columnBoxInit();
|
|
|
|
virtual void hideEvent( QHideEvent * );
|
|
virtual void focusOutEvent( QFocusEvent * );
|
|
|
|
public slots:
|
|
/**
|
|
* @brief Set the current edit selection in the {@link AttributeEditor} mode.
|
|
*
|
|
* @param fids A list of edited features (Currently only one at a time is supported)
|
|
*/
|
|
void setCurrentEditSelection( const QgsFeatureIds& fids );
|
|
|
|
/**
|
|
* @brief saveEditChanges
|
|
*/
|
|
|
|
void saveEditChanges();
|
|
|
|
signals:
|
|
/**
|
|
* Is emitted, whenever the display expression is successfully changed
|
|
* @param expression The expression that was applied
|
|
*/
|
|
void displayExpressionChanged( const QString expression );
|
|
|
|
/**
|
|
* Is emitted, whenever the filter changes
|
|
*/
|
|
void filterChanged();
|
|
};
|
|
|
|
class QgsAttributeTableAction : QAction
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsdualview.h>
|
|
%End
|
|
|
|
public:
|
|
QgsAttributeTableAction( const QString &name, QgsDualView *dualView, int action, const QModelIndex &fieldIdx );
|
|
|
|
public slots:
|
|
void execute();
|
|
void featureForm();
|
|
};
|
|
|
|
class QgsAttributeTableMapLayerAction : QAction
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsdualview.h>
|
|
%End
|
|
|
|
public:
|
|
QgsAttributeTableMapLayerAction( const QString &name, QgsDualView *dualView, QgsMapLayerAction* action, const QModelIndex &fieldIdx );
|
|
|
|
public slots:
|
|
void execute();
|
|
|
|
};
|