- Started to implement drag n drop in feed list but it is still very buggy

This commit is contained in:
Christophe Dumez 2009-08-23 08:10:56 +00:00
parent b9f1586068
commit 2fa43dd973
7 changed files with 141 additions and 71 deletions

View file

@ -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