123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301 |
- /*=========================================================================
- Library: CTK
- Copyright (c) Kitware Inc.
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0.txt
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- =========================================================================*/
- // Qt include
- #include <QDateTime>
- #include <QDir>
- #include <QFile>
- #include <QFileInfo>
- #include <QGridLayout>
- #include <QMetaType>
- #include <QPersistentModelIndex>
- #include <QPixmap>
- #include <QPushButton>
- #include <QResizeEvent>
- // ctk includes
- #include "ctkLogger.h"
- // ctkWidgets includes
- #include "ctkFlowLayout.h"
- #include "ctkThumbnailListWidget_p.h"
- #include "ui_ctkThumbnailListWidget.h"
- //ctkDICOMCore includes
- #include "ctkDICOMDatabase.h"
- #include "ctkDICOMFilterProxyModel.h"
- #include "ctkDICOMModel.h"
- // ctkDICOMWidgets includes
- #include "ctkDICOMThumbnailListWidget.h"
- #include "ctkThumbnailLabel.h"
- // STD includes
- #include <iostream>
- // DCMTK includes
- #include <dcmtk/dcmimgle/dcmimage.h>
- static ctkLogger logger("org.commontk.DICOM.Widgets.ctkDICOMThumbnailListWidget");
- Q_DECLARE_METATYPE(QPersistentModelIndex);
- //----------------------------------------------------------------------------
- class ctkDICOMThumbnailListWidgetPrivate : ctkThumbnailListWidgetPrivate
- {
- Q_DECLARE_PUBLIC(ctkDICOMThumbnailListWidget);
- public:
- typedef ctkThumbnailListWidgetPrivate Superclass;
- ctkDICOMThumbnailListWidgetPrivate(ctkDICOMThumbnailListWidget* parent);
- QString DatabaseDirectory;
- QModelIndex CurrentSelectedModel;
- void addThumbnailWidget(const QModelIndex &imageIndex, const QModelIndex& sourceIndex, const QString& text);
- void addPatientThumbnails(const QModelIndex& patientIndex);
- void addStudyThumbnails(const QModelIndex& studyIndex);
- void addSeriesThumbnails(const QModelIndex& seriesIndex);
- private:
- Q_DISABLE_COPY( ctkDICOMThumbnailListWidgetPrivate );
- };
- //----------------------------------------------------------------------------
- // ctkDICOMThumbnailListWidgetPrivate methods
- //----------------------------------------------------------------------------
- ctkDICOMThumbnailListWidgetPrivate
- ::ctkDICOMThumbnailListWidgetPrivate(ctkDICOMThumbnailListWidget* parent)
- : Superclass(parent)
- {
- }
- //----------------------------------------------------------------------------
- void ctkDICOMThumbnailListWidgetPrivate
- ::addPatientThumbnails(const QModelIndex &index)
- {
- QModelIndex patientIndex = index;
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(
- qobject_cast<const ctkDICOMModel*>(index.model()));
- if(model)
- {
- model->fetchMore(patientIndex);
- const int studyCount = model->rowCount(patientIndex);
- for(int i=0; i<studyCount; i++)
- {
- QModelIndex studyIndex = patientIndex.child(i, 0);
- QModelIndex seriesIndex = studyIndex.child(0, 0);
- model->fetchMore(seriesIndex);
- const int imageCount = model->rowCount(seriesIndex);
- QModelIndex imageIndex = seriesIndex.child(imageCount/2, 0);
- QString study = model->data(studyIndex, Qt::DisplayRole).toString();
- this->addThumbnailWidget(imageIndex, studyIndex, study);
- }
- }
- }
- //----------------------------------------------------------------------------
- void ctkDICOMThumbnailListWidgetPrivate
- ::addStudyThumbnails(const QModelIndex &index)
- {
- QModelIndex studyIndex = index;
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(index.model()));
- if (!model)
- {
- return;
- }
- model->fetchMore(studyIndex);
- const int seriesCount = model->rowCount(studyIndex);
- for(int i=0; i<seriesCount; i++)
- {
- QModelIndex seriesIndex = studyIndex.child(i, 0);
- model->fetchMore(seriesIndex);
- int imageCount = model->rowCount(seriesIndex);
- QModelIndex imageIndex = seriesIndex.child(imageCount/2, 0);
- this->addThumbnailWidget(imageIndex, seriesIndex, model->data(seriesIndex, Qt::DisplayRole).toString());
- }
- }
- //----------------------------------------------------------------------------
- void ctkDICOMThumbnailListWidgetPrivate
- ::addSeriesThumbnails(const QModelIndex &index)
- {
- QModelIndex studyIndex = index.parent();
- QModelIndex seriesIndex = index;
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(index.model()));
- if (!model)
- {
- return;
- }
- model->fetchMore(seriesIndex);
- const int imageCount = model->rowCount(seriesIndex);
- logger.debug(QString("Thumbs: %1").arg(imageCount));
- for (int i = 0 ; i < imageCount ; i++ )
- {
- QModelIndex imageIndex = seriesIndex.child(i,0);
- this->addThumbnailWidget(imageIndex, imageIndex, QString("Image %1").arg(i));
- }
- }
- //----------------------------------------------------------------------------
- void ctkDICOMThumbnailListWidgetPrivate
- ::addThumbnailWidget(const QModelIndex& imageIndex,
- const QModelIndex& sourceIndex, const QString &text)
- {
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(
- qobject_cast<const ctkDICOMModel*>(imageIndex.model()));
- if(!model)
- {
- return;
- }
- QModelIndex seriesIndex = imageIndex.parent();
- QModelIndex studyIndex = seriesIndex.parent();
- QString thumbnailPath = this->DatabaseDirectory +
- "/thumbs/" + model->data(studyIndex ,ctkDICOMModel::UIDRole).toString() + "/" +
- model->data(seriesIndex ,ctkDICOMModel::UIDRole).toString() + "/" +
- model->data(imageIndex, ctkDICOMModel::UIDRole).toString() + ".png";
- if(!QFileInfo(thumbnailPath).exists())
- {
- return;
- }
- ctkThumbnailLabel* widget = new ctkThumbnailLabel(this->ScrollAreaContentWidget);
- QString widgetLabel = text;
- widget->setText( widgetLabel );
- QPixmap pix(thumbnailPath);
- logger.debug("Setting pixmap to " + thumbnailPath);
- if(this->ThumbnailSize.isValid())
- {
- widget->setFixedSize(this->ThumbnailSize);
- }
- widget->setPixmap(pix);
- QVariant var;
- var.setValue(QPersistentModelIndex(sourceIndex));
- widget->setProperty("sourceIndex", var);
- this->addThumbnail(widget);
- }
- //----------------------------------------------------------------------------
- // ctkDICOMThumbnailListWidget methods
- //----------------------------------------------------------------------------
- ctkDICOMThumbnailListWidget::ctkDICOMThumbnailListWidget(QWidget* _parent)
- : Superclass(new ctkDICOMThumbnailListWidgetPrivate(this), _parent)
- {
- }
- //----------------------------------------------------------------------------
- ctkDICOMThumbnailListWidget::~ctkDICOMThumbnailListWidget()
- {
- }
- //----------------------------------------------------------------------------
- void ctkDICOMThumbnailListWidget::setDatabaseDirectory(const QString &directory){
- Q_D(ctkDICOMThumbnailListWidget);
- d->DatabaseDirectory = directory;
- }
- //----------------------------------------------------------------------------
- void ctkDICOMThumbnailListWidget::selectThumbnailFromIndex(const QModelIndex &index){
- Q_D(ctkDICOMThumbnailListWidget);
- if(!d->CurrentSelectedModel.isValid())
- {
- return;
- }
- if(index.parent() != d->CurrentSelectedModel)
- {
- return;
- }
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(index.model()));
- if(model)
- {
- int count = d->ScrollAreaContentWidget->layout()->count();
- for(int i=0; i<count; i++)
- {
- ctkThumbnailLabel* thumbnailWidget = qobject_cast<ctkThumbnailLabel*>(d->ScrollAreaContentWidget->layout()->itemAt(i)->widget());
- if(thumbnailWidget->property("sourceIndex").value<QPersistentModelIndex>() == index)
- {
- thumbnailWidget->setSelected(true);
- d->ScrollArea->ensureWidgetVisible(thumbnailWidget);
- }
- else
- {
- thumbnailWidget->setSelected(false);
- }
- }
- }
- }
- //----------------------------------------------------------------------------
- void ctkDICOMThumbnailListWidget::addThumbnails(const QModelIndex &index)
- {
- Q_D(ctkDICOMThumbnailListWidget);
- this->clearThumbnails();
- ctkDICOMModel* model = const_cast<ctkDICOMModel*>(qobject_cast<const ctkDICOMModel*>(index.model()));
- if(model)
- {
- QModelIndex index0 = index.sibling(index.row(), 0);
- d->CurrentSelectedModel = index0;
- if ( model->data(index0,ctkDICOMModel::TypeRole) == static_cast<int>(ctkDICOMModel::PatientType) )
- {
- d->addPatientThumbnails(index0);
- }
- else if ( model->data(index0,ctkDICOMModel::TypeRole) == static_cast<int>(ctkDICOMModel::StudyType) )
- {
- d->addStudyThumbnails(index0);
- }
- else if ( model->data(index0,ctkDICOMModel::TypeRole) == static_cast<int>(ctkDICOMModel::SeriesType) )
- {
- d->addSeriesThumbnails(index0);
- }
- }
- this->setCurrentThumbnail(0);
- }
|