We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e670ff commit 07c41fdCopy full SHA for 07c41fd
python/gui/gui.sip
@@ -91,6 +91,7 @@
91
%Include qgsnumericsortlistviewitem.sip
92
%Include qgsowssourceselect.sip
93
%Include qgsprojectbadlayerguihandler.sip
94
+%Include qgsprojectionselectionwidget.sip
95
%Include qgsprojectionselector.sip
96
%Include qgsquerybuilder.sip
97
%Include qgsrasterformatsaveoptionswidget.sip
python/gui/qgsprojectionselectionwidget.sip
@@ -0,0 +1,17 @@
1
+
2
+class QgsProjectionSelectionWidget : QWidget
3
+{
4
+%TypeHeaderCode
5
+#include <qgsprojectionselectionwidget.h>
6
+%End
7
8
+ public:
9
+ explicit QgsProjectionSelectionWidget( QWidget *parent /TransferThis/ = 0 );
10
11
+ signals:
12
+ void crsChanged( QgsCoordinateReferenceSystem );
13
14
+ public slots:
15
+ void setCrs( QgsCoordinateReferenceSystem crs );
16
+ void selectCrs();
17
+};
0 commit comments