diff --git a/utils/okteta/oktetadocument.cpp b/utils/okteta/oktetadocument.cpp index 85dd031159..5bb7745230 100644 --- a/utils/okteta/oktetadocument.cpp +++ b/utils/okteta/oktetadocument.cpp @@ -1,251 +1,255 @@ /* This file is part of the KDevelop Okteta module, part of the KDE project. Copyright 2010-2011 Friedrich W. H. Kossebau This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) version 3, or any later version accepted by the membership of KDE e.V. (or its successor approved by the membership of KDE e.V.), which shall act as a proxy defined in Section 6 of version 3 of the license. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library. If not, see . */ #include "oktetadocument.h" // plugin #include "oktetaplugin.h" #include "oktetaview.h" // Okteta #include #include #include #include // Kasten #include #include #include #include #include // KDevelop #include #include #include #include #include // Sublime #include #include #include #include // KDE #include #include // Qt #include #include namespace KDevelop { OktetaDocument::OktetaDocument( const QUrl &url , ICore* core ) : Sublime::UrlDocument( core->uiController()->controller(), url ) , IDocument( core ) , mPlugin( nullptr ) , mByteArrayDocument( nullptr ) { } QUrl OktetaDocument::url() const { return Sublime::UrlDocument::url(); } // TODO: use fromContentAndUrl(ByteArrayIODevice) if document loaded QMimeType OktetaDocument::mimeType() const { return QMimeDatabase().mimeTypeForUrl( url() ); } KParts::Part* OktetaDocument::partForView( QWidget* ) const { return nullptr; } KTextEditor::Document* OktetaDocument::textDocument() const { return nullptr; } KTextEditor::Cursor OktetaDocument::cursorPosition() const { return KTextEditor::Cursor(); } IDocument::DocumentState OktetaDocument::state() const { return mByteArrayDocument ? ( mByteArrayDocument->synchronizer()->localSyncState() == Kasten::LocalHasChanges ? IDocument::Modified : IDocument::Clean ) : IDocument::Clean; } bool OktetaDocument::save( IDocument::DocumentSaveMode mode ) { if( mode & Discard ) return true; if( state() == IDocument::Clean ) return false; Kasten::AbstractModelSynchronizer* synchronizer = mByteArrayDocument->synchronizer(); Kasten::AbstractSyncToRemoteJob* syncJob = synchronizer->startSyncToRemote(); const bool syncSucceeded = Kasten::JobManager::executeJob( syncJob ); if( syncSucceeded ) { notifySaved(); notifyStateChanged(); } return syncSucceeded; } void OktetaDocument::reload() { Kasten::AbstractModelSynchronizer* synchronizer = mByteArrayDocument->synchronizer(); Kasten::AbstractSyncFromRemoteJob* syncJob = synchronizer->startSyncFromRemote(); const bool syncSucceeded = Kasten::JobManager::executeJob( syncJob ); if( syncSucceeded ) notifyStateChanged(); } bool OktetaDocument::close( IDocument::DocumentSaveMode mode ) { bool isCanceled = false; if( !(mode & Discard) ) { if (mode & Silent) { if (!save(mode)) isCanceled = true; } else { if( state() == IDocument::Modified ) { // TODO: use Kasten::*Manager int code = KMessageBox::warningYesNoCancel( qApp->activeWindow(), i18n("The document \"%1\" has unsaved changes. Would you like to save them?", url().toLocalFile()), i18n("Close Document")); if (code == KMessageBox::Yes) { if (!save(mode)) isCanceled = true; } else if (code == KMessageBox::Cancel) isCanceled = true; } else if( state() == IDocument::DirtyAndModified ) { if( !save(mode) ) isCanceled = true; } } } if( isCanceled ) return false; //close all views and then delete ourself ///@todo test this const QList& allAreas = ICore::self()->uiController()->controller()->allAreas(); foreach( Sublime::Area *area, allAreas ) { const QList areaViews = area->views(); foreach( Sublime::View* view, areaViews ) { if (views().contains(view)) { area->removeView(view); delete view; } } } // The document is deleted automatically when there are no views left return true; } bool OktetaDocument::isActive() const { return Core::self()->uiControllerInternal()->activeSublimeWindow()->activeView()->document() == this; } void OktetaDocument::setCursorPosition( const KTextEditor::Cursor& ) {} void OktetaDocument::setTextSelection( const KTextEditor::Range& ) {} void OktetaDocument::activate( Sublime::View* view, KParts::MainWindow* mainWindow ) { + Q_UNUSED(view); + Q_UNUSED(mainWindow); notifyActivated(); } void OktetaDocument::setPlugin( OktetaPlugin* plugin ) { mPlugin = plugin; } Sublime::View* OktetaDocument::newView( Sublime::Document* document ) { + Q_UNUSED(document); + if( mByteArrayDocument == nullptr ) { Kasten::ByteArrayRawFileSynchronizerFactory* synchronizerFactory = new Kasten::ByteArrayRawFileSynchronizerFactory(); Kasten::AbstractModelSynchronizer* synchronizer = synchronizerFactory->createSynchronizer(); Kasten::AbstractLoadJob* loadJob = synchronizer->startLoad( url() ); connect( loadJob, &Kasten::AbstractLoadJob::documentLoaded, this, &OktetaDocument::onByteArrayDocumentLoaded ); Kasten::JobManager::executeJob( loadJob ); delete synchronizerFactory; } Kasten::ByteArrayViewProfileManager* const viewProfileManager = mPlugin->viewProfileManager(); Kasten::ByteArrayViewProfileSynchronizer* viewProfileSynchronizer = new Kasten::ByteArrayViewProfileSynchronizer( viewProfileManager ); viewProfileSynchronizer->setViewProfileId( viewProfileManager->defaultViewProfileId() ); return new OktetaView( this, viewProfileSynchronizer ); } bool OktetaDocument::closeDocument(bool silent) { return close(silent ? Silent : Default); } void OktetaDocument::onByteArrayDocumentLoaded( Kasten::AbstractDocument* document ) { if( document ) { mByteArrayDocument = static_cast( document ); connect( mByteArrayDocument->synchronizer(), &Kasten::AbstractModelSynchronizer::localSyncStateChanged, this, &OktetaDocument::onByteArrayDocumentChanged ); } } void OktetaDocument::onByteArrayDocumentChanged() { notifyStateChanged(); } OktetaDocument::~OktetaDocument() { delete mByteArrayDocument; } }