2012-11-24 12:17:21 +00:00
|
|
|
#include "subview.hpp"
|
|
|
|
|
2012-12-11 12:22:43 +00:00
|
|
|
CSVDoc::SubView::SubView (const CSMWorld::UniversalId& id) : mUniversalId (id)
|
2012-11-24 12:17:21 +00:00
|
|
|
{
|
|
|
|
/// \todo add a button to the title bar that clones this sub view
|
|
|
|
|
|
|
|
setWindowTitle (mUniversalId.toString().c_str());
|
|
|
|
}
|
|
|
|
|
2012-12-11 12:22:43 +00:00
|
|
|
CSMWorld::UniversalId CSVDoc::SubView::getUniversalId() const
|
2012-11-24 12:17:21 +00:00
|
|
|
{
|
|
|
|
return mUniversalId;
|
|
|
|
}
|
2013-06-15 11:40:18 +00:00
|
|
|
|
|
|
|
void CSVDoc::SubView::updateEditorSetting (const QString &settingName, const QString &settingValue)
|
|
|
|
{
|
|
|
|
}
|
2013-07-25 12:29:56 +00:00
|
|
|
|
|
|
|
void CSVDoc::SubView::setStatusBar (bool show) {}
|