2017-09-26 16:00:30 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 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
|
|
|
|
|
|
2021-08-30 10:58:08 +02:00
|
|
|
#include <cppeditor/refactoringengineinterface.h>
|
|
|
|
|
#include <cppeditor/cppcursorinfo.h>
|
2018-02-21 13:00:06 +01:00
|
|
|
|
|
|
|
|
#include <QFutureWatcher>
|
2017-09-26 16:00:30 +02:00
|
|
|
|
|
|
|
|
namespace ClangBackEnd {
|
|
|
|
|
class RefactoringClientInterface;
|
|
|
|
|
class RefactoringServerInterface;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace ClangCodeModel {
|
2019-02-06 16:17:03 +01:00
|
|
|
namespace Internal {
|
2017-09-26 16:00:30 +02:00
|
|
|
|
2021-08-30 10:58:08 +02:00
|
|
|
class RefactoringEngine : public CppEditor::RefactoringEngineInterface
|
2017-09-26 16:00:30 +02:00
|
|
|
{
|
|
|
|
|
public:
|
2021-08-30 10:58:08 +02:00
|
|
|
void startLocalRenaming(const CppEditor::CursorInEditor &data,
|
|
|
|
|
const CppEditor::ProjectPart *projectPart,
|
2017-09-26 16:00:30 +02:00
|
|
|
RenameCallback &&renameSymbolsCallback) override;
|
2021-08-30 10:58:08 +02:00
|
|
|
void globalRename(const CppEditor::CursorInEditor &cursor, CppEditor::UsagesCallback &&callback,
|
2021-05-18 12:59:15 +02:00
|
|
|
const QString &replacement) override;
|
2021-08-30 10:58:08 +02:00
|
|
|
void findUsages(const CppEditor::CursorInEditor &cursor,
|
|
|
|
|
CppEditor::UsagesCallback &&callback) const override;
|
|
|
|
|
void globalFollowSymbol(const CppEditor::CursorInEditor &cursor,
|
2021-05-19 11:12:07 +02:00
|
|
|
::Utils::ProcessLinkCallback &&callback,
|
|
|
|
|
const CPlusPlus::Snapshot &snapshot,
|
|
|
|
|
const CPlusPlus::Document::Ptr &doc,
|
2021-08-30 10:58:08 +02:00
|
|
|
CppEditor::SymbolFinder *symbolFinder,
|
2021-05-19 11:12:07 +02:00
|
|
|
bool inNextSplit) const override;
|
2018-02-21 13:00:06 +01:00
|
|
|
|
|
|
|
|
private:
|
2021-08-30 10:58:08 +02:00
|
|
|
using FutureCursorWatcher = QFutureWatcher<CppEditor::CursorInfo>;
|
2018-04-23 12:15:42 +02:00
|
|
|
std::unique_ptr<FutureCursorWatcher> m_watcher;
|
2017-09-26 16:00:30 +02:00
|
|
|
};
|
|
|
|
|
|
2019-02-06 16:17:03 +01:00
|
|
|
} // namespace Internal
|
2017-09-26 16:00:30 +02:00
|
|
|
} // namespace ClangRefactoring
|