mirror of
https://github.com/ElvishArtisan/rivendell.git
synced 2025-07-31 16:09:35 +02:00
2023-08-02 Fred Gleason <fredg@paravelsystems.com>
* Changed the tree view widget on the main window of rdcastmananger(1) to be a table view. Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
parent
983f1394e5
commit
9c5c9a0b77
@ -24311,3 +24311,6 @@
|
||||
2023-08-02 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Added a 'Last Played' column to the library list in rdlibrary(1).
|
||||
* Added a 'Ingested On' column to the library list in rdlibrary(1).
|
||||
2023-08-02 Fred Gleason <fredg@paravelsystems.com>
|
||||
* Changed the tree view widget on the main window of rdcastmananger(1)
|
||||
to be a table view.
|
||||
|
@ -98,7 +98,7 @@ MainWidget::MainWidget(RDConfig *c,QWidget *parent)
|
||||
//
|
||||
// Feed List
|
||||
//
|
||||
cast_feed_view=new RDTreeView(this);
|
||||
cast_feed_view=new RDTableView(this);
|
||||
cast_feed_model=new RDFeedListModel(false,false,this);
|
||||
cast_feed_model->setFont(font());
|
||||
cast_feed_model->setPalette(palette());
|
||||
@ -185,6 +185,7 @@ void MainWidget::modelResetData()
|
||||
for(int i=0;i<cast_feed_model->columnCount();i++) {
|
||||
cast_feed_view->resizeColumnToContents(i);
|
||||
}
|
||||
cast_feed_view->resizeRowsToContents();
|
||||
}
|
||||
|
||||
|
||||
|
@ -2,7 +2,7 @@
|
||||
//
|
||||
// A RSS Feed Management Utility for Rivendell.
|
||||
//
|
||||
// (C) Copyright 2002-2022 Fred Gleason <fredg@paravelsystems.com>
|
||||
// (C) Copyright 2002-2023 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
|
||||
@ -28,7 +28,7 @@
|
||||
#include <rdfeedlistmodel.h>
|
||||
#include <rdlog_line.h>
|
||||
#include <rdmainwindow.h>
|
||||
#include <rdtreeview.h>
|
||||
#include <rdtableview.h>
|
||||
#include <rdtempdirectory.h>
|
||||
#include <rdwidget.h>
|
||||
#include <rdxsltengine.h>
|
||||
@ -59,7 +59,7 @@ class MainWidget : public RDMainWindow
|
||||
void closeEvent(QCloseEvent *e);
|
||||
|
||||
private:
|
||||
RDTreeView *cast_feed_view;
|
||||
RDTableView *cast_feed_view;
|
||||
RDFeedListModel *cast_feed_model;
|
||||
QPushButton *cast_open_button;
|
||||
QPushButton *cast_copy_button;
|
||||
|
Loading…
x
Reference in New Issue
Block a user