mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-27 03:35:27 +00:00
forbid manual editing of the cell field in reference records
This commit is contained in:
parent
ac7c2a1473
commit
3b534326ff
@ -870,7 +870,13 @@ namespace CSMWorld
|
|||||||
template<typename ESXRecordT>
|
template<typename ESXRecordT>
|
||||||
struct CellColumn : public Column<ESXRecordT>
|
struct CellColumn : public Column<ESXRecordT>
|
||||||
{
|
{
|
||||||
CellColumn() : Column<ESXRecordT> (Columns::ColumnId_Cell, ColumnBase::Display_Cell) {}
|
bool mBlocked;
|
||||||
|
|
||||||
|
/// \param blocked Do not allow user-modification
|
||||||
|
CellColumn (bool blocked = false)
|
||||||
|
: Column<ESXRecordT> (Columns::ColumnId_Cell, ColumnBase::Display_Cell),
|
||||||
|
mBlocked (blocked)
|
||||||
|
{}
|
||||||
|
|
||||||
virtual QVariant get (const Record<ESXRecordT>& record) const
|
virtual QVariant get (const Record<ESXRecordT>& record) const
|
||||||
{
|
{
|
||||||
@ -893,7 +899,7 @@ namespace CSMWorld
|
|||||||
|
|
||||||
virtual bool isUserEditable() const
|
virtual bool isUserEditable() const
|
||||||
{
|
{
|
||||||
return true;
|
return !mBlocked;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -257,7 +257,7 @@ CSMWorld::Data::Data (ToUTF8::FromType encoding, const ResourcesManager& resourc
|
|||||||
mRefs.addColumn (new StringIdColumn<CellRef> (true));
|
mRefs.addColumn (new StringIdColumn<CellRef> (true));
|
||||||
mRefs.addColumn (new RecordStateColumn<CellRef>);
|
mRefs.addColumn (new RecordStateColumn<CellRef>);
|
||||||
mRefs.addColumn (new FixedRecordTypeColumn<CellRef> (UniversalId::Type_Reference));
|
mRefs.addColumn (new FixedRecordTypeColumn<CellRef> (UniversalId::Type_Reference));
|
||||||
mRefs.addColumn (new CellColumn<CellRef>);
|
mRefs.addColumn (new CellColumn<CellRef> (true));
|
||||||
mRefs.addColumn (new IdColumn<CellRef>);
|
mRefs.addColumn (new IdColumn<CellRef>);
|
||||||
mRefs.addColumn (new PosColumn<CellRef> (&CellRef::mPos, 0, false));
|
mRefs.addColumn (new PosColumn<CellRef> (&CellRef::mPos, 0, false));
|
||||||
mRefs.addColumn (new PosColumn<CellRef> (&CellRef::mPos, 1, false));
|
mRefs.addColumn (new PosColumn<CellRef> (&CellRef::mPos, 1, false));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user