File indexing completed on 2025-02-02 05:43:12
0001 /* 0002 This file is part of the Kasten Framework, made within the KDE community. 0003 0004 SPDX-FileCopyrightText: 2007-2009, 2012 Friedrich W. H. Kossebau <kossebau@kde.org> 0005 0006 SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL 0007 */ 0008 0009 #ifndef KASTEN_SYNCHRONIZECONTROLLER_HPP 0010 #define KASTEN_SYNCHRONIZECONTROLLER_HPP 0011 0012 // Kasten gui 0013 #include <Kasten/AbstractXmlGuiController> 0014 0015 class QAction; 0016 class KXMLGUIClient; 0017 0018 namespace Kasten { 0019 0020 class AbstractModelSynchronizer; 0021 class AbstractModelFileSystemSynchronizer; 0022 class DocumentSyncManager; 0023 class AbstractDocument; 0024 0025 class SynchronizeController : public AbstractXmlGuiController 0026 { 0027 Q_OBJECT 0028 0029 public: 0030 SynchronizeController(DocumentSyncManager* syncManager, KXMLGUIClient* guiClient); 0031 0032 public: // AbstractXmlGuiController API 0033 void setTargetModel(AbstractModel* model) override; 0034 0035 private Q_SLOTS: 0036 void save(); 0037 void reload(); 0038 0039 private Q_SLOTS: 0040 void onSynchronizerChanged(Kasten::AbstractModelSynchronizer* newSynchronizer); 0041 void onSynchronizerDeleted(QObject* synchronizer); 0042 void onSyncStateChanged(); 0043 0044 private: 0045 DocumentSyncManager* mSyncManager; 0046 AbstractDocument* mDocument = nullptr; 0047 AbstractModelFileSystemSynchronizer* mSynchronizer = nullptr; 0048 0049 QAction* mSaveAction; 0050 QAction* mReloadAction; 0051 }; 0052 0053 } 0054 0055 #endif