KTextEditor
#include <annotationinterface.h>
Public Member Functions | |
virtual | ~AnnotationInterface () |
virtual AnnotationModel * | annotationModel () const =0 |
virtual void | setAnnotationModel (AnnotationModel *model)=0 |
Detailed Description
A Document extension interface for handling Annotations.
Introduction
The AnnotationInterface is designed to provide line annotation information for a document. This interface provides means to associate a document with a annotation model, which provides some annotation information for each line in the document.
Setting a model for a Document makes the model data available for all views. If you only want to provide annotations in exactly one view, you can use the AnnotationViewInterface directly. See the AnnotationViewInterface for further details. To summarize, the two use cases are
- (1) show annotations in all views. This means you set an AnnotationModel with this interface, and then call setAnnotationBorderVisible() for each view.
- (2) show annotations only in one view. This means to not use this interface. Instead, use the AnnotationViewInterface, which inherits this interface. This means you set a model for the specific View.
If you set a model to the Document and the View, the View's model has higher priority.
Accessing the AnnotationInterface
The AnnotationInterface is an extension interface for a Document, i.e. the Document inherits the interface provided that the used KTextEditor library implements the interface. Use qobject_cast to access the interface:
Using the AnnotationInterface
- Since
- 4.1
Definition at line 150 of file annotationinterface.h.
Constructor & Destructor Documentation
|
inlinevirtual |
Definition at line 153 of file annotationinterface.h.
Member Function Documentation
|
pure virtual |
returns the currently set AnnotationModel or 0 if there's none set
- Returns
- the current AnnotationModel
|
pure virtual |
Sets a new AnnotationModel for this document to provide annotation information for each line.
- Parameters
-
model the new AnnotationModel
The documentation for this class was generated from the following file:
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:52:20 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.