Skip to content

Commit

Permalink
add SIP for QgsProjectionSelectionWidget
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Jan 5, 2015
1 parent 5e670ff commit 07c41fd
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
1 change: 1 addition & 0 deletions python/gui/gui.sip
Expand Up @@ -91,6 +91,7 @@
%Include qgsnumericsortlistviewitem.sip
%Include qgsowssourceselect.sip
%Include qgsprojectbadlayerguihandler.sip
%Include qgsprojectionselectionwidget.sip
%Include qgsprojectionselector.sip
%Include qgsquerybuilder.sip
%Include qgsrasterformatsaveoptionswidget.sip
Expand Down
17 changes: 17 additions & 0 deletions python/gui/qgsprojectionselectionwidget.sip
@@ -0,0 +1,17 @@

class QgsProjectionSelectionWidget : QWidget
{
%TypeHeaderCode
#include <qgsprojectionselectionwidget.h>
%End

public:
explicit QgsProjectionSelectionWidget( QWidget *parent /TransferThis/ = 0 );

signals:
void crsChanged( QgsCoordinateReferenceSystem );

public slots:
void setCrs( QgsCoordinateReferenceSystem crs );
void selectCrs();
};

0 comments on commit 07c41fd

Please sign in to comment.