1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-25 14:04:23 +00:00

Merge pull request #2676 from pmzqla/copytrackers

Allow to copy all the trackers with a keyboard shortcut
This commit is contained in:
sledgehammer999 2015-07-19 14:04:28 +03:00
commit 983c19eb29
2 changed files with 3 additions and 0 deletions

View File

@ -79,6 +79,7 @@ TrackerList::TrackerList(PropertiesWidget *properties): QTreeWidget(), propertie
editHotkey = new QShortcut(QKeySequence("F2"), this, SLOT(editSelectedTracker()), 0, Qt::WidgetShortcut); editHotkey = new QShortcut(QKeySequence("F2"), this, SLOT(editSelectedTracker()), 0, Qt::WidgetShortcut);
connect(this, SIGNAL(doubleClicked(QModelIndex)), SLOT(editSelectedTracker())); connect(this, SIGNAL(doubleClicked(QModelIndex)), SLOT(editSelectedTracker()));
deleteHotkey = new QShortcut(QKeySequence(QKeySequence::Delete), this, SLOT(deleteSelectedTrackers()), 0, Qt::WidgetShortcut); deleteHotkey = new QShortcut(QKeySequence(QKeySequence::Delete), this, SLOT(deleteSelectedTrackers()), 0, Qt::WidgetShortcut);
copyHotkey = new QShortcut(QKeySequence(Qt::ControlModifier + Qt::Key_C), this, SLOT(copyTrackerUrl()), 0, Qt::WidgetShortcut);
loadSettings(); loadSettings();
} }
@ -86,6 +87,7 @@ TrackerList::TrackerList(PropertiesWidget *properties): QTreeWidget(), propertie
TrackerList::~TrackerList() { TrackerList::~TrackerList() {
delete editHotkey; delete editHotkey;
delete deleteHotkey; delete deleteHotkey;
delete copyHotkey;
saveSettings(); saveSettings();
} }

View File

@ -59,6 +59,7 @@ private:
QTreeWidgetItem* lsd_item; QTreeWidgetItem* lsd_item;
QShortcut *editHotkey; QShortcut *editHotkey;
QShortcut *deleteHotkey; QShortcut *deleteHotkey;
QShortcut *copyHotkey;
public: public:
TrackerList(PropertiesWidget *properties); TrackerList(PropertiesWidget *properties);