Theme Editor: Began working on open document functionality (still incomplete), fixed...
[kugel-rb.git] / utils / themeeditor / skindocument.h
blob4546c42edb9a77ca4cfe83ce46df32dc27058f09
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 static QString fileFilter()
38 return tr("WPS Files (*.wps *.rwps);;"
39 "SBS Files (*.sbs *.rsbs);;"
40 "FMS Files (*.fms *.rfms);;"
41 "All Skin Files (*.wps *.rwps *.sbs "
42 "*.rsbs *.fms *.rfms);;"
43 "All Files (*.*)");
46 SkinDocument(QWidget *parent = 0);
47 virtual ~SkinDocument();
49 ParseTreeModel* getModel(){ return model; }
50 QString getTitle(){ return title; }
51 void genCode(){ editor->document()->setPlainText(model->genCode()); }
53 void save();
54 void saveAs();
56 bool requestClose();
58 signals:
59 void titleChanged(QString);
61 private slots:
62 void codeChanged();
64 private:
65 void setupUI();
67 QString title;
68 QString fileName;
69 QString saved;
71 QLayout* layout;
72 QPlainTextEdit* editor;
74 SkinHighlighter* highlighter;
75 ParseTreeModel* model;
78 #endif // SKINDOCUMENT_H