blob: 5dea76c5eb0706c80b421e5ca5d58e8149014bbb [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 "contactpanel.h"
#include "ui_contactpanel.h"
#include <QStringList>
#include <QItemSelectionModel>
#include <QModelIndex>
#include <QDir>
#ifndef Q_MOC_RUN
#include <boost/filesystem.hpp>
#include "logging.h"
#include "exception.h"
#endif
namespace fs = boost::filesystem;
using namespace ndn;
INIT_LOGGER("ContactPanel");
ContactPanel::ContactPanel(Ptr<ContactStorage> contactStorage, QWidget *parent)
: QDialog(parent)
, ui(new Ui::ContactPanel)
, m_contactStorage(contactStorage)
, m_contactListModel(new QStringListModel)
, m_profileEditor(NULL)
{
ui->setupUi(this);
QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
QString path = (QDir::home().path());
path.append(QDir::separator()).append(".chronos").append(QDir::separator()).append("chronos.db");
db.setDatabaseName(path);
bool ok = db.open();
QStringList contactNameList;
contactNameList << "Alex" << "Wentao" << "Yingdi";
m_contactListModel->setStringList(contactNameList);
ui->ContactList->setModel(m_contactListModel);
QItemSelectionModel* selectionModel = ui->ContactList->selectionModel();
connect(selectionModel, SIGNAL(selectionChanged(const QItemSelection &, const QItemSelection &)),
this, SLOT(updateSelection(const QItemSelection &, const QItemSelection &)));
connect(ui->EditProfileButton, SIGNAL(clicked()),
this, SLOT(openProfileEditor()));
}
ContactPanel::~ContactPanel()
{
delete ui;
delete m_contactListModel;
}
void
ContactPanel::updateSelection(const QItemSelection &selected,
const QItemSelection &deselected)
{
QModelIndexList items = selected.indexes();
QString text = m_contactListModel->data(items.first(), Qt::DisplayRole).toString();
ui->NameData->setText(text);
}
void
ContactPanel::openProfileEditor()
{
if(m_profileEditor == NULL)
m_profileEditor = new ProfileEditor(m_contactStorage);
m_profileEditor->show();
}
#if WAF
#include "contactpanel.moc"
#include "contactpanel.cpp.moc"
#endif