mirror of
https://github.com/feather-wallet/feather.git
synced 2024-12-22 19:49:28 +00:00
25 lines
463 B
C++
25 lines
463 B
C++
// SPDX-License-Identifier: BSD-3-Clause
|
|
// SPDX-FileCopyrightText: 2020-2024 The Monero Project
|
|
|
|
#ifndef FEATHER_SUBADDRESSVIEW_H
|
|
#define FEATHER_SUBADDRESSVIEW_H
|
|
|
|
#include <QTreeView>
|
|
#include <QKeyEvent>
|
|
#include <QClipboard>
|
|
|
|
class SubaddressView : public QTreeView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
SubaddressView(QWidget* parent = nullptr);
|
|
|
|
signals:
|
|
void copyAddress();
|
|
|
|
protected:
|
|
void keyPressEvent(QKeyEvent *event);
|
|
};
|
|
|
|
#endif //FEATHER_SUBADDRESSVIEW_H
|