aboutsummaryrefslogtreecommitdiff
path: root/src/qt/addressbookdialog.h
blob: befa8b765962cfdee192946d9da4ef77fb39ee4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#ifndef ADDRESSBOOKDIALOG_H
#define ADDRESSBOOKDIALOG_H

#include <QDialog>

namespace Ui {
    class AddressBookDialog;
}
class AddressTableModel;

QT_BEGIN_NAMESPACE
class QTableView;
class QItemSelection;
QT_END_NAMESPACE

class AddressBookDialog : public QDialog
{
    Q_OBJECT

public:
    enum Tabs {
        SendingTab = 0,
        ReceivingTab = 1
    };

    enum Mode {
        ForSending, // Pick address for sending
        ForEditing  // Open address book for editing
    };

    explicit AddressBookDialog(Mode mode, QWidget *parent = 0);
    ~AddressBookDialog();

    void setModel(AddressTableModel *model);
    void setTab(int tab);
    const QString &getReturnValue() const { return returnValue; }
private:
    Ui::AddressBookDialog *ui;
    AddressTableModel *model;
    Mode mode;
    QString returnValue;

    QTableView *getCurrentTable();

private slots:
    void on_buttonBox_accepted();
    void on_deleteButton_clicked();
    void on_newAddressButton_clicked();
    void on_copyToClipboard_clicked();
    void selectionChanged();
};

#endif // ADDRESSBOOKDIALOG_H