• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

paulmthompson / WhiskerToolbox / 17564956715

08 Sep 2025 09:35PM UTC coverage: 71.483% (+0.02%) from 71.465%
17564956715

push

github

paulmthompson
table export in collapsable section. Also change order of sections

15 of 27 new or added lines in 2 files covered. (55.56%)

192 existing lines in 1 file now uncovered.

36468 of 51016 relevant lines covered (71.48%)

1279.92 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

42.86
/src/WhiskerToolbox/TableDesignerWidget/TableExportWidget.cpp
1
#include "TableExportWidget.hpp"
2
#include "ui_TableExportWidget.h"
3

4
#include <QPushButton>
5

6
TableExportWidget::TableExportWidget(QWidget * parent)
9✔
7
    : QWidget(parent), ui(new Ui::TableExportWidget) {
9✔
8
    ui->setupUi(this);
9✔
9
    connect(ui->export_csv_btn, &QPushButton::clicked, this, &TableExportWidget::exportClicked);
9✔
10
}
9✔
11

12
TableExportWidget::~TableExportWidget() { delete ui; }
18✔
13

NEW
14
QString TableExportWidget::getDelimiterText() const {
×
NEW
15
    return ui->export_delimiter_combo ? ui->export_delimiter_combo->currentText() : QString("Comma");
×
16
}
17

NEW
18
QString TableExportWidget::getLineEndingText() const {
×
NEW
19
    return ui->export_line_ending_combo ? ui->export_line_ending_combo->currentText() : QString("LF (\\n)");
×
20
}
21

NEW
22
int TableExportWidget::getPrecision() const {
×
NEW
23
    return ui->export_precision_spinbox ? ui->export_precision_spinbox->value() : 3;
×
24
}
25

NEW
26
bool TableExportWidget::isHeaderIncluded() const {
×
NEW
27
    return ui->export_header_checkbox && ui->export_header_checkbox->isChecked();
×
28
}
29

30

STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc