123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- /*=========================================================================
- 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.
- =========================================================================*/
- #ifndef __ctkDICOMModel_h
- #define __ctkDICOMModel_h
- // Qt includes
- #include <QAbstractItemModel>
- #include <QMetaType>
- #include <QSqlDatabase>
- #include <QStringList>
- #include "ctkDICOMCoreExport.h"
- class ctkDICOMModelPrivate;
- /// \ingroup DICOM_Core
- class CTK_DICOM_CORE_EXPORT ctkDICOMModel
- // : public QStandardItemModel
- : public QAbstractItemModel
- {
- Q_OBJECT
- typedef QAbstractItemModel Superclass;
- Q_ENUMS(IndexType)
- /// startLevel contains the hierarchy depth the model contains
- Q_PROPERTY(IndexType endLevel READ endLevel WRITE setEndLevel);
- public:
- enum {
- UIDRole = Qt::UserRole,
- TypeRole
- };
- enum IndexType{
- RootType,
- PatientType,
- StudyType,
- SeriesType,
- ImageType
- };
- explicit ctkDICOMModel(QObject* parent = 0);
- virtual ~ctkDICOMModel();
- void setDatabase(const QSqlDatabase& dataBase);
- void setDatabase(const QSqlDatabase& dataBase, const QMap<QString,QVariant>& parameters);
- /// Set it before populating the model
- ctkDICOMModel::IndexType endLevel()const;
- void setEndLevel(ctkDICOMModel::IndexType level);
- virtual bool canFetchMore ( const QModelIndex & parent ) const;
- virtual int columnCount ( const QModelIndex & parent = QModelIndex() ) const;
- virtual QVariant data ( const QModelIndex & index, int role = Qt::DisplayRole ) const;
- virtual void fetchMore ( const QModelIndex & parent );
- virtual Qt::ItemFlags flags ( const QModelIndex & index ) const;
- // can return true even if rowCount returns 0, you should use canFetchMore/fetchMore to populate
- // the children.
- virtual bool hasChildren ( const QModelIndex & parent = QModelIndex() ) const;
- virtual QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole)const;
- virtual QModelIndex index ( int row, int column, const QModelIndex & parent = QModelIndex() ) const;
- virtual QModelIndex parent ( const QModelIndex & index ) const;
- virtual int rowCount ( const QModelIndex & parent = QModelIndex() ) const;
- virtual bool setData(const QModelIndex &index, const QVariant &value, int role);
- virtual bool setHeaderData ( int section, Qt::Orientation orientation, const QVariant & value, int role = Qt::EditRole );
- // Sorting resets the model because fetched/unfetched items could disappear/appear respectively.
- virtual void sort(int column, Qt::SortOrder order = Qt::AscendingOrder);
- public Q_SLOTS:
- virtual void reset();
- protected:
- QScopedPointer<ctkDICOMModelPrivate> d_ptr;
- bool setChildData(const QModelIndex &index, const QVariant &value, int role);
- bool setParentData(const QModelIndex &index, const QVariant &value, int role);
- private:
- Q_DECLARE_PRIVATE(ctkDICOMModel);
- Q_DISABLE_COPY(ctkDICOMModel);
- };
- Q_DECLARE_METATYPE(ctkDICOMModel::IndexType)
- #endif
|