File tree 1 file changed +15
-3
lines changed
1 file changed +15
-3
lines changed Original file line number Diff line number Diff line change 23
23
24
24
#include < QSet>
25
25
26
- /* *
27
- * \class QgsGenericProjectionSelector
28
- * \brief A generic dialog to prompt the user for a Coordinate Reference System
26
+ /* *
27
+ * \ingroup gui
28
+ * A generic dialog to prompt the user for a Coordinate Reference System.
29
+ *
30
+ * Typically you will use this when you want to prompt the user for
31
+ * a coordinate system identifier e.g. from a plugin you might do this
32
+ * to get an epsg code:
33
+ * \code
34
+ * QgsGenericProjectionSelector mySelector( mQGisIface->getMainWindow() );
35
+ * mySelector.setSelectedEpsg( mEpsgId );
36
+ * if ( mySelector.exec() )
37
+ * {
38
+ * mEpsgId = mySelector.getSelectedEpsg();
39
+ * }
40
+ * \endcode
29
41
*/
30
42
31
43
class GUI_EXPORT QgsGenericProjectionSelector : public QDialog, private Ui::QgsGenericProjectionSelectorBase
You can’t perform that action at this time.
0 commit comments