Fred Gleason 90a9990e2e 2020-09-22 Fred Gleason <fredg@paravelsystems.com>
* Replaced the feed summary status icon with the feed image in the
	feed list in rdcastmanager(1).
	* Moved the post status icon to a new 'Status' column in the item
	list on the 'Podcast Item List' dialog in rdcastmanager(1).
	* Added the item icon to the start of each entry in the item list
	on the 'Podcast Item List' dialog in rdcastmanager(1).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
2020-09-23 18:38:49 -04:00

90 lines
2.4 KiB
C++

// list_casts.h
//
// List Rivendell Casts
//
// (C) Copyright 2002-2020 Fred Gleason <fredg@paravelsystems.com>
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
//
// 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., 675 Mass Ave, Cambridge, MA 02139, USA.
//
#ifndef LIST_CASTS_H
#define LIST_CASTS_H
#include <qcheckbox.h>
#include <qprogressdialog.h>
#include <rddialog.h>
#include <rdfeed.h>
#include <rdlistviewitem.h>
#include "render_dialog.h"
class ListCasts : public RDDialog
{
Q_OBJECT
public:
ListCasts(unsigned feed_id,bool is_super,QWidget *parent=0);
~ListCasts();
QSize sizeHint() const;
QSizePolicy sizePolicy() const;
private slots:
void addCartData();
void addFileData();
void addLogData();
void editData();
void deleteData();
void doubleClickedData(Q3ListViewItem *item,const QPoint &pt,int col);
void userChangedData();
void filterChangedData(const QString &str);
void notexpiredToggledData(bool state);
void activeToggledData(bool state);
void postProgressChangedData(int step);
void closeData();
void notificationReceivedData(RDNotification *notify);
protected:
void resizeEvent(QResizeEvent *e);
private:
void RefreshList();
void RefreshItem(RDListViewItem *item);
void GetEncoderId();
QLabel *list_casts_label;
RDListView *list_casts_view;
QPushButton *list_cart_button;
QPushButton *list_file_button;
QPushButton *list_log_button;
QPushButton *list_edit_button;
QPushButton *list_delete_button;
QPushButton *list_close_button;
QPixmap *list_blueball_map;
QPixmap *list_greenball_map;
QPixmap *list_redball_map;
QPixmap *list_whiteball_map;
QPixmap *list_rdcastmanager_32x32_map;
unsigned list_feed_id;
QLabel *list_filter_label;
QLineEdit *list_filter_edit;
QLabel *list_active_label;
QCheckBox *list_active_check;
QProgressDialog *list_progress_dialog;
RenderDialog *list_render_dialog;
RDFeed *list_feed;
bool list_is_superfeed;
};
#endif // LIST_CASTS_H