mirror of https://github.com/qTox/qTox.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
2.2 KiB
80 lines
2.2 KiB
#ifndef CHATFORM_H |
|
#define CHATFORM_H |
|
|
|
#include <QLabel> |
|
#include <QWidget> |
|
#include <QVBoxLayout> |
|
#include <QHBoxLayout> |
|
#include <QGridLayout> |
|
#include <QTextEdit> |
|
#include <QScrollArea> |
|
#include <QTime> |
|
|
|
#include "widget/tool/chattextedit.h" |
|
#include "ui_widget.h" |
|
#include "core.h" |
|
|
|
// Spacing in px inserted when the author of the last message changes |
|
#define AUTHOR_CHANGE_SPACING 5 |
|
|
|
class Friend; |
|
|
|
class ChatForm : public QObject |
|
{ |
|
Q_OBJECT |
|
public: |
|
ChatForm(Friend* chatFriend); |
|
~ChatForm(); |
|
void show(Ui::Widget& ui); |
|
void setName(QString newName); |
|
void setStatusMessage(QString newMessage); |
|
void addFriendMessage(QString message); |
|
void addMessage(QString author, QString message, QString date=QTime::currentTime().toString("hh:mm")); |
|
void addMessage(QLabel* author, QLabel* message, QLabel* date); |
|
|
|
signals: |
|
void sendMessage(int, QString); |
|
void sendFile(int32_t friendId, QString, QByteArray); |
|
void startCall(int friendId); |
|
void answerCall(int callId); |
|
void hangupCall(int callId); |
|
void cancelCall(int callId, int friendId); |
|
|
|
public slots: |
|
void startFileSend(ToxFile file); |
|
void onFileRecvRequest(ToxFile file); |
|
void onAvInvite(int FriendId, int CallId); |
|
void onAvStart(int FriendId, int CallId); |
|
void onAvCancel(int FriendId, int CallId); |
|
void onAvEnd(int FriendId, int CallId); |
|
void onAvRinging(int FriendId, int CallId); |
|
void onAvStarting(int FriendId, int CallId); |
|
void onAvEnding(int FriendId, int CallId); |
|
void onAvRequestTimeout(int FriendId, int CallId); |
|
|
|
private slots: |
|
void onSendTriggered(); |
|
void onAttachClicked(); |
|
void onSliderRangeChanged(); |
|
void onCallTriggered(); |
|
void onAnswerCallTriggered(); |
|
void onHangupCallTriggered(); |
|
void onCancelCallTriggered(); |
|
|
|
private: |
|
Friend* f; |
|
QHBoxLayout *headLayout, *mainFootLayout; |
|
QVBoxLayout *headTextLayout, *mainLayout, *footButtonsSmall; |
|
QGridLayout *mainChatLayout; |
|
QLabel *avatar, *name, *statusMessage; |
|
ChatTextEdit *msgEdit; |
|
QPushButton *sendButton, *fileButton, *emoteButton, *callButton; |
|
QScrollArea *chatArea; |
|
QWidget *main, *head, *chatAreaWidget; |
|
QString previousName; |
|
int curRow; |
|
bool lockSliderToBottom; |
|
int callId; |
|
}; |
|
|
|
#endif // CHATFORM_H
|
|
|