| 121 | #undef F |
| 122 | |
| 123 | void ModelInspectorWidget::cellDataChanged() |
| 124 | { |
| 125 | const auto cellData = m_interface->currentCellData(); |
| 126 | ui->indexLineEdit->setText(cellData.row != -1 |
| 127 | ? tr("Row: %1 Column: %2").arg(cellData.row).arg(cellData.column) |
| 128 | : tr("Invalid")); |
| 129 | ui->internalIdLineEdit->setText(cellData.internalId); |
| 130 | ui->internalPtrLineEdit->setText(cellData.internalPtr); |
| 131 | ui->flagsPlainTextEdit->selectAll(); |
| 132 | ui->flagsPlainTextEdit->insertPlainText(MetaEnum::flagsToString(cellData.flags, item_flag_table)); |
| 133 | } |
| 134 | |
| 135 | void ModelInspectorWidget::objectRegistered(const QString &objectName) |
| 136 | { |
nothing calls this directly
no test coverage detected