SVN commit 878341 by zwabel: This signal is needed for the last patch M +4 -0 idocumentcontroller.h --- trunk/KDE/kdevplatform/interfaces/idocumentcontroller.h #878340:878341 @@ -104,6 +104,10 @@ /**Emitted when the document has been activated.*/ void documentActivated( KDevelop::IDocument* document ); + ///Emitted whenever the active cursor jumps from one document+cursor to another, caused by a call to openDocument(..) + ///This is also emitted when a document is only activated, then previousDocument is zero + void documentJumpPerformed( KDevelop::IDocument* newDocument, KTextEditor::Cursor newCursor, KDevelop::IDocument* previousDocument, KTextEditor::Cursor previousCursor); + /**Emitted when a document has been saved.*/ void documentSaved( KDevelop::IDocument* document );