| 519 | } |
| 520 | |
| 521 | QString QVButtonPanel::extractButtonLabel(const QString &vbuttonKey) const |
| 522 | { |
| 523 | static QRegularExpression re(VBUTTON_REGEX_PATTERN); |
| 524 | QRegularExpressionMatch m = re.match(vbuttonKey); |
| 525 | return m.hasMatch() ? m.captured(1) : vbuttonKey; |
| 526 | } |
| 527 | |
| 528 | QPoint QVButtonPanel::calculateReferenceOrigin(int referencePoint) const |
| 529 | { |
nothing calls this directly
no outgoing calls
no test coverage detected