-
Notifications
You must be signed in to change notification settings - Fork 4
/
ccPersistentSettings.h
44 lines (39 loc) · 2.59 KB
/
ccPersistentSettings.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//##########################################################################
//# #
//# CLOUDCOMPARE #
//# #
//# This program is free software; you can redistribute it and/or modify #
//# it under the terms of the GNU General Public License as published by #
//# the Free Software Foundation; version 2 of the License. #
//# #
//# This program is distributed in the hope that it will be useful, #
//# but WITHOUT ANY WARRANTY; without even the implied warranty of #
//# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
//# GNU General Public License for more details. #
//# #
//# COPYRIGHT: EDF R&D / TELECOM ParisTech (ENST-TSI) #
//# #
//##########################################################################
#ifndef CC_PERSISTENT_SETTINGS_HEADER
#define CC_PERSISTENT_SETTINGS_HEADER
//Qt
#include <QString>
//! Persistent settings key (to be used with QSettings)
class ccPS
{
public:
static inline const QString LoadFile () { return "LoadFile"; }
static inline const QString SaveFile () { return "SaveFile"; }
static inline const QString MainWinGeom () { return "mainWindowGeometry"; }
static inline const QString MainWinState () { return "mainWindowState"; }
static inline const QString CurrentPath () { return "currentPath"; }
static inline const QString SelectedInputFilter () { return "selectedInputFilter"; }
static inline const QString SelectedOutputFilterCloud () { return "selectedOutputFilterCloud"; }
static inline const QString SelectedOutputFilterMesh () { return "selectedOutputFilterMesh"; }
static inline const QString SelectedOutputFilterImage () { return "selectedOutputFilterImage"; }
static inline const QString SelectedOutputFilterPoly () { return "selectedOutputFilterPoly"; }
static inline const QString DuplicatePointsGroup () { return "duplicatePoints"; }
static inline const QString DuplicatePointsMinDist () { return "minDist"; }
static inline const QString HeightGridGeneration () { return "HeightGridGeneration"; }
};
#endif //CC_PERSISTENT_SETTINGS_HEADER