X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fchatscene.cpp;h=0671365254a13994d9e665288b8a1ada427543e6;hp=2c8ef142c62273027ce80d37bb3af3ce9a321fc5;hb=8efabae6c310d17265eaeb03df43ffe8b555a52e;hpb=9ce42695baef3bdd6f61aaff23c4b59061e46fe6 diff --git a/src/qtui/chatscene.cpp b/src/qtui/chatscene.cpp index 2c8ef142..06713652 100644 --- a/src/qtui/chatscene.cpp +++ b/src/qtui/chatscene.cpp @@ -27,6 +27,7 @@ #include "chatscene.h" #include "columnhandleitem.h" #include "qtui.h" +#include "qtuisettings.h" const qreal minContentsWidth = 200; @@ -36,6 +37,9 @@ ChatScene::ChatScene(QAbstractItemModel *model, const QString &idString, QObject _model(model) { _width = 0; + _selectingItem = 0; + _isSelecting = false; + _selectionStart = -1; connect(this, SIGNAL(sceneRectChanged(const QRectF &)), this, SLOT(rectChanged(const QRectF &))); connect(model, SIGNAL(rowsInserted(const QModelIndex &, int, int)), this, SLOT(rowsInserted(const QModelIndex &, int, int))); @@ -45,8 +49,14 @@ ChatScene::ChatScene(QAbstractItemModel *model, const QString &idString, QObject addItem(line); } - firstColHandlePos = 80; - secondColHandlePos = 200; + QtUiSettings s; + int defaultFirstColHandlePos = s.value("ChatView/DefaultFirstColumnHandlePos", 80).toInt(); + int defaultSecondColHandlePos = s.value("ChatView/DefaultSecondColumnHandlePos", 200).toInt(); + + firstColHandlePos = s.value(QString("ChatView/%1/FirstColumnHandlePos").arg(_idString), + defaultFirstColHandlePos).toInt(); + secondColHandlePos = s.value(QString("ChatView/%1/SecondColumnHandlePos").arg(_idString), + defaultSecondColHandlePos).toInt(); firstColHandle = new ColumnHandleItem(QtUi::style()->firstColumnSeparator()); addItem(firstColHandle); secondColHandle = new ColumnHandleItem(QtUi::style()->secondColumnSeparator()); addItem(secondColHandle); @@ -121,8 +131,104 @@ void ChatScene::handlePositionChanged(qreal xpos) { oldx = secondColHandlePos; secondColHandlePos = xpos; } + QtUiSettings s; + s.setValue(QString("ChatView/%1/FirstColumnHandlePos").arg(_idString), firstColHandlePos); + s.setValue(QString("ChatView/%1/SecondColumnHandlePos").arg(_idString), secondColHandlePos); + s.setValue(QString("ChatView/DefaultFirstColumnHandlePos"), firstColHandlePos); + s.setValue(QString("ChatView/DefaultSecondColumnHandlePos"), secondColHandlePos); + setWidth(width()); // readjust all chatlines // we get ugly redraw errors if we don't update this explicitly... :( // width() should be the same for both handles, so just use firstColHandle regardless update(qMin(oldx, xpos) - firstColHandle->width()/2, 0, qMax(oldx, xpos) + firstColHandle->width()/2, height()); } + +void ChatScene::setSelectingItem(ChatItem *item) { + if(_selectingItem) _selectingItem->clearSelection(); + _selectingItem = item; +} + +void ChatScene::startGlobalSelection(ChatItem *item, const QPointF &itemPos) { + _selectionStart = _selectionEnd = item->index().row(); + _selectionStartCol = _selectionMinCol = item->index().column(); + _isSelecting = true; + _lines[_selectionStart]->setSelected(true, (ChatLineModel::ColumnType)_selectionMinCol); + updateSelection(item->mapToScene(itemPos)); +} + +void ChatScene::updateSelection(const QPointF &pos) { + // This is somewhat hacky... we look at the contents item that is at the cursor's y position (ignoring x), since + // it has the full height. From this item, we can then determine the row index and hence the ChatLine. + ChatItem *contentItem = static_cast(itemAt(QPointF(secondColHandlePos + secondColHandle->width()/2, pos.y()))); + if(!contentItem) return; + + int curRow = contentItem->index().row(); + int curColumn; + if(pos.x() > secondColHandlePos + secondColHandle->width()/2) curColumn = ChatLineModel::ContentsColumn; + else if(pos.x() > firstColHandlePos) curColumn = ChatLineModel::SenderColumn; + else curColumn = ChatLineModel::TimestampColumn; + + ChatLineModel::ColumnType minColumn = (ChatLineModel::ColumnType)qMin(curColumn, _selectionStartCol); + if(minColumn != _selectionMinCol) { + _selectionMinCol = minColumn; + for(int l = qMin(_selectionStart, _selectionEnd); l <= qMax(_selectionStart, _selectionEnd); l++) { + _lines[l]->setSelected(true, minColumn); + } + } + + if(curRow > _selectionEnd && curRow > _selectionStart) { // select further towards bottom + for(int l = _selectionEnd + 1; l <= curRow; l++) { + _lines[l]->setSelected(true, minColumn); + } + } else if(curRow > _selectionEnd && curRow <= _selectionStart) { // deselect towards bottom + for(int l = _selectionEnd; l < curRow; l++) { + _lines[l]->setSelected(false); + } + } else if(curRow < _selectionEnd && curRow >= _selectionStart) { + for(int l = _selectionEnd; l > curRow; l--) { + _lines[l]->setSelected(false); + } + } else if(curRow < _selectionEnd && curRow < _selectionStart) { + for(int l = _selectionEnd - 1; l >= curRow; l--) { + _lines[l]->setSelected(true, minColumn); + } + } + _selectionEnd = curRow; + + if(curRow == _selectionStart && minColumn == ChatLineModel::ContentsColumn) { + _lines[curRow]->setSelected(false); + _isSelecting = false; + _selectingItem->continueSelecting(_selectingItem->mapFromScene(pos)); + } +} + +void ChatScene::mouseMoveEvent(QGraphicsSceneMouseEvent *event) { + if(_isSelecting && event->buttons() & Qt::LeftButton) { + updateSelection(event->scenePos()); + event->accept(); + } else { + QGraphicsScene::mouseMoveEvent(event); + } +} + +void ChatScene::mousePressEvent(QGraphicsSceneMouseEvent *event) { + if(event->buttons() & Qt::LeftButton && _selectionStart >= 0) { + for(int l = qMin(_selectionStart, _selectionEnd); l <= qMax(_selectionStart, _selectionEnd); l++) { + _lines[l]->setSelected(false); + } + _selectionStart = -1; + event->accept(); + } else { + QGraphicsScene::mousePressEvent(event); + } +} + +void ChatScene::mouseReleaseEvent(QGraphicsSceneMouseEvent *event) { + if(_isSelecting) { + _isSelecting = false; + event->accept(); + } else { + QGraphicsScene::mouseReleaseEvent(event); + } +} +