2014-09-05 02:09:55 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef GENERICCHATFORM_H
|
|
|
|
#define GENERICCHATFORM_H
|
|
|
|
|
2014-09-26 00:03:25 +08:00
|
|
|
#include <QWidget>
|
2014-09-05 02:09:55 +08:00
|
|
|
#include <QPoint>
|
2014-09-11 21:44:34 +08:00
|
|
|
#include <QDateTime>
|
2014-10-09 22:36:24 +08:00
|
|
|
#include <QMenu>
|
2014-11-03 01:36:27 +08:00
|
|
|
#include "src/corestructs.h"
|
2015-01-05 01:21:35 +08:00
|
|
|
#include "src/chatlog/chatmessage.h"
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2014-09-05 23:24:29 +08:00
|
|
|
// Spacing in px inserted when the author of the last message changes
|
2014-10-20 18:01:22 +08:00
|
|
|
#define AUTHOR_CHANGE_SPACING 5 // why the hell is this a thing? surely the different font is enough?
|
2014-09-05 23:24:29 +08:00
|
|
|
|
2014-09-11 21:44:34 +08:00
|
|
|
class QLabel;
|
|
|
|
class QVBoxLayout;
|
|
|
|
class QPushButton;
|
|
|
|
class CroppingLabel;
|
|
|
|
class ChatTextEdit;
|
2014-11-12 21:11:25 +08:00
|
|
|
class ChatLog;
|
2014-09-26 22:39:29 +08:00
|
|
|
class MaskablePixmapWidget;
|
2015-02-28 01:56:47 +08:00
|
|
|
class Widget;
|
2014-11-03 01:36:27 +08:00
|
|
|
struct ToxID;
|
2014-09-11 21:44:34 +08:00
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
namespace Ui {
|
|
|
|
class MainWindow;
|
|
|
|
}
|
|
|
|
|
2014-09-26 00:03:25 +08:00
|
|
|
class GenericChatForm : public QWidget
|
2014-09-05 02:09:55 +08:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2014-09-26 00:03:25 +08:00
|
|
|
GenericChatForm(QWidget *parent = 0);
|
2014-09-05 02:09:55 +08:00
|
|
|
|
|
|
|
virtual void setName(const QString &newName);
|
|
|
|
virtual void show(Ui::MainWindow &ui);
|
2014-11-10 01:02:43 +08:00
|
|
|
|
2015-01-04 20:29:14 +08:00
|
|
|
ChatMessage::Ptr addMessage(const ToxID& author, const QString &message, bool isAction, const QDateTime &datetime, bool isSent);
|
|
|
|
ChatMessage::Ptr addSelfMessage(const QString &message, bool isAction, const QDateTime &datetime, bool isSent);
|
2015-01-03 17:17:53 +08:00
|
|
|
|
2015-01-05 01:21:35 +08:00
|
|
|
void addSystemInfoMessage(const QString &message, ChatMessage::SystemMessageType type, const QDateTime &datetime);
|
2014-11-03 01:36:27 +08:00
|
|
|
void addAlertMessage(const ToxID& author, QString message, QDateTime datetime);
|
2014-11-08 21:46:26 +08:00
|
|
|
bool isEmpty();
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2014-12-14 04:11:03 +08:00
|
|
|
ChatLog* getChatLog() const;
|
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
signals:
|
2015-04-20 05:12:44 +08:00
|
|
|
void sendMessage(uint32_t, QString);
|
|
|
|
void sendAction(uint32_t, QString);
|
2014-11-10 21:06:35 +08:00
|
|
|
void chatAreaCleared();
|
2014-09-05 02:09:55 +08:00
|
|
|
|
|
|
|
public slots:
|
2014-09-11 05:00:45 +08:00
|
|
|
void focusInput();
|
2014-09-05 02:09:55 +08:00
|
|
|
|
|
|
|
protected slots:
|
|
|
|
void onChatContextMenuRequested(QPoint pos);
|
2014-09-05 23:05:57 +08:00
|
|
|
void onEmoteButtonClicked();
|
|
|
|
void onEmoteInsertRequested(QString str);
|
2015-01-04 21:21:05 +08:00
|
|
|
void onSaveLogClicked();
|
|
|
|
void onCopyLogClicked();
|
2014-10-11 01:32:10 +08:00
|
|
|
void clearChatArea(bool);
|
2015-02-28 02:25:27 +08:00
|
|
|
void clearChatArea();
|
2015-01-27 02:32:33 +08:00
|
|
|
void onSelectAllClicked();
|
2015-02-28 01:56:47 +08:00
|
|
|
void previousContact();
|
|
|
|
void nextContact();
|
2014-09-05 02:09:55 +08:00
|
|
|
|
|
|
|
protected:
|
2014-11-23 23:55:49 +08:00
|
|
|
QString resolveToxID(const ToxID &id);
|
2015-01-05 01:21:35 +08:00
|
|
|
void insertChatMessage(ChatMessage::Ptr msg);
|
2014-09-29 00:39:26 +08:00
|
|
|
|
2014-11-03 01:36:27 +08:00
|
|
|
ToxID previousId;
|
2015-02-28 01:56:47 +08:00
|
|
|
Widget *parent;
|
2014-10-09 22:36:24 +08:00
|
|
|
QMenu menu;
|
2014-11-03 01:36:27 +08:00
|
|
|
int curRow;
|
2014-09-10 00:28:07 +08:00
|
|
|
CroppingLabel *nameLabel;
|
2014-09-26 22:39:29 +08:00
|
|
|
MaskablePixmapWidget *avatar;
|
2014-09-26 00:03:25 +08:00
|
|
|
QWidget *headWidget;
|
2014-09-05 02:09:55 +08:00
|
|
|
QPushButton *fileButton, *emoteButton, *callButton, *videoButton, *volButton, *micButton;
|
|
|
|
QVBoxLayout *headTextLayout;
|
|
|
|
ChatTextEdit *msgEdit;
|
|
|
|
QPushButton *sendButton;
|
2014-11-12 21:11:25 +08:00
|
|
|
ChatLog *chatWidget;
|
2015-01-05 02:29:06 +08:00
|
|
|
QDateTime earliestMessage;
|
2015-02-16 23:48:22 +08:00
|
|
|
QDateTime historyBaselineDate = QDateTime::currentDateTime(); // used by HistoryKeeper to load messages from t to historyBaselineDate (excluded)
|
2014-11-13 20:11:23 +08:00
|
|
|
bool audioInputFlag;
|
|
|
|
bool audioOutputFlag;
|
2014-09-05 02:09:55 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GENERICCHATFORM_H
|