2022-12-08 Fred Gleason <fredg@paravelsystems.com>

* Implemented column sorting for item lists in rdcastmanager(1).

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2022-12-08 15:43:08 -05:00
parent 8beb1f875a
commit fa73bdbdd0
4 changed files with 36 additions and 3 deletions

View File

@@ -81,6 +81,8 @@ ListCasts::ListCasts(unsigned feed_id,QWidget *parent)
list_casts_label->setFont(bigLabelFont());
list_casts_label->setAlignment(Qt::AlignLeft|Qt::AlignVCenter);
list_casts_view=new RDTableView(this);
list_casts_view->setSortingEnabled(true);
list_casts_view->sortByColumn(2,Qt::DescendingOrder);
list_casts_model=new RDPodcastListModel(feed_id,this);
list_casts_model->setFont(font());
list_casts_model->setPalette(palette());