#include "devicetyperegistersmodel.h" #include #include #include #include void DeviceTypeRegistersModel::setController(DmxController *controller) { if (m_controller == controller) return; beginResetModel(); m_controller = controller; endResetModel(); emit controllerChanged(m_controller); } void DeviceTypeRegistersModel::setDeviceTypeId(int deviceTypeId) { if (m_deviceTypeId == deviceTypeId) return; beginResetModel(); m_deviceTypeId = deviceTypeId; endResetModel(); emit deviceTypeIdChanged(m_deviceTypeId); } int DeviceTypeRegistersModel::rowCount(const QModelIndex &parent) const { if (parent.isValid()) { qWarning() << "hilfe" << __LINE__; return -1; } if (!m_controller) return 0; if (m_deviceTypeId == -1) return 0; auto deviceTypePtr = m_controller->lightProject().deviceTypes.findById(m_deviceTypeId); if (!deviceTypePtr) { qWarning() << "hilfe" << __LINE__; return 0; } const auto &deviceType = *deviceTypePtr; return deviceType.registers.size(); } QVariant DeviceTypeRegistersModel::data(const QModelIndex &index, int role) const { if (!index.isValid()) { qWarning() << "hilfe" << __LINE__; return {}; } if (!m_controller) { qWarning() << "hilfe" << __LINE__; return {}; } if (m_deviceTypeId == -1) { qWarning() << "hilfe" << __LINE__; return {}; } auto deviceTypePtr = m_controller->lightProject().deviceTypes.findById(m_deviceTypeId); if (!deviceTypePtr) { qWarning() << "hilfe" << __LINE__; return {}; } const auto &deviceType = *deviceTypePtr; if (index.row() < 0 || index.row() >= deviceType.registers.size()) { qWarning() << "hilfe" << __LINE__; return {}; } if (index.column() != 0) { qWarning() << "hilfe" << __LINE__; return {}; } const auto &deviceTypeRegister = deviceType.registers.at(index.row()); switch (role) { case Qt::DisplayRole: { return QMetaEnum::fromType().valueToKey(std::to_underlying(deviceTypeRegister.type)); } case Qt::EditRole: return QVariant::fromValue(deviceTypeRegister.type); } return {}; } QMap DeviceTypeRegistersModel::itemData(const QModelIndex &index) const { if (!index.isValid()) { qWarning() << "hilfe" << __LINE__; return {}; } if (!m_controller) { qWarning() << "hilfe" << __LINE__; return {}; } if (m_deviceTypeId == -1) { qWarning() << "hilfe" << __LINE__; return {}; } auto deviceTypePtr = m_controller->lightProject().deviceTypes.findById(m_deviceTypeId); if (!deviceTypePtr) { qWarning() << "hilfe" << __LINE__; return {}; } auto &deviceType = *deviceTypePtr; if (index.row() < 0 || index.row() >= deviceType.registers.size()) { qWarning() << "hilfe" << __LINE__; return {}; } if (index.column() != 0) { qWarning() << "hilfe" << __LINE__; return {}; } const auto &deviceTypeRegister = deviceType.registers.at(index.row()); return { { Qt::DisplayRole, QMetaEnum::fromType().valueToKey(std::to_underlying(deviceTypeRegister.type)) }, { Qt::EditRole, QVariant::fromValue(deviceTypeRegister.type) } }; } QHash DeviceTypeRegistersModel::roleNames() const { return { { Qt::DisplayRole, "registerTypeName" }, { Qt::EditRole, "registerType" }, }; } bool DeviceTypeRegistersModel::setData(const QModelIndex &index, const QVariant &value, int role) { if (!index.isValid()) { qWarning() << "hilfe" << __LINE__; return true; } if (!m_controller) { qWarning() << "hilfe" << __LINE__; return true; } if (m_deviceTypeId == -1) { qWarning() << "hilfe" << __LINE__; return true; } auto deviceTypePtr = m_controller->lightProject().deviceTypes.findById(m_deviceTypeId); if (!deviceTypePtr) { qWarning() << "hilfe" << __LINE__; return true; } auto &deviceType = *deviceTypePtr; if (index.row() < 0 || index.row() >= deviceType.registers.size()) { qWarning() << "hilfe" << __LINE__; return true; } if (index.column() != 0) { qWarning() << "hilfe" << __LINE__; return true; } auto &deviceTypeRegister = deviceType.registers.at(index.row()); deviceTypeRegister.type = value.value(); emit dataChanged(index, index, { Qt::DisplayRole, Qt::EditRole }); return true; } bool DeviceTypeRegistersModel::removeRows(int row, int count, const QModelIndex &parent) { } namespace { void registerDenShit() { qmlRegisterType("com.büro", 1, 0, "DeviceTypeRegistersModel"); } } Q_COREAPP_STARTUP_FUNCTION(registerDenShit)