forked from qt-creator/qt-creator
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>
49 lines
1.5 KiB
C++
49 lines
1.5 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
|
|
|
|
#pragma once
|
|
|
|
#include "texteditor_global.h"
|
|
|
|
#include "indenter.h"
|
|
#include "tabsettings.h"
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
class QTextDocument;
|
|
class QTextCursor;
|
|
class QChar;
|
|
QT_END_NAMESPACE
|
|
|
|
namespace TextEditor {
|
|
|
|
class TEXTEDITOR_EXPORT TextIndenter : public Indenter
|
|
{
|
|
public:
|
|
explicit TextIndenter(QTextDocument *doc);
|
|
~TextIndenter() override;
|
|
|
|
int indentFor(const QTextBlock &block,
|
|
const TabSettings &tabSettings,
|
|
int cursorPositionInEditor = -1) override;
|
|
|
|
IndentationForBlock indentationForBlocks(const QVector<QTextBlock> &blocks,
|
|
const TabSettings &tabSettings,
|
|
int cursorPositionInEditor = -1) override;
|
|
void indentBlock(const QTextBlock &block,
|
|
const QChar &typedChar,
|
|
const TabSettings &tabSettings,
|
|
int cursorPositionInEditor = -1) override;
|
|
|
|
void indent(const QTextCursor &cursor,
|
|
const QChar &typedChar,
|
|
const TabSettings &tabSettings,
|
|
int cursorPositionInEditor = -1) override;
|
|
|
|
void reindent(const QTextCursor &cursor,
|
|
const TabSettings &tabSettings,
|
|
int cursorPositionInEditor = -1) override;
|
|
std::optional<TabSettings> tabSettings() const override;
|
|
};
|
|
|
|
} // namespace TextEditor
|