1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
|
/***************************************************************************
* __________ __ ___.
* 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 "projectsettings.h"
#include "editorwindow.h"
#include <QFile>
#include <QTextStream>
#include <QHash>
#include <QDir>
ProjectModel::ProjectModel(QString config, EditorWindow* mainWindow,
QObject *parent)
: QAbstractItemModel(parent),
mainWindow(mainWindow)
{
root = new ProjectRoot(config, this);
}
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<ProjectNode*>(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<ProjectNode*>
(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<ProjectNode*>(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<ProjectNode*>
(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<ProjectNode*>
(index.internalPointer())->flags(index.column());
}
bool ProjectModel::setData(const QModelIndex &index, const QVariant &value,
int role)
{
return true;
}
void ProjectModel::loadFile(QString file)
{
mainWindow->loadTabFromFile(file);
}
void ProjectModel::activated(const QModelIndex &index)
{
static_cast<ProjectNode*>(index.internalPointer())->activated();
}
/* Constructor and destructor for the root class */
ProjectRoot::ProjectRoot(QString config, ProjectModel* model)
{
this->model = model;
/* 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<QString> 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, model, this));
children.append(new ProjectSettings(settings, model, this));
}
ProjectRoot::~ProjectRoot()
{
for(int i = 0; i < children.count(); i++)
delete children[i];
}
|