// AircraftModel.hxx - part of GUI launcher using Qt5 // // Written by James Turner, started March 2015. // // Copyright (C) 2015 James Turner // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program; if not, write to the Free Software // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #ifndef FG_GUI_AIRCRAFT_MODEL #define FG_GUI_AIRCRAFT_MODEL #include #include #include #include #include #include const int AircraftPathRole = Qt::UserRole + 1; const int AircraftAuthorsRole = Qt::UserRole + 2; const int AircraftVariantRole = Qt::UserRole + 3; const int AircraftVariantCountRole = Qt::UserRole + 4; const int AircraftThumbnailCountRole = Qt::UserRole + 5; const int AircraftPackageIdRole = Qt::UserRole + 6; const int AircraftPackageStatusRole = Qt::UserRole + 7; const int AircraftPackageProgressRole = Qt::UserRole + 8; const int AircraftLongDescriptionRole = Qt::UserRole + 9; const int AircraftHasRatingsRole = Qt::UserRole + 10; const int AircraftRatingRole = Qt::UserRole + 100; const int AircraftVariantDescriptionRole = Qt::UserRole + 200; const int AircraftThumbnailRole = Qt::UserRole + 300; class AircraftScanThread; class QDataStream; struct AircraftItem { AircraftItem(); AircraftItem(QDir dir, QString filePath); // the file-name without -set.xml suffix QString baseName() const; void fromDataStream(QDataStream& ds); void toDataStream(QDataStream& ds) const; QPixmap thumbnail() const; bool excluded; QString path; QString description; QString authors; int ratings[4]; QString variantOf; QDateTime pathModTime; QList variants; private: mutable QPixmap m_thumbnail; }; enum AircraftItemStatus { PackageNotInstalled, PackageInstalled, PackageUpdateAvailable, PackageDownloading }; class AircraftItemModel : public QAbstractListModel { Q_OBJECT public: AircraftItemModel(QObject* pr, simgear::pkg::RootRef& root); ~AircraftItemModel(); void setPaths(QStringList paths); void scanDirs(); virtual int rowCount(const QModelIndex& parent) const { return m_items.size(); } virtual QVariant data(const QModelIndex& index, int role) const; virtual bool setData(const QModelIndex &index, const QVariant &value, int role); /** * given a -set.xml path, return the corresponding model index, if one * exists. */ QModelIndex indexOfAircraftPath(QString path) const; private slots: void onScanResults(); void onScanFinished(); private: QVariant dataFromItem(const AircraftItem* item, quint32 variantIndex, int role) const; QVariant dataFromPackage(const simgear::pkg::PackageRef& item, quint32 variantIndex, int role) const; void abandonCurrentScan(); QStringList m_paths; AircraftScanThread* m_scanThread; QList m_items; QList m_activeVariant; simgear::pkg::RootRef m_packageRoot; }; #endif // of FG_GUI_AIRCRAFT_MODEL