From kde-commits Fri Oct 31 23:11:34 2008 From: David Nolden Date: Fri, 31 Oct 2008 23:11:34 +0000 To: kde-commits Subject: KDE/kdevplatform/interfaces Message-Id: <1225494694.403407.16166.nullmailer () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=122549470307674 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 );