2010-06-01 21:25:02 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Robert Bieber
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef EDITORWINDOW_H
|
|
|
|
#define EDITORWINDOW_H
|
|
|
|
|
|
|
|
#include <QMainWindow>
|
2010-06-07 20:29:46 +00:00
|
|
|
#include <QLabel>
|
2010-06-01 21:25:02 +00:00
|
|
|
|
|
|
|
#include "parsetreemodel.h"
|
2010-06-03 07:38:59 +00:00
|
|
|
#include "skinhighlighter.h"
|
2010-06-04 07:57:19 +00:00
|
|
|
#include "skindocument.h"
|
2010-06-07 03:25:40 +00:00
|
|
|
#include "preferencesdialog.h"
|
2010-06-08 21:30:28 +00:00
|
|
|
#include "projectmodel.h"
|
2010-06-01 21:25:02 +00:00
|
|
|
|
|
|
|
namespace Ui {
|
|
|
|
class EditorWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
class EditorWindow : public QMainWindow {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
EditorWindow(QWidget *parent = 0);
|
|
|
|
~EditorWindow();
|
|
|
|
|
2010-06-03 20:05:55 +00:00
|
|
|
protected:
|
|
|
|
virtual void closeEvent(QCloseEvent* event);
|
|
|
|
|
2010-06-01 21:25:02 +00:00
|
|
|
private slots:
|
2010-06-04 06:59:25 +00:00
|
|
|
void showPanel();
|
2010-06-04 07:57:19 +00:00
|
|
|
void newTab();
|
2010-06-05 07:38:29 +00:00
|
|
|
void shiftTab(int index);
|
2010-06-05 19:47:49 +00:00
|
|
|
bool closeTab(int index);
|
|
|
|
void closeCurrent();
|
|
|
|
void saveCurrent();
|
|
|
|
void saveCurrentAs();
|
2010-06-06 03:35:40 +00:00
|
|
|
void openFile();
|
2010-06-09 07:51:22 +00:00
|
|
|
void openProject();
|
2010-06-05 08:22:30 +00:00
|
|
|
void tabTitleChanged(QString title);
|
2010-06-06 02:11:04 +00:00
|
|
|
void updateCurrent(); /* Generates code in the current tab */
|
2010-06-01 21:25:02 +00:00
|
|
|
|
|
|
|
private:
|
2010-06-03 18:42:36 +00:00
|
|
|
/* Setup functions */
|
|
|
|
void loadSettings();
|
2010-06-05 07:14:03 +00:00
|
|
|
void saveSettings();
|
2010-06-03 18:42:36 +00:00
|
|
|
void setupUI();
|
|
|
|
void setupMenus();
|
2010-06-07 03:25:40 +00:00
|
|
|
void addTab(SkinDocument* doc);
|
2010-06-03 18:42:36 +00:00
|
|
|
|
2010-06-01 21:25:02 +00:00
|
|
|
Ui::EditorWindow *ui;
|
2010-06-07 03:25:40 +00:00
|
|
|
PreferencesDialog* prefs;
|
2010-06-07 20:29:46 +00:00
|
|
|
QLabel* parseStatus;
|
2010-06-08 21:30:28 +00:00
|
|
|
ProjectModel* project;
|
2010-06-01 21:25:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // EDITORWINDOW_H
|