mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
- Started to implement drag n drop in feed list but it is still very buggy
This commit is contained in:
parent
b9f1586068
commit
2fa43dd973
7 changed files with 141 additions and 71 deletions
|
@ -36,6 +36,8 @@
|
|||
#include "rss.h"
|
||||
|
||||
class bittorrent;
|
||||
class FeedList;
|
||||
class QTreeWidgetItem;
|
||||
|
||||
class RSSImp : public QWidget, public Ui::RSS{
|
||||
Q_OBJECT
|
||||
|
@ -43,6 +45,7 @@ class RSSImp : public QWidget, public Ui::RSS{
|
|||
private:
|
||||
RssManager *rssmanager;
|
||||
bittorrent *BTSession;
|
||||
FeedList *listStreams;
|
||||
|
||||
public slots:
|
||||
void deleteSelectedItems();
|
||||
|
@ -76,9 +79,9 @@ public:
|
|||
QTreeWidgetItem* getTreeItemFromUrl(QString url) const;
|
||||
QString getCurrentFeedUrl() const;
|
||||
QTreeWidgetItem* getItemFromPath(QStringList path) const;
|
||||
QStringList getItemPath(QTreeWidgetItem *item) const;
|
||||
QStringList getCurrentFeedPath() const;
|
||||
RssFile::FileType getItemType(QTreeWidgetItem *item) const;
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue