File indexing completed on 2024-06-23 05:48:53

0001 /*
0002     This file is part of the Okteta Kasten module, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2007-2008 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_PRINTCONTROLLER_HPP
0010 #define KASTEN_PRINTCONTROLLER_HPP
0011 
0012 // Kasten gui
0013 #include <Kasten/AbstractXmlGuiController>
0014 
0015 class QAction;
0016 class KXMLGUIClient;
0017 
0018 namespace Kasten {
0019 
0020 class PrintTool;
0021 
0022 class PrintController : public AbstractXmlGuiController
0023 {
0024     Q_OBJECT
0025 
0026 public:
0027     explicit PrintController(KXMLGUIClient* guiClient);
0028     ~PrintController() override;
0029 
0030 public: // AbstractXmlGuiController API
0031     void setTargetModel(AbstractModel* model) override;
0032 
0033 public: // TODO: this is a hack to enable the browser extension of the KPart to execute printing, rethink it
0034     void print();
0035 
0036 private:
0037     QAction* mPrintAction;
0038 
0039     PrintTool* mPrintTool;
0040 };
0041 
0042 }
0043 
0044 #endif