You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wowlet/src/model/SubaddressView.h

23 lines
433 B

// SPDX-License-Identifier: BSD-3-Clause
// Copyright (c) 2020-2021, The Monero Project.
#ifndef WOWLET_SUBADDRESSVIEW_H
#define WOWLET_SUBADDRESSVIEW_H
#include <QTreeView>
#include <QKeyEvent>
#include <QApplication>
#include <QClipboard>
class SubaddressView : public QTreeView
{
public:
SubaddressView(QWidget* parent = nullptr);
protected:
void keyPressEvent(QKeyEvent *event);
};
#endif //WOWLET_SUBADDRESSVIEW_H