File indexing completed on 2024-05-05 05:40:58

0001 #ifndef KEYGENERATORDIALOG_H
0002 #define KEYGENERATORDIALOG_H
0003 
0004 #include "rwidgets_global.h"
0005 #include <QDialog>
0006 namespace Ui
0007 {
0008 class KeyGeneratorDialog;
0009 }
0010 
0011 class RWIDGET_EXPORT KeyGeneratorDialog : public QDialog
0012 {
0013     Q_OBJECT
0014 
0015 public:
0016     explicit KeyGeneratorDialog(QWidget* parent= nullptr);
0017     ~KeyGeneratorDialog();
0018 
0019 private slots:
0020     void generateKey();
0021 
0022 private:
0023     Ui::KeyGeneratorDialog* ui;
0024 };
0025 
0026 #endif // KEYGENERATORDIALOG_H