// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #pragma once #include "texteditor_global.h" #include #include namespace TextEditor { class TextDocument; namespace Internal { // // TextEditorPrivate // struct TextEditorPrivateHighlightBlocks { QList open; QList close; QList visualIndent; inline int count() const { return visualIndent.size(); } inline bool isEmpty() const { return open.isEmpty() || close.isEmpty() || visualIndent.isEmpty(); } inline bool operator==(const TextEditorPrivateHighlightBlocks &o) const { return (open == o.open && close == o.close && visualIndent == o.visualIndent); } inline bool operator!=(const TextEditorPrivateHighlightBlocks &o) const { return !(*this == o); } }; } // namespace Internal } // namespace TextEditor