Files
qt-creator/src/plugins/languageclient/languageclientformatter.h
Eike Ziller 04e50438eb Utils: Remove Utils::optional
Since we are now requiring macOS 10.14 we can remove our local
implementation of optional and use std::optional for macOS too.

Change-Id: I2bd018261b68da64f7f031a812045dd7784697e1
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Marco Bubke <marco.bubke@qt.io>
2022-09-01 06:58:04 +00:00

38 lines
1.1 KiB
C++

// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once
#include <languageserverprotocol/languagefeatures.h>
#include <texteditor/formatter.h>
namespace TextEditor { class TextDocument; }
namespace LanguageClient {
class Client;
class LanguageClientFormatter : public TextEditor::Formatter
{
public:
LanguageClientFormatter(TextEditor::TextDocument *document, Client *client);
~LanguageClientFormatter() override;
QFutureWatcher<Utils::ChangeSet> *format(
const QTextCursor &cursor, const TextEditor::TabSettings &tabSettings) override;
private:
void cancelCurrentRequest();
void handleResponse(
const LanguageServerProtocol::DocumentRangeFormattingRequest::Response &response);
Client *m_client = nullptr; // not owned
QMetaObject::Connection m_cancelConnection;
TextEditor::TextDocument *m_document; // not owned
bool m_ignoreCancel = false;
QFutureInterface<Utils::ChangeSet> m_progress;
std::optional<LanguageServerProtocol::MessageId> m_currentRequest;
};
} // namespace LanguageClient