2007-03-29 19:43:08 +04:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt4 and libtorrent.
|
2007-07-14 18:31:59 +04:00
|
|
|
* Copyright (C) 2006 Christophe Dumez, Arnaud Demaiziere
|
2007-03-29 19:43:08 +04:00
|
|
|
*
|
2007-07-14 18:31:59 +04:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2007-03-29 19:43:08 +04:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-07-14 18:31:59 +04:00
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* Contact : chris@qbittorrent.org arnaud@qbittorrent.org
|
2007-03-29 19:43:08 +04:00
|
|
|
*/
|
|
|
|
#ifndef __RSS_IMP_H__
|
|
|
|
#define __RSS_IMP_H__
|
|
|
|
|
2007-04-13 16:07:14 +04:00
|
|
|
#define REFRESH_MAX_LATENCY 600000
|
2007-04-13 03:53:15 +04:00
|
|
|
|
2007-03-29 19:43:08 +04:00
|
|
|
#include "ui_rss.h"
|
|
|
|
|
2007-07-23 16:46:36 +04:00
|
|
|
class QTimer;
|
2007-07-23 16:52:25 +04:00
|
|
|
class RssManager;
|
2007-07-23 16:46:36 +04:00
|
|
|
|
2007-03-29 19:43:08 +04:00
|
|
|
class RSSImp : public QWidget, public Ui::RSS{
|
|
|
|
Q_OBJECT
|
|
|
|
|
2007-04-05 16:39:42 +04:00
|
|
|
private:
|
2007-07-23 16:52:25 +04:00
|
|
|
RssManager *rssmanager;
|
2007-07-23 16:46:36 +04:00
|
|
|
QTimer *refreshTimeTimer;
|
2007-08-03 18:37:56 +04:00
|
|
|
QString selectedFeedUrl;
|
2007-04-05 16:39:42 +04:00
|
|
|
|
2007-08-03 19:02:16 +04:00
|
|
|
public slots:
|
|
|
|
void on_delStream_button_clicked();
|
|
|
|
|
2007-04-05 16:39:42 +04:00
|
|
|
protected slots:
|
|
|
|
void on_addStream_button_clicked();
|
|
|
|
void on_refreshAll_button_clicked();
|
2007-04-15 22:53:53 +04:00
|
|
|
void displayRSSListMenu(const QPoint&);
|
2007-04-05 22:30:20 +04:00
|
|
|
void renameStream();
|
2007-08-03 18:37:56 +04:00
|
|
|
void refreshSelectedStreams();
|
2007-04-05 22:30:20 +04:00
|
|
|
void createStream();
|
2007-04-11 16:59:55 +04:00
|
|
|
void refreshAllStreams();
|
2007-08-03 18:37:56 +04:00
|
|
|
void refreshNewsList(QTreeWidgetItem* item, int);
|
|
|
|
void refreshTextBrowser(QListWidgetItem *);
|
2007-07-22 15:53:43 +04:00
|
|
|
void updateLastRefreshedTimeForStreams();
|
2007-08-03 18:37:56 +04:00
|
|
|
void updateFeedIcon(QString url, QString icon_path);
|
|
|
|
void updateFeedInfos(QString url, QString aliasOrUrl, unsigned int nbUnread);
|
|
|
|
void openInBrowser(QListWidgetItem *);
|
|
|
|
void fillFeedsList();
|
|
|
|
void selectFirstFeed();
|
|
|
|
void selectFirstNews();
|
|
|
|
void updateFeedNbNews(QString url);
|
2007-09-09 15:31:51 +04:00
|
|
|
void on_actionMark_all_as_read_triggered();
|
2008-06-21 00:16:56 +04:00
|
|
|
void saveSlidersPosition();
|
|
|
|
void restoreSlidersPosition();
|
2007-03-29 20:09:21 +04:00
|
|
|
|
2007-04-05 16:39:42 +04:00
|
|
|
public:
|
|
|
|
RSSImp();
|
|
|
|
~RSSImp();
|
2007-08-03 18:37:56 +04:00
|
|
|
QTreeWidgetItem* getTreeItemFromUrl(QString url) const;
|
2007-03-29 19:43:08 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|