mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-03-31 12:55:33 +08:00
76 lines
2.3 KiB
C++
76 lines
2.3 KiB
C++
/* Copyright (C) 2018
|
|
* swift project Community / Contributors
|
|
*
|
|
* This file is part of swift project. It is subject to the license terms in the LICENSE file found in the top-level
|
|
* directory of this distribution. No part of swift project, including this file, may be copied, modified, propagated,
|
|
* or distributed except according to the terms contained in the LICENSE file.
|
|
*/
|
|
|
|
//! \file
|
|
|
|
#ifndef BLACKMISC_CRASHSETTINGS_H
|
|
#define BLACKMISC_CRASHSETTINGS_H
|
|
|
|
#include "blackmisc/valueobject.h"
|
|
|
|
namespace BlackMisc
|
|
{
|
|
namespace Settings
|
|
{
|
|
/*!
|
|
* Crash info. Details about crash context.
|
|
*/
|
|
class BLACKMISC_EXPORT CCrashSettings : public CValueObject<CCrashSettings>
|
|
{
|
|
public:
|
|
//! Properties by index
|
|
enum ColumnIndex
|
|
{
|
|
IndexEnabled = CPropertyIndex::GlobalIndexCCrashSettings,
|
|
IndexPrivateInfo
|
|
};
|
|
|
|
//! Default constructor.
|
|
CCrashSettings();
|
|
|
|
//! Is enabled?
|
|
bool isEnabled() const { return m_enabled; }
|
|
|
|
//! Set enabled
|
|
void setEnabled(bool enabled) { m_enabled = enabled; }
|
|
|
|
//! With privacy info
|
|
bool withPrivacyInfo() const { return m_privacyInfo; }
|
|
|
|
//! Set privacy info
|
|
void setPrivacyInfo(bool privacy) { m_privacyInfo = privacy; }
|
|
|
|
//! \copydoc BlackMisc::Mixin::String::toQString
|
|
QString convertToQString(bool i18n = false) const;
|
|
|
|
//! \copydoc BlackMisc::Mixin::Index::propertyByIndex
|
|
CVariant propertyByIndex(const CPropertyIndex &index) const;
|
|
|
|
//! \copydoc BlackMisc::Mixin::Index::setPropertyByIndex
|
|
void setPropertyByIndex(const CPropertyIndex &index, const CVariant &variant);
|
|
|
|
//! \copydoc BlackMisc::Mixin::Index::comparePropertyByIndex
|
|
int comparePropertyByIndex(const CPropertyIndex &index, const CCrashSettings &compareValue) const;
|
|
|
|
private:
|
|
bool m_enabled = false;
|
|
bool m_privacyInfo = false;
|
|
|
|
BLACK_METACLASS(
|
|
CCrashSettings,
|
|
BLACK_METAMEMBER(enabled),
|
|
BLACK_METAMEMBER(privacyInfo)
|
|
);
|
|
};
|
|
} // ns
|
|
} // ns
|
|
|
|
Q_DECLARE_METATYPE(BlackMisc::Settings::CCrashSettings)
|
|
|
|
#endif // guard
|