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

163 lines
4.6 KiB
C
Raw Normal View History

2014-11-16 19:58:43 +08:00
/*
Copyright © 2014-2015 by The qTox Project Contributors
2014-11-16 19:58:43 +08:00
This file is part of qTox, a Qt-based graphical interface for Tox.
qTox is libre software: you can redistribute it and/or modify
2014-11-16 19:58:43 +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.
qTox is distributed in the hope that it will be useful,
2014-11-16 19:58:43 +08:00
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.
2014-11-16 19:58:43 +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-11-16 19:58:43 +08:00
*/
2014-11-12 21:11:25 +08:00
#ifndef CHATLOG_H
#define CHATLOG_H
#include <QDateTime>
#include <QGraphicsView>
2015-02-15 18:53:26 +08:00
#include <QMargins>
2014-11-12 21:11:25 +08:00
2015-01-04 20:29:14 +08:00
#include "chatline.h"
#include "chatmessage.h"
2014-11-12 21:11:25 +08:00
class QGraphicsScene;
2014-12-09 20:17:08 +08:00
class QGraphicsRectItem;
2015-01-20 17:44:05 +08:00
class QMouseEvent;
2015-01-04 22:18:23 +08:00
class QTimer;
2014-11-12 21:11:25 +08:00
class ChatLineContent;
struct ToxFile;
2014-11-12 21:11:25 +08:00
class ChatLog : public QGraphicsView
{
Q_OBJECT
public:
explicit ChatLog(QWidget* parent = 0);
2015-02-08 17:11:55 +08:00
virtual ~ChatLog();
2014-11-12 21:11:25 +08:00
void insertChatlineAtBottom(ChatLine::Ptr l);
void insertChatlineOnTop(ChatLine::Ptr l);
void insertChatlineOnTop(const QList<ChatLine::Ptr>& newLines);
2014-11-12 21:11:25 +08:00
void clearSelection();
void clear();
void copySelectedText(bool toSelectionBuffer = false) const;
void setBusyNotification(ChatLine::Ptr notification);
2015-01-10 18:57:46 +08:00
void setTypingNotification(ChatLine::Ptr notification);
void setTypingNotificationVisible(bool visible);
void scrollToLine(ChatLine::Ptr line);
void selectAll();
void fontChanged(const QFont& font);
2014-11-12 21:11:25 +08:00
QString getSelectedText() const;
2014-12-14 04:11:03 +08:00
bool isEmpty() const;
bool hasTextToBeCopied() const;
2014-12-14 04:11:03 +08:00
2015-01-10 18:57:46 +08:00
ChatLine::Ptr getTypingNotification() const;
QVector<ChatLine::Ptr> getLines();
ChatLine::Ptr getLatestLine() const;
ChatLineContent* getContentFromGlobalPos(QPoint pos) const;
const uint repNameAfter = 5 * 60;
2015-01-10 18:57:46 +08:00
2015-02-11 23:32:42 +08:00
signals:
void selectionChanged();
public slots:
void forceRelayout();
private slots:
void onSelectionTimerTimeout();
void onWorkerTimeout();
2014-11-12 21:11:25 +08:00
protected:
QRectF calculateSceneRect() const;
2014-11-12 21:11:25 +08:00
QRect getVisibleRect() const;
ChatLineContent* getContentFromPos(QPointF scenePos) const;
void layout(int start, int end, qreal width);
2015-01-14 06:59:38 +08:00
bool isOverSelection(QPointF scenePos) const;
bool stickToBottom() const;
2014-11-12 21:11:25 +08:00
2015-01-14 06:59:38 +08:00
qreal useableWidth() const;
2014-11-12 21:11:25 +08:00
2015-01-05 21:06:14 +08:00
void reposition(int start, int end, qreal deltaY);
2014-11-12 21:11:25 +08:00
void updateSceneRect();
void checkVisibility();
void scrollToBottom();
void startResizeWorker();
2014-11-12 21:11:25 +08:00
virtual void mouseDoubleClickEvent(QMouseEvent* ev) final override;
virtual void mousePressEvent(QMouseEvent* ev) final override;
virtual void mouseReleaseEvent(QMouseEvent* ev) final override;
virtual void mouseMoveEvent(QMouseEvent* ev) final override;
virtual void scrollContentsBy(int dx, int dy) final override;
virtual void resizeEvent(QResizeEvent* ev) final override;
virtual void showEvent(QShowEvent*) final override;
virtual void focusInEvent(QFocusEvent* ev) final override;
virtual void focusOutEvent(QFocusEvent* ev) final override;
2014-11-12 21:11:25 +08:00
void updateMultiSelectionRect();
2015-01-10 18:57:46 +08:00
void updateTypingNotification();
void updateBusyNotification();
ChatLine::Ptr findLineByPosY(qreal yPos) const;
private:
void retranslateUi();
bool isActiveFileTransfer(ChatLine::Ptr l);
2014-11-12 21:11:25 +08:00
private:
enum SelectionMode
{
2014-12-09 20:17:08 +08:00
None,
Precise,
Multi,
};
enum AutoScrollDirection
{
2015-01-04 22:18:23 +08:00
NoDirection,
Up,
Down,
};
QAction* copyAction = nullptr;
QAction* selectAllAction = nullptr;
2014-11-12 21:11:25 +08:00
QGraphicsScene* scene = nullptr;
QGraphicsScene* busyScene = nullptr;
2015-01-07 20:05:28 +08:00
QVector<ChatLine::Ptr> lines;
2015-01-04 20:29:14 +08:00
QList<ChatLine::Ptr> visibleLines;
2015-01-10 18:57:46 +08:00
ChatLine::Ptr typingNotification;
ChatLine::Ptr busyNotification;
2014-11-12 21:11:25 +08:00
// selection
int selClickedRow = -1; // These 4 are only valid while selectionMode != None
2014-12-09 20:17:08 +08:00
int selClickedCol = -1;
int selFirstRow = -1;
2014-11-12 21:11:25 +08:00
int selLastRow = -1;
QColor selectionRectColor = QColor::fromRgbF(0.23, 0.68, 0.91).lighter(150);
2014-12-09 20:17:08 +08:00
SelectionMode selectionMode = None;
2014-11-12 21:11:25 +08:00
QPointF clickPos;
2014-12-09 20:17:08 +08:00
QGraphicsRectItem* selGraphItem = nullptr;
2015-01-04 22:18:23 +08:00
QTimer* selectionTimer = nullptr;
QTimer* workerTimer = nullptr;
2015-01-04 22:18:23 +08:00
AutoScrollDirection selectionScrollDir = NoDirection;
2014-11-12 21:11:25 +08:00
// worker vars
int workerLastIndex = 0;
bool workerStb = false;
ChatLine::Ptr workerAnchorLine;
2014-11-12 21:11:25 +08:00
// layout
QMargins margins = QMargins(10, 10, 10, 10);
2015-01-05 21:06:14 +08:00
qreal lineSpacing = 5.0f;
2014-11-12 21:11:25 +08:00
};
#endif // CHATLOG_H