1
0
mirror of https://github.com/qTox/qTox.git synced 2024-03-22 14:00:36 +08:00
qTox/widget/form/chatform.h

107 lines
3.3 KiB
C
Raw Normal View History

2014-07-07 00:19:45 +08:00
/*
Copyright (C) 2014 by Project Tox <https://tox.im>
This file is part of qTox, a Qt-based graphical interface for Tox.
This program is libre software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the COPYING file for more details.
*/
2014-06-25 04:11:11 +08:00
#ifndef CHATFORM_H
#define CHATFORM_H
#include <QLabel>
#include <QWidget>
#include <QVBoxLayout>
#include <QHBoxLayout>
#include <QGridLayout>
#include <QTextEdit>
#include <QScrollArea>
#include <QTime>
#include <QPoint>
2014-06-25 04:11:11 +08:00
#include "widget/tool/chattextedit.h"
2014-06-25 04:11:11 +08:00
#include "ui_widget.h"
2014-06-26 06:30:24 +08:00
#include "core.h"
#include "widget/netcamview.h"
2014-06-25 04:11:11 +08:00
// Spacing in px inserted when the author of the last message changes
#define AUTHOR_CHANGE_SPACING 5
2014-07-01 04:52:03 +08:00
struct Friend;
2014-06-25 04:11:11 +08:00
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);
2014-07-01 19:52:53 +08:00
void sendFile(int32_t friendId, QString, QString, long long);
void startCall(int friendId);
void startVideoCall(int friendId, bool video);
void answerCall(int callId);
void hangupCall(int callId);
2014-06-27 09:06:56 +08:00
void cancelCall(int callId, int friendId);
2014-06-25 04:11:11 +08:00
2014-06-26 06:30:24 +08:00
public slots:
void startFileSend(ToxFile file);
void onFileRecvRequest(ToxFile file);
void onAvInvite(int FriendId, int CallId, bool video);
void onAvStart(int FriendId, int CallId, bool video);
void onAvCancel(int FriendId, int CallId);
void onAvEnd(int FriendId, int CallId);
void onAvRinging(int FriendId, int CallId, bool video);
void onAvStarting(int FriendId, int CallId, bool video);
void onAvEnding(int FriendId, int CallId);
2014-06-27 09:06:56 +08:00
void onAvRequestTimeout(int FriendId, int CallId);
2014-06-28 03:59:25 +08:00
void onAvPeerTimeout(int FriendId, int CallId);
2014-06-26 06:30:24 +08:00
2014-06-25 04:11:11 +08:00
private slots:
void onSendTriggered();
2014-06-26 04:43:28 +08:00
void onAttachClicked();
2014-06-25 04:11:11 +08:00
void onSliderRangeChanged();
void onCallTriggered();
void onVideoCallTriggered();
void onAnswerCallTriggered();
void onHangupCallTriggered();
2014-06-27 09:06:56 +08:00
void onCancelCallTriggered();
void onChatContextMenuRequested(QPoint pos);
void onSaveLogClicked();
2014-07-31 04:07:26 +08:00
void onEmoteButtonClicked();
void onAddEmote();
2014-06-25 04:11:11 +08:00
private:
Friend* f;
QHBoxLayout *headLayout, *mainFootLayout;
2014-06-27 07:49:48 +08:00
QVBoxLayout *headTextLayout, *mainLayout, *footButtonsSmall;
2014-06-25 04:11:11 +08:00
QGridLayout *mainChatLayout;
QLabel *avatar, *name, *statusMessage;
ChatTextEdit *msgEdit;
2014-06-28 14:05:31 +08:00
QPushButton *sendButton, *fileButton, *emoteButton, *callButton, *videoButton;
2014-06-25 04:11:11 +08:00
QScrollArea *chatArea;
QWidget *main, *head, *chatAreaWidget;
QString previousName;
NetCamView* netcam;
2014-06-25 04:11:11 +08:00
int curRow;
bool lockSliderToBottom;
int callId;
2014-06-25 04:11:11 +08:00
};
#endif // CHATFORM_H