File indexing completed on 2024-03-24 05:53:40

0001 /*
0002     SPDX-FileCopyrightText: 2002 Jean-Baptiste Mardelle <bj@altern.org>
0003     SPDX-License-Identifier: GPL-2.0-or-later
0004 */
0005 
0006 #ifndef NEWKEY_H
0007 #define NEWKEY_H
0008 
0009 #include "ui_newkey.h"
0010 
0011 class newKey : public QWidget, public Ui_newKey
0012 {
0013     Q_OBJECT
0014 
0015 public:
0016     explicit newKey(QWidget* parent = nullptr);
0017 
0018 
0019 public Q_SLOTS:
0020    void CBsave_toggled(bool);
0021 };
0022 
0023 #endif