danicoinwallet/src/gui/ReceiveFrame.h

34 lines
590 B
C
Raw Normal View History

2015-04-29 17:03:08 +00:00
// Copyright (c) 2011-2015 The Cryptonote developers
// Distributed under the MIT/X11 software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
#pragma once
#include <QFrame>
namespace Ui {
class ReceiveFrame;
}
namespace WalletGui {
class ReceiveFrame : public QFrame {
Q_OBJECT
Q_DISABLE_COPY(ReceiveFrame)
public:
ReceiveFrame(QWidget* _parent);
~ReceiveFrame();
private:
QScopedPointer<Ui::ReceiveFrame> m_ui;
void updateWalletAddress(const QString& _address);
void reset();
Q_SLOT void copyAddress();
};
}