| /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */ |
| * Copyright (c) 2013, Regents of the University of California |
| * BSD license, See the LICENSE file for more information |
| * Author: Yingdi Yu <yingdi@cs.ucla.edu> |
| #ifndef CHRONOCHAT_INVITE_LIST_DIALOG_HPP |
| #define CHRONOCHAT_INVITE_LIST_DIALOG_HPP |
| #include <QStringListModel> |
| class InviteListDialog : public QDialog |
| InviteListDialog(QWidget* parent = 0); |
| setInviteLabel(std::string label); |
| sendInvitation(const QString&); |
| onContactAliasListReady(const QStringList& aliasList); |
| onContactIdListReady(const QStringList& idList); |
| Ui::InviteListDialog* ui; |
| QStringListModel* m_contactListModel; |
| QStringList m_contactAliasList; |
| QStringList m_contactIdList; |
| } // namespace chronochat |
| #endif // CHRONOCHAT_INVITE_LIST_DIALOG_HPP |