qBittorrent/src/rss_imp.h

69 lines
1.9 KiB
C
Raw Normal View History

/*
* Bittorrent Client using Qt4 and libtorrent.
* Copyright (C) 2006 Christophe Dumez, Arnaud Demaiziere
*
* 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.
*
* 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
* 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
*/
#ifndef __RSS_IMP_H__
#define __RSS_IMP_H__
#define REFRESH_MAX_LATENCY 600000
2007-04-13 03:53:15 +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;
class RssManager;
2007-07-23 16:46:36 +04:00
class RSSImp : public QWidget, public Ui::RSS{
Q_OBJECT
private:
RssManager *rssmanager;
2007-07-23 16:46:36 +04:00
QTimer *refreshTimeTimer;
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_listNews_doubleClicked();
void displayRSSListMenu(const QPoint&);
2007-04-15 23:06:19 +04:00
void moveCurrentItem();
void deleteStream();
void renameStream();
void refreshStream();
void createStream();
2007-04-14 22:04:47 +04:00
void updateStreamName(const unsigned short&, const unsigned short&);
void refreshAllStreams();
void refreshStreamList();
void refreshNewsList();
void refreshTextBrowser();
2007-04-15 23:06:19 +04:00
short getNumStreamSelected();
void updateLastRefreshedTimeForStreams();
2007-03-29 20:09:21 +04:00
public:
RSSImp();
~RSSImp();
};
#endif