blob: 337f20faa30a6658270342bbcd7494a1ebcd4544 [file] [log] [blame]
Zhenkai Zhufd52ab72012-05-29 17:34:35 -07001#ifndef CHATDIALOG_H
2#define CHATDIALOG_H
Zhenkai Zhu9ec8f412012-06-01 15:44:36 -07003#include <boost/function.hpp>
4#include <vector>
5#include "digesttreescene.h"
Zhenkai Zhufd52ab72012-05-29 17:34:35 -07006#include "ui_chatdialog.h"
Zhenkai Zhuc71da772012-05-30 21:25:23 -07007#include "chatbuf.pb.h"
Zhenkai Zhuea026982012-06-01 16:00:25 -07008#include <sync-app-socket.h>
Zhenkai Zhu275ba3a2012-06-01 23:10:43 -07009#include <sync-logic.h>
10#include <sync-seq-no.h>
Zhenkai Zhufd52ab72012-05-29 17:34:35 -070011
Zhenkai Zhu3472e3f2012-06-02 00:44:42 -070012#define ORGANIZATION "IRL@UCLA"
13#define APPLICATION "SYNC-DEMO"
14
Zhenkai Zhufd52ab72012-05-29 17:34:35 -070015class ChatDialog : public QDialog, private Ui::ChatDialog
16{
17 Q_OBJECT
18
19public:
20 ChatDialog(QWidget *parent = 0);
Zhenkai Zhu2c55b382012-05-31 13:27:24 -070021 void appendMessage(const SyncDemo::ChatMessage &msg);
Zhenkai Zhu275ba3a2012-06-01 23:10:43 -070022 void processData(const std::vector<Sync::MissingDataInfo> &, Sync::SyncAppSocket *);
Zhenkai Zhu9ec8f412012-06-01 15:44:36 -070023
24private:
25 void formChatMessage(const QString &text, SyncDemo::ChatMessage &msg);
Zhenkai Zhu3472e3f2012-06-02 00:44:42 -070026 void readSettings();
27 void writeSettings();
28 void updateLabels();
Zhenkai Zhuc71da772012-05-30 21:25:23 -070029
30private slots:
31 void returnPressed();
Zhenkai Zhu275ba3a2012-06-01 23:10:43 -070032 void buttonPressed();
Zhenkai Zhu3472e3f2012-06-02 00:44:42 -070033 void settingUpdated(QString, QString, QString);
Zhenkai Zhuc71da772012-05-30 21:25:23 -070034
35private:
36 QString m_nick;
37 QString m_chatroom;
Zhenkai Zhu9ec8f412012-06-01 15:44:36 -070038 QString m_prefix;
39 Sync::SyncAppSocket *m_sock;
Zhenkai Zhufd52ab72012-05-29 17:34:35 -070040};
41#endif