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