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-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
|
|
|
|
#define AUTHOR_CHANGE_SPACING 5
|
|
|
|
|
2014-09-11 21:44:34 +08:00
|
|
|
class QLabel;
|
|
|
|
class QVBoxLayout;
|
|
|
|
class QPushButton;
|
|
|
|
class CroppingLabel;
|
|
|
|
class ChatTextEdit;
|
|
|
|
class ChatAreaWidget;
|
|
|
|
|
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-09-06 03:27:26 +08:00
|
|
|
void addMessage(QString author, QString message, QDateTime datetime=QDateTime::currentDateTime());
|
2014-09-24 00:35:06 +08:00
|
|
|
void addSystemInfoMessage(const QString &message, const QString &type, const QDateTime &datetime=QDateTime::currentDateTime());
|
2014-09-05 02:09:55 +08:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void sendMessage(int, QString);
|
|
|
|
|
|
|
|
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);
|
|
|
|
void onSaveLogClicked();
|
2014-09-05 23:05:57 +08:00
|
|
|
void onEmoteButtonClicked();
|
|
|
|
void onEmoteInsertRequested(QString str);
|
2014-09-05 02:09:55 +08:00
|
|
|
|
|
|
|
protected:
|
2014-09-10 00:28:07 +08:00
|
|
|
CroppingLabel *nameLabel;
|
|
|
|
QLabel *avatarLabel;
|
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;
|
|
|
|
QString previousName;
|
2014-09-07 19:42:06 +08:00
|
|
|
ChatAreaWidget *chatWidget;
|
2014-09-05 02:09:55 +08:00
|
|
|
int curRow;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // GENERICCHATFORM_H
|