2020-10-07 10:36:04 +00:00
|
|
|
// SPDX-License-Identifier: BSD-3-Clause
|
2020-12-26 19:56:06 +00:00
|
|
|
// Copyright (c) 2020-2021, The Monero Project.
|
2020-10-07 10:36:04 +00:00
|
|
|
|
|
|
|
#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
|