Zhenkai Zhu | 6d589aa | 2012-05-29 17:34:35 -0700 | [diff] [blame] | 1 | #ifndef CHATDIALOG_H |
| 2 | #define CHATDIALOG_H |
Zhenkai Zhu | b45e38a | 2012-06-01 15:44:36 -0700 | [diff] [blame] | 3 | #include <boost/function.hpp> |
Zhenkai Zhu | 44b4375 | 2012-06-05 21:18:37 -0700 | [diff] [blame] | 4 | #include <boost/thread/mutex.hpp> |
Zhenkai Zhu | b45e38a | 2012-06-01 15:44:36 -0700 | [diff] [blame] | 5 | #include <vector> |
| 6 | #include "digesttreescene.h" |
Zhenkai Zhu | 6d589aa | 2012-05-29 17:34:35 -0700 | [diff] [blame] | 7 | #include "ui_chatdialog.h" |
Zhenkai Zhu | 5a8d5aa | 2012-05-30 21:25:23 -0700 | [diff] [blame] | 8 | #include "chatbuf.pb.h" |
Zhenkai Zhu | 90ee76c | 2012-06-01 16:00:25 -0700 | [diff] [blame] | 9 | #include <sync-app-socket.h> |
Zhenkai Zhu | 85845d2 | 2012-06-01 23:10:43 -0700 | [diff] [blame] | 10 | #include <sync-logic.h> |
| 11 | #include <sync-seq-no.h> |
Zhenkai Zhu | 3a008fc | 2012-06-08 17:36:39 -0700 | [diff] [blame^] | 12 | #include <QSystemTrayIcon> |
Zhenkai Zhu | 6d589aa | 2012-05-29 17:34:35 -0700 | [diff] [blame] | 13 | |
Zhenkai Zhu | 7e9b06d | 2012-06-02 00:44:42 -0700 | [diff] [blame] | 14 | #define ORGANIZATION "IRL@UCLA" |
| 15 | #define APPLICATION "SYNC-DEMO" |
| 16 | |
Zhenkai Zhu | 3a008fc | 2012-06-08 17:36:39 -0700 | [diff] [blame^] | 17 | class QAction; |
| 18 | class QMenu; |
| 19 | |
Zhenkai Zhu | 6d589aa | 2012-05-29 17:34:35 -0700 | [diff] [blame] | 20 | class ChatDialog : public QDialog, private Ui::ChatDialog |
| 21 | { |
| 22 | Q_OBJECT |
| 23 | |
| 24 | public: |
Zhenkai Zhu | 3a008fc | 2012-06-08 17:36:39 -0700 | [diff] [blame^] | 25 | ChatDialog(QWidget *parent = 0); |
Zhenkai Zhu | 82a6275 | 2012-06-04 17:11:04 -0700 | [diff] [blame] | 26 | ~ChatDialog(); |
Zhenkai Zhu | 3a008fc | 2012-06-08 17:36:39 -0700 | [diff] [blame^] | 27 | void setVisible(bool visible); |
Zhenkai Zhu | 82a6275 | 2012-06-04 17:11:04 -0700 | [diff] [blame] | 28 | void processRemove(const std::string); |
Zhenkai Zhu | 64f9ede | 2012-06-05 11:32:00 -0700 | [diff] [blame] | 29 | void appendMessage(const SyncDemo::ChatMessage msg); |
| 30 | void processTreeUpdateWrapper(const std::vector<Sync::MissingDataInfo>, Sync::SyncAppSocket *); |
| 31 | void processDataWrapper(std::string, const char *buf, size_t len); |
Zhenkai Zhu | b45e38a | 2012-06-01 15:44:36 -0700 | [diff] [blame] | 32 | |
Zhenkai Zhu | 3a008fc | 2012-06-08 17:36:39 -0700 | [diff] [blame^] | 33 | protected: |
| 34 | void closeEvent(QCloseEvent *e); |
| 35 | void changeEvent(QEvent *e); |
| 36 | |
Zhenkai Zhu | 10ccb5a | 2012-06-04 21:55:14 -0700 | [diff] [blame] | 37 | public slots: |
Zhenkai Zhu | 64f9ede | 2012-06-05 11:32:00 -0700 | [diff] [blame] | 38 | void processTreeUpdate(const std::vector<Sync::MissingDataInfo>); |
| 39 | void processData(QString name, const char *buf, size_t len); |
Zhenkai Zhu | 10ccb5a | 2012-06-04 21:55:14 -0700 | [diff] [blame] | 40 | |
Zhenkai Zhu | b45e38a | 2012-06-01 15:44:36 -0700 | [diff] [blame] | 41 | private: |
| 42 | void formChatMessage(const QString &text, SyncDemo::ChatMessage &msg); |
Zhenkai Zhu | 82a6275 | 2012-06-04 17:11:04 -0700 | [diff] [blame] | 43 | bool readSettings(); |
Zhenkai Zhu | 7e9b06d | 2012-06-02 00:44:42 -0700 | [diff] [blame] | 44 | void writeSettings(); |
| 45 | void updateLabels(); |
Zhenkai Zhu | d13acd0 | 2012-06-04 15:25:20 -0700 | [diff] [blame] | 46 | void resizeEvent(QResizeEvent *); |
| 47 | void showEvent(QShowEvent *); |
| 48 | void fitView(); |
Zhenkai Zhu | 21d75f9 | 2012-06-04 21:23:34 -0700 | [diff] [blame] | 49 | void testDraw(); |
Zhenkai Zhu | 3a008fc | 2012-06-08 17:36:39 -0700 | [diff] [blame^] | 50 | void createTrayIcon(); |
| 51 | void createActions(); |
Zhenkai Zhu | 5a8d5aa | 2012-05-30 21:25:23 -0700 | [diff] [blame] | 52 | |
| 53 | private slots: |
| 54 | void returnPressed(); |
Zhenkai Zhu | 85845d2 | 2012-06-01 23:10:43 -0700 | [diff] [blame] | 55 | void buttonPressed(); |
Zhenkai Zhu | e837f79 | 2012-06-05 20:47:54 -0700 | [diff] [blame] | 56 | void checkSetting(); |
Zhenkai Zhu | 7e9b06d | 2012-06-02 00:44:42 -0700 | [diff] [blame] | 57 | void settingUpdated(QString, QString, QString); |
Zhenkai Zhu | 5a8d5aa | 2012-05-30 21:25:23 -0700 | [diff] [blame] | 58 | |
Zhenkai Zhu | 3a008fc | 2012-06-08 17:36:39 -0700 | [diff] [blame^] | 59 | // icon related |
| 60 | void iconActivated(QSystemTrayIcon::ActivationReason reason); |
| 61 | void showMessage(QString, QString); |
| 62 | void messageClicked(); |
| 63 | |
Zhenkai Zhu | 10ccb5a | 2012-06-04 21:55:14 -0700 | [diff] [blame] | 64 | signals: |
Zhenkai Zhu | 64f9ede | 2012-06-05 11:32:00 -0700 | [diff] [blame] | 65 | void dataReceived(QString name, const char *buf, size_t len); |
| 66 | void treeUpdated(const std::vector<Sync::MissingDataInfo>); |
Zhenkai Zhu | 10ccb5a | 2012-06-04 21:55:14 -0700 | [diff] [blame] | 67 | |
Zhenkai Zhu | 5a8d5aa | 2012-05-30 21:25:23 -0700 | [diff] [blame] | 68 | private: |
Zhenkai Zhu | 71b42cb | 2012-06-04 09:42:53 -0700 | [diff] [blame] | 69 | User m_user; |
Zhenkai Zhu | b45e38a | 2012-06-01 15:44:36 -0700 | [diff] [blame] | 70 | Sync::SyncAppSocket *m_sock; |
Zhenkai Zhu | 82a6275 | 2012-06-04 17:11:04 -0700 | [diff] [blame] | 71 | uint32_t m_session; |
| 72 | DigestTreeScene *m_scene; |
Zhenkai Zhu | 44b4375 | 2012-06-05 21:18:37 -0700 | [diff] [blame] | 73 | boost::mutex m_msgMutex; |
| 74 | boost::mutex m_sceneMutex; |
Zhenkai Zhu | 3a008fc | 2012-06-08 17:36:39 -0700 | [diff] [blame^] | 75 | |
| 76 | // icon related |
| 77 | QAction *minimizeAction; |
| 78 | QAction *maximizeAction; |
| 79 | QAction *restoreAction; |
| 80 | QAction *quitAction; |
| 81 | QSystemTrayIcon *trayIcon; |
| 82 | QMenu *trayIconMenu; |
Zhenkai Zhu | 6d589aa | 2012-05-29 17:34:35 -0700 | [diff] [blame] | 83 | }; |
| 84 | #endif |