diff options
Diffstat (limited to 'interfaces/ktexteditor/document.h')
-rw-r--r-- | interfaces/ktexteditor/document.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/interfaces/ktexteditor/document.h b/interfaces/ktexteditor/document.h index 90095b64b..12823e600 100644 --- a/interfaces/ktexteditor/document.h +++ b/interfaces/ktexteditor/document.h @@ -61,10 +61,21 @@ class KTEXTEDITOR_EXPORT Document : public KTextEditor::Editor */ virtual TQPtrList<class View> views () const = 0; + /** + * Returns the list position of this document in your app, if applicable. + */ + long documentListPosition () const; + + /** + * Sets the list position of this document in your app, if applicable. + */ + void setDocumentListPosition (long pos); + private: class PrivateDocument *d; static unsigned int globalDocumentNumber; unsigned int myDocumentNumber; + long myDocumentListPosition; }; KTEXTEDITOR_EXPORT Document *createDocument ( const char* libname, TQObject *parent = 0, const char *name = 0 ); |