| 295 | }; |
| 296 | |
| 297 | QString labelForActionId(const QString& actionId) |
| 298 | { |
| 299 | for (const auto& def : kFlexActions) { |
| 300 | if (actionId == QLatin1String(def.id)) |
| 301 | return QString::fromLatin1(def.label); |
| 302 | } |
| 303 | return actionId.isEmpty() ? QStringLiteral("None") : actionId; |
| 304 | } |
| 305 | |
| 306 | double normalizeWheelAngle(double radians) |
| 307 | { |
no test coverage detected