| 70 | } // namespace |
| 71 | |
| 72 | StatisticsStyleControl::StatisticsStyleControl(QWidget *parent) |
| 73 | : QDialog(parent, Qt::Dialog | Qt::WindowStaysOnTopHint) |
| 74 | { |
| 75 | this->ui.setupUi(this); |
| 76 | |
| 77 | this->ui.frameDataColor->setRenderRangeValues(true); |
| 78 | |
| 79 | QSignalBlocker blockerPredefined(this->ui.comboBoxPredefined); |
| 80 | for (auto typeName : stats::color::PredefinedTypeMapper.getNames()) |
| 81 | this->ui.comboBoxPredefined->addItem(QString::fromStdString(typeName)); |
| 82 | this->refreshComboBoxCustomMapFromStorage(); |
| 83 | } |
| 84 | |
| 85 | void StatisticsStyleControl::setStatsItem(stats::StatisticsType *item) |
| 86 | { |
nothing calls this directly
no test coverage detected