Theme Editor: Fixed bugs in code generation and viewport parsing
[kugel-rb.git] / utils / themeeditor / parsetreemodel.h
blob4c448ce5587d9423ab8a9396728a17a626ca24ee
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();
51 QModelIndex index(int row, int column, const QModelIndex& parent) const;
52 QModelIndex parent(const QModelIndex &child) const;
53 int rowCount(const QModelIndex &parent) const;
54 int columnCount(const QModelIndex &parent) const;
55 QVariant data(const QModelIndex &index, int role) const;
56 QVariant headerData(int col, Qt::Orientation orientation, int role) const;
57 Qt::ItemFlags flags(const QModelIndex &index) const;
58 bool setData(const QModelIndex &index, const QVariant &value, int role);
60 private:
61 ParseTreeNode* root;
62 struct skin_element* tree;
67 #endif // PARSETREEMODEL_H