You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
2.0 KiB
C++
68 lines
2.0 KiB
C++
#include "previewsubview.hpp"
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include "../render/previewwidget.hpp"
|
|
|
|
#include "../widget/scenetoolbar.hpp"
|
|
#include "../widget/scenetoolmode.hpp"
|
|
|
|
CSVWorld::PreviewSubView::PreviewSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document)
|
|
: SubView (id), mTitle (id.toString().c_str())
|
|
{
|
|
QHBoxLayout *layout = new QHBoxLayout;
|
|
|
|
if (document.getData().getReferenceables().searchId (id.getId())==-1)
|
|
{
|
|
std::string referenceableId =
|
|
document.getData().getReferences().getRecord (id.getId()).get().mRefID;
|
|
|
|
referenceableIdChanged (referenceableId);
|
|
|
|
mScene =
|
|
new CSVRender::PreviewWidget (document.getData(), id.getId(), false, this);
|
|
}
|
|
else
|
|
mScene = new CSVRender::PreviewWidget (document.getData(), id.getId(), true, this);
|
|
|
|
CSVWidget::SceneToolbar *toolbar = new CSVWidget::SceneToolbar (48+6, this);
|
|
|
|
CSVWidget::SceneToolMode *lightingTool = mScene->makeLightingSelector (toolbar);
|
|
toolbar->addTool (lightingTool);
|
|
|
|
layout->addWidget (toolbar, 0);
|
|
|
|
layout->addWidget (mScene, 1);
|
|
|
|
QWidget *widget = new QWidget;
|
|
|
|
widget->setLayout (layout);
|
|
|
|
setWidget (widget);
|
|
|
|
connect (mScene, SIGNAL (closeRequest()), this, SLOT (closeRequest()));
|
|
connect (mScene, SIGNAL (referenceableIdChanged (const std::string&)),
|
|
this, SLOT (referenceableIdChanged (const std::string&)));
|
|
connect (mScene, SIGNAL (focusToolbarRequest()), toolbar, SLOT (setFocus()));
|
|
connect (toolbar, SIGNAL (focusSceneRequest()), mScene, SLOT (setFocus()));
|
|
}
|
|
|
|
void CSVWorld::PreviewSubView::setEditLock (bool locked) {}
|
|
|
|
std::string CSVWorld::PreviewSubView::getTitle() const
|
|
{
|
|
return mTitle;
|
|
}
|
|
|
|
void CSVWorld::PreviewSubView::referenceableIdChanged (const std::string& id)
|
|
{
|
|
if (id.empty())
|
|
mTitle = "Preview: Reference to <nothing>";
|
|
else
|
|
mTitle = "Preview: Reference to " + id;
|
|
|
|
setWindowTitle (QString::fromUtf8 (mTitle.c_str()));
|
|
|
|
emit updateTitle();
|
|
}
|