1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-27 18:18:10 +00:00
transmission/qt/FileTreeView.h
Charles Kerr c62cb35fd4
qt client speedups
* faster updating of trackers combobox.
* generate trackerDisplayNames just once per torrent
* refactor: cache torrent delegate's warning emblem
* refactor: change mainwin refresh debounce to 200ms
* refactor: do not store trackers, hosts in QVariant
* refactor: don't use `virtual` when it's not needed
* refactor: faster counting torrents-matching-filter
* refactor: faster tracker handling in filterbar
* refactor: improve json parser's prealloc heuristic
* refactor: make Torrent::hasError() faster
* refactor: remove redundant speed stats collection
* refactor: remove unnecessary tor->isQueued() calls
* refactor: use unordered containers where possible
* scale favicons only once, when adding to the cache
2019-11-11 19:37:05 -06:00

84 lines
2.2 KiB
C++

/*
* This file Copyright (C) 2009-2015 Mnemosyne LLC
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
#pragma once
#include <QSet>
#include <QTreeView>
#include "Torrent.h" // FileList
class QAction;
class QMenu;
class QSortFilterProxyModel;
class FileTreeDelegate;
class FileTreeModel;
class FileTreeView : public QTreeView
{
Q_OBJECT
public:
FileTreeView(QWidget* parent = nullptr, bool editable = true);
void clear();
void update(FileList const& files, bool updateProperties = true);
void setEditable(bool editable);
signals:
void priorityChanged(QSet<int> const& fileIndices, int priority);
void wantedChanged(QSet<int> const& fileIndices, bool wanted);
void pathEdited(QString const& oldpath, QString const& newname);
void openRequested(QString const& path);
protected:
// QWidget
void resizeEvent(QResizeEvent* event) override;
void keyPressEvent(QKeyEvent* event) override;
void mouseDoubleClickEvent(QMouseEvent* event) override;
void contextMenuEvent(QContextMenuEvent* event) override;
// QAbstractItemView
bool edit(QModelIndex const& index, EditTrigger trigger, QEvent* event) override;
private slots:
void onClicked(QModelIndex const& index);
void checkSelectedItems();
void uncheckSelectedItems();
void onlyCheckSelectedItems();
void setSelectedItemsPriority();
bool openSelectedItem();
void renameSelectedItem();
void refreshContextMenuActionsSensitivity();
private:
void initContextMenu();
QModelIndexList selectedSourceRows(int column = 0) const;
static Qt::CheckState getCumulativeCheckState(QModelIndexList const& indices);
private:
FileTreeModel* myModel;
QSortFilterProxyModel* myProxy;
FileTreeDelegate* myDelegate;
QMenu* myContextMenu = nullptr;
QMenu* myPriorityMenu = nullptr;
QAction* myCheckSelectedAction = nullptr;
QAction* myUncheckSelectedAction = nullptr;
QAction* myOnlyCheckSelectedAction = nullptr;
QAction* myHighPriorityAction = nullptr;
QAction* myNormalPriorityAction = nullptr;
QAction* myLowPriorityAction = nullptr;
QAction* myOpenAction = nullptr;
QAction* myRenameAction = nullptr;
};