aboutsummaryrefslogtreecommitdiff
path: root/gui/include/addressbookdialog.h
blob: bf7c2a65a6571f62bf65690907dcee7c121cb8d9 (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
#ifndef ADDRESSBOOKDIALOG_H
#define ADDRESSBOOKDIALOG_H

#include <QDialog>

namespace Ui {
    class AddressBookDialog;
}
class AddressTableModel;

QT_BEGIN_NAMESPACE
class QTableView;
QT_END_NAMESPACE

class AddressBookDialog : public QDialog
{
    Q_OBJECT

public:
    explicit AddressBookDialog(QWidget *parent = 0);
    ~AddressBookDialog();

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

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

    QTableView *getCurrentTable();

private slots:
    void on_buttonBox_accepted();
    void on_deleteButton_clicked();
    void on_tabWidget_currentChanged(int index);
    void on_newAddressButton_clicked();
    void on_editButton_clicked();
    void on_copyToClipboard_clicked();
};

#endif // ADDRESSBOOKDIALOG_H