forked from qt-creator/qt-creator
Change-Id: Idc23616dd3b7bc21301471cb48e2893116b83f0d Reviewed-by: Orgad Shaneh <orgads@gmail.com>
87 lines
2.3 KiB
C++
87 lines
2.3 KiB
C++
// Copyright (C) 2016 Brian McGillion
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "mercurialsettings.h"
|
|
|
|
#include "constants.h"
|
|
#include "mercurialtr.h"
|
|
|
|
#include <utils/layoutbuilder.h>
|
|
|
|
#include <vcsbase/vcsbaseconstants.h>
|
|
|
|
using namespace Utils;
|
|
|
|
namespace Mercurial::Internal {
|
|
|
|
static MercurialSettings *theSettings;
|
|
|
|
MercurialSettings &settings()
|
|
{
|
|
return *theSettings;
|
|
}
|
|
|
|
MercurialSettings::MercurialSettings()
|
|
{
|
|
theSettings = this;
|
|
|
|
setId(VcsBase::Constants::VCS_ID_MERCURIAL);
|
|
setDisplayName(Tr::tr("Mercurial"));
|
|
setCategory(VcsBase::Constants::VCS_SETTINGS_CATEGORY);
|
|
setSettings(&settings());
|
|
|
|
setSettingsGroup("Mercurial");
|
|
setAutoApply(false);
|
|
|
|
registerAspect(&binaryPath);
|
|
binaryPath.setExpectedKind(PathChooser::ExistingCommand);
|
|
binaryPath.setDefaultValue(Constants::MERCURIALDEFAULT);
|
|
binaryPath.setDisplayName(Tr::tr("Mercurial Command"));
|
|
binaryPath.setHistoryCompleter("Bazaar.Command.History");
|
|
binaryPath.setLabelText(Tr::tr("Command:"));
|
|
|
|
registerAspect(&userName);
|
|
userName.setDisplayStyle(StringAspect::LineEditDisplay);
|
|
userName.setLabelText(Tr::tr("Default username:"));
|
|
userName.setToolTip(Tr::tr("Username to use by default on commit."));
|
|
|
|
registerAspect(&userEmail);
|
|
userEmail.setDisplayStyle(StringAspect::LineEditDisplay);
|
|
userEmail.setLabelText(Tr::tr("Default email:"));
|
|
userEmail.setToolTip(Tr::tr("Email to use by default on commit."));
|
|
|
|
registerAspect(&diffIgnoreWhiteSpace);
|
|
diffIgnoreWhiteSpace.setSettingsKey("diffIgnoreWhiteSpace");
|
|
|
|
registerAspect(&diffIgnoreBlankLines);
|
|
diffIgnoreBlankLines.setSettingsKey("diffIgnoreBlankLines");
|
|
|
|
setLayouter([this](QWidget *widget) {
|
|
using namespace Layouting;
|
|
|
|
Column {
|
|
Group {
|
|
title(Tr::tr("Configuration")),
|
|
Row { binaryPath }
|
|
},
|
|
|
|
Group {
|
|
title(Tr::tr("User")),
|
|
Form {
|
|
userName, br,
|
|
userEmail
|
|
}
|
|
},
|
|
|
|
Group {
|
|
title(Tr::tr("Miscellaneous")),
|
|
Row { logCount, timeout, st }
|
|
},
|
|
|
|
st
|
|
}.attachTo(widget);
|
|
});
|
|
}
|
|
|
|
} // Mercurial::Internal
|