Theme Editor: Added an edit menu with a find/replace function (copied from an LGPL...
[kugel-rb.git] / utils / themeeditor / gui / editorwindow.h
blob6f30249e31f78d375414e7995f22ec7573e29f11
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 */
76 void undo();
77 void redo();
78 void cut();
79 void copy();
80 void paste();
81 void findReplace();
83 private:
84 /* Setup functions */
85 void loadSettings();
86 void saveSettings();
87 void setupUI();
88 void setupMenus();
89 void addTab(TabContent* doc);
90 void expandLine(ParseTreeModel* model, QModelIndex parent, int line);
91 void sizeColumns();
93 Ui::EditorWindow *ui;
94 PreferencesDialog* prefs;
95 QLabel* parseStatus;
96 ProjectModel* project;
97 QItemSelectionModel* parseTreeSelection;
98 SkinViewer* viewer;
99 DeviceState* deviceConfig;
100 QDockWidget* deviceDock;
103 #endif // EDITORWINDOW_H