2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 Hugues Delorme
|
2022-12-21 10:12:09 +01:00
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
2016-01-15 14:57:40 +01:00
|
|
|
|
2016-02-03 17:35:54 +01:00
|
|
|
#pragma once
|
2011-02-28 13:40:06 +01:00
|
|
|
|
|
|
|
|
#include <vcsbase/vcsbaseclientsettings.h>
|
|
|
|
|
|
2022-09-23 14:25:49 +02:00
|
|
|
namespace Bazaar::Internal {
|
2011-02-28 13:40:06 +01:00
|
|
|
|
2021-04-06 13:11:16 +02:00
|
|
|
class BazaarSettings final : public VcsBase::VcsBaseSettings
|
2011-02-28 13:40:06 +01:00
|
|
|
{
|
|
|
|
|
public:
|
2021-04-06 13:11:16 +02:00
|
|
|
BazaarSettings();
|
|
|
|
|
|
2023-05-26 09:41:47 +02:00
|
|
|
Utils::BoolAspect diffIgnoreWhiteSpace{this};
|
|
|
|
|
Utils::BoolAspect diffIgnoreBlankLines{this};
|
|
|
|
|
Utils::BoolAspect logVerbose{this};
|
|
|
|
|
Utils::BoolAspect logForward{this};
|
|
|
|
|
Utils::BoolAspect logIncludeMerges{this};
|
|
|
|
|
Utils::StringAspect logFormat{this};
|
2011-02-28 13:40:06 +01:00
|
|
|
};
|
|
|
|
|
|
2023-05-15 14:02:10 +02:00
|
|
|
BazaarSettings &settings();
|
|
|
|
|
|
2022-09-23 14:25:49 +02:00
|
|
|
} // Bazaar::Internal
|