mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
	
		
			506 B
		
	
	
	
		
			C
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef DIVELOGEXPORTLOGIC_H
 | |
| #define DIVELOGEXPORTLOGIC_H
 | |
| 
 | |
| struct htmlExportSetting {
 | |
| 	bool exportPhotos;
 | |
| 	bool selectedOnly;
 | |
| 	bool listOnly;
 | |
| 	QString fontFamily;
 | |
| 	QString fontSize;
 | |
| 	int themeSelection;
 | |
| 	bool subsurfaceNumbers;
 | |
| 	bool yearlyStatistics;
 | |
| 	QString themeFile;
 | |
| };
 | |
| 
 | |
| void file_copy_and_overwrite(const QString &fileName, const QString &newName);
 | |
| void exportHtmlInitLogic(const QString &filename, struct htmlExportSetting &hes);
 | |
| 
 | |
| #endif // DIVELOGEXPORTLOGIC_H
 | |
| 
 |