1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/proj/qgsrecentcoordinatereferencesystemsmodel.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
class QgsRecentCoordinateReferenceSystemsModel : QAbstractItemModel
{
%Docstring(signature="appended")
A model for display of recently used coordinate reference systems.
.. versionadded:: 3.36
%End
%TypeHeaderCode
#include "qgsrecentcoordinatereferencesystemsmodel.h"
%End
public:
enum class CustomRole /BaseType=IntEnum/
{
Crs,
AuthId,
};
QgsRecentCoordinateReferenceSystemsModel( QObject *parent /TransferThis/ = 0 );
%Docstring
Constructor for QgsRecentCoordinateReferenceSystemsModel, with the
specified ``parent`` object.
%End
virtual Qt::ItemFlags flags( const QModelIndex &index ) const;
virtual QVariant data( const QModelIndex &index, int role ) const;
virtual int rowCount( const QModelIndex &parent = QModelIndex() ) const;
virtual int columnCount( const QModelIndex & = QModelIndex() ) const;
virtual QModelIndex index( int row, int column, const QModelIndex &parent = QModelIndex() ) const;
virtual QModelIndex parent( const QModelIndex &index ) const;
QgsCoordinateReferenceSystem crs( const QModelIndex &index ) const;
%Docstring
Returns the CRS for the corresponding ``index``.
Returns an invalid CRS if the index is not valid.
%End
};
class QgsRecentCoordinateReferenceSystemsProxyModel : QSortFilterProxyModel
{
%Docstring(signature="appended")
A sort/filter proxy model for recent coordinate reference systems.
.. versionadded:: 3.36
%End
%TypeHeaderCode
#include "qgsrecentcoordinatereferencesystemsmodel.h"
%End
public:
explicit QgsRecentCoordinateReferenceSystemsProxyModel( QObject *parent /TransferThis/ = 0 );
%Docstring
Constructor for QgsRecentCoordinateReferenceSystemsProxyModel, with the
given ``parent`` object.
%End
QgsRecentCoordinateReferenceSystemsModel *recentCoordinateReferenceSystemsModel();
%Docstring
Returns the underlying source model.
%End
void setFilters( QgsCoordinateReferenceSystemProxyModel::Filters filters );
%Docstring
Set ``filters`` that affect how CRS are filtered.
%End
void setFilterDeprecated( bool filter );
%Docstring
Sets whether deprecated CRS should be filtered from the results.
%End
void setFilterString( const QString &filter );
%Docstring
Sets a ``filter`` string, such that only coordinate reference systems
matching the specified string will be shown.
%End
QgsCoordinateReferenceSystemProxyModel::Filters filters() const;
%Docstring
Returns any filters that affect how CRS are filtered.
.. seealso:: :py:func:`setFilters`
%End
virtual bool filterAcceptsRow( int sourceRow, const QModelIndex &sourceParent ) const;
QgsCoordinateReferenceSystem crs( const QModelIndex &index ) const;
%Docstring
Returns the CRS for the corresponding ``index``.
Returns an invalid CRS if the index is not valid.
%End
};
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/proj/qgsrecentcoordinatereferencesystemsmodel.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.py again *
************************************************************************/
|