mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			418 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			418 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef WINDOWTITLEUPDATE_H
 | |
| #define WINDOWTITLEUPDATE_H
 | |
| 
 | |
| #include <QObject>
 | |
| 
 | |
| class WindowTitleUpdate : public QObject
 | |
| {
 | |
| 	Q_OBJECT
 | |
| public:
 | |
| 	explicit WindowTitleUpdate(QObject *parent = 0);
 | |
| 	~WindowTitleUpdate();
 | |
| 	static WindowTitleUpdate *instance();
 | |
| 	void emitSignal();
 | |
| signals:
 | |
| 	void updateTitle();
 | |
| private:
 | |
| 	static WindowTitleUpdate *m_instance;
 | |
| };
 | |
| 
 | |
| #endif // WINDOWTITLEUPDATE_H
 |