twisterp2pnetworkbittorrentblockchainipv6microbloggingdecentralizedsocial-networkdhttwister-ipv6twister-coretwisterarmyp2p-networktwister-server
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.
31 lines
580 B
31 lines
580 B
14 years ago
|
#ifndef BITCOINGUI_H
|
||
|
#define BITCOINGUI_H
|
||
14 years ago
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
class BitcoinGUI : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
14 years ago
|
explicit BitcoinGUI(QWidget *parent = 0);
|
||
14 years ago
|
|
||
|
/* Transaction table tab indices */
|
||
|
enum {
|
||
14 years ago
|
AllTransactions = 0,
|
||
|
SentReceived = 1,
|
||
|
Sent = 2,
|
||
|
Received = 3
|
||
14 years ago
|
} TabIndex;
|
||
|
private slots:
|
||
14 years ago
|
void sendcoinsClicked();
|
||
|
void addressbookClicked();
|
||
|
void optionsClicked();
|
||
|
void receivingAddressesClicked();
|
||
14 years ago
|
void aboutClicked();
|
||
|
|
||
14 years ago
|
void newAddressClicked();
|
||
|
void copyClipboardClicked();
|
||
14 years ago
|
};
|
||
|
|
||
|
#endif
|