mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-16 08:19:56 +00:00
32 lines
954 B
C++
32 lines
954 B
C++
|
|
#include "tablesubview.hpp"
|
|
|
|
#include "../../model/doc/document.hpp"
|
|
|
|
#include "table.hpp"
|
|
|
|
CSVWorld::TableSubView::TableSubView (const CSMWorld::UniversalId& id, CSMDoc::Document& document,
|
|
bool createAndDelete)
|
|
: SubView (id)
|
|
{
|
|
setWidget (mTable = new Table (id, document.getData(), document.getUndoStack(), createAndDelete));
|
|
|
|
connect (mTable, SIGNAL (doubleClicked (const QModelIndex&)), this, SLOT (rowActivated (const QModelIndex&)));
|
|
}
|
|
|
|
void CSVWorld::TableSubView::setEditLock (bool locked)
|
|
{
|
|
mTable->setEditLock (locked);
|
|
}
|
|
|
|
void CSVWorld::TableSubView::rowActivated (const QModelIndex& index)
|
|
{
|
|
focusId (mTable->getUniversalId (index.row()));
|
|
}
|
|
|
|
void CSVWorld::TableSubView::updateEditorSetting(const QString &settingName, const QString &settingValue)
|
|
{
|
|
|
|
if ( (settingName == "Record Status Display") || settingName == "Referenceable ID Type Display" )
|
|
mTable->updateEditorSetting(settingName, settingValue);
|
|
}
|