| 983 | } |
| 984 | |
| 985 | IDocument* DocumentController::activeDocument() const |
| 986 | { |
| 987 | UiController *uiController = Core::self()->uiControllerInternal(); |
| 988 | Sublime::MainWindow* mw = uiController->activeSublimeWindow(); |
| 989 | if( !mw || !mw->activeView() ) return nullptr; |
| 990 | return qobject_cast<IDocument*>(mw->activeView()->document()); |
| 991 | } |
| 992 | |
| 993 | KTextEditor::View* DocumentController::activeTextDocumentView() const |
| 994 | { |