1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-27 18:18:10 +00:00
transmission/qt/FileTreeView.h
Mike Gelfand 3e072f9bd4
Fix most of critical issues reported by Sonar (GTK client) (#2309)
* (C++) Macros should not be used to define constants

* (C++) Memory should not be managed manually

* (C++) "void*" should not be used in typedefs, member variables, function parameters or return type

* (C++) When the "Rule-of-Zero" is not applicable, the "Rule-of-Five" should be followed

* (C++) "switch" statements should have "default" clauses

* (C++) "explicit" should be used on single-parameter constructors and conversiosn operators

* (C++) Non-const global variables should not be used
2021-12-14 11:43:27 +03:00

86 lines
2.3 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 <libtransmission/tr-macros.h>
#include "Torrent.h" // FileList
class QAction;
class QMenu;
class QSortFilterProxyModel;
class FileTreeDelegate;
class FileTreeModel;
class FileTreeView : public QTreeView
{
Q_OBJECT
TR_DISABLE_COPY_MOVE(FileTreeView)
public:
FileTreeView(QWidget* parent = nullptr, bool editable = true);
void clear();
void update(FileList const& files, bool update_properties = true);
void setEditable(bool editable);
signals:
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);
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);
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_ = {};
};