mirror of
https://github.com/feather-wallet/feather.git
synced 2025-01-10 12:54:46 +00:00
33 lines
541 B
C
33 lines
541 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef FEATHER_TORINFODIALOG_H
|
||
|
#define FEATHER_TORINFODIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
#include "appcontext.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class TorInfoDialog;
|
||
|
}
|
||
|
|
||
|
class TorInfoDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit TorInfoDialog(AppContext *ctx, QWidget *parent = nullptr);
|
||
|
~TorInfoDialog() override;
|
||
|
|
||
|
public slots:
|
||
|
void onLogsUpdated();
|
||
|
|
||
|
private:
|
||
|
Ui::TorInfoDialog *ui;
|
||
|
AppContext *m_ctx;
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif //FEATHER_TORINFODIALOG_H
|