blob: 1da3788fd83053ea6b9aef912a5a8928e6b77229 [file] [log] [blame]
Yingdi Yu0269c872013-10-16 13:16:49 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
2/*
3 * Copyright (c) 2013, Regents of the University of California
4 * Yingdi Yu
5 *
6 * BSD license, See the LICENSE file for more information
7 *
8 * Author: Yingdi Yu <yingdi@cs.ucla.edu>
9 */
10
Yingdi Yubf7517c2013-10-15 20:31:37 -070011#ifndef ADDCONTACTPANEL_H
12#define ADDCONTACTPANEL_H
13
14#include <QDialog>
15
Yingdi Yu0269c872013-10-16 13:16:49 -070016#ifndef Q_MOC_RUN
17#include "endorse-certificate.h"
Yingdi Yu9236c432013-10-18 11:29:25 -070018#include "contact-manager.h"
Yingdi Yu0269c872013-10-16 13:16:49 -070019#endif
20
Yingdi Yubf7517c2013-10-15 20:31:37 -070021namespace Ui {
22class AddContactPanel;
23}
24
25class AddContactPanel : public QDialog
26{
Yingdi Yu9236c432013-10-18 11:29:25 -070027 Q_OBJECT
Yingdi Yubf7517c2013-10-15 20:31:37 -070028
29public:
Yingdi Yu9236c432013-10-18 11:29:25 -070030 explicit AddContactPanel(ndn::Ptr<ContactManager> contactManager,
31 QWidget *parent = 0);
32
33 ~AddContactPanel();
Yingdi Yubf7517c2013-10-15 20:31:37 -070034
Yingdi Yu0269c872013-10-16 13:16:49 -070035private slots:
36 void
37 onCancelClicked();
38
39 void
40 onSearchClicked();
41
42 void
43 onAddClicked();
44
Yingdi Yubf7517c2013-10-15 20:31:37 -070045private:
Yingdi Yu0269c872013-10-16 13:16:49 -070046 Ui::AddContactPanel *ui;
Yingdi Yu9236c432013-10-18 11:29:25 -070047 ndn::Ptr<ContactManager> m_contactManager;
Yingdi Yubf7517c2013-10-15 20:31:37 -070048};
49
50#endif // ADDCONTACTPANEL_H