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-04-16 01:31:32 +04:00
|
|
|
#define DESCRIPTION_CHILD 0
|
|
|
|
#define URL_CHILD 1
|
|
|
|
#define TIME_CHILD 2
|
|
|
|
|
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-04-05 16:39:42 +04:00
|
|
|
|
|
|
|
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();
|
2007-04-05 17:07:46 +04:00
|
|
|
void on_listNews_doubleClicked();
|
2007-04-15 22:53:53 +04:00
|
|
|
void displayRSSListMenu(const QPoint&);
|
2007-04-15 23:06:19 +04:00
|
|
|
void moveCurrentItem();
|
2007-04-05 22:30:20 +04:00
|
|
|
void deleteStream();
|
|
|
|
void renameStream();
|
|
|
|
void refreshStream();
|
|
|
|
void createStream();
|
2007-04-14 22:04:47 +04:00
|
|
|
void updateStreamName(const unsigned short&, const unsigned short&);
|
2007-04-11 16:59:55 +04:00
|
|
|
void refreshAllStreams();
|
|
|
|
void refreshStreamList();
|
|
|
|
void refreshNewsList();
|
|
|
|
void refreshTextBrowser();
|
2007-04-15 23:06:19 +04:00
|
|
|
short getNumStreamSelected();
|
2007-07-22 15:53:43 +04:00
|
|
|
void updateLastRefreshedTimeForStreams();
|
2007-03-29 20:09:21 +04:00
|
|
|
|
2007-04-05 16:39:42 +04:00
|
|
|
public:
|
|
|
|
RSSImp();
|
|
|
|
~RSSImp();
|
2007-03-29 19:43:08 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|