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