mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
9ea32a0158
Signed-off-by: Rolf Eike Beer <eike@sf-mail.de>
20 lines
427 B
C
20 lines
427 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 exportHtmlInitLogic(const QString &filename, struct htmlExportSetting &hes);
|
|
|
|
#endif // DIVELOGEXPORTLOGIC_H
|
|
|