Files
qt-creator/src/plugins/bazaar/bazaarsettings.h
hjk 426a9a7037 Vcs: Register settings aspects more directly
Change-Id: I8049f71456b8e8573a2dcfce68a14fb12545865b
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
2023-05-30 06:00:35 +00:00

26 lines
637 B
C++

// Copyright (C) 2016 Hugues Delorme
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <vcsbase/vcsbaseclientsettings.h>
namespace Bazaar::Internal {
class BazaarSettings final : public VcsBase::VcsBaseSettings
{
public:
BazaarSettings();
Utils::BoolAspect diffIgnoreWhiteSpace{this};
Utils::BoolAspect diffIgnoreBlankLines{this};
Utils::BoolAspect logVerbose{this};
Utils::BoolAspect logForward{this};
Utils::BoolAspect logIncludeMerges{this};
Utils::StringAspect logFormat{this};
};
BazaarSettings &settings();
} // Bazaar::Internal