08af08ac41118a566ff8729eec6b679a8b5ea879
[kugel-rb.git] / utils / themeeditor / gui / editorwindow.h
blob08af08ac41118a566ff8729eec6b679a8b5ea879
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 EDITORWINDOW_H
23 #define EDITORWINDOW_H
25 #include <QMainWindow>
26 #include <QLabel>
27 #include <QItemSelectionModel>
29 #include "parsetreemodel.h"
30 #include "skinhighlighter.h"
31 #include "skindocument.h"
32 #include "configdocument.h"
33 #include "preferencesdialog.h"
34 #include "skinviewer.h"
36 class ProjectModel;
37 class TabContent;
39 namespace Ui
41 class EditorWindow;
44 class EditorWindow : public QMainWindow
46 Q_OBJECT
47 public:
48 EditorWindow(QWidget *parent = 0);
49 virtual ~EditorWindow();
51 /* A public function so external widgets can load files */
52 void loadTabFromSkinFile(QString fileName);
53 void loadConfigTab(ConfigDocument* doc);
55 protected:
56 virtual void closeEvent(QCloseEvent* event);
58 public slots:
59 void configFileChanged(QString configFile);
61 private slots:
62 void showPanel();
63 void newTab();
64 void shiftTab(int index);
65 bool closeTab(int index);
66 void closeCurrent();
67 void saveCurrent();
68 void saveCurrentAs();
69 void openFile();
70 void openProject();
71 void tabTitleChanged(QString title);
72 void updateCurrent(); /* Generates code in the current tab */
73 void lineChanged(int line); /* Used for auto-expand */
75 private:
76 /* Setup functions */
77 void loadSettings();
78 void saveSettings();
79 void setupUI();
80 void setupMenus();
81 void addTab(TabContent* doc);
82 void expandLine(ParseTreeModel* model, QModelIndex parent, int line);
83 void sizeColumns();
85 Ui::EditorWindow *ui;
86 PreferencesDialog* prefs;
87 QLabel* parseStatus;
88 ProjectModel* project;
89 QItemSelectionModel* parseTreeSelection;
90 SkinViewer* viewer;
93 #endif // EDITORWINDOW_H