Theme Editor: Changed anged error reporting method in parser, added error messages...
[kugel-rb.git] / utils / themeeditor / parsetreemodel.h
blob55af549e6c7b3b7cdeadc2ad027aa6dcb998a310
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 #include "skin_parser.h"
23 #include "skin_debug.h"
25 #ifndef PARSETREEMODEL_H
26 #define PARSETREEMODEL_H
28 #include <QAbstractItemModel>
29 #include <QList>
31 #include "parsetreenode.h"
33 class ParseTreeModel : public QAbstractItemModel
36 Q_OBJECT
38 public:
39 /* Constants */
40 static const int numColumns = 3;
41 static const int typeColumn = 0;
42 static const int lineColumn = 1;
43 static const int valueColumn = 2;
45 /* Initializes a tree with a skin document in a string */
46 ParseTreeModel(const char* document, QObject* parent = 0);
47 virtual ~ParseTreeModel();
49 QString genCode();
50 /* Changes the parse tree to a new document */
51 QString changeTree(const char* document);
52 QModelIndex index(int row, int column, const QModelIndex& parent) const;
53 QModelIndex parent(const QModelIndex &child) const;
54 int rowCount(const QModelIndex &parent) const;
55 int columnCount(const QModelIndex &parent) const;
56 QVariant data(const QModelIndex &index, int role) const;
57 QVariant headerData(int col, Qt::Orientation orientation, int role) const;
58 Qt::ItemFlags flags(const QModelIndex &index) const;
59 bool setData(const QModelIndex &index, const QVariant &value, int role);
61 private:
62 ParseTreeNode* root;
63 struct skin_element* tree;
68 #endif // PARSETREEMODEL_H