/*************************************************************************** * __________ __ ___. * Open \______ \ ____ ____ | | _\_ |__ _______ ___ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ * \/ \/ \/ \/ \/ * $Id$ * * Copyright (C) 2010 Robert Bieber * * 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 software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY * KIND, either express or implied. * ****************************************************************************/ #include "projectmodel.h" #include "projectfiles.h" #include #include #include #include ProjectModel::ProjectModel(QString config, QObject *parent) : QAbstractItemModel(parent) { root = new ProjectRoot(config); } ProjectModel::~ProjectModel() { if(root) delete root; } QModelIndex ProjectModel::index(int row, int column, const QModelIndex& parent) const { if(!hasIndex(row, column, parent)) return QModelIndex(); ProjectNode* foundParent = root; if(parent.isValid()) foundParent = static_cast(parent.internalPointer()); if(row < foundParent->numChildren() && row >= 0) return createIndex(row, column, foundParent->child(row)); else return QModelIndex(); } QModelIndex ProjectModel::parent(const QModelIndex &child) const { if(!child.isValid()) return QModelIndex(); ProjectNode* foundParent = static_cast (child.internalPointer())->parent(); if(foundParent == root) return QModelIndex(); return createIndex(foundParent->row(), 0, foundParent); } int ProjectModel::rowCount(const QModelIndex &parent) const { if(!root) return 0; if(!parent.isValid()) return root->numChildren(); if(parent.column() != 0) return 0; return static_cast(parent.internalPointer())->numChildren(); } int ProjectModel::columnCount(const QModelIndex &parent) const { return numColumns; } QVariant ProjectModel::data(const QModelIndex &index, int role) const { if(!index.isValid()) return QVariant(); if(role != Qt::DisplayRole) return QVariant(); return static_cast (index.internalPointer())->data(index.column()); } QVariant ProjectModel::headerData(int col, Qt::Orientation orientation, int role) const { return QVariant(); } Qt::ItemFlags ProjectModel::flags(const QModelIndex &index) const { return static_cast (index.internalPointer())->flags(index.column()); } bool ProjectModel::setData(const QModelIndex &index, const QVariant &value, int role) { return true; } /* Constructor and destructor for the root class */ ProjectRoot::ProjectRoot(QString config) { /* Reading the config file */ QFile cfg(config); cfg.open(QFile::ReadOnly | QFile::Text); if(!cfg.isReadable()) return; QTextStream fin(&cfg); /* Storing the base directory */ QString confDir = config; confDir.chop(confDir.length() - confDir.lastIndexOf('/') - 1); QDir base(confDir); base.cdUp(); settings.insert("themebase", base.canonicalPath()); while(!fin.atEnd()) { QString current = fin.readLine(); QList parts = current.split(':'); /* A valid setting has at least one : */ if(parts.count() < 2) continue; QString setting; for(int i = 1; i < parts.count(); i++) setting.append(parts[i].trimmed()); settings.insert(parts[0].trimmed(), setting); } cfg.close(); /* Showing the files */ children.append(new ProjectFiles(settings, this)); } ProjectRoot::~ProjectRoot() { for(int i = 0; i < children.count(); i++) delete children[i]; }