Yingdi Yu | 847aa86 | 2013-10-09 16:35:53 -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 | |
| 11 | #include <QApplication> |
| 12 | #include <QSystemTrayIcon> |
| 13 | |
| 14 | #include "chronochat.h" |
| 15 | #include "contactpanel.h" |
Yingdi Yu | 3b318c1 | 2013-10-15 17:54:00 -0700 | [diff] [blame] | 16 | #include "contact-storage.h" |
Yingdi Yu | 4685b1b | 2013-10-18 17:05:02 -0700 | [diff] [blame] | 17 | #include "dns-storage.h" |
Yingdi Yu | 9236c43 | 2013-10-18 11:29:25 -0700 | [diff] [blame] | 18 | #include "contact-manager.h" |
Yingdi Yu | 4694828 | 2013-11-06 18:43:31 -0800 | [diff] [blame^] | 19 | #include "logging.h" |
Yingdi Yu | 3b318c1 | 2013-10-15 17:54:00 -0700 | [diff] [blame] | 20 | #include <ndn.cxx/security/identity/identity-manager.h> |
| 21 | #include <ndn.cxx/security/identity/osx-privatekey-storage.h> |
| 22 | #include <ndn.cxx/security/identity/basic-identity-storage.h> |
| 23 | |
Yingdi Yu | 4694828 | 2013-11-06 18:43:31 -0800 | [diff] [blame^] | 24 | INIT_LOGGER("MAIN"); |
| 25 | |
Yingdi Yu | 3b318c1 | 2013-10-15 17:54:00 -0700 | [diff] [blame] | 26 | using namespace ndn; |
Zhenkai Zhu | 6d589aa | 2012-05-29 17:34:35 -0700 | [diff] [blame] | 27 | |
Yingdi Yu | 7989eb2 | 2013-10-31 17:38:22 -0700 | [diff] [blame] | 28 | class NewApp : public QApplication |
| 29 | { |
| 30 | public: |
| 31 | NewApp(int & argc, char ** argv) |
| 32 | : QApplication(argc, argv) |
Yingdi Yu | 4694828 | 2013-11-06 18:43:31 -0800 | [diff] [blame^] | 33 | { } |
Yingdi Yu | 7989eb2 | 2013-10-31 17:38:22 -0700 | [diff] [blame] | 34 | |
| 35 | bool notify(QObject * receiver, QEvent * event) |
| 36 | { |
| 37 | try |
| 38 | { |
| 39 | return QApplication::notify(receiver, event); |
| 40 | } |
| 41 | catch(std::exception& e) |
| 42 | { |
| 43 | std::cerr << "Exception thrown:" << e.what() << endl; |
| 44 | return false; |
| 45 | } |
| 46 | |
| 47 | } |
| 48 | }; |
| 49 | |
Alexander Afanasyev | b4b9229 | 2013-07-09 13:54:59 -0700 | [diff] [blame] | 50 | int main(int argc, char *argv[]) |
Zhenkai Zhu | 6d589aa | 2012-05-29 17:34:35 -0700 | [diff] [blame] | 51 | { |
Yingdi Yu | 7989eb2 | 2013-10-31 17:38:22 -0700 | [diff] [blame] | 52 | NewApp app(argc, argv); |
Zhenkai Zhu | 3a008fc | 2012-06-08 17:36:39 -0700 | [diff] [blame] | 53 | |
Yingdi Yu | 4694828 | 2013-11-06 18:43:31 -0800 | [diff] [blame^] | 54 | // app.setWindowIcon(QIcon(":/demo.icns")); |
Alexander Afanasyev | b4b9229 | 2013-07-09 13:54:59 -0700 | [diff] [blame] | 55 | |
Yingdi Yu | 4694828 | 2013-11-06 18:43:31 -0800 | [diff] [blame^] | 56 | Ptr<ContactStorage> contactStorage = Ptr<ContactStorage>::Create(); |
| 57 | Ptr<DnsStorage> dnsStorage = Ptr<DnsStorage>::Create(); |
Yingdi Yu | 4685b1b | 2013-10-18 17:05:02 -0700 | [diff] [blame] | 58 | Ptr<ContactManager> contactManager = Ptr<ContactManager>(new ContactManager(contactStorage, dnsStorage)); |
Yingdi Yu | 9236c43 | 2013-10-18 11:29:25 -0700 | [diff] [blame] | 59 | |
Yingdi Yu | 4685b1b | 2013-10-18 17:05:02 -0700 | [diff] [blame] | 60 | ContactPanel contactPanel(contactManager); |
Alexander Afanasyev | b4b9229 | 2013-07-09 13:54:59 -0700 | [diff] [blame] | 61 | |
Yingdi Yu | 847aa86 | 2013-10-09 16:35:53 -0700 | [diff] [blame] | 62 | contactPanel.show (); |
| 63 | contactPanel.activateWindow (); |
| 64 | contactPanel.raise (); |
| 65 | |
Zhenkai Zhu | 6d589aa | 2012-05-29 17:34:35 -0700 | [diff] [blame] | 66 | return app.exec(); |
| 67 | } |