Cryptocurrency with GOST R 34.11-2012 algo, GOST R 34.10-2012 signature
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.
 
 
 
 
 
 

37 lines
628 B

#ifndef I2POPTIONSWIDGET_H
#define I2POPTIONSWIDGET_H
#include <QWidget>
class MonitoredDataMapper;
namespace Ui {
class I2POptionsWidget;
}
class ClientModel;
class I2POptionsWidget : public QWidget
{
Q_OBJECT
public:
explicit I2POptionsWidget(QWidget *parent = 0);
~I2POptionsWidget();
void setMapper(MonitoredDataMapper& mapper);
void setModel(ClientModel* model);
private:
Ui::I2POptionsWidget *ui;
ClientModel* clientModel;
private slots:
void ShowCurrentI2PAddress();
void GenerateNewI2PAddress();
signals:
void settingsChanged();
};
#endif // I2POPTIONSWIDGET_H