begin integration with bitcoin upstream
This commit is contained in:
69
gui/include/bitcoingui.h
Normal file
69
gui/include/bitcoingui.h
Normal file
@@ -0,0 +1,69 @@
|
||||
#ifndef BITCOINGUI_H
|
||||
#define BITCOINGUI_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QSystemTrayIcon>
|
||||
|
||||
/* Forward declarations */
|
||||
class TransactionTableModel;
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
class QLabel;
|
||||
class QLineEdit;
|
||||
QT_END_NAMESPACE
|
||||
|
||||
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:
|
||||
TransactionTableModel *transaction_model;
|
||||
|
||||
QLineEdit *address;
|
||||
QLabel *labelBalance;
|
||||
QLabel *labelConnections;
|
||||
QLabel *labelBlocks;
|
||||
QLabel *labelTransactions;
|
||||
|
||||
QAction *quit;
|
||||
QAction *sendcoins;
|
||||
QAction *addressbook;
|
||||
QAction *about;
|
||||
QAction *receiving_addresses;
|
||||
QAction *options;
|
||||
QAction *openBitCoin;
|
||||
|
||||
QSystemTrayIcon *trayIcon;
|
||||
|
||||
void createActions();
|
||||
QWidget *createTabs();
|
||||
void createTrayIcon();
|
||||
|
||||
public slots:
|
||||
void setBalance(double balance);
|
||||
void setAddress(const QString &address);
|
||||
void setNumConnections(int count);
|
||||
void setNumBlocks(int count);
|
||||
void setNumTransactions(int count);
|
||||
|
||||
private slots:
|
||||
void sendcoinsClicked();
|
||||
void addressbookClicked();
|
||||
void optionsClicked();
|
||||
void receivingAddressesClicked();
|
||||
void aboutClicked();
|
||||
|
||||
void newAddressClicked();
|
||||
void copyClipboardClicked();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user