blob: 196a263d5096609dc1c8a5974c454b3e5715d2f2 [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>
*/
#ifndef PROFILEEDITOR_H
#define PROFILEEDITOR_H
#include <QDialog>
#include <QtSql/QSqlTableModel>
#ifndef Q_MOC_RUN
#include "contact-manager.h"
#endif
namespace Ui {
class ProfileEditor;
}
class ProfileEditor : public QDialog
{
Q_OBJECT
public:
explicit ProfileEditor(ndn::Ptr<ContactManager> contactManager,
QWidget *parent = 0);
~ProfileEditor();
private slots:
void
onAddClicked();
void
onDeleteClicked();
void
onOkClicked();
void
onGetClicked();
private:
Ui::ProfileEditor *ui;
QSqlTableModel* m_tableModel;
ndn::Ptr<ContactManager> m_contactManager;
ndn::Name m_defaultIdentity;
ndn::Name m_currentIdentity;
};
#endif // PROFILEEDITOR_H