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!
		
			
				
	
	
		
			47 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| class QgsOptionsDialogBase : QDialog
 | |
| {
 | |
| %TypeHeaderCode
 | |
| #include <qgsoptionsdialogbase.h>
 | |
| %End
 | |
|   public:
 | |
|     /** Constructor
 | |
|      * @param settingsKey QSettings subgroup key for saving/restore ui states, e.g. "ProjectProperties".
 | |
|      * @param parent parent object (owner)
 | |
|      * @param fl widget flags
 | |
|      * @param settings custom QSettings pointer
 | |
|      */
 | |
|     QgsOptionsDialogBase( const QString& settingsKey, QWidget* parent /TransferThis/ = 0, const Qt::WindowFlags& fl = 0, QSettings* settings = 0 );
 | |
|     ~QgsOptionsDialogBase();
 | |
| 
 | |
|     /** Set up the base ui connections for vertical tabs.
 | |
|      * @param restoreUi Whether to restore the base ui at this time.
 | |
|      * @param title the window title
 | |
|      */
 | |
|     void initOptionsBase( bool restoreUi = true, const QString& title = QString() );
 | |
| 
 | |
|     // set custom QSettings pointer if dialog used outside QGIS (in plugin)
 | |
|     void setSettings( QSettings* settings );
 | |
| 
 | |
|     /** Restore the base ui.
 | |
|      * Sometimes useful to do at end of subclass's constructor.
 | |
|      * @param title the window title (it does not need to be defined if previously given to initOptionsBase();
 | |
|      */
 | |
|     void restoreOptionsBaseUi( const QString& title = QString() );
 | |
| 
 | |
|     /** Determine if the options list is in icon only mode
 | |
|      */
 | |
|     bool iconOnly();
 | |
| 
 | |
|   protected slots:
 | |
|     void updateOptionsListVerticalTabs();
 | |
|     void optionsStackedWidget_CurrentChanged( int indx );
 | |
|     void optionsStackedWidget_WidgetRemoved( int indx );
 | |
|     void warnAboutMissingObjects();
 | |
| 
 | |
|   protected:
 | |
|     void showEvent( QShowEvent* e );
 | |
|     void paintEvent( QPaintEvent* e );
 | |
| 
 | |
|     virtual void updateWindowTitle();
 | |
| };
 |