| 435 | } |
| 436 | |
| 437 | void MacroConditionWindowEdit::SetWidgetVisibility() |
| 438 | { |
| 439 | if (!_entryData) { |
| 440 | return; |
| 441 | } |
| 442 | SetLayoutVisible(_currentFocusLayout, |
| 443 | _entryData->_focus || _entryData->_windowFocusChanged); |
| 444 | _windowSelection->setVisible(_entryData->_checkTitle); |
| 445 | _windowRegex->setVisible(_entryData->_checkTitle); |
| 446 | _textRegex->setVisible(_entryData->GetCheckText()); |
| 447 | _text->setVisible(_entryData->GetCheckText()); |
| 448 | adjustSize(); |
| 449 | updateGeometry(); |
| 450 | } |
| 451 | |
| 452 | void MacroConditionWindowEdit::UpdateEntryData() |
| 453 | { |
nothing calls this directly
no test coverage detected