mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-24 05:25:37 +00:00
Code cleanup
This commit is contained in:
parent
645ee86860
commit
687842a949
@ -911,7 +911,7 @@ GUI::GUI(QWidget *parent, QStringList torrentCmdLine) : QMainWindow(parent), dis
|
|||||||
inDownloadList = false;
|
inDownloadList = false;
|
||||||
break;
|
break;
|
||||||
case 3: //RSSImp
|
case 3: //RSSImp
|
||||||
rssWidget->on_delStream_button_clicked();
|
rssWidget->deleteSelectedFeeds();
|
||||||
return;
|
return;
|
||||||
default:
|
default:
|
||||||
return;
|
return;
|
||||||
|
@ -116,7 +116,7 @@ void RSSImp::on_newFeedButton_clicked() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// delete a stream by a button
|
// delete a stream by a button
|
||||||
void RSSImp::on_delStream_button_clicked() {
|
void RSSImp::deleteSelectedFeeds() {
|
||||||
QList<QTreeWidgetItem*> selectedItems = listStreams->selectedItems();
|
QList<QTreeWidgetItem*> selectedItems = listStreams->selectedItems();
|
||||||
QTreeWidgetItem *item;
|
QTreeWidgetItem *item;
|
||||||
if(!selectedItems.size()) return;
|
if(!selectedItems.size()) return;
|
||||||
@ -367,7 +367,7 @@ RSSImp::RSSImp(bittorrent *BTSession) : QWidget(), BTSession(BTSession){
|
|||||||
connect(listNews, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayItemsListMenu(const QPoint&)));
|
connect(listNews, SIGNAL(customContextMenuRequested(const QPoint&)), this, SLOT(displayItemsListMenu(const QPoint&)));
|
||||||
|
|
||||||
// Feeds list actions
|
// Feeds list actions
|
||||||
connect(actionDelete_feed, SIGNAL(triggered()), this, SLOT(on_delStream_button_clicked()));
|
connect(actionDelete_feed, SIGNAL(triggered()), this, SLOT(deleteSelectedFeeds()));
|
||||||
connect(actionRename_feed, SIGNAL(triggered()), this, SLOT(renameStream()));
|
connect(actionRename_feed, SIGNAL(triggered()), this, SLOT(renameStream()));
|
||||||
connect(actionUpdate_feed, SIGNAL(triggered()), this, SLOT(refreshSelectedStreams()));
|
connect(actionUpdate_feed, SIGNAL(triggered()), this, SLOT(refreshSelectedStreams()));
|
||||||
connect(actionNew_subscription, SIGNAL(triggered()), this, SLOT(on_newFeedButton_clicked()));
|
connect(actionNew_subscription, SIGNAL(triggered()), this, SLOT(on_newFeedButton_clicked()));
|
||||||
|
@ -41,42 +41,42 @@ class bittorrent;
|
|||||||
class RSSImp : public QWidget, public Ui::RSS{
|
class RSSImp : public QWidget, public Ui::RSS{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
private:
|
private:
|
||||||
RssManager *rssmanager;
|
RssManager *rssmanager;
|
||||||
QTimer *refreshTimeTimer;
|
QTimer *refreshTimeTimer;
|
||||||
QString selectedFeedUrl;
|
QString selectedFeedUrl;
|
||||||
bittorrent *BTSession;
|
bittorrent *BTSession;
|
||||||
|
|
||||||
public slots:
|
public slots:
|
||||||
void on_delStream_button_clicked();
|
void deleteSelectedFeeds();
|
||||||
|
|
||||||
protected slots:
|
protected slots:
|
||||||
void on_newFeedButton_clicked();
|
void on_newFeedButton_clicked();
|
||||||
void on_updateAllButton_clicked();
|
void on_updateAllButton_clicked();
|
||||||
void on_markReadButton_clicked();
|
void on_markReadButton_clicked();
|
||||||
void displayRSSListMenu(const QPoint&);
|
void displayRSSListMenu(const QPoint&);
|
||||||
void displayItemsListMenu(const QPoint&);
|
void displayItemsListMenu(const QPoint&);
|
||||||
void renameStream();
|
void renameStream();
|
||||||
void refreshSelectedStreams();
|
void refreshSelectedStreams();
|
||||||
void copySelectedFeedsURL();
|
void copySelectedFeedsURL();
|
||||||
void refreshNewsList(QTreeWidgetItem* item);
|
void refreshNewsList(QTreeWidgetItem* item);
|
||||||
void refreshTextBrowser(QListWidgetItem *);
|
void refreshTextBrowser(QListWidgetItem *);
|
||||||
void updateLastRefreshedTimeForStreams();
|
void updateLastRefreshedTimeForStreams();
|
||||||
void updateFeedIcon(QString url, QString icon_path);
|
void updateFeedIcon(QString url, QString icon_path);
|
||||||
void updateFeedInfos(QString url, QString aliasOrUrl, unsigned int nbUnread);
|
void updateFeedInfos(QString url, QString aliasOrUrl, unsigned int nbUnread);
|
||||||
void openNewsUrl();
|
void openNewsUrl();
|
||||||
void downloadTorrent();
|
void downloadTorrent();
|
||||||
void fillFeedsList();
|
void fillFeedsList();
|
||||||
void selectFirstFeed();
|
void selectFirstFeed();
|
||||||
void updateFeedNbNews(QString url);
|
void updateFeedNbNews(QString url);
|
||||||
void saveSlidersPosition();
|
void saveSlidersPosition();
|
||||||
void restoreSlidersPosition();
|
void restoreSlidersPosition();
|
||||||
void showFeedDownloader();
|
void showFeedDownloader();
|
||||||
|
|
||||||
public:
|
public:
|
||||||
RSSImp(bittorrent *BTSession);
|
RSSImp(bittorrent *BTSession);
|
||||||
~RSSImp();
|
~RSSImp();
|
||||||
QTreeWidgetItem* getTreeItemFromUrl(QString url) const;
|
QTreeWidgetItem* getTreeItemFromUrl(QString url) const;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user