From a39a1118320c2c2e291f9e771ab75d32549431a7 Mon Sep 17 00:00:00 2001 From: Arno Date: Wed, 10 Apr 2013 21:36:26 +0200 Subject: Fix setAlternatignRowColors Well, what started as a try to simplify QTreeView ended in a mass header murder... What happened: * I searched for a way to let every QTreeView honor the setAlternatingRowcolors() setting. Unfortunately it isn't enough to just set the global palette and set it to true. So every QTreeView is now derived from SmTreeView * SmTreeView registers itself with SmGlobals, so the property is set _after_ it's constructed. It's definitely not enough to call it in the constructor. I guess that's a bug. But it's enough to append the SmTreeView to a QList in SmGlobals and call it _after_ the painting is done. * As an added Bonus we can add virt. funcs to every SmTreeView at will While at it I realized that most of the included headers were void, so remove them. No idea what impact it has on the bin size... --- filepropertiesdialog.cpp | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'filepropertiesdialog.cpp') diff --git a/filepropertiesdialog.cpp b/filepropertiesdialog.cpp index a36517a..a22076c 100644 --- a/filepropertiesdialog.cpp +++ b/filepropertiesdialog.cpp @@ -5,25 +5,19 @@ 2 of the License, or (at your option) any later version. */ -#include #include #include -#include #include #include -#include -#include -#include -#include #include #include "filepropertiesdialog.h" #include "seriesmetadatamodel.h" -#include "smtreemodel.h" #include "smtreeitem.h" +#include "smtreeview.h" #include "helper.h" -FilePropertiesDialog::FilePropertiesDialog(int seriesPartId, QWidget *parent, Qt::WindowFlags f) : SmDialog(parent, f){ +FilePropertiesDialog::FilePropertiesDialog(/*int seriesPartId, */QWidget *parent, Qt::WindowFlags f) : SmDialog(parent, f){ //tab mTab = new QTabWidget; @@ -45,19 +39,16 @@ FilePropertiesDialog::FilePropertiesDialog(int seriesPartId, QWidget *parent, Qt //the view + model mModel = new SmTreeModel((QStringList() << QString() << QString()), this); - mView = new QTreeView; + mView = new SmTreeView; mView->setHeaderHidden(true); - mView->setAlternatingRowColors(true); mView->setEditTriggers(QAbstractItemView::NoEditTriggers); mView->setModel(mModel); streamDataLayout->addWidget(mView); streamData->setLayout(streamDataLayout); mTab->addTab(streamData, tr("Stream data")); - mView->setPalette(qApp->palette()); //metadata widget mMetadata = new MetadataWidget; - mMetadata->setSeriesPartId(seriesPartId); mTab->addTab(mMetadata, tr("Metadata")); //buttons -- cgit v1.2.3-70-g09d2