| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- #pragma once
- //##########################################################################
- //# #
- //# 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 or later 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: Daniel Girardeau-Montaut #
- //# #
- //##########################################################################
- #include "CCAppCommon.h"
- //Qt
- #include <QString>
- //! Main application options
- class CCAPPCOMMON_LIB_API ccOptions
- {
- public: //parameters
- //! Whether to display the normals by default or not
- bool normalsDisplayedByDefault;
- //! Use native load/save dialogs
- bool useNativeDialogs;
- //! Should we ask for confirmation when user clicked to quit the app ?
- bool confirmQuit;
- public: //methods
- //! Default constructor
- ccOptions();
- //! Resets parameters to default values
- void reset();
- //! Loads from persistent DB
- void fromPersistentSettings();
- //! Saves to persistent DB
- void toPersistentSettings() const;
- public: //static methods
- //! Returns the stored values of each parameter.
- static const ccOptions& Instance() { return InstanceNonConst(); }
- //! Release unique instance (if any)
- static void ReleaseInstance();
- //! Sets parameters
- static void Set(const ccOptions& options);
- protected: //methods
-
- //! Returns the stored values of each parameter.
- static ccOptions& InstanceNonConst();
- };
|