mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-09 21:42:13 +00:00
94 lines
2.2 KiB
C++
94 lines
2.2 KiB
C++
|
|
#include "referencecreator.hpp"
|
|
|
|
#include <QLabel>
|
|
#include <QLineEdit>
|
|
|
|
#include "../../model/world/data.hpp"
|
|
#include "../../model/world/commands.hpp"
|
|
#include "../../model/world/columns.hpp"
|
|
#include "../../model/world/idtable.hpp"
|
|
|
|
std::string CSVWorld::ReferenceCreator::getId() const
|
|
{
|
|
return mId;
|
|
}
|
|
|
|
void CSVWorld::ReferenceCreator::configureCreateCommand (CSMWorld::CreateCommand& command) const
|
|
{
|
|
int index =
|
|
dynamic_cast<CSMWorld::IdTable&> (*getData().getTableModel (getCollectionId())).
|
|
findColumnIndex (CSMWorld::Columns::ColumnId_Cell);
|
|
|
|
command.addValue (index, mCell->text());
|
|
}
|
|
|
|
CSVWorld::ReferenceCreator::ReferenceCreator (CSMWorld::Data& data, QUndoStack& undoStack,
|
|
const CSMWorld::UniversalId& id)
|
|
: GenericCreator (data, undoStack, id)
|
|
{
|
|
QLabel *label = new QLabel ("Cell", this);
|
|
insertBeforeButtons (label, false);
|
|
|
|
mCell = new QLineEdit (this);
|
|
insertBeforeButtons (mCell, true);
|
|
|
|
setManualEditing (false);
|
|
|
|
connect (mCell, SIGNAL (textChanged (const QString&)), this, SLOT (cellChanged()));
|
|
}
|
|
|
|
void CSVWorld::ReferenceCreator::reset()
|
|
{
|
|
GenericCreator::reset();
|
|
mCell->setText ("");
|
|
mId = getData().getReferences().getNewId();
|
|
}
|
|
|
|
std::string CSVWorld::ReferenceCreator::getErrors() const
|
|
{
|
|
std::string errors = GenericCreator::getErrors();
|
|
|
|
if (mCloneMode)
|
|
{
|
|
return errors;
|
|
}
|
|
|
|
std::string cell = mCell->text().toUtf8().constData();
|
|
|
|
if (cell.empty())
|
|
{
|
|
if (!errors.empty())
|
|
errors += "<br>";
|
|
|
|
errors += "Missing Cell ID";
|
|
}
|
|
else if (getData().getCells().searchId (cell)==-1)
|
|
{
|
|
if (!errors.empty())
|
|
errors += "<br>";
|
|
|
|
errors += "Invalid Cell ID";
|
|
}
|
|
|
|
return errors;
|
|
}
|
|
|
|
void CSVWorld::ReferenceCreator::cellChanged()
|
|
{
|
|
update();
|
|
}
|
|
|
|
void CSVWorld::ReferenceCreator::toggleWidgets(bool active)
|
|
{
|
|
CSVWorld::GenericCreator::toggleWidgets(active);
|
|
mCell->setEnabled(active);
|
|
}
|
|
|
|
void CSVWorld::ReferenceCreator::cloneMode(const std::string& originId,
|
|
const CSMWorld::UniversalId::Type type)
|
|
{
|
|
CSVWorld::GenericCreator::cloneMode(originId, type);
|
|
cellChanged(); //otherwise ok button will remain disabled
|
|
}
|