2015-06-10 21:27:11 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2015-06-10 21:27:11 +00:00
|
|
|
|
|
|
|
#include <QSet>
|
|
|
|
#include <QTreeView>
|
|
|
|
|
2020-08-11 18:11:55 +00:00
|
|
|
#include "Macros.h"
|
2015-06-10 21:27:11 +00:00
|
|
|
#include "Torrent.h" // FileList
|
|
|
|
|
2015-08-10 19:40:58 +00:00
|
|
|
class QAction;
|
|
|
|
class QMenu;
|
2015-06-10 21:27:11 +00:00
|
|
|
class QSortFilterProxyModel;
|
|
|
|
|
|
|
|
class FileTreeDelegate;
|
|
|
|
class FileTreeModel;
|
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
class FileTreeView : public QTreeView
|
2015-06-10 21:27:11 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2020-08-11 18:11:55 +00:00
|
|
|
TR_DISABLE_COPY_MOVE(FileTreeView)
|
2015-06-10 21:27:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
public:
|
|
|
|
FileTreeView(QWidget* parent = nullptr, bool editable = true);
|
2015-06-12 22:12:12 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void clear();
|
2020-05-27 21:53:12 +00:00
|
|
|
void update(FileList const& files, bool update_properties = true);
|
2015-06-10 21:27:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
void setEditable(bool editable);
|
2015-06-10 21:27:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
signals:
|
2020-05-27 21:53:12 +00:00
|
|
|
void priorityChanged(QSet<int> const& file_indices, int priority);
|
|
|
|
void wantedChanged(QSet<int> const& file_indices, bool wanted);
|
|
|
|
void pathEdited(QString const& old_path, QString const& new_name);
|
2017-04-20 16:02:19 +00:00
|
|
|
void openRequested(QString const& path);
|
2015-06-10 21:27:11 +00:00
|
|
|
|
2017-04-19 12:04:45 +00:00
|
|
|
protected:
|
2015-06-15 21:07:46 +00:00
|
|
|
// QWidget
|
2019-11-12 01:37:05 +00:00
|
|
|
void resizeEvent(QResizeEvent* event) override;
|
|
|
|
void keyPressEvent(QKeyEvent* event) override;
|
|
|
|
void mouseDoubleClickEvent(QMouseEvent* event) override;
|
|
|
|
void contextMenuEvent(QContextMenuEvent* event) override;
|
2015-08-10 19:40:58 +00:00
|
|
|
|
|
|
|
// QAbstractItemView
|
2019-11-12 01:37:05 +00:00
|
|
|
bool edit(QModelIndex const& index, EditTrigger trigger, QEvent* event) override;
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
private slots:
|
2017-04-20 16:02:19 +00:00
|
|
|
void onClicked(QModelIndex const& index);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
|
|
|
void checkSelectedItems();
|
|
|
|
void uncheckSelectedItems();
|
|
|
|
void onlyCheckSelectedItems();
|
|
|
|
void setSelectedItemsPriority();
|
|
|
|
bool openSelectedItem();
|
|
|
|
void renameSelectedItem();
|
|
|
|
|
|
|
|
void refreshContextMenuActionsSensitivity();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void initContextMenu();
|
|
|
|
QModelIndexList selectedSourceRows(int column = 0) const;
|
|
|
|
|
2017-04-20 16:02:19 +00:00
|
|
|
static Qt::CheckState getCumulativeCheckState(QModelIndexList const& indices);
|
2017-04-19 12:04:45 +00:00
|
|
|
|
2020-05-27 21:53:12 +00:00
|
|
|
FileTreeModel* model_ = {};
|
|
|
|
QSortFilterProxyModel* proxy_ = {};
|
|
|
|
FileTreeDelegate* delegate_ = {};
|
|
|
|
|
|
|
|
QMenu* context_menu_ = {};
|
|
|
|
QMenu* priority_menu_ = {};
|
|
|
|
QAction* check_selected_action_ = {};
|
|
|
|
QAction* uncheck_selected_action_ = {};
|
|
|
|
QAction* only_check_selected_action_ = {};
|
|
|
|
QAction* high_priority_action_ = {};
|
|
|
|
QAction* normal_priority_action_ = {};
|
|
|
|
QAction* low_priority_action_ = {};
|
|
|
|
QAction* open_action_ = {};
|
|
|
|
QAction* rename_action_ = {};
|
2015-06-10 21:27:11 +00:00
|
|
|
};
|