File indexing completed on 2024-06-16 05:24:53

0001 /*
0002     This file is part of the Okteta Kasten module, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 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_OVERWRITEMODECONTROLLER_HPP
0010 #define KASTEN_OVERWRITEMODECONTROLLER_HPP
0011 
0012 // Kasten gui
0013 #include <Kasten/AbstractXmlGuiController>
0014 
0015 class KToggleAction;
0016 
0017 namespace Kasten {
0018 
0019 class ByteArrayView;
0020 
0021 class OverwriteModeController : public AbstractXmlGuiController
0022 {
0023     Q_OBJECT
0024 
0025 public:
0026     explicit OverwriteModeController(KXMLGUIClient* guiClient);
0027 
0028 public: // AbstractXmlGuiController API
0029     void setTargetModel(AbstractModel* model) override;
0030 
0031 private Q_SLOTS: // action slots
0032     void setOverWrite(bool isOverWrite);
0033 
0034 private:
0035     ByteArrayView* mByteArrayView = nullptr;
0036 
0037     KToggleAction* mSetOverWriteAction;
0038 };
0039 
0040 }
0041 
0042 #endif