1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/apps/opencs/view/world/pathgridcreator.cpp

106 lines
3.2 KiB
C++

#include "pathgridcreator.hpp"
#include <QLabel>
#include <memory>
#include <apps/opencs/model/world/columnbase.hpp>
#include <apps/opencs/model/world/idcollection.hpp>
#include <apps/opencs/model/world/subcellcollection.hpp>
#include <apps/opencs/view/world/genericcreator.hpp>
#include "../../model/doc/document.hpp"
#include "../../model/world/columns.hpp"
#include "../../model/world/data.hpp"
#include "../../model/world/idcompletionmanager.hpp"
#include "../../model/world/idtable.hpp"
#include "../widget/droplineedit.hpp"
class QUndoStack;
std::string CSVWorld::PathgridCreator::getId() const
{
return mCell->text().toUtf8().constData();
}
CSMWorld::IdTable& CSVWorld::PathgridCreator::getPathgridsTable() const
{
return dynamic_cast<CSMWorld::IdTable&>(*getData().getTableModel(getCollectionId()));
}
CSVWorld::PathgridCreator::PathgridCreator(CSMWorld::Data& data, QUndoStack& undoStack, const CSMWorld::UniversalId& id,
CSMWorld::IdCompletionManager& completionManager)
: GenericCreator(data, undoStack, id)
{
setManualEditing(false);
QLabel* label = new QLabel("Cell", this);
insertBeforeButtons(label, false);
// Add cell ID input with auto-completion.
// Only existing cell IDs are accepted so no ID validation is performed.
CSMWorld::ColumnBase::Display displayType = CSMWorld::ColumnBase::Display_Cell;
mCell = new CSVWidget::DropLineEdit(displayType, this);
mCell->setCompleter(completionManager.getCompleter(displayType).get());
insertBeforeButtons(mCell, true);
connect(mCell, &CSVWidget::DropLineEdit::textChanged, this, &PathgridCreator::cellChanged);
connect(mCell, &CSVWidget::DropLineEdit::returnPressed, this, &PathgridCreator::inputReturnPressed);
}
void CSVWorld::PathgridCreator::cloneMode(const std::string& originId, const CSMWorld::UniversalId::Type type)
{
CSVWorld::GenericCreator::cloneMode(originId, type);
// Look up cloned record in pathgrids table and set cell ID text.
CSMWorld::IdTable& table = getPathgridsTable();
int column = table.findColumnIndex(CSMWorld::Columns::ColumnId_Id);
mCell->setText(table.data(table.getModelIndex(originId, column)).toString());
}
std::string CSVWorld::PathgridCreator::getErrors() const
{
const ESM::RefId cellId = ESM::RefId::stringRefId(getId());
// Check user input for any errors.
std::string errors;
if (cellId.empty())
{
errors = "No cell ID selected";
}
else if (getData().getPathgrids().searchId(cellId) > -1)
{
errors = "Pathgrid for selected cell ID already exists";
}
else if (getData().getCells().searchId(cellId) == -1)
{
errors = "Cell with selected cell ID does not exist";
}
return errors;
}
void CSVWorld::PathgridCreator::focus()
{
mCell->setFocus();
}
void CSVWorld::PathgridCreator::reset()
{
CSVWorld::GenericCreator::reset();
mCell->setText("");
}
void CSVWorld::PathgridCreator::cellChanged()
{
update();
}
CSVWorld::Creator* CSVWorld::PathgridCreatorFactory::makeCreator(
CSMDoc::Document& document, const CSMWorld::UniversalId& id) const
{
return new PathgridCreator(document.getData(), document.getUndoStack(), id, document.getIdCompletionManager());
}