| 149 | } |
| 150 | |
| 151 | void BitstreamAnalysisWidget::updateParsingStatusText(int progressValue) |
| 152 | { |
| 153 | if (progressValue <= -1) |
| 154 | this->ui.parsingStatusText->setText( |
| 155 | "No bitstream file selected - Select a bitstream file to start bitstream analysis."); |
| 156 | else if (progressValue < 100) |
| 157 | this->ui.parsingStatusText->setText(QString("Parsing file (%1%)").arg(progressValue)); |
| 158 | else |
| 159 | { |
| 160 | const auto parsingLimitSet = !this->ui.parseEntireFileCheckBox->isChecked(); |
| 161 | this->ui.parsingStatusText->setText( |
| 162 | parsingLimitSet ? "Partial parsing done. Enable full parsing if needed." : "Parsing done."); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | void BitstreamAnalysisWidget::stopAndDeleteParserBlocking() |
| 167 | { |
no test coverage detected