forked from qt-creator/qt-creator
Using expected removes a bunch of handling code. Change-Id: Id524912d82aa693fbb39c7e7fa34abd77153f92e Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Orgad Shaneh <orgads@gmail.com>
56 lines
1.6 KiB
C++
56 lines
1.6 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
|
|
|
|
#pragma once
|
|
|
|
#include <vcsbase/vcsbaseclientsettings.h>
|
|
|
|
namespace Git::Internal {
|
|
|
|
enum CommitType
|
|
{
|
|
SimpleCommit,
|
|
AmendCommit,
|
|
FixupCommit
|
|
};
|
|
|
|
// Todo: Add user name and password?
|
|
class GitSettings final : public VcsBase::VcsBaseSettings
|
|
{
|
|
public:
|
|
GitSettings();
|
|
|
|
Utils::BoolAspect pullRebase{this};
|
|
Utils::BoolAspect showTags{this};
|
|
Utils::BoolAspect omitAnnotationDate{this};
|
|
Utils::BoolAspect ignoreSpaceChangesInDiff{this};
|
|
Utils::BoolAspect ignoreSpaceChangesInBlame{this};
|
|
Utils::IntegerAspect blameMoveDetection{this};
|
|
Utils::BoolAspect diffPatience{this};
|
|
Utils::BoolAspect winSetHomeEnvironment{this};
|
|
Utils::StringAspect gitkOptions{this};
|
|
Utils::BoolAspect logDiff{this};
|
|
Utils::FilePathAspect repositoryBrowserCmd{this};
|
|
Utils::BoolAspect graphLog{this};
|
|
Utils::BoolAspect colorLog{this};
|
|
Utils::BoolAspect firstParent{this};
|
|
Utils::BoolAspect followRenames{this};
|
|
Utils::IntegerAspect lastResetIndex{this};
|
|
Utils::BoolAspect refLogShowDate{this};
|
|
Utils::BoolAspect instantBlame{this};
|
|
Utils::BoolAspect instantBlameIgnoreSpaceChanges{this};
|
|
Utils::BoolAspect instantBlameIgnoreLineMoves{this};
|
|
|
|
mutable Utils::FilePath resolvedBinPath;
|
|
mutable bool tryResolve = true;
|
|
|
|
Utils::expected_str<Utils::FilePath> gitExecutable() const;
|
|
|
|
static QString trIgnoreWhitespaceChanges();
|
|
static QString trIgnoreLineMoves();
|
|
};
|
|
|
|
GitSettings &settings();
|
|
|
|
} // Git::Internal
|