twisterp2pblockchainnetworkbittorrentmicrobloggingipv6social-networkdhtdecentralizedtwister-coretwisterarmyp2p-networktwister-servertwister-ipv6
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.
23 lines
400 B
23 lines
400 B
#ifndef BITCOINGUI_H |
|
#define BITCOINGUI_H |
|
|
|
#include <QMainWindow> |
|
|
|
class BitcoinGUI : public QMainWindow |
|
{ |
|
Q_OBJECT |
|
public: |
|
explicit BitcoinGUI(QWidget *parent = 0); |
|
|
|
/* Transaction table tab indices */ |
|
enum { |
|
AllTransactions = 0, |
|
SentReceived = 1, |
|
Sent = 2, |
|
Received = 3 |
|
} TabIndex; |
|
private slots: |
|
void currentChanged(int tab); |
|
}; |
|
|
|
#endif
|
|
|