| 384 | } |
| 385 | |
| 386 | void |
| 387 | InspToolWidget::refreshCaptureInfo(void) |
| 388 | { |
| 389 | this->ui->durationLabel->setText( |
| 390 | SuWidgetsHelpers::formatQuantityFromDelta( |
| 391 | this->data.size() / this->timeWindowFs, |
| 392 | 1 / this->timeWindowFs, |
| 393 | "s")); |
| 394 | this->ui->memoryLabel->setText( |
| 395 | SuWidgetsHelpers::formatBinaryQuantity( |
| 396 | static_cast<qint64>(this->data.size() * sizeof(SUCOMPLEX)))); |
| 397 | } |
| 398 | |
| 399 | void |
| 400 | InspToolWidget::transferHistory(void) |