kde-workspace/kate/part/buffer/katetextblock.h
Ivailo Monev f68295ea28 generic: move sub-projects from kde-baseapps [ci reset]
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-05-14 21:56:54 +03:00

263 lines
7.7 KiB
C++

/* This file is part of the Kate project.
*
* Copyright (C) 2010 Christoph Cullmann <cullmann@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#ifndef KATE_TEXTBLOCK_H
#define KATE_TEXTBLOCK_H
#include <QtCore/QVector>
#include <QtCore/QSet>
#include "katepartinterfaces_export.h"
#include <ktexteditor/cursor.h>
#include "katetextline.h"
namespace Kate {
class TextBuffer;
class TextCursor;
class TextRange;
/**
* Class representing a text block.
* This is used to build up a Kate::TextBuffer.
* This class should only be used by TextBuffer/Cursor/Range.
*/
class KATEPARTINTERFACES_EXPORT TextBlock {
public:
/**
* Construct an empty text block.
* @param buffer parent text buffer
* @param startLine start line of this block
*/
TextBlock (TextBuffer *buffer, int startLine);
/**
* Destruct the text block
*/
~TextBlock ();
/**
* Start line of this block.
* @return start line of this block
*/
int startLine () const { return m_startLine; }
/**
* Set start line of this block.
* @param startLine new start line of this block
*/
void setStartLine (int startLine);
/**
* Retrieve a text line.
* @param line wanted line number
* @return text line
*/
TextLine line (int line) const;
/**
* Append a new line with given text.
* @param textOfLine text of the line to append
*/
void appendLine (const QString &textOfLine);
/**
* Clear the lines.
*/
void clearLines ();
/**
* Number of lines in this block.
* @return number of lines
*/
int lines () const { return m_lines.size(); }
/**
* Retrieve text of block.
* @param text for this block, lines separated by '\n'
*/
void text (QString &text) const;
/**
* Wrap line at given cursor position.
* @param position line/column as cursor where to wrap
* @param fixStartLinesStartIndex start index to fix start lines, normally this is this block
*/
void wrapLine (const KTextEditor::Cursor &position, int fixStartLinesStartIndex);
/**
* Unwrap given line.
* @param line line to unwrap
* @param previousBlock previous block, if any, if we unwrap first line in block, we need to have this
* @param fixStartLinesStartIndex start index to fix start lines, normally this is this block or the previous one
*/
void unwrapLine (int line, TextBlock *previousBlock, int fixStartLinesStartIndex);
/**
* Insert text at given cursor position.
* @param position position where to insert text
* @param text text to insert
*/
void insertText (const KTextEditor::Cursor &position, const QString &text);
/**
* Remove text at given range.
* @param range range of text to remove, must be on one line only.
* @param removedText will be filled with removed text
*/
void removeText (const KTextEditor::Range &range, QString &removedText);
/**
* Debug output, print whole block content with line numbers and line length
* @param blockIndex index of this block in buffer
*/
void debugPrint (int blockIndex) const;
/**
* Split given block. A new block will be created and all lines starting from the given index will
* be moved to it, together with the cursors belonging to it.
* @param fromLine line from which to split
* @return new block containing the lines + cursors removed from this one
*/
TextBlock *splitBlock (int fromLine);
/**
* Merge this block with given one, the given one must be a direct predecessor.
* @param targetBlock block to merge with
*/
void mergeBlock (TextBlock *targetBlock);
/**
* Delete the block content, delete all lines and delete all cursors not bound to ranges.
* This is used in destructor of TextBuffer, for fast cleanup. Only stuff remaining afterwards are cursors which are
* part of a range, TextBuffer will delete them itself...
*/
void deleteBlockContent ();
/**
* Clear the block content, delete all lines, move all cursors not bound to range to given block at 0,0.
* This is used by clear() of TextBuffer.
* @param targetBlock empty target block for cursors
*/
void clearBlockContent (TextBlock *targetBlock);
/**
* Return all ranges in this block which might intersect the given line.
* @param line line to check intersection
* @return list of sets of possible candidate ranges
*/
QList<QSet<TextRange*> > rangesForLine (int line) const {
return QList<QSet<TextRange*> >() << m_uncachedRanges << cachedRangesForLine(line);
}
/**
* Is the given range contained in this block?
* @param range range to check for
* @return contained in this blocks mapping?
*/
bool containsRange (TextRange* range) const {
return m_cachedLineForRanges.contains(range) || m_uncachedRanges.contains(range);
}
/**
* Flag all modified text lines as saved on disk.
*/
void markModifiedLinesAsSaved ();
/**
* Insert cursor into this block.
* @param cursor cursor to insert
*/
void insertCursor (Kate::TextCursor *cursor) { m_cursors.insert (cursor); }
/**
* Remove cursor from this block.
* @param cursor cursor to remove
*/
void removeCursor (Kate::TextCursor *cursor) { m_cursors.remove (cursor); }
/**
* Update a range from this block.
* Will move the range to right set, either cached for one-line ranges or not.
* @param range range to update
*/
void updateRange(TextRange* range);
/**
* Remove a range from this block.
* @param range range to remove
*/
void removeRange (TextRange* range);
/**
* Return all ranges in this block which might intersect the given line and only span one line.
* For them an internal fast lookup cache is hold.
* @param line line to check intersection
* @return set of ranges
*/
QSet<TextRange*> cachedRangesForLine (int line) const {
line -= m_startLine;
if(line >= 0 && line < m_cachedRangesForLine.size())
return m_cachedRangesForLine[line];
else
return QSet<TextRange*>();
}
private:
/**
* parent text buffer
*/
TextBuffer *m_buffer;
/**
* Lines contained in this buffer. These are shared pointers.
*/
QVector<Kate::TextLine> m_lines;
/**
* Startline of this block
*/
int m_startLine;
/**
* Set of cursors for this block.
*/
QSet<TextCursor *> m_cursors;
/**
* Contains for each line-offset the ranges that were cached into it.
* These ranges are fully contained by the line.
*/
QVector<QSet<TextRange *> > m_cachedRangesForLine;
/**
* Maps for each cached range the line into which the range was cached.
*/
QHash<TextRange *, int> m_cachedLineForRanges;
/**
* This contains all the ranges that are not cached.
*/
QSet<TextRange *> m_uncachedRanges;
};
}
#endif