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.
29 lines
442 B
29 lines
442 B
14 years ago
|
#ifndef ADDRESSBOOKDIALOG_H
|
||
|
#define ADDRESSBOOKDIALOG_H
|
||
|
|
||
|
#include <QDialog>
|
||
|
|
||
14 years ago
|
namespace Ui {
|
||
|
class AddressBookDialog;
|
||
|
}
|
||
|
|
||
14 years ago
|
class AddressBookDialog : public QDialog
|
||
|
{
|
||
|
Q_OBJECT
|
||
14 years ago
|
|
||
14 years ago
|
public:
|
||
|
explicit AddressBookDialog(QWidget *parent = 0);
|
||
14 years ago
|
~AddressBookDialog();
|
||
14 years ago
|
|
||
14 years ago
|
enum {
|
||
|
SendingTab = 0,
|
||
|
ReceivingTab = 1
|
||
|
} Tabs;
|
||
14 years ago
|
|
||
14 years ago
|
void setTab(int tab);
|
||
|
private:
|
||
|
Ui::AddressBookDialog *ui;
|
||
14 years ago
|
};
|
||
|
|
||
|
#endif // ADDRESSBOOKDIALOG_H
|