diff options
author | Robert Bieber <robby@bieberphoto.com> | 2010-06-26 05:18:21 +0000 |
---|---|---|
committer | Robert Bieber <robby@bieberphoto.com> | 2010-06-26 05:18:21 +0000 |
commit | c32728c91c2579688d3e7ffc4afbea1acf2385e0 (patch) | |
tree | ce1732eadbc0f4160fbe434563f2bf8b3e5b5d1c /utils/themeeditor/gui/editorwindow.cpp | |
parent | d93164d6c94791d7be6ab71c4a6a2a84f982ba09 (diff) |
Theme Editor: Began integrating device configuration panel with renderer
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27135 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'utils/themeeditor/gui/editorwindow.cpp')
-rw-r--r-- | utils/themeeditor/gui/editorwindow.cpp | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/utils/themeeditor/gui/editorwindow.cpp b/utils/themeeditor/gui/editorwindow.cpp index 94e744e957..b778a1fba4 100644 --- a/utils/themeeditor/gui/editorwindow.cpp +++ b/utils/themeeditor/gui/editorwindow.cpp @@ -66,7 +66,8 @@ void EditorWindow::loadTabFromSkinFile(QString fileName) } /* Adding a new document*/ - SkinDocument* doc = new SkinDocument(parseStatus, fileName, project); + SkinDocument* doc = new SkinDocument(parseStatus, fileName, project, + deviceConfig); addTab(doc); ui->editorTabs->setCurrentWidget(doc); @@ -219,7 +220,7 @@ void EditorWindow::addTab(TabContent *doc) void EditorWindow::newTab() { - SkinDocument* doc = new SkinDocument(parseStatus, project); + SkinDocument* doc = new SkinDocument(parseStatus, project, deviceConfig); addTab(doc); ui->editorTabs->setCurrentWidget(doc); } @@ -345,6 +346,13 @@ void EditorWindow::openProject() project = new ProjectModel(fileName, this); ui->projectTree->setModel(project); + if(project->getSetting("#screenwidth") != "") + deviceConfig->setData("screenwidth", + project->getSetting("#screenwidth")); + if(project->getSetting("#screenheight") != "") + deviceConfig->setData("screenheight", + project->getSetting("#screenheight")); + QObject::connect(ui->projectTree, SIGNAL(activated(QModelIndex)), project, SLOT(activated(QModelIndex))); |