| 531 | } |
| 532 | |
| 533 | void VstPlugin::showUI() |
| 534 | { |
| 535 | if ( m_embedMethod == "none" ) |
| 536 | { |
| 537 | RemotePlugin::showUI(); |
| 538 | } |
| 539 | else if ( m_embedMethod != "headless" ) |
| 540 | { |
| 541 | if (! editor()) { |
| 542 | qWarning() << "VstPlugin::showUI called before VstPlugin::createUI"; |
| 543 | } |
| 544 | toggleEditorVisibility( true ); |
| 545 | } |
| 546 | } |
| 547 | |
| 548 | void VstPlugin::hideUI() |
| 549 | { |
no outgoing calls
no test coverage detected