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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include "editorwindow.h"
|
|
|
|
#include "ui_editorwindow.h"
|
|
|
|
|
2010-06-03 20:05:55 +00:00
|
|
|
#include <QDesktopWidget>
|
|
|
|
#include <QFileSystemModel>
|
2010-06-01 21:25:02 +00:00
|
|
|
|
|
|
|
EditorWindow::EditorWindow(QWidget *parent) :
|
|
|
|
QMainWindow(parent),
|
|
|
|
ui(new Ui::EditorWindow)
|
|
|
|
{
|
|
|
|
ui->setupUi(this);
|
2010-06-03 18:42:36 +00:00
|
|
|
loadSettings();
|
|
|
|
setupUI();
|
|
|
|
setupMenus();
|
|
|
|
}
|
2010-06-01 21:25:02 +00:00
|
|
|
|
2010-06-03 18:42:36 +00:00
|
|
|
void EditorWindow::loadSettings()
|
|
|
|
{
|
|
|
|
/* When there are settings to load, they'll be loaded here */
|
2010-06-03 20:05:55 +00:00
|
|
|
/* For now, we'll just set the window to take up most of the screen */
|
|
|
|
QDesktopWidget* desktop = QApplication::desktop();
|
|
|
|
|
|
|
|
QRect availableSpace = desktop->availableGeometry(desktop->primaryScreen());
|
|
|
|
QRect buffer(availableSpace.left() + availableSpace.width() / 10,
|
|
|
|
availableSpace.top() + availableSpace.height() / 10,
|
|
|
|
availableSpace.width() * 8 / 10,
|
|
|
|
availableSpace.height() * 8 / 10);
|
|
|
|
this->setGeometry(buffer);
|
|
|
|
|
2010-06-03 18:42:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EditorWindow::setupUI()
|
|
|
|
{
|
2010-06-03 20:05:55 +00:00
|
|
|
/* Displaying some files to test the file tree view */
|
|
|
|
QFileSystemModel* model = new QFileSystemModel;
|
|
|
|
model->setRootPath(QDir::currentPath());
|
|
|
|
ui->fileTree->setModel(model);
|
|
|
|
|
2010-06-02 20:36:30 +00:00
|
|
|
/* Establishing the parse tree */
|
2010-06-03 18:42:36 +00:00
|
|
|
tree = new ParseTreeModel(ui->codeEdit->document()->toPlainText().
|
|
|
|
toAscii());
|
2010-06-02 20:36:30 +00:00
|
|
|
ui->parseTree->setModel(tree);
|
2010-06-01 21:25:02 +00:00
|
|
|
|
2010-06-03 07:38:59 +00:00
|
|
|
/* Setting up the syntax highlighter */
|
|
|
|
highlighter = new SkinHighlighter(QColor(0,255,0), QColor(255,0,0),
|
|
|
|
QColor(0,0,255), QColor(150,150,150),
|
2010-06-03 18:42:36 +00:00
|
|
|
ui->codeEdit->document());
|
2010-06-03 07:38:59 +00:00
|
|
|
|
2010-06-01 21:25:02 +00:00
|
|
|
/* Connecting the buttons */
|
2010-06-03 18:42:36 +00:00
|
|
|
QObject::connect(ui->codeEdit, SIGNAL(cursorPositionChanged()),
|
|
|
|
this, SLOT(codeChanged()));
|
2010-06-01 21:25:02 +00:00
|
|
|
QObject::connect(ui->fromTree, SIGNAL(pressed()),
|
|
|
|
this, SLOT(updateCode()));
|
2010-06-03 18:42:36 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void EditorWindow::setupMenus()
|
|
|
|
{
|
|
|
|
/* When there are menus to setup, they'll be set up here */
|
2010-06-01 21:25:02 +00:00
|
|
|
}
|
|
|
|
|
2010-06-03 18:42:36 +00:00
|
|
|
void EditorWindow::codeChanged()
|
2010-06-01 21:25:02 +00:00
|
|
|
{
|
2010-06-03 18:42:36 +00:00
|
|
|
tree->changeTree(ui->codeEdit->document()->toPlainText().toAscii());
|
2010-06-01 21:25:02 +00:00
|
|
|
ui->parseTree->expandAll();
|
|
|
|
}
|
|
|
|
|
2010-06-03 20:05:55 +00:00
|
|
|
void EditorWindow::closeEvent(QCloseEvent* event)
|
|
|
|
{
|
|
|
|
event->accept();
|
|
|
|
}
|
|
|
|
|
2010-06-01 21:25:02 +00:00
|
|
|
void EditorWindow::updateCode()
|
|
|
|
{
|
2010-06-03 20:05:55 +00:00
|
|
|
if(tree)
|
|
|
|
ui->codeEdit->document()->setPlainText(tree->genCode());
|
2010-06-01 21:25:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
EditorWindow::~EditorWindow()
|
|
|
|
{
|
|
|
|
delete ui;
|
|
|
|
if(tree)
|
|
|
|
delete tree;
|
|
|
|
}
|