QGIS/python/gui/qgsprojectionselectiontreewidget.sip
Denis Rouzaud 93971d5ed3 [sip] align pointer and reference in blacklisted files
this will facilitate sip diff checking
2017-05-01 17:49:43 +02:00

38 lines
790 B
Plaintext

class QgsProjectionSelectionTreeWidget : QWidget
{
%TypeHeaderCode
#include <qgsprojectionselectiontreewidget.h>
%End
public:
QgsProjectionSelectionTreeWidget( QWidget *parent /TransferThis/ = 0 );
~QgsProjectionSelectionTreeWidget();
QgsCoordinateReferenceSystem crs() const;
void setShowNoProjection( bool show );
bool showNoProjection() const;
bool hasValidSelection() const;
public slots:
void setCrs( const QgsCoordinateReferenceSystem &crs );
void setOgcWmsCrsFilter( const QSet<QString> &crsFilter );
void pushProjectionToFront();
signals:
void crsSelected();
void initialized();
void projectionDoubleClicked();
protected:
void showEvent( QShowEvent *event );
void resizeEvent( QResizeEvent *event );
};