mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-10-30 00:07:09 -04:00 
			
		
		
		
	Rationale: - there was a lot of large objects passed by value, so potentially there's a speed bump from this - even for implicitly shared classes like QString/QList there's still a (small) cost for copying the objects when there's no reason to - it's the right thing to do!
		
			
				
	
	
		
			31 lines
		
	
	
		
			852 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			852 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| class QgsScaleVisibilityDialog : QObject
 | |
| {
 | |
| %TypeHeaderCode
 | |
| #include <qgsscalevisibilitydialog.h>
 | |
| %End
 | |
| 
 | |
|   public:
 | |
|     explicit QgsScaleVisibilityDialog( QWidget *parent /TransferThis/ = 0, const QString& title = QString(), QgsMapCanvas* mapCanvas = 0 );
 | |
| 
 | |
|     //! return if scale visibilty is enabled
 | |
|     bool hasScaleVisibility();
 | |
| 
 | |
|     //! return minimum scale (true scale, not scale denominator)
 | |
|     double minimumScale();
 | |
| 
 | |
|     //! return maximum scale (true scale, not scale denominator)
 | |
|     double maximumScale();
 | |
| 
 | |
| 
 | |
|   public slots:
 | |
|     //! set if scale visibility is enabled
 | |
|     void setScaleVisiblity( bool hasScaleVisibility );
 | |
| 
 | |
|     //! set minimum scale (true scale, not scale denominator)
 | |
|     void setMinimumScale( double minScale );
 | |
| 
 | |
|     //! set maximum scale (true scale, not scale denominator)
 | |
|     void setMaximumScale( double maxScale );
 | |
| 
 | |
| };
 |