Create a separate class for Edit 'ID' action to use in tables' context menus
parent
d73fd471c3
commit
6b34845168
@ -0,0 +1,42 @@
|
|||||||
|
#include "tableeditidaction.hpp"
|
||||||
|
|
||||||
|
#include <QTableView>
|
||||||
|
|
||||||
|
#include "../../model/world/tablemimedata.hpp"
|
||||||
|
|
||||||
|
CSVWorld::TableEditIdAction::CellData CSVWorld::TableEditIdAction::getCellData(int row, int column) const
|
||||||
|
{
|
||||||
|
QModelIndex index = mTable.model()->index(row, column);
|
||||||
|
if (index.isValid())
|
||||||
|
{
|
||||||
|
QVariant display = mTable.model()->data(index, CSMWorld::ColumnBase::Role_Display);
|
||||||
|
QString value = mTable.model()->data(index).toString();
|
||||||
|
return std::make_pair(static_cast<CSMWorld::ColumnBase::Display>(display.toInt()), value);
|
||||||
|
}
|
||||||
|
return std::make_pair(CSMWorld::ColumnBase::Display_None, "");
|
||||||
|
}
|
||||||
|
|
||||||
|
CSVWorld::TableEditIdAction::TableEditIdAction(const QTableView &table, QWidget *parent)
|
||||||
|
: QAction(parent),
|
||||||
|
mTable(table),
|
||||||
|
mCurrentId(CSMWorld::UniversalId::Type_None)
|
||||||
|
{}
|
||||||
|
|
||||||
|
void CSVWorld::TableEditIdAction::setCell(int row, int column)
|
||||||
|
{
|
||||||
|
CellData data = getCellData(row, column);
|
||||||
|
mCurrentId = CSMWorld::UniversalId(CSMWorld::TableMimeData::convertEnums(data.first),
|
||||||
|
data.second.toUtf8().constData());
|
||||||
|
setText("Edit '" + data.second + "'");
|
||||||
|
}
|
||||||
|
|
||||||
|
CSMWorld::UniversalId CSVWorld::TableEditIdAction::getCurrentId() const
|
||||||
|
{
|
||||||
|
return mCurrentId;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool CSVWorld::TableEditIdAction::isValidIdCell(int row, int column) const
|
||||||
|
{
|
||||||
|
CellData data = getCellData(row, column);
|
||||||
|
return CSMWorld::ColumnBase::isId(data.first) && !data.second.isEmpty();
|
||||||
|
}
|
@ -0,0 +1,31 @@
|
|||||||
|
#ifndef CSVWORLD_TABLEEDITIDACTION_HPP
|
||||||
|
#define CSVWORLD_TABLEEDITIDACTION_HPP
|
||||||
|
|
||||||
|
#include <QAction>
|
||||||
|
|
||||||
|
#include "../../model/world/columnbase.hpp"
|
||||||
|
#include "../../model/world/universalid.hpp"
|
||||||
|
|
||||||
|
class QTableView;
|
||||||
|
|
||||||
|
namespace CSVWorld
|
||||||
|
{
|
||||||
|
class TableEditIdAction : public QAction
|
||||||
|
{
|
||||||
|
const QTableView &mTable;
|
||||||
|
CSMWorld::UniversalId mCurrentId;
|
||||||
|
|
||||||
|
typedef std::pair<CSMWorld::ColumnBase::Display, QString> CellData;
|
||||||
|
CellData getCellData(int row, int column) const;
|
||||||
|
|
||||||
|
public:
|
||||||
|
TableEditIdAction(const QTableView &table, QWidget *parent = 0);
|
||||||
|
|
||||||
|
void setCell(int row, int column);
|
||||||
|
|
||||||
|
CSMWorld::UniversalId getCurrentId() const;
|
||||||
|
bool isValidIdCell(int row, int column) const;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif
|
Loading…
Reference in New Issue