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

75 lines
2.0 KiB
C
Raw Normal View History

/*
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>
#include <QPoint>
2014-09-11 21:44:34 +08:00
#include <QDateTime>
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;
namespace Ui {
class MainWindow;
}
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);
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());
void addSystemInfoMessage(const QString &message, const QString &type, const QDateTime &datetime=QDateTime::currentDateTime());
signals:
void sendMessage(int, QString);
public slots:
2014-09-11 05:00:45 +08:00
void focusInput();
protected slots:
void onChatContextMenuRequested(QPoint pos);
void onSaveLogClicked();
2014-09-05 23:05:57 +08:00
void onEmoteButtonClicked();
void onEmoteInsertRequested(QString str);
protected:
2014-09-10 00:28:07 +08:00
CroppingLabel *nameLabel;
QLabel *avatarLabel;
2014-09-26 00:03:25 +08:00
QWidget *headWidget;
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;
int curRow;
};
#endif // GENERICCHATFORM_H