mirror of https://github.com/bitcoin/bitcoin
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.
35 lines
603 B
35 lines
603 B
#ifndef ADDRESSBOOKDIALOG_H
|
|
#define ADDRESSBOOKDIALOG_H
|
|
|
|
#include <QDialog>
|
|
|
|
namespace Ui {
|
|
class AddressBookDialog;
|
|
}
|
|
|
|
class AddressBookDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit AddressBookDialog(QWidget *parent = 0);
|
|
~AddressBookDialog();
|
|
|
|
enum {
|
|
SendingTab = 0,
|
|
ReceivingTab = 1
|
|
} Tabs;
|
|
|
|
void setTab(int tab);
|
|
private:
|
|
Ui::AddressBookDialog *ui;
|
|
|
|
private slots:
|
|
void on_newAddressButton_clicked();
|
|
void on_editButton_clicked();
|
|
void on_copyToClipboard_clicked();
|
|
void on_OKButton_clicked();
|
|
};
|
|
|
|
#endif // ADDRESSBOOKDIALOG_H
|