Paper wallet for Hush, which you can use with no internet access while wearing a tinfoil hat inside of a Faraday cage.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 lines
550 B

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <QMainWindow>
#include "precompiled.h"
namespace Ui {
class MainWindow;
}
class MainWindow : public QMainWindow
{
Q_OBJECT
public:
explicit MainWindow(QWidget *parent = nullptr);
~MainWindow();
private:
void SaveAsPDFButton();
void SaveAsJSONButton();
void closeEvent(QCloseEvent*);
void populateWallets();
// The current JSON of the wallets.
QString currentWallets;
Ui::MainWindow *ui;
QIntValidator *intValidator;
};
#endif // MAINWINDOW_H