forked from qt-creator/qt-creator
Since we also license under GPL-3.0 WITH Qt-GPL-exception-1.0,
this applies only to a hypothetical newer version of GPL, that doesn't
exist yet. If such a version emerges, we can still decide to relicense...
While at it, replace (deprecated) GPL-3.0 with more explicit GPL-3.0-only
Change was done by running
find . -type f -exec perl -pi -e "s/LicenseRef-Qt-Commercial OR GPL-3.0\+ OR GPL-3.0 WITH Qt-GPL-exception-1.0/LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0/g" {} \;
Change-Id: I5097e6ce8d10233993ee30d7e25120e2659eb10b
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
82 lines
2.9 KiB
C++
82 lines
2.9 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "behaviorsettings.h"
|
|
|
|
#include <utils/settingsutils.h>
|
|
|
|
#include <QSettings>
|
|
#include <QString>
|
|
|
|
static const char mouseHidingKey[] = "MouseHiding";
|
|
static const char mouseNavigationKey[] = "MouseNavigation";
|
|
static const char scrollWheelZoomingKey[] = "ScrollWheelZooming";
|
|
static const char constrainTooltips[] = "ConstrainTooltips";
|
|
static const char camelCaseNavigationKey[] = "CamelCaseNavigation";
|
|
static const char keyboardTooltips[] = "KeyboardTooltips";
|
|
static const char groupPostfix[] = "BehaviorSettings";
|
|
static const char smartSelectionChanging[] = "SmartSelectionChanging";
|
|
|
|
namespace TextEditor {
|
|
|
|
BehaviorSettings::BehaviorSettings() :
|
|
m_mouseHiding(true),
|
|
m_mouseNavigation(true),
|
|
m_scrollWheelZooming(true),
|
|
m_constrainHoverTooltips(false),
|
|
m_camelCaseNavigation(true),
|
|
m_keyboardTooltips(false),
|
|
m_smartSelectionChanging(true)
|
|
{
|
|
}
|
|
|
|
void BehaviorSettings::toSettings(const QString &category, QSettings *s) const
|
|
{
|
|
Utils::toSettings(QLatin1String(groupPostfix), category, s, this);
|
|
}
|
|
|
|
void BehaviorSettings::fromSettings(const QString &category, QSettings *s)
|
|
{
|
|
*this = BehaviorSettings();
|
|
Utils::fromSettings(QLatin1String(groupPostfix), category, s, this);
|
|
}
|
|
|
|
QVariantMap BehaviorSettings::toMap() const
|
|
{
|
|
return {
|
|
{mouseHidingKey, m_mouseHiding},
|
|
{mouseNavigationKey, m_mouseNavigation},
|
|
{scrollWheelZoomingKey, m_scrollWheelZooming},
|
|
{constrainTooltips, m_constrainHoverTooltips},
|
|
{camelCaseNavigationKey, m_camelCaseNavigation},
|
|
{keyboardTooltips, m_keyboardTooltips},
|
|
{smartSelectionChanging, m_smartSelectionChanging}
|
|
};
|
|
}
|
|
|
|
void BehaviorSettings::fromMap(const QVariantMap &map)
|
|
{
|
|
m_mouseHiding = map.value(mouseHidingKey, m_mouseHiding).toBool();
|
|
m_mouseNavigation = map.value(mouseNavigationKey, m_mouseNavigation).toBool();
|
|
m_scrollWheelZooming = map.value(scrollWheelZoomingKey, m_scrollWheelZooming).toBool();
|
|
m_constrainHoverTooltips = map.value(constrainTooltips, m_constrainHoverTooltips).toBool();
|
|
m_camelCaseNavigation = map.value(camelCaseNavigationKey, m_camelCaseNavigation).toBool();
|
|
m_keyboardTooltips = map.value(keyboardTooltips, m_keyboardTooltips).toBool();
|
|
m_smartSelectionChanging = map.value(smartSelectionChanging, m_smartSelectionChanging).toBool();
|
|
}
|
|
|
|
bool BehaviorSettings::equals(const BehaviorSettings &ds) const
|
|
{
|
|
return m_mouseHiding == ds.m_mouseHiding
|
|
&& m_mouseNavigation == ds.m_mouseNavigation
|
|
&& m_scrollWheelZooming == ds.m_scrollWheelZooming
|
|
&& m_constrainHoverTooltips == ds.m_constrainHoverTooltips
|
|
&& m_camelCaseNavigation == ds.m_camelCaseNavigation
|
|
&& m_keyboardTooltips == ds.m_keyboardTooltips
|
|
&& m_smartSelectionChanging == ds.m_smartSelectionChanging
|
|
;
|
|
}
|
|
|
|
} // namespace TextEditor
|
|
|