clipboard handling
This commit is contained in:
26
bitcoingui.h
26
bitcoingui.h
@@ -2,6 +2,12 @@
|
||||
#define BITCOINGUI_H
|
||||
|
||||
#include <QMainWindow>
|
||||
#include <QSystemTrayIcon>
|
||||
|
||||
/* Forward declarations */
|
||||
class TransactionTableModel;
|
||||
class QLabel;
|
||||
class QLineEdit;
|
||||
|
||||
class BitcoinGUI : public QMainWindow
|
||||
{
|
||||
@@ -16,6 +22,26 @@ public:
|
||||
Sent = 2,
|
||||
Received = 3
|
||||
} TabIndex;
|
||||
private:
|
||||
TransactionTableModel *transaction_model;
|
||||
|
||||
QLineEdit *address;
|
||||
QLabel *labelBalance;
|
||||
|
||||
QAction *quit;
|
||||
QAction *sendcoins;
|
||||
QAction *addressbook;
|
||||
QAction *about;
|
||||
QAction *receiving_addresses;
|
||||
QAction *options;
|
||||
QAction *openBitCoin;
|
||||
|
||||
QSystemTrayIcon *trayIcon;
|
||||
|
||||
void createActions();
|
||||
QWidget *createTabs();
|
||||
void createTrayIcon();
|
||||
|
||||
private slots:
|
||||
void sendcoinsClicked();
|
||||
void addressbookClicked();
|
||||
|
||||
Reference in New Issue
Block a user