+ if (model && model->count() > 0) {
+ m_currentItem = 0;
+ }
+}
+
+void KItemListSelectionManager::itemsInserted(const KItemRangeList &itemRanges)
+{
+ // Store the current selection (needed in the selectionChanged() signal)
+ const KItemSet previousSelection = selectedItems();
+
+ // Update the current item
+ if (m_currentItem < 0) {
+ setCurrentItem(0);
+ } else {
+ const int previousCurrent = m_currentItem;
+ int inc = 0;
+ for (const KItemRange &itemRange : itemRanges) {
+ if (m_currentItem < itemRange.index) {
+ break;
+ }
+ inc += itemRange.count;
+ }
+ // Calling setCurrentItem would trigger the selectionChanged signal, but we want to
+ // emit it only once in this function -> change the current item manually and emit currentChanged
+ m_currentItem += inc;
+ if (m_currentItem >= m_model->count()) {
+ m_currentItem = -1;
+ }
+ Q_EMIT currentChanged(m_currentItem, previousCurrent);
+ }
+
+ // Update the anchor item
+ if (m_anchorItem < 0) {
+ m_anchorItem = 0;
+ } else {
+ int inc = 0;
+ for (const KItemRange &itemRange : itemRanges) {
+ if (m_anchorItem < itemRange.index) {
+ break;
+ }
+ inc += itemRange.count;
+ }
+ m_anchorItem += inc;
+ }
+
+ // Update the selections
+ if (!m_selectedItems.isEmpty()) {
+ const KItemSet previous = m_selectedItems;
+ m_selectedItems.clear();
+
+ for (int index : previous) {
+ int inc = 0;
+ for (const KItemRange &itemRange : itemRanges) {
+ if (index < itemRange.index) {
+ break;
+ }
+ inc += itemRange.count;
+ }
+ m_selectedItems.insert(index + inc);
+ }
+ }
+
+ const KItemSet selection = selectedItems();
+ if (selection != previousSelection) {
+ Q_EMIT selectionChanged(selection, previousSelection);
+ }
+}
+
+void KItemListSelectionManager::itemsRemoved(const KItemRangeList &itemRanges)
+{
+ // Store the current selection (needed in the selectionChanged() signal)
+ const KItemSet previousSelection = selectedItems();
+ const int previousCurrent = m_currentItem;
+
+ // Update the current item
+ m_currentItem = indexAfterRangesRemoving(m_currentItem, itemRanges, DiscardRemovedIndex);
+ if (m_currentItem != previousCurrent) {
+ Q_EMIT currentChanged(m_currentItem, previousCurrent);
+ if (m_currentItem < 0) {
+ // Calling setCurrentItem() would trigger the selectionChanged signal, but we want to
+ // emit it only once in this function -> change the current item manually and emit currentChanged
+ m_currentItem = indexAfterRangesRemoving(previousCurrent, itemRanges, AdjustRemovedIndex);
+ Q_EMIT currentChanged(m_currentItem, -1);
+ }
+ }
+
+ // Update the anchor item
+ if (m_anchorItem >= 0) {
+ m_anchorItem = indexAfterRangesRemoving(m_anchorItem, itemRanges, DiscardRemovedIndex);
+ if (m_anchorItem < 0) {
+ m_isAnchoredSelectionActive = false;
+ }
+ }
+
+ // Update the selections and the anchor item
+ if (!m_selectedItems.isEmpty()) {
+ const KItemSet previous = m_selectedItems;
+ m_selectedItems.clear();
+
+ for (int oldIndex : previous) {
+ const int index = indexAfterRangesRemoving(oldIndex, itemRanges, DiscardRemovedIndex);
+ if (index >= 0) {
+ m_selectedItems.insert(index);
+ }
+ }
+ }
+
+ const KItemSet selection = selectedItems();
+ if (selection != previousSelection) {
+ Q_EMIT selectionChanged(selection, previousSelection);
+ }
+
+ Q_ASSERT(m_currentItem < m_model->count());
+ Q_ASSERT(m_anchorItem < m_model->count());
+}
+
+void KItemListSelectionManager::itemsMoved(const KItemRange &itemRange, const QList<int> &movedToIndexes)
+{
+ // Store the current selection (needed in the selectionChanged() signal)
+ const KItemSet previousSelection = selectedItems();
+
+ // Store whether we were doing an anchored selection
+ const bool wasInAnchoredSelection = isAnchoredSelectionActive();
+
+ // endAnchoredSelection() adds all items between m_currentItem and
+ // m_anchorItem to m_selectedItems. They can then be moved
+ // individually later in this function.
+ endAnchoredSelection();
+
+ // Update the current item
+ if (m_currentItem >= itemRange.index && m_currentItem < itemRange.index + itemRange.count) {
+ const int previousCurrentItem = m_currentItem;
+ const int newCurrentItem = movedToIndexes.at(previousCurrentItem - itemRange.index);
+
+ // Calling setCurrentItem would trigger the selectionChanged signal, but we want to
+ // emit it only once in this function -> change the current item manually and emit currentChanged
+ m_currentItem = newCurrentItem;
+ Q_EMIT currentChanged(newCurrentItem, previousCurrentItem);
+ }
+
+ // Start a new anchored selection.
+ if (wasInAnchoredSelection) {
+ beginAnchoredSelection(m_currentItem);
+ }
+
+ // Update the selections
+ if (!m_selectedItems.isEmpty()) {
+ const KItemSet previous = m_selectedItems;
+ m_selectedItems.clear();
+
+ for (int index : previous) {
+ if (index >= itemRange.index && index < itemRange.index + itemRange.count) {
+ m_selectedItems.insert(movedToIndexes.at(index - itemRange.index));
+ } else {
+ m_selectedItems.insert(index);
+ }
+ }
+ }
+
+ const KItemSet selection = selectedItems();
+ if (selection != previousSelection) {
+ Q_EMIT selectionChanged(selection, previousSelection);
+ }
+}
+
+int KItemListSelectionManager::indexAfterRangesRemoving(int index, const KItemRangeList &itemRanges, const RangesRemovingBehaviour behaviour) const
+{
+ int dec = 0;
+ for (const KItemRange &itemRange : itemRanges) {
+ if (index < itemRange.index) {
+ break;
+ }
+
+ dec += itemRange.count;
+
+ const int firstIndexAfterRange = itemRange.index + itemRange.count;
+ if (index < firstIndexAfterRange) {
+ // The index is part of the removed range
+ if (behaviour == DiscardRemovedIndex) {
+ return -1;
+ } else {
+ // Use the first item after the range as new index
+ index = firstIndexAfterRange;
+ break;
+ }
+ }
+ }
+ return qBound(-1, index - dec, m_model->count() - 1);