chatroom.h
1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#ifndef CHATROOM_H
#define CHATROOM_H
#include <QMainWindow>
#include <QModelIndex>
#include <thread>
#include <mutex>
#include <condition_variable>
#include <map>
#include "loginscreen.h"
#include "chatwindow.h"
#include "Socket.h"
namespace Ui {
class Chatroom;
}
class Chatroom : public QMainWindow
{
Q_OBJECT
public:
explicit Chatroom(QWidget *parent = 0);
bool getConnected();
void setConnected(bool status);
QString getNickname();
void setNickname(QString nick);
void updateUserList(QString userlist);
void relayMsg(string msg);
void removeChat(QString &nickname);
void putMsgToPrintQueue(string& msg);
void putMsgToSendQueue(QString& msg);
~Chatroom();
private:
Ui::Chatroom *ui;
Socket s;
bool connected;
std::thread *send;
std::thread *recv;
QString nickname;
list<string> printQueue;
map<string,void*> activeChats;
std::mutex chatMutex;
unique_lock<std::mutex>* chatLock;
std::condition_variable chatCreated;
string getSender(string msg);
private slots:
void newChat(QString peerNick);
protected:
void closeEvent(QCloseEvent *event);
public slots:
void startSession();
void sendMsg();
void disconnectChatroom();
void launchChatWindow(QModelIndex index);
private slots:
void printMsg();
signals:
void messagesToPrint();
void createChat(QString sender);
};
void sendThread(Socket* s, Chatroom *chat);
void recvThread(Socket *s, Chatroom *chat);
#endif // CHATROOM_H