Theme Editor: Began working on device status dialog
[kugel-rb.git] / utils / themeeditor / gui / editorwindow.h
blob0bfaac3957775e691a4110fc071978024a3f7737
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"
35 #include "devicestate.h"
37 class ProjectModel;
38 class TabContent;
40 namespace Ui
42 class EditorWindow;
45 class EditorWindow : public QMainWindow
47 Q_OBJECT
48 public:
49 EditorWindow(QWidget *parent = 0);
50 virtual ~EditorWindow();
52 /* A public function so external widgets can load files */
53 void loadTabFromSkinFile(QString fileName);
54 void loadConfigTab(ConfigDocument* doc);
56 protected:
57 virtual void closeEvent(QCloseEvent* event);
59 public slots:
60 void configFileChanged(QString configFile);
62 private slots:
63 void showPanel();
64 void newTab();
65 void shiftTab(int index);
66 bool closeTab(int index);
67 void closeCurrent();
68 void saveCurrent();
69 void saveCurrentAs();
70 void openFile();
71 void openProject();
72 void tabTitleChanged(QString title);
73 void updateCurrent(); /* Generates code in the current tab */
74 void lineChanged(int line); /* Used for auto-expand */
76 private:
77 /* Setup functions */
78 void loadSettings();
79 void saveSettings();
80 void setupUI();
81 void setupMenus();
82 void addTab(TabContent* doc);
83 void expandLine(ParseTreeModel* model, QModelIndex parent, int line);
84 void sizeColumns();
86 Ui::EditorWindow *ui;
87 PreferencesDialog* prefs;
88 QLabel* parseStatus;
89 ProjectModel* project;
90 QItemSelectionModel* parseTreeSelection;
91 SkinViewer* viewer;
92 DeviceState deviceConfig;
95 #endif // EDITORWINDOW_H