1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389
|
/*
SPDX-FileCopyrightText: 2002 Shie Erlich <erlich@users.sourceforge.net>
SPDX-FileCopyrightText: 2002 Rafi Yanai <yanai@users.sourceforge.net>
SPDX-FileCopyrightText: 2010 Jan Lepper <dehtris@yahoo.de>
SPDX-FileCopyrightText: 2004-2022 Krusader Krew <https://krusader.org>
SPDX-License-Identifier: GPL-2.0-or-later
*/
#include "krinterview.h"
#include <QDebug>
#include "../FileSystem/dirlisterinterface.h"
#include "../FileSystem/fileitem.h"
#include "../krcolorcache.h"
#include "../krpreviews.h"
#include "krmousehandler.h"
#include "krviewitem.h"
#include "listmodel.h"
KrInterView::KrInterView(KrViewInstance &instance, KConfig *cfg, QAbstractItemView *itemView)
: KrView(instance, cfg)
, _itemView(itemView)
, _mouseHandler(nullptr)
{
_model = new ListModel(this);
// fix the context menu problem
int j = QFontMetrics(_itemView->font()).height() * 2;
_mouseHandler = new KrMouseHandler(this, j);
}
KrInterView::~KrInterView()
{
// any references to the model should be cleared ar this point,
// but sometimes for some reason it is still referenced by
// QPersistentModelIndex instances held by QAbstractItemView and/or QItemSelectionModel(child object) -
// so schedule _model for later deletion
_model->clear(false);
_model->deleteLater();
_model = nullptr;
delete _mouseHandler;
_mouseHandler = nullptr;
QHashIterator<FileItem *, KrViewItem *> it(_itemHash);
while (it.hasNext())
delete it.next().value();
_itemHash.clear();
}
void KrInterView::selectRegion(KrViewItem *i1, KrViewItem *i2, bool select)
{
auto *file1 = const_cast<FileItem *>(i1->getFileItem());
QModelIndex mi1 = _model->fileItemIndex(file1);
auto *file2 = const_cast<FileItem *>(i2->getFileItem());
QModelIndex mi2 = _model->fileItemIndex(file2);
if (mi1.isValid() && mi2.isValid()) {
int r1 = mi1.row();
int r2 = mi2.row();
if (r1 > r2) {
int t = r1;
r1 = r2;
r2 = t;
}
op()->setMassSelectionUpdate(true);
for (int row = r1; row <= r2; row++)
setSelected(_model->fileItemAt(_model->index(row, 0)), select);
op()->setMassSelectionUpdate(false);
redraw();
} else if (mi1.isValid() && !mi2.isValid())
i1->setSelected(select);
else if (mi2.isValid() && !mi1.isValid())
i2->setSelected(select);
}
void KrInterView::intSetSelected(const FileItem *item, bool select)
{
if (select)
_selection.insert(item);
else
_selection.remove(item);
}
bool KrInterView::isSelected(const QModelIndex &ndx)
{
return isSelected(_model->fileItemAt(ndx));
}
KrViewItem *KrInterView::findItemByName(const QString &name)
{
if (!_model->ready())
return nullptr;
QModelIndex ndx = _model->nameIndex(name);
if (!ndx.isValid())
return nullptr;
return getKrViewItem(ndx);
}
KrViewItem *KrInterView::findItemByUrl(const QUrl &url)
{
if (!_model->ready())
return nullptr;
const QModelIndex ndx = _model->indexFromUrl(url);
if (!ndx.isValid())
return nullptr;
return getKrViewItem(ndx);
}
QString KrInterView::getCurrentItem() const
{
if (!_model->ready())
return QString();
FileItem *fileItem = _model->fileItemAt(_itemView->currentIndex());
return fileItem ? fileItem->getName() : QString();
}
KrViewItem *KrInterView::getCurrentKrViewItem()
{
if (!_model->ready())
return nullptr;
return getKrViewItem(_itemView->currentIndex());
}
KrViewItem *KrInterView::getFirst()
{
if (!_model->ready())
return nullptr;
return getKrViewItem(_model->index(0, 0, QModelIndex()));
}
KrViewItem *KrInterView::getLast()
{
if (!_model->ready())
return nullptr;
return getKrViewItem(_model->index(_model->rowCount() - 1, 0, QModelIndex()));
}
KrViewItem *KrInterView::getNext(KrViewItem *current)
{
auto *fileItem = const_cast<FileItem *>(current->getFileItem());
QModelIndex ndx = _model->fileItemIndex(fileItem);
if (ndx.row() >= _model->rowCount() - 1)
return nullptr;
return getKrViewItem(_model->index(ndx.row() + 1, 0, QModelIndex()));
}
KrViewItem *KrInterView::getPrev(KrViewItem *current)
{
auto *fileItem = const_cast<FileItem *>(current->getFileItem());
QModelIndex ndx = _model->fileItemIndex(fileItem);
if (ndx.row() <= 0)
return nullptr;
return getKrViewItem(_model->index(ndx.row() - 1, 0, QModelIndex()));
}
KrViewItem *KrInterView::getKrViewItemAt(const QPoint &vp)
{
if (!_model->ready())
return nullptr;
return getKrViewItem(_itemView->indexAt(vp));
}
KrViewItem *KrInterView::getKrViewItem(FileItem *fileItem)
{
QHash<FileItem *, KrViewItem *>::iterator it = _itemHash.find(fileItem);
if (it == _itemHash.end()) {
auto *newItem = new KrViewItem(fileItem, this);
_itemHash[fileItem] = newItem;
return newItem;
}
return *it;
}
KrViewItem *KrInterView::getKrViewItem(const QModelIndex &ndx)
{
if (!ndx.isValid())
return nullptr;
FileItem *fileitem = _model->fileItemAt(ndx);
if (fileitem == nullptr)
return nullptr;
else
return getKrViewItem(fileitem);
}
void KrInterView::makeCurrentVisible()
{
makeItemVisible(getCurrentKrViewItem());
}
void KrInterView::makeItemVisible(const KrViewItem *item)
{
if (item == nullptr)
return;
auto *fileitem = const_cast<FileItem *>(item->getFileItem());
const QModelIndex index = _model->fileItemIndex(fileitem);
qDebug() << "scroll to item; name=" << fileitem->getName() << " index=" << index;
if (index.isValid())
_itemView->scrollTo(index);
}
bool KrInterView::isItemVisible(const KrViewItem *item)
{
return item && _itemView->viewport()->rect().contains(item->itemRect());
}
void KrInterView::setCurrentItem(const QString &name, bool scrollToCurrent, const QModelIndex &fallbackToIndex)
{
// find index by given name and set it as current
const QModelIndex index = _model->nameIndex(name);
if (index.isValid()) {
setCurrent(index, scrollToCurrent);
} else if (fallbackToIndex.isValid()) {
// set fallback index as current if not too big, else set the last item as current
if (fallbackToIndex.row() < _itemView->model()->rowCount()) {
setCurrent(fallbackToIndex, scrollToCurrent);
} else {
setCurrentKrViewItem(getLast(), scrollToCurrent);
}
} else {
// when given parameters fail, set the first item as current
setCurrentKrViewItem(getFirst(), scrollToCurrent);
}
}
void KrInterView::setCurrentKrViewItem(KrViewItem *item, bool scrollToCurrent)
{
if (!item) {
setCurrent(QModelIndex(), scrollToCurrent);
return;
}
auto *fileitem = const_cast<FileItem *>(item->getFileItem());
const QModelIndex index = _model->fileItemIndex(fileitem);
if (index.isValid() && index.row() != _itemView->currentIndex().row()) {
setCurrent(index, scrollToCurrent);
}
}
void KrInterView::setCurrent(const QModelIndex &index, bool scrollToCurrent)
{
const bool disableAutoScroll = _itemView->hasAutoScroll() && !scrollToCurrent;
if (disableAutoScroll) {
// setCurrentIndex() scrolls to current if autoScroll is turned on
_itemView->setAutoScroll(false);
}
_mouseHandler->cancelTwoClickRename();
_itemView->setCurrentIndex(index);
if (disableAutoScroll) {
_itemView->setAutoScroll(true);
}
}
void KrInterView::sort()
{
_model->sort();
}
void KrInterView::clear()
{
_selection.clear();
_itemView->clearSelection();
_itemView->setCurrentIndex(QModelIndex());
_model->clear();
QHashIterator<FileItem *, KrViewItem *> it(_itemHash);
while (it.hasNext())
delete it.next().value();
_itemHash.clear();
KrView::clear();
}
void KrInterView::populate(const QList<FileItem *> &fileItems, FileItem *dummy)
{
_model->populate(fileItems, dummy);
}
KrViewItem *KrInterView::preAddItem(FileItem *fileitem)
{
const QModelIndex index = _model->addItem(fileitem);
return getKrViewItem(index);
}
void KrInterView::preDeleteItem(KrViewItem *item)
{
// update selection
setSelected(item->getFileItem(), false);
// close editor if it's opened for the item
auto file_item = const_cast<FileItem *>(item->getFileItem());
_itemView->closePersistentEditor(_model->fileItemIndex(file_item));
// remove the item from the structures
_model->removeItem(file_item);
_itemHash.remove(file_item);
}
void KrInterView::prepareForActive()
{
_focused = true;
_itemView->setFocus();
}
void KrInterView::prepareForPassive()
{
_focused = false;
_mouseHandler->cancelTwoClickRename();
// if ( renameLineEdit() ->isVisible() )
// renameLineEdit() ->clearFocus();
}
void KrInterView::redraw()
{
_itemView->viewport()->update();
}
void KrInterView::refreshColors()
{
QPalette p(_itemView->palette());
KrColorGroup cg;
KrColorCache::getColorCache().getColors(cg, KrColorItemType(KrColorItemType::File, false, _focused, false, false));
p.setColor(QPalette::Text, cg.text());
p.setColor(QPalette::Base, cg.background());
_itemView->setPalette(p);
redraw();
}
void KrInterView::sortModeUpdated(int column, Qt::SortOrder order)
{
KrView::sortModeUpdated(static_cast<KrViewProperties::ColumnType>(column), order == Qt::DescendingOrder);
}
KIO::filesize_t KrInterView::calcSize()
{
KIO::filesize_t size = 0;
const auto fileItems = _model->fileItems();
for (FileItem *fileitem : fileItems) {
size += fileitem->getSize();
}
return size;
}
KIO::filesize_t KrInterView::calcSelectedSize()
{
KIO::filesize_t size = 0;
for (const FileItem *fileitem : std::as_const(_selection)) {
size += fileitem->getSize();
}
return size;
}
QList<QUrl> KrInterView::selectedUrls()
{
QList<QUrl> list;
for (const FileItem *fileitem : std::as_const(_selection)) {
list << fileitem->getUrl();
}
return list;
}
void KrInterView::setSelectionUrls(const QList<QUrl> urls)
{
op()->setMassSelectionUpdate(true);
_selection.clear();
for (const QUrl &url : urls) {
const QModelIndex idx = _model->indexFromUrl(url);
if (idx.isValid())
setSelected(_model->fileItemAt(idx), true);
}
op()->setMassSelectionUpdate(false);
}
|