Theme Editor: Began implementing tabbing
[kugel-rb.git] / utils / themeeditor / skindocument.h
blob5f25d8e2928ebb0ea89fbf22075dab5ef3681302
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 SKINDOCUMENT_H
23 #define SKINDOCUMENT_H
25 #include <QWidget>
26 #include <QHBoxLayout>
27 #include <QPlainTextEdit>
29 #include "skinhighlighter.h"
30 #include "parsetreemodel.h"
32 class SkinDocument : public QWidget
34 Q_OBJECT
35 public:
36 SkinDocument(QWidget *parent = 0);
37 virtual ~SkinDocument();
39 ParseTreeModel* getModel(){ return model; }
40 QString getTitle(){ return title; }
42 signals:
44 private slots:
45 void codeChanged();
47 private:
48 void setupUI();
50 QString title;
52 QLayout* layout;
53 QPlainTextEdit* editor;
55 SkinHighlighter* highlighter;
56 ParseTreeModel* model;
59 #endif // SKINDOCUMENT_H