Theme Editor: Implemented save/save as in the configuration file editor
[kugel-rb.git] / utils / themeeditor / editorwindow.h
blob51ca7a692d937c2327e1355604007de3a970cab4
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>
28 #include "parsetreemodel.h"
29 #include "skinhighlighter.h"
30 #include "skindocument.h"
31 #include "configdocument.h"
32 #include "preferencesdialog.h"
34 class ProjectModel;
35 class TabContent;
37 namespace Ui
39 class EditorWindow;
42 class EditorWindow : public QMainWindow
44 Q_OBJECT
45 public:
46 EditorWindow(QWidget *parent = 0);
47 ~EditorWindow();
49 /* A public function so external widgets can load files */
50 void loadTabFromSkinFile(QString fileName);
51 void loadConfigTab(ConfigDocument* doc);
53 protected:
54 virtual void closeEvent(QCloseEvent* event);
56 public slots:
57 void configFileChanged(QString configFile);
59 private slots:
60 void showPanel();
61 void newTab();
62 void shiftTab(int index);
63 bool closeTab(int index);
64 void closeCurrent();
65 void saveCurrent();
66 void saveCurrentAs();
67 void openFile();
68 void openProject();
69 void tabTitleChanged(QString title);
70 void updateCurrent(); /* Generates code in the current tab */
71 void lineChanged(int line); /* Used for auto-expand */
73 private:
74 /* Setup functions */
75 void loadSettings();
76 void saveSettings();
77 void setupUI();
78 void setupMenus();
79 void addTab(TabContent* doc);
80 void expandLine(ParseTreeModel* model, QModelIndex parent, int line);
81 void sizeColumns();
83 Ui::EditorWindow *ui;
84 PreferencesDialog* prefs;
85 QLabel* parseStatus;
86 ProjectModel* project;
89 #endif // EDITORWINDOW_H