Theme Editor: Got project viewer displaying WPS files
[kugel-rb.git] / utils / themeeditor / projectmodel.h
blob083865a6693be2a37a154760e1e13a3798b72f96
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2010 Robert Bieber
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef PROJECTMODEL_H
23 #define PROJECTMODEL_H
25 #include <QAbstractItemModel>
26 #include <QHash>
28 class ProjectNode;
30 class ProjectModel : public QAbstractItemModel
32 Q_OBJECT
33 public:
34 static const int numColumns = 1;
36 static QString fileFilter()
38 return QObject::tr("Project Files (*.cfg);;All Files (*.*)");
41 ProjectModel(QString config, QObject *parent = 0);
42 virtual ~ProjectModel();
44 QModelIndex index(int row, int column, const QModelIndex& parent) const;
45 QModelIndex parent(const QModelIndex &child) const;
46 int rowCount(const QModelIndex &parent) const;
47 int columnCount(const QModelIndex &parent) const;
48 QVariant data(const QModelIndex &index, int role) const;
49 QVariant headerData(int col, Qt::Orientation orientation, int role) const;
50 Qt::ItemFlags flags(const QModelIndex &index) const;
51 bool setData(const QModelIndex &index, const QVariant &value, int role);
54 signals:
56 public slots:
58 private:
59 ProjectNode* root;
62 /* A simple abstract class required for categories */
63 class ProjectNode
65 public:
66 virtual ProjectNode* parent() const = 0;
67 virtual ProjectNode* child(int row) const = 0;
68 virtual int numChildren() const = 0;
69 virtual int row() const = 0;
70 virtual QVariant data(int column) const = 0;
71 virtual Qt::ItemFlags flags(int column) const = 0;
72 virtual void activated() = 0;
74 int indexOf(ProjectNode* child){ return children.indexOf(child); }
76 protected:
77 QList<ProjectNode*> children;
81 /* A simple implementation of ProjectNode for the root */
82 class ProjectRoot : public ProjectNode
84 public:
85 ProjectRoot(QString config);
86 virtual ~ProjectRoot();
88 virtual ProjectNode* parent() const{ return 0; }
89 virtual ProjectNode* child(int row) const
91 if(row >= 0 && row < children.count())
92 return children[row];
93 else
94 return 0;
96 virtual int numChildren() const{ return children.count(); }
97 virtual int row() const{ return 0; }
98 virtual QVariant data(int column) const{ return QVariant(); }
99 virtual Qt::ItemFlags flags(int column) const{ return 0; }
100 virtual void activated(){ }
102 private:
103 QHash<QString, QString> settings;
108 #endif // PROJECTMODEL_H