mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-04 22:27:28 +03:00
171 lines
5.5 KiB
C++
171 lines
5.5 KiB
C++
/*
|
|
* Bittorrent Client using Qt and libtorrent.
|
|
* Copyright (C) 2014 Ivan Sorokin <vanyacpp@gmail.com>
|
|
*
|
|
* This program is free 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 2
|
|
* of the License, or (at your option) any later version.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
* and distribute the linked executables. You must obey the GNU General Public
|
|
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
* modify file(s), you may extend this exception to your version of the file(s),
|
|
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
* exception statement from your version.
|
|
*/
|
|
|
|
#include "torrentcontenttreeview.h"
|
|
|
|
#include <QDir>
|
|
#include <QHeaderView>
|
|
#include <QKeyEvent>
|
|
#include <QLineEdit>
|
|
#include <QMessageBox>
|
|
#include <QModelIndexList>
|
|
#include <QThread>
|
|
#include <QWheelEvent>
|
|
|
|
#include "base/bittorrent/abstractfilestorage.h"
|
|
#include "base/bittorrent/common.h"
|
|
#include "base/bittorrent/session.h"
|
|
#include "base/bittorrent/torrent.h"
|
|
#include "base/bittorrent/torrentinfo.h"
|
|
#include "base/exceptions.h"
|
|
#include "base/global.h"
|
|
#include "base/path.h"
|
|
#include "base/utils/fs.h"
|
|
#include "autoexpandabledialog.h"
|
|
#include "raisedmessagebox.h"
|
|
#include "torrentcontentfiltermodel.h"
|
|
#include "torrentcontentmodelitem.h"
|
|
|
|
namespace
|
|
{
|
|
Path getFullPath(const QModelIndex &idx)
|
|
{
|
|
Path path;
|
|
for (QModelIndex i = idx; i.isValid(); i = i.parent())
|
|
path = Path(i.data().toString()) / path;
|
|
return path;
|
|
}
|
|
}
|
|
|
|
TorrentContentTreeView::TorrentContentTreeView(QWidget *parent)
|
|
: QTreeView(parent)
|
|
{
|
|
setExpandsOnDoubleClick(false);
|
|
header()->setFirstSectionMovable(true);
|
|
}
|
|
|
|
void TorrentContentTreeView::keyPressEvent(QKeyEvent *event)
|
|
{
|
|
if ((event->key() != Qt::Key_Space) && (event->key() != Qt::Key_Select))
|
|
{
|
|
QTreeView::keyPressEvent(event);
|
|
return;
|
|
}
|
|
|
|
event->accept();
|
|
|
|
QModelIndex current = currentNameCell();
|
|
|
|
QVariant value = current.data(Qt::CheckStateRole);
|
|
if (!value.isValid())
|
|
{
|
|
Q_ASSERT(false);
|
|
return;
|
|
}
|
|
|
|
Qt::CheckState state = (static_cast<Qt::CheckState>(value.toInt()) == Qt::Checked
|
|
? Qt::Unchecked : Qt::Checked);
|
|
|
|
const QModelIndexList selection = selectionModel()->selectedRows(TorrentContentModelItem::COL_NAME);
|
|
|
|
for (const QModelIndex &index : selection)
|
|
{
|
|
Q_ASSERT(index.column() == TorrentContentModelItem::COL_NAME);
|
|
model()->setData(index, state, Qt::CheckStateRole);
|
|
}
|
|
}
|
|
|
|
void TorrentContentTreeView::renameSelectedFile(BitTorrent::AbstractFileStorage &fileStorage)
|
|
{
|
|
const QModelIndexList selectedIndexes = selectionModel()->selectedRows(0);
|
|
if (selectedIndexes.size() != 1) return;
|
|
|
|
const QPersistentModelIndex modelIndex = selectedIndexes.first();
|
|
if (!modelIndex.isValid()) return;
|
|
|
|
auto model = dynamic_cast<TorrentContentFilterModel *>(TorrentContentTreeView::model());
|
|
if (!model) return;
|
|
|
|
const bool isFile = (model->itemType(modelIndex) == TorrentContentModelItem::FileType);
|
|
|
|
// Ask for new name
|
|
bool ok = false;
|
|
QString newName = AutoExpandableDialog::getText(this, tr("Renaming"), tr("New name:"), QLineEdit::Normal
|
|
, modelIndex.data().toString(), &ok, isFile).trimmed();
|
|
if (!ok || !modelIndex.isValid()) return;
|
|
|
|
const QString oldName = modelIndex.data().toString();
|
|
if (newName == oldName)
|
|
return; // Name did not change
|
|
|
|
const Path parentPath = getFullPath(modelIndex.parent());
|
|
const Path oldPath = parentPath / Path(oldName);
|
|
const Path newPath = parentPath / Path(newName);
|
|
|
|
try
|
|
{
|
|
if (isFile)
|
|
fileStorage.renameFile(oldPath, newPath);
|
|
else
|
|
fileStorage.renameFolder(oldPath, newPath);
|
|
|
|
model->setData(modelIndex, newName);
|
|
}
|
|
catch (const RuntimeError &error)
|
|
{
|
|
RaisedMessageBox::warning(this, tr("Rename error"), error.message(), QMessageBox::Ok);
|
|
}
|
|
}
|
|
|
|
QModelIndex TorrentContentTreeView::currentNameCell()
|
|
{
|
|
QModelIndex current = currentIndex();
|
|
if (!current.isValid())
|
|
{
|
|
Q_ASSERT(false);
|
|
return {};
|
|
}
|
|
|
|
return model()->index(current.row(), TorrentContentModelItem::COL_NAME, current.parent());
|
|
}
|
|
|
|
void TorrentContentTreeView::wheelEvent(QWheelEvent *event)
|
|
{
|
|
if (event->modifiers() & Qt::ShiftModifier)
|
|
{
|
|
// Shift + scroll = horizontal scroll
|
|
event->accept();
|
|
QWheelEvent scrollHEvent {event->position(), event->globalPosition()
|
|
, event->pixelDelta(), event->angleDelta().transposed(), event->buttons()
|
|
, event->modifiers(), event->phase(), event->inverted(), event->source()};
|
|
QTreeView::wheelEvent(&scrollHEvent);
|
|
return;
|
|
}
|
|
|
|
QTreeView::wheelEvent(event); // event delegated to base class
|
|
}
|