File indexing completed on 2024-09-22 05:16:05

0001 /*
0002     This file is part of the Kasten Framework, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2019 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_CREATORCONTROLLERFACTORY_HPP
0010 #define KASTEN_CREATORCONTROLLERFACTORY_HPP
0011 
0012 // lib
0013 #include "kastencontrollers_export.hpp"
0014 // Kasten core
0015 #include <Kasten/AbstractXmlGuiControllerFactory>
0016 
0017 namespace Kasten {
0018 
0019 class ModelCodecManager;
0020 class AbstractDocumentStrategy;
0021 
0022 class KASTENCONTROLLERS_EXPORT CreatorControllerFactory : public AbstractXmlGuiControllerFactory
0023 {
0024 public:
0025     explicit CreatorControllerFactory(ModelCodecManager* modelCodecManager,
0026                                       AbstractDocumentStrategy* documentStrategy);
0027     CreatorControllerFactory(const CreatorControllerFactory&) = delete;
0028 
0029     ~CreatorControllerFactory() override;
0030 
0031     CreatorControllerFactory& operator=(const CreatorControllerFactory&) = delete;
0032 
0033 public: // AbstractXmlGuiControllerFactory API
0034     AbstractXmlGuiController* create(KXMLGUIClient* guiClient) const override;
0035 
0036 private:
0037     ModelCodecManager* const m_modelCodecManager;
0038     AbstractDocumentStrategy* const m_documentStrategy;
0039 };
0040 
0041 }
0042 
0043 #endif