mirror of https://github.com/GOSTSec/gostcoin
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
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
|
|
|