2014-09-05 02:09:55 +08:00
|
|
|
/*
|
2015-06-06 09:40:08 +08:00
|
|
|
Copyright © 2014-2015 by The qTox Project
|
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
This file is part of qTox, a Qt-based graphical interface for Tox.
|
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
qTox is libre software: you can redistribute it and/or modify
|
2014-09-05 02:09:55 +08:00
|
|
|
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.
|
2015-06-06 09:40:08 +08:00
|
|
|
|
|
|
|
qTox is distributed in the hope that it will be useful,
|
2014-09-05 02:09:55 +08:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-06-06 09:40:08 +08:00
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2015-06-06 09:40:08 +08:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with qTox. If not, see <http://www.gnu.org/licenses/>.
|
2014-09-05 02:09:55 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#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>
|
2015-04-24 08:32:09 +08:00
|
|
|
#include "src/core/corestructs.h"
|
2015-01-05 01:21:35 +08:00
|
|
|
#include "src/chatlog/chatmessage.h"
|
2015-05-18 04:55:50 +08:00
|
|
|
#include "../../core/toxid.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;
|
2015-03-25 09:48:26 +08:00
|
|
|
class FlyoutOverlayWidget;
|
2015-06-17 02:25:19 +08:00
|
|
|
class ContentLayout;
|
2014-09-05 02:09:55 +08:00
|
|
|
|
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);
|
2015-06-06 03:37:01 +08:00
|
|
|
~GenericChatForm();
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2015-06-09 02:08:24 +08:00
|
|
|
void setName(const QString &newName);
|
2015-06-29 22:04:19 +08:00
|
|
|
virtual void show() final{}
|
2015-06-17 02:25:19 +08:00
|
|
|
virtual void show(ContentLayout* contentLayout);
|
2014-11-10 01:02:43 +08:00
|
|
|
|
2015-05-18 04:55:50 +08:00
|
|
|
ChatMessage::Ptr addMessage(const ToxId& author, const QString &message, bool isAction, const QDateTime &datetime, bool isSent);
|
2015-01-04 20:29:14 +08:00
|
|
|
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);
|
2015-05-18 04:55:50 +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;
|
2015-06-24 02:58:30 +08:00
|
|
|
QDate getLatestDate() const;
|
2014-12-14 04:11:03 +08:00
|
|
|
|
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-03-25 09:48:26 +08:00
|
|
|
void showFileMenu();
|
|
|
|
void hideFileMenu();
|
2014-09-05 02:09:55 +08:00
|
|
|
|
2015-06-06 03:37:01 +08:00
|
|
|
private:
|
|
|
|
void retranslateUi();
|
|
|
|
|
2014-09-05 02:09:55 +08:00
|
|
|
protected:
|
2015-05-24 02:58:41 +08:00
|
|
|
QString resolveToxId(const ToxId &id);
|
2015-01-05 01:21:35 +08:00
|
|
|
void insertChatMessage(ChatMessage::Ptr msg);
|
2015-04-05 05:22:03 +08:00
|
|
|
void adjustFileMenuPosition();
|
2015-06-09 02:08:24 +08:00
|
|
|
virtual void hideEvent(QHideEvent* event) override;
|
|
|
|
virtual void showEvent(QShowEvent *) override;
|
|
|
|
virtual bool event(QEvent *) final override;
|
|
|
|
virtual void resizeEvent(QResizeEvent* event) final override;
|
|
|
|
virtual bool eventFilter(QObject* object, QEvent* event) final override;
|
2014-09-29 00:39:26 +08:00
|
|
|
|
2015-06-09 02:08:24 +08:00
|
|
|
protected:
|
2015-06-06 03:37:01 +08:00
|
|
|
QAction* saveChatAction, *clearAction;
|
2015-05-18 04:55:50 +08:00
|
|
|
ToxId previousId;
|
2015-03-26 05:31:39 +08:00
|
|
|
QDateTime prevMsgDateTime;
|
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;
|
2015-03-25 09:48:26 +08:00
|
|
|
QPushButton *fileButton, *screenshotButton, *emoteButton, *callButton, *videoButton, *volButton, *micButton;
|
|
|
|
FlyoutOverlayWidget *fileFlyout;
|
2014-09-05 02:09:55 +08:00
|
|
|
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
|