blob: 0ed7fc25f98f622b1f4725b1a273df5adfc0843c [file] [log] [blame]
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2013, Regents of the University of California
* Yingdi Yu
*
* BSD license, See the LICENSE file for more information
*
* Author: Yingdi Yu <yingdi@cs.ucla.edu>
*/
#include <QApplication>
#include <QSystemTrayIcon>
#include "contactpanel.h"
#include "contact-storage.h"
#include "dns-storage.h"
#include "contact-manager.h"
#include "logging.h"
#include <ndn.cxx/security/identity/identity-manager.h>
#include <ndn.cxx/security/identity/osx-privatekey-storage.h>
#include <ndn.cxx/security/identity/basic-identity-storage.h>
INIT_LOGGER("MAIN");
using namespace ndn;
class NewApp : public QApplication
{
public:
NewApp(int & argc, char ** argv)
: QApplication(argc, argv)
{ }
bool notify(QObject * receiver, QEvent * event)
{
try
{
return QApplication::notify(receiver, event);
}
catch(std::exception& e)
{
std::cerr << "Exception thrown:" << e.what() << endl;
return false;
}
}
};
int main(int argc, char *argv[])
{
NewApp app(argc, argv);
// app.setWindowIcon(QIcon(":/demo.icns"));
Ptr<ContactStorage> contactStorage = NULL;
Ptr<DnsStorage> dnsStorage = NULL;
try{
contactStorage = Ptr<ContactStorage>::Create();
dnsStorage = Ptr<DnsStorage>::Create();
}catch(std::exception& e){
std::cerr << e.what() << std::endl;
exit(1);
}
Ptr<ContactManager> contactManager = Ptr<ContactManager>(new ContactManager(contactStorage, dnsStorage));
ContactPanel contactPanel(contactManager);
contactPanel.show ();
contactPanel.activateWindow ();
contactPanel.raise ();
return app.exec();
}