forked from qt-creator/qt-creator
Change-Id: I169da93b5184351cb915d4c198fd33318fcfe06f Reviewed-by: hjk <hjk@qt.io> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
60 lines
1.8 KiB
C++
60 lines
1.8 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
|
|
|
#include "cmakefilecompletionassist.h"
|
|
|
|
#include "cmakekitinformation.h"
|
|
#include "cmakeprojectconstants.h"
|
|
#include "cmaketool.h"
|
|
|
|
#include <projectexplorer/project.h>
|
|
#include <projectexplorer/session.h>
|
|
#include <projectexplorer/target.h>
|
|
#include <texteditor/codeassist/assistinterface.h>
|
|
|
|
#include <QFileInfo>
|
|
|
|
using namespace TextEditor;
|
|
using namespace ProjectExplorer;
|
|
|
|
namespace CMakeProjectManager::Internal {
|
|
|
|
class CMakeFileCompletionAssist : public TextEditor::KeywordsCompletionAssistProcessor
|
|
{
|
|
public:
|
|
CMakeFileCompletionAssist();
|
|
|
|
TextEditor::IAssistProposal *perform(const TextEditor::AssistInterface *interface) final;
|
|
};
|
|
|
|
CMakeFileCompletionAssist::CMakeFileCompletionAssist() :
|
|
KeywordsCompletionAssistProcessor(Keywords())
|
|
{
|
|
setSnippetGroup(Constants::CMAKE_SNIPPETS_GROUP_ID);
|
|
setDynamicCompletionFunction(&TextEditor::pathComplete);
|
|
}
|
|
|
|
IAssistProposal *CMakeFileCompletionAssist::perform(const AssistInterface *interface)
|
|
{
|
|
Keywords kw;
|
|
const Utils::FilePath &filePath = interface->filePath();
|
|
if (!filePath.isEmpty() && filePath.toFileInfo().isFile()) {
|
|
Project *p = SessionManager::projectForFile(filePath);
|
|
if (p && p->activeTarget()) {
|
|
CMakeTool *cmake = CMakeKitAspect::cmakeTool(p->activeTarget()->kit());
|
|
if (cmake && cmake->isValid())
|
|
kw = cmake->keywords();
|
|
}
|
|
}
|
|
|
|
setKeywords(kw);
|
|
return KeywordsCompletionAssistProcessor::perform(interface);
|
|
}
|
|
|
|
IAssistProcessor *CMakeFileCompletionAssistProvider::createProcessor(const AssistInterface *) const
|
|
{
|
|
return new CMakeFileCompletionAssist;
|
|
}
|
|
|
|
} // CMakeProjectManager::Internal
|