mirror of
https://bitbucket.org/smil3y/kde-workspace.git
synced 2025-02-24 02:42:50 +00:00
264 lines
6.6 KiB
C++
264 lines
6.6 KiB
C++
/* This file is part of the KDE libraries
|
|
Copyright (c) 2000 Waldo Bastian <bastian@kde.org>
|
|
Copyright (C) 2002-2004 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 version 2 as published by the Free Software Foundation.
|
|
|
|
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_BUFFER_H__
|
|
#define __KATE_BUFFER_H__
|
|
|
|
#include "katetextbuffer.h"
|
|
|
|
#include "katepartinterfaces_export.h"
|
|
|
|
#include <QtCore/QObject>
|
|
|
|
class KateLineInfo;
|
|
class KateDocument;
|
|
class KateHighlighting;
|
|
|
|
/**
|
|
* The KateBuffer class maintains a collections of lines.
|
|
*
|
|
* @author Waldo Bastian <bastian@kde.org>
|
|
* @author Christoph Cullmann <cullmann@kde.org>
|
|
*/
|
|
class KATEPARTINTERFACES_EXPORT KateBuffer : public Kate::TextBuffer
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
/**
|
|
* Create an empty buffer.
|
|
* @param doc parent document
|
|
*/
|
|
explicit KateBuffer (KateDocument *doc);
|
|
|
|
/**
|
|
* Goodbye buffer
|
|
*/
|
|
~KateBuffer ();
|
|
|
|
public:
|
|
/**
|
|
* start some editing action
|
|
*/
|
|
void editStart ();
|
|
|
|
/**
|
|
* finish some editing action
|
|
*/
|
|
void editEnd ();
|
|
|
|
/**
|
|
* were there changes in the current running
|
|
* editing session?
|
|
* @return changes done?
|
|
*/
|
|
inline bool editChanged () const { return editingChangedBuffer (); }
|
|
|
|
/**
|
|
* dirty lines start
|
|
* @return start line
|
|
*/
|
|
inline int editTagStart () const { return editingMinimalLineChanged (); }
|
|
|
|
/**
|
|
* dirty lines end
|
|
* @return end line
|
|
*/
|
|
inline int editTagEnd () const { return editingMaximalLineChanged (); }
|
|
|
|
/**
|
|
* line inserted/removed?
|
|
* @return line inserted/removed?
|
|
*/
|
|
inline bool editTagFrom () const { return editingChangedNumberOfLines() != 0; }
|
|
|
|
public:
|
|
/**
|
|
* Clear the buffer.
|
|
*/
|
|
void clear();
|
|
|
|
/**
|
|
* Open a file, use the given filename
|
|
* @param m_file filename to open
|
|
* @param enforceTextCodec enforce to use only the set text codec
|
|
* @return success
|
|
*/
|
|
bool openFile (const QString &m_file, bool enforceTextCodec);
|
|
|
|
/**
|
|
* Did encoding errors occur on load?
|
|
* @return encoding errors occurred on load?
|
|
*/
|
|
bool brokenEncoding () const { return m_brokenEncoding; }
|
|
|
|
/**
|
|
* Too long lines wrapped on load?
|
|
* @return too long lines wrapped on load?
|
|
*/
|
|
bool tooLongLinesWrapped () const { return m_tooLongLinesWrapped; }
|
|
|
|
/**
|
|
* Can the current codec handle all chars
|
|
* @return chars can be encoded
|
|
*/
|
|
bool canEncode ();
|
|
|
|
/**
|
|
* Save the buffer to a file, use the given filename + codec + end of line chars (internal use of qtextstream)
|
|
* @param m_file filename to save to
|
|
* @return success
|
|
*/
|
|
bool saveFile (const QString &m_file);
|
|
|
|
public:
|
|
/**
|
|
* Return line @p lineno.
|
|
* Highlighting of returned line might be out-dated, which may be sufficient
|
|
* for pure text manipulation functions, like search/replace.
|
|
* If you require highlighting to be up to date, call @ref ensureHighlighted
|
|
* prior to this method.
|
|
*/
|
|
inline Kate::TextLine plainLine (int lineno)
|
|
{
|
|
if (lineno < 0 || lineno >= lines())
|
|
return Kate::TextLine ();
|
|
|
|
return line (lineno);
|
|
}
|
|
|
|
/**
|
|
* Update highlighting of given line @p line, if needed.
|
|
* If @p line is already highlighted, this function does nothing.
|
|
* If @p line is not highlighted, all lines up to line + lookAhead
|
|
* are highlighted.
|
|
* @param lookAhead also highlight these following lines
|
|
*/
|
|
void ensureHighlighted(int line, int lookAhead = 64);
|
|
|
|
/**
|
|
* Return the total number of lines in the buffer.
|
|
*/
|
|
inline int count() const { return lines(); }
|
|
|
|
/**
|
|
* Unwrap given lines.
|
|
* @param from - first line of the block
|
|
* @param to - last line of the block
|
|
* @param lastLine - last line of the document
|
|
*/
|
|
void unwrapLines (int from, int to);
|
|
|
|
/**
|
|
* Unwrap given line.
|
|
* @param line line to unwrap
|
|
*/
|
|
void unwrapLine (int line);
|
|
|
|
/**
|
|
* Wrap line at given cursor position.
|
|
* @param position line/column as cursor where to wrap
|
|
*/
|
|
void wrapLine (const KTextEditor::Cursor &position);
|
|
|
|
public:
|
|
inline int tabWidth () const { return m_tabWidth; }
|
|
|
|
public:
|
|
void setTabWidth (int w);
|
|
|
|
/**
|
|
* Use @p highlight for highlighting
|
|
*
|
|
* @p highlight may be 0 in which case highlighting
|
|
* will be disabled.
|
|
*/
|
|
void setHighlight (int hlMode);
|
|
|
|
KateHighlighting *highlight () { return m_highlight; }
|
|
|
|
/**
|
|
* Invalidate highlighting of whole buffer.
|
|
*/
|
|
void invalidateHighlighting();
|
|
|
|
/**
|
|
* For a given line, compute the folding range that starts there
|
|
* to be used to fold e.g. from the icon border
|
|
* @param startLine start line
|
|
* @return folding range starting at the given line or invalid range
|
|
*/
|
|
KTextEditor::Range computeFoldingRangeForStartLine (int startLine);
|
|
|
|
private:
|
|
/**
|
|
* Highlight information needs to be updated.
|
|
*
|
|
* @param from first line in range
|
|
* @param to last line in range
|
|
* @param invalidat should the rehighlighted lines be tagged ?
|
|
*/
|
|
void doHighlight (int from, int to, bool invalidate);
|
|
|
|
Q_SIGNALS:
|
|
/**
|
|
* Emitted when the highlighting of a certain range has
|
|
* changed.
|
|
*/
|
|
void tagLines(int start, int end);
|
|
void respellCheckBlock(int start, int end);
|
|
|
|
private:
|
|
/**
|
|
* document we belong to
|
|
*/
|
|
KateDocument *const m_doc;
|
|
|
|
/**
|
|
* file loaded with encoding problems?
|
|
*/
|
|
bool m_brokenEncoding;
|
|
|
|
/**
|
|
* too long lines wrapped on load?
|
|
*/
|
|
bool m_tooLongLinesWrapped;
|
|
|
|
/**
|
|
* current highlighting mode or 0
|
|
*/
|
|
KateHighlighting *m_highlight;
|
|
|
|
// for the scrapty indent sensitive langs
|
|
int m_tabWidth;
|
|
|
|
/**
|
|
* last line with valid highlighting
|
|
*/
|
|
int m_lineHighlighted;
|
|
|
|
/**
|
|
* number of dynamic contexts causing a full invalidation
|
|
*/
|
|
int m_maxDynamicContexts;
|
|
};
|
|
|
|
#endif
|
|
|
|
// kate: space-indent on; indent-width 2; replace-tabs on;
|