Yingdi Yu | d59b593 | 2013-10-16 13:16:49 -0700 | [diff] [blame] | 1 | /* -*- 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 Yu | a489875 | 2013-10-15 20:31:37 -0700 | [diff] [blame] | 11 | #ifndef ADDCONTACTPANEL_H |
| 12 | #define ADDCONTACTPANEL_H |
| 13 | |
| 14 | #include <QDialog> |
Yingdi Yu | c29fb98 | 2013-10-20 19:43:10 -0700 | [diff] [blame] | 15 | #include <QMetaType> |
| 16 | #include "warningdialog.h" |
Yingdi Yu | a489875 | 2013-10-15 20:31:37 -0700 | [diff] [blame] | 17 | |
Yingdi Yu | d59b593 | 2013-10-16 13:16:49 -0700 | [diff] [blame] | 18 | #ifndef Q_MOC_RUN |
| 19 | #include "endorse-certificate.h" |
Yingdi Yu | 79c25a2 | 2013-10-21 13:38:38 -0700 | [diff] [blame^] | 20 | #include "profile.h" |
Yingdi Yu | 0b82a4e | 2013-10-18 11:29:25 -0700 | [diff] [blame] | 21 | #include "contact-manager.h" |
Yingdi Yu | d59b593 | 2013-10-16 13:16:49 -0700 | [diff] [blame] | 22 | #endif |
| 23 | |
Yingdi Yu | a489875 | 2013-10-15 20:31:37 -0700 | [diff] [blame] | 24 | namespace Ui { |
| 25 | class AddContactPanel; |
| 26 | } |
| 27 | |
Yingdi Yu | c29fb98 | 2013-10-20 19:43:10 -0700 | [diff] [blame] | 28 | Q_DECLARE_METATYPE(ndn::Name) |
| 29 | |
| 30 | Q_DECLARE_METATYPE(EndorseCertificate) |
| 31 | |
Yingdi Yu | a489875 | 2013-10-15 20:31:37 -0700 | [diff] [blame] | 32 | class AddContactPanel : public QDialog |
| 33 | { |
Yingdi Yu | 0b82a4e | 2013-10-18 11:29:25 -0700 | [diff] [blame] | 34 | Q_OBJECT |
Yingdi Yu | a489875 | 2013-10-15 20:31:37 -0700 | [diff] [blame] | 35 | |
| 36 | public: |
Yingdi Yu | 0b82a4e | 2013-10-18 11:29:25 -0700 | [diff] [blame] | 37 | explicit AddContactPanel(ndn::Ptr<ContactManager> contactManager, |
| 38 | QWidget *parent = 0); |
| 39 | |
| 40 | ~AddContactPanel(); |
Yingdi Yu | a489875 | 2013-10-15 20:31:37 -0700 | [diff] [blame] | 41 | |
Yingdi Yu | d59b593 | 2013-10-16 13:16:49 -0700 | [diff] [blame] | 42 | private slots: |
| 43 | void |
| 44 | onCancelClicked(); |
| 45 | |
| 46 | void |
| 47 | onSearchClicked(); |
| 48 | |
| 49 | void |
| 50 | onAddClicked(); |
| 51 | |
Yingdi Yu | aa8d769 | 2013-10-18 17:05:02 -0700 | [diff] [blame] | 52 | void |
Yingdi Yu | c29fb98 | 2013-10-20 19:43:10 -0700 | [diff] [blame] | 53 | selfEndorseCertificateFetched(const EndorseCertificate& endorseCertificate); |
| 54 | |
| 55 | void |
| 56 | selfEndorseCertificateFetchFailed(const ndn::Name& identity); |
Yingdi Yu | aa8d769 | 2013-10-18 17:05:02 -0700 | [diff] [blame] | 57 | |
Yingdi Yu | 79c25a2 | 2013-10-21 13:38:38 -0700 | [diff] [blame^] | 58 | signals: |
| 59 | void |
| 60 | newContactAdded(); |
| 61 | |
Yingdi Yu | a489875 | 2013-10-15 20:31:37 -0700 | [diff] [blame] | 62 | private: |
Yingdi Yu | d59b593 | 2013-10-16 13:16:49 -0700 | [diff] [blame] | 63 | Ui::AddContactPanel *ui; |
Yingdi Yu | aa8d769 | 2013-10-18 17:05:02 -0700 | [diff] [blame] | 64 | ndn::Name m_searchIdentity; |
Yingdi Yu | 0b82a4e | 2013-10-18 11:29:25 -0700 | [diff] [blame] | 65 | ndn::Ptr<ContactManager> m_contactManager; |
Yingdi Yu | c29fb98 | 2013-10-20 19:43:10 -0700 | [diff] [blame] | 66 | WarningDialog* m_warningDialog; |
Yingdi Yu | 79c25a2 | 2013-10-21 13:38:38 -0700 | [diff] [blame^] | 67 | ndn::Ptr<EndorseCertificate> m_currentEndorseCertificate; |
Yingdi Yu | a489875 | 2013-10-15 20:31:37 -0700 | [diff] [blame] | 68 | }; |
| 69 | |
| 70 | #endif // ADDCONTACTPANEL_H |