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

101 lines
2.8 KiB
C
Raw Normal View History

2014-11-16 19:58:43 +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.
*/
2014-11-12 21:11:25 +08:00
#ifndef CHATLOG_H
#define CHATLOG_H
#include <QGraphicsView>
#include <QDateTime>
class QGraphicsScene;
class ChatLine;
class ChatLineContent;
2014-11-12 23:45:24 +08:00
class ChatMessage;
2014-11-17 03:01:37 +08:00
class ToxFile;
2014-11-12 21:11:25 +08:00
class ChatLog : public QGraphicsView
{
Q_OBJECT
public:
explicit ChatLog(QWidget* parent = 0);
virtual ~ChatLog();
2014-11-16 19:40:44 +08:00
ChatMessage* addChatMessage(const QString& sender, const QString& msg, const QDateTime& timestamp, bool self);
ChatMessage* addChatMessage(const QString& sender, const QString& msg, bool self);
ChatMessage* addSystemMessage(const QString& msg, const QDateTime& timestamp);
2014-11-17 03:01:37 +08:00
ChatMessage* addFileTransferMessage(const QString& sender, const ToxFile& file, const QDateTime &timestamp, bool self);
2014-11-12 23:45:24 +08:00
2014-11-12 21:11:25 +08:00
void insertChatline(ChatLine* l);
void clearSelection();
void clear();
void copySelectedText() const;
QString getSelectedText() const;
protected:
QRect getVisibleRect() const;
ChatLineContent* getContentFromPos(QPointF scenePos) const;
bool layout(int start, int end, qreal width);
bool isOverSelection(QPointF scenePos);
bool stickToBottom();
int useableWidth();
void reposition(int start, int end);
void repositionDownTo(int start, qreal end);
void updateSceneRect();
void partialUpdate();
void fullUpdate();
void checkVisibility();
void scrollToBottom();
void showContextMenu(const QPoint& globalPos, const QPointF& scenePos);
virtual void mousePressEvent(QMouseEvent* ev);
virtual void mouseReleaseEvent(QMouseEvent* ev);
virtual void mouseMoveEvent(QMouseEvent* ev);
virtual void scrollContentsBy(int dx, int dy);
virtual void resizeEvent(QResizeEvent *ev);
private:
QGraphicsScene* scene = nullptr;
QList<ChatLine*> lines;
QList<ChatLine*> visibleLines;
bool multiLineInsert = false;
bool stickToBtm = false;
int insertStartIndex = -1;
// selection
int selStartRow = -1;
int selStartCol = -1;
int selLastRow = -1;
int selLastCol = -1;
bool selecting = false;
QPointF clickPos;
QPointF lastPos;
// actions
QAction* copyAction = nullptr;
// layout
qreal lineSpacing = 10.0f;
};
#endif // CHATLOG_H