| 283 | } |
| 284 | |
| 285 | void KeyWidget::displayColorMap(const ColorMap& newDisplayMap, const QSet<QString>& indicators, quint64 renderInterval){ |
| 286 | if(!isVisible()) |
| 287 | return; |
| 288 | _displayColorMap = newDisplayMap; |
| 289 | _indicators = indicators; |
| 290 | #ifdef FPS_COUNTER |
| 291 | if(renderInterval != std::numeric_limits<quint64>::max()) |
| 292 | kbLoopElapsed = renderInterval; |
| 293 | #endif |
| 294 | update(); |
| 295 | } |
| 296 | |
| 297 | void KeyWidget::bindMap(const BindMap& newBindMap){ |
| 298 | _bindMap = newBindMap; |
no outgoing calls
no test coverage detected