X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatscene.h;h=e72308e43e0dba33ea322bbcafd32e46d8a50af5;hp=7bfd6eb0b96df426d378c8133ff9a30c10433f1d;hb=dbefd590650e9053c7a1513a5f49aad3e582108a;hpb=65118437813c853cbcc52f0c1a061457e264ed1a diff --git a/src/qtui/chatscene.h b/src/qtui/chatscene.h index 7bfd6eb0..e72308e4 100644 --- a/src/qtui/chatscene.h +++ b/src/qtui/chatscene.h @@ -23,9 +23,13 @@ #include #include +#include + +#include "types.h" class AbstractUiMsg; class Buffer; +class BufferId; class ChatItem; class ChatLine; class ColumnHandleItem; @@ -39,16 +43,23 @@ class ChatScene : public QGraphicsScene { ChatScene(QAbstractItemModel *model, const QString &idString, QObject *parent); virtual ~ChatScene(); - Buffer *buffer() const; inline QAbstractItemModel *model() const { return _model; } + inline QString idString() const { return _idString; } + + inline bool isFetchingBacklog() const; + inline bool isBacklogFetchingEnabled() const; + inline BufferId bufferForBacklogFetching() const; public slots: void setWidth(qreal); - // these are used by the chatitems to notify the scene + // these are used by the chatitems to notify the scene and manage selections void setSelectingItem(ChatItem *item); ChatItem *selectingItem() const { return _selectingItem; } - void startGlobalSelection(ChatItem *item); + void startGlobalSelection(ChatItem *item, const QPointF &itemPos); + + void setIsFetchingBacklog(bool); + inline void setBufferForBacklogFetching(BufferId buffer); signals: void heightChanged(qreal height); @@ -60,12 +71,17 @@ class ChatScene : public QGraphicsScene { protected slots: void rowsInserted(const QModelIndex &, int, int); + void modelReset(); private slots: void rectChanged(const QRectF &); void handlePositionChanged(qreal xpos); private: + void updateSelection(const QPointF &pos); + QString selectionToString() const; + void requestBacklogIfNeeded(); + QString _idString; qreal _width, _height; QAbstractItemModel *_model; @@ -74,7 +90,33 @@ class ChatScene : public QGraphicsScene { ColumnHandleItem *firstColHandle, *secondColHandle; qreal firstColHandlePos, secondColHandlePos; - ChatItem *_selectingItem; + ChatItem *_selectingItem, *_lastItem; + QSet _selectedItems; + int _selectionStartCol, _selectionMinCol; + int _selectionStart; + int _selectionEnd; + bool _isSelecting; + + bool _fetchingBacklog; + BufferId _backlogFetchingBuffer; + MsgId _lastBacklogOffset; + int _lastBacklogSize; }; +bool ChatScene::isFetchingBacklog() const { + return _fetchingBacklog; +} + +bool ChatScene::isBacklogFetchingEnabled() const { + return _backlogFetchingBuffer.isValid(); +} + +BufferId ChatScene::bufferForBacklogFetching() const { + return _backlogFetchingBuffer; +} + +void ChatScene::setBufferForBacklogFetching(BufferId buf) { + _backlogFetchingBuffer = buf; +} + #endif