/* Copyright © 2014-2019 by The qTox Project Contributors 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 . */ #pragma once #include #include #include #include "chatline.h" #include "chatmessage.h" #include "src/widget/style.h" #include "src/model/ichatlog.h" class QGraphicsScene; class QGraphicsRectItem; class QMouseEvent; class QTimer; class ChatLineContent; struct ToxFile; static const size_t DEF_NUM_MSG_TO_LOAD = 100; class ChatLog : public QGraphicsView { Q_OBJECT public: explicit ChatLog(IChatLog& chatLog, const Core& core, QWidget* parent = nullptr); virtual ~ChatLog(); void insertChatlineAtBottom(ChatLine::Ptr l); void insertChatlineOnTop(ChatLine::Ptr l); void insertChatlinesOnTop(const QList& newLines); void clearSelection(); void clear(); void copySelectedText(bool toSelectionBuffer = false) const; void setTypingNotificationVisible(bool visible); void setTypingNotificationName(const QString& displayName); void scrollToLine(ChatLine::Ptr line); void selectAll(); void fontChanged(const QFont& font); QString getSelectedText() const; bool isEmpty() const; bool hasTextToBeCopied() const; ChatLineContent* getContentFromGlobalPos(QPoint pos) const; const uint repNameAfter = 5 * 60; void setColorizedNames(bool enable) { colorizeNames = enable; }; void jumpToDate(QDate date); void jumpToIdx(ChatLogIdx idx); signals: void selectionChanged(); void workerTimeoutFinished(); void firstVisibleLineChanged(const ChatLine::Ptr& prevLine, const ChatLine::Ptr& firstLine); void messageNotFoundShow(SearchDirection direction); public slots: void forceRelayout(); void reloadTheme(); void startSearch(const QString& phrase, const ParameterSearch& parameter); void onSearchUp(const QString& phrase, const ParameterSearch& parameter); void onSearchDown(const QString& phrase, const ParameterSearch& parameter); void handleSearchResult(SearchResult result, SearchDirection direction); void removeSearchPhrase(); private slots: void onSelectionTimerTimeout(); void onWorkerTimeout(); void onMultiClickTimeout(); void renderMessage(ChatLogIdx idx); void renderMessages(ChatLogIdx begin, ChatLogIdx end, std::function onCompletion = std::function()); protected: QRectF calculateSceneRect() const; QRect getVisibleRect() const; ChatLineContent* getContentFromPos(QPointF scenePos) const; void layout(int start, int end, qreal width); bool isOverSelection(QPointF scenePos) const; bool stickToBottom() const; qreal useableWidth() const; void reposition(int start, int end, qreal deltaY); void updateSceneRect(); void checkVisibility(); void scrollToBottom(); void startResizeWorker(); void mouseDoubleClickEvent(QMouseEvent* ev) final; void mousePressEvent(QMouseEvent* ev) final; void mouseReleaseEvent(QMouseEvent* ev) final; void mouseMoveEvent(QMouseEvent* ev) final; void scrollContentsBy(int dx, int dy) final; void resizeEvent(QResizeEvent* ev) final; void showEvent(QShowEvent*) final; void focusInEvent(QFocusEvent* ev) final; void focusOutEvent(QFocusEvent* ev) final; void wheelEvent(QWheelEvent *event) final; void updateMultiSelectionRect(); void updateTypingNotification(); void updateBusyNotification(); ChatLine::Ptr findLineByPosY(qreal yPos) const; private: void retranslateUi(); bool isActiveFileTransfer(ChatLine::Ptr l); void handleMultiClickEvent(); void moveSelectionRectUpIfSelected(int offset); void moveSelectionRectDownIfSelected(int offset); void movePreciseSelectionDown(int offset); void movePreciseSelectionUp(int offset); void moveMultiSelectionUp(int offset); void moveMultiSelectionDown(int offset); void setTypingNotification(); void renderItem(const ChatLogItem &item, bool hideName, bool colorizeNames, ChatMessage::Ptr &chatMessage); void renderFile(QString displayName, ToxFile file, bool isSelf, QDateTime timestamp, ChatMessage::Ptr &chatMessage); bool needsToHideName(ChatLogIdx idx) const; void disableSearchText(); private: enum class SelectionMode { None, Precise, Multi, }; enum class AutoScrollDirection { NoDirection, Up, Down, }; QAction* copyAction = nullptr; QAction* selectAllAction = nullptr; QGraphicsScene* scene = nullptr; QGraphicsScene* busyScene = nullptr; QVector lines; QList visibleLines; ChatLine::Ptr typingNotification; ChatLine::Ptr busyNotification; // selection int selClickedRow = -1; // These 4 are only valid while selectionMode != None int selClickedCol = -1; int selFirstRow = -1; int selLastRow = -1; QColor selectionRectColor = Style::getColor(Style::SelectText); SelectionMode selectionMode = SelectionMode::None; QPointF clickPos; QGraphicsRectItem* selGraphItem = nullptr; QTimer* selectionTimer = nullptr; QTimer* workerTimer = nullptr; QTimer* multiClickTimer = nullptr; AutoScrollDirection selectionScrollDir = AutoScrollDirection::NoDirection; int clickCount = 0; QPoint lastClickPos; Qt::MouseButton lastClickButton; // worker vars int workerLastIndex = 0; bool workerStb = false; ChatLine::Ptr workerAnchorLine; // layout QMargins margins = QMargins(10, 10, 10, 10); qreal lineSpacing = 5.0f; IChatLog& chatLog; std::map messages; bool colorizeNames = false; SearchPos searchPos; const Core& core; };