17 class TextDocumentFilter;
18 class TextDocumentScopes;
19 class TextEditorConfig;
20 class TextLineDataManager;
21 class TextBufferChange;
49 textCodecRef_ = codec;
This is the base and abstract class of a text document A TextDocument is the model part of the editor...
Definition: textdocument.h:40
virtual TextEditorConfig * config() const
This method returns the configuration.
Definition: chartextdocument.cpp:106
This clas represents a text buffer change and is used to pass around between events This is a sharedd...
Definition: textbuffer.h:45
virtual void textBufferChanged(const edbee::TextBufferChange &change)
This method replaces the given text via the undo-button.
Definition: chartextdocument.cpp:136
virtual TextCodec * encoding()
This method returns the current encoding.
Definition: chartextdocument.h:44
A plain textdocument. A document with simple character-buffer implementation.
Definition: chartextdocument.h:24
virtual TextDocumentScopes * scopes()
Should return the document-scopes of this document.
Definition: chartextdocument.h:41
This manager manages all line definitions.
Definition: textlinedata.h:75
virtual void setLineEnding(const edbee::LineEnding *lineEnding)
Set the used line ending.
Definition: chartextdocument.h:56
CharTextDocument(QObject *object=0)
The main contstructor of the chartext document.
Definition: chartextdocument.cpp:29
virtual ~CharTextDocument()
The default constructor.
Definition: chartextdocument.cpp:69
This class represents a single text codec The codec has a name and contains methods to create encoder...
Definition: textcodec.h:37
virtual TextUndoStack * textUndoStack()
returns the text undo stack
Definition: chartextdocument.h:70
General configuration settings of the text editor.
Definition: texteditorconfig.h:17
virtual void setEncoding(TextCodec *codec)
Sets the encoding.
Definition: chartextdocument.h:47
Copyright 2011-2013 - Reliable Bits Software by Blommers IT.
Definition: commentcommand.cpp:22
This class defines a single language grammar.
Definition: textgrammar.h:125
A basic change.
Definition: change.h:18
virtual TextGrammar * languageGrammar()
This method should return the current language grammar.
Definition: chartextdocument.cpp:88
This class represents the textbuffer of the editor.
Definition: textbuffer.h:68
This class is used to 'contain' all document scope information.
Definition: textdocumentscopes.h:325
virtual TextBuffer * buffer() const
This method should return the active textbuffer.
Definition: chartextdocument.cpp:81
This is the undo stack for the texteditor. This stack is SHARED by all views of the document The stac...
Definition: textundostack.h:50
virtual void setLanguageGrammar(TextGrammar *grammar)
Sets the language grammar.
Definition: chartextdocument.cpp:95
This is a single lexer.
Definition: textlexer.h:17
virtual TextLexer * textLexer()
Should return the current document lexer.
Definition: chartextdocument.h:63
A special class to perform line-ending detection.
Definition: lineending.h:12
virtual Change * giveChangeWithoutFilter(Change *change, int coalesceId)
Gives a change to the undo stack without invoking the filter.
Definition: chartextdocument.cpp:122
virtual TextLineDataManager * lineDataManager()
this method can be used to give a 'custom' line data item to a given line
Definition: chartextdocument.h:37
virtual const edbee::LineEnding * lineEnding()
This method should return the current line ending.
Definition: chartextdocument.h:53