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

0001 /*
0002     This file is part of the Okteta Kasten module, made within the KDE community.
0003 
0004     SPDX-FileCopyrightText: 2009 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_OCTAL8EDITOR_HPP
0010 #define KASTEN_OCTAL8EDITOR_HPP
0011 
0012 // lib
0013 #include "../types/octal8.hpp"
0014 #include "abstractvalue8editor.hpp"
0015 
0016 class Octal8Editor : public AbstractValue8Editor
0017 {
0018     Q_OBJECT
0019     Q_PROPERTY(Octal8 data READ data WRITE setData USER true)
0020 
0021 public:
0022     explicit Octal8Editor(QWidget* parent);
0023 
0024     ~Octal8Editor() override;
0025 
0026 public:
0027     void setData(Octal8 data);
0028     Octal8 data() const;
0029 };
0030 
0031 #endif