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

122 lines
3.8 KiB
C
Raw Normal View History

/*
Copyright © 2014-2015 by The qTox Project
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox 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.
qTox 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
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with qTox. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GENERICCHATFORM_H
#define GENERICCHATFORM_H
2014-09-26 00:03:25 +08:00
#include <QWidget>
#include <QPoint>
2014-09-11 21:44:34 +08:00
#include <QDateTime>
2014-10-09 22:36:24 +08:00
#include <QMenu>
#include "src/core/corestructs.h"
2015-01-05 01:21:35 +08:00
#include "src/chatlog/chatmessage.h"
#include "../../core/toxid.h"
2014-09-05 23:24:29 +08:00
// Spacing in px inserted when the author of the last message changes
#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;
class MaskablePixmapWidget;
class Widget;
class FlyoutOverlayWidget;
class ContentLayout;
2014-09-26 00:03:25 +08:00
class GenericChatForm : public QWidget
{
Q_OBJECT
public:
2014-09-26 00:03:25 +08:00
GenericChatForm(QWidget *parent = 0);
~GenericChatForm();
void setName(const QString &newName);
virtual void show() final{}
virtual void show(ContentLayout* contentLayout);
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-05 01:21:35 +08:00
void addSystemInfoMessage(const QString &message, ChatMessage::SystemMessageType type, const QDateTime &datetime);
void addAlertMessage(const ToxId& author, QString message, QDateTime datetime);
2014-11-08 21:46:26 +08:00
bool isEmpty();
2014-12-14 04:11:03 +08:00
ChatLog* getChatLog() const;
QDate getLatestDate() const;
2014-12-14 04:11:03 +08:00
signals:
void sendMessage(uint32_t, QString);
void sendAction(uint32_t, QString);
2014-11-10 21:06:35 +08:00
void chatAreaCleared();
public slots:
2014-09-11 05:00:45 +08:00
void focusInput();
protected slots:
void onChatContextMenuRequested(QPoint pos);
2014-09-05 23:05:57 +08:00
void onEmoteButtonClicked();
void onEmoteInsertRequested(QString str);
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();
void onSelectAllClicked();
void showFileMenu();
void hideFileMenu();
private:
void retranslateUi();
protected:
QString resolveToxId(const ToxId &id);
2015-01-05 01:21:35 +08:00
void insertChatMessage(ChatMessage::Ptr msg);
void adjustFileMenuPosition();
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
protected:
QAction* saveChatAction, *clearAction;
ToxId previousId;
QDateTime prevMsgDateTime;
Widget *parent;
2014-10-09 22:36:24 +08:00
QMenu menu;
int curRow;
2014-09-10 00:28:07 +08:00
CroppingLabel *nameLabel;
MaskablePixmapWidget *avatar;
2014-09-26 00:03:25 +08:00
QWidget *headWidget;
QPushButton *fileButton, *screenshotButton, *emoteButton, *callButton, *videoButton, *volButton, *micButton;
FlyoutOverlayWidget *fileFlyout;
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;
};
#endif // GENERICCHATFORM_H