PRCYCoin  2.0.0.7rc1
P2P Digital Currency
txentry.h
Go to the documentation of this file.
1 // Copyright (c) 2011-2013 The Bitcoin developers
2 // Distributed under the MIT/X11 software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
4 
5 #ifndef BITCOIN_QT_TXENTRY_H
6 #define BITCOIN_QT_TXENTRY_H
7 
8 #include "walletmodel.h"
9 
10 #include <QWidget>
11 
12 class WalletModel;
13 
14 namespace Ui
15 {
16 class TxEntry;
17 }
18 
19 class TxEntry : public QWidget
20 {
21  Q_OBJECT
22 
23 public:
24  explicit TxEntry(QWidget* parent = 0);
25  ~TxEntry();
26 
27  void setData(int64_t Date, QString Address, QString Amount, QString ID, QString Type);
28  void expand(bool isExpanding);
29 
30 protected:
31  void resizeEvent(QResizeEvent *event);
32 
33 public Q_SLOTS:
34 
35 Q_SIGNALS:
36 
37 private Q_SLOTS:
39 
40 private:
41  Ui::TxEntry* ui;
43  void init();
44 };
45 
46 #endif // BITCOIN_QT_TXENTRY_H
TxEntry::setData
void setData(int64_t Date, QString Address, QString Amount, QString ID, QString Type)
Definition: txentry.cpp:53
WalletModel
Interface to Bitcoin wallet from Qt view code.
Definition: walletmodel.h:102
TxEntry::TxEntry
TxEntry(QWidget *parent=0)
Definition: txentry.cpp:20
walletmodel.h
TxEntry::model
WalletModel * model
Definition: txentry.h:42
TxEntry
Definition: txentry.h:19
TxEntry::ui
Ui::TxEntry * ui
Definition: txentry.h:41
Ui
Definition: 2faconfirmdialog.h:7
TxEntry::expand
void expand(bool isExpanding)
Definition: txentry.cpp:78
TxEntry::init
void init()
Definition: txentry.cpp:33
TxEntry::resizeEvent
void resizeEvent(QResizeEvent *event)
Definition: txentry.cpp:42
TxEntry::on_pushButtonExpand_clicked
void on_pushButtonExpand_clicked()
Definition: txentry.cpp:73
TxEntry::~TxEntry
~TxEntry()
Definition: txentry.cpp:29