mirror of
https://git.wownero.com/wowlet/wowlet.git
synced 2024-08-15 01:03:14 +00:00
31 lines
546 B
C
31 lines
546 B
C
|
// SPDX-License-Identifier: BSD-3-Clause
|
||
|
// Copyright (c) 2020, The Monero Project.
|
||
|
|
||
|
#ifndef FEATHER_WALLETINFODIALOG_H
|
||
|
#define FEATHER_WALLETINFODIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
|
#include "appcontext.h"
|
||
|
|
||
|
namespace Ui {
|
||
|
class WalletInfoDialog;
|
||
|
}
|
||
|
|
||
|
class WalletInfoDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
explicit WalletInfoDialog(AppContext *ctx, QWidget *parent = nullptr);
|
||
|
~WalletInfoDialog() override;
|
||
|
|
||
|
private:
|
||
|
void openWalletDir();
|
||
|
|
||
|
Ui::WalletInfoDialog *ui;
|
||
|
AppContext *m_ctx;
|
||
|
};
|
||
|
|
||
|
#endif //FEATHER_WALLETINFODIALOG_H
|