| 12 | #define ICON_TITLE_SIZE 0xA00 |
| 13 | |
| 14 | void MainWindow::populateHeader(NDSHeader* ndsHeader) |
| 15 | { |
| 16 | auto* headerDataModel = new NDSHeaderModel(ndsHeader); |
| 17 | ui->unpackerHeaderDataTable->setModel(headerDataModel); |
| 18 | ui->unpackerHeaderDataTable->horizontalHeader()->setSectionResizeMode(0, QHeaderView::ResizeMode::ResizeToContents); |
| 19 | ui->unpackerHeaderDataTable->horizontalHeader()->setSectionResizeMode(1, QHeaderView::ResizeMode::Stretch); |
| 20 | } |
| 21 | |
| 22 | void MainWindow::enableExtractionButtons() |
| 23 | { |
nothing calls this directly
no outgoing calls
no test coverage detected