2018-10-11 14:11:43 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2018 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <utils/fileutils.h>
|
2020-06-26 13:59:38 +02:00
|
|
|
#include <utils/id.h>
|
|
|
|
|
|
2018-10-11 14:11:43 +02:00
|
|
|
#include <clang/Format/Format.h>
|
|
|
|
|
|
|
|
|
|
#include <QFile>
|
|
|
|
|
|
|
|
|
|
#include <fstream>
|
|
|
|
|
|
|
|
|
|
namespace ClangFormat {
|
|
|
|
|
|
2018-11-13 11:47:02 +01:00
|
|
|
// Creates the style for the current project or the global style if needed.
|
|
|
|
|
void createStyleFileIfNeeded(bool isGlobal);
|
2018-11-08 10:35:23 +01:00
|
|
|
|
2019-03-05 13:12:44 +01:00
|
|
|
QString currentProjectUniqueId();
|
|
|
|
|
|
2019-04-25 10:40:08 +02:00
|
|
|
std::string currentProjectConfigText();
|
|
|
|
|
std::string currentGlobalConfigText();
|
|
|
|
|
|
2018-11-08 10:35:23 +01:00
|
|
|
clang::format::FormatStyle currentProjectStyle();
|
|
|
|
|
clang::format::FormatStyle currentGlobalStyle();
|
|
|
|
|
|
2018-11-13 11:47:02 +01:00
|
|
|
// Is the style from the matching .clang-format file or global one if it's not found.
|
2019-05-28 13:49:26 +02:00
|
|
|
QString configForFile(Utils::FilePath fileName);
|
|
|
|
|
clang::format::FormatStyle styleForFile(Utils::FilePath fileName);
|
2018-10-11 14:11:43 +02:00
|
|
|
|
|
|
|
|
}
|