mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
some work on rss, refresh & autoopenbrowser
This commit is contained in:
parent
ff0dd88ee1
commit
eddee2a0d5
4 changed files with 128 additions and 41 deletions
|
@ -27,15 +27,23 @@
|
|||
class RSSImp : public QWidget, public Ui::RSS{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
RSSImp() : QWidget(){
|
||||
setupUi(this);
|
||||
addStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/add.png")));
|
||||
delStream_button->setIcon(QIcon(QString::fromUtf8(":/Icons/skin/remove.png")));
|
||||
refreshAll_button->setIcon(QIcon(QString::fromUtf8(":/Icons/refresh.png")));
|
||||
}
|
||||
private:
|
||||
RssManager rssmanager;
|
||||
void refreshStreamList();
|
||||
void refreshNewsList();
|
||||
void refreshTextBrowser();
|
||||
|
||||
~RSSImp(){}
|
||||
protected slots:
|
||||
void on_addStream_button_clicked();
|
||||
void on_delStream_button_clicked();
|
||||
void on_refreshAll_button_clicked();
|
||||
void on_listStreams_clicked();
|
||||
void on_listNews_clicked();
|
||||
void on_viewStream_button_clicked();
|
||||
|
||||
public:
|
||||
RSSImp();
|
||||
~RSSImp();
|
||||
};
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue