/dports/audio/carla/Carla-2.4.1/source/backend/utils/ |
H A D | CachedPlugins.cpp | 110 info.hints |= CB::PLUGIN_HAS_CUSTOM_UI; in get_cached_plugin_internal() 217 info.hints |= CB::PLUGIN_HAS_CUSTOM_UI; in get_cached_plugin_lv2() 220 info.hints |= CB::PLUGIN_HAS_CUSTOM_UI; in get_cached_plugin_lv2() 569 info.hints |= CB::PLUGIN_HAS_CUSTOM_UI; in get_cached_plugin_au()
|
/dports/audio/carla/Carla-2.4.1/source/backend/engine/ |
H A D | CarlaEngineThread.cpp | 82 …const bool updateUI((hints & PLUGIN_HAS_CUSTOM_UI) != 0 && (hints & PLUGIN_NEEDS_UI_MAIN_THREAD) =… in run()
|
H A D | CarlaEngineNative.cpp | 1331 if (plugin->getHints() & PLUGIN_HAS_CUSTOM_UI) in uiShow() 1360 … if ((hints & PLUGIN_HAS_CUSTOM_UI) != 0 && (hints & PLUGIN_NEEDS_UI_MAIN_THREAD) != 0) in uiIdle() 1407 if (plugin->getHints() & PLUGIN_HAS_CUSTOM_UI) in uiSetParameterValue()
|
H A D | CarlaEngine.cpp | 408 if (hints & PLUGIN_HAS_CUSTOM_UI) in idle() 415 … else if ((hints & PLUGIN_HAS_CUSTOM_UI) != 0 && (hints & PLUGIN_NEEDS_UI_MAIN_THREAD) != 0) in idle()
|
/dports/audio/carla/Carla-2.4.1/source/backend/plugin/ |
H A D | CarlaPluginJack.cpp | 164 if (kPlugin->getHints() & PLUGIN_HAS_CUSTOM_UI) in getEnvVarsToExport() 375 if (kPlugin->getHints() & PLUGIN_HAS_CUSTOM_UI) in run() 543 if (pData->hints & PLUGIN_HAS_CUSTOM_UI) in ~CarlaPluginJack() 587 if (hasGui || (pData->hints & PLUGIN_HAS_CUSTOM_UI) == 0x0) in nsmAnnounced() 1721 pData->hints |= PLUGIN_HAS_CUSTOM_UI; in init() 1838 if (pData->hints & PLUGIN_HAS_CUSTOM_UI) in handleProcessStopped()
|
H A D | CarlaPlugin.cpp | 1102 if (pData->hints & PLUGIN_HAS_CUSTOM_UI) in exportAsLV2() 1658 if (sendGui && (pData->hints & PLUGIN_HAS_CUSTOM_UI) != 0) in setParameterValue() 1947 if (sendGui && (pData->hints & PLUGIN_HAS_CUSTOM_UI) != 0) in setProgram() 1979 if (sendGui && (pData->hints & PLUGIN_HAS_CUSTOM_UI) != 0) in setMidiProgram() 2088 const bool hasUI(pData->hints & PLUGIN_HAS_CUSTOM_UI); in idle() 2372 if (sendGui && (pData->hints & PLUGIN_HAS_CUSTOM_UI) != 0) in sendMidiSingleNote()
|
H A D | CarlaPluginJuce.cpp | 131 if (pData->hints & PLUGIN_HAS_CUSTOM_UI) in ~CarlaPluginJuce() 852 pData->hints |= PLUGIN_HAS_CUSTOM_UI; in reload()
|
H A D | CarlaPluginVST2.cpp | 117 if (pData->hints & PLUGIN_HAS_CUSTOM_UI) in ~CarlaPluginVST2() 1011 pData->hints |= PLUGIN_HAS_CUSTOM_UI; in reload()
|
H A D | CarlaPluginBridge.cpp | 444 if (pData->hints & PLUGIN_HAS_CUSTOM_UI) in ~CarlaPluginBridge() 2977 if (pData->hints & PLUGIN_HAS_CUSTOM_UI) in handleProcessStopped()
|
H A D | CarlaPluginNative.cpp | 305 if (pData->hints & PLUGIN_HAS_CUSTOM_UI) in ~CarlaPluginNative() 1424 pData->hints |= PLUGIN_HAS_CUSTOM_UI; in reload()
|
H A D | CarlaPluginLADSPADSSI.cpp | 1277 pData->hints |= PLUGIN_HAS_CUSTOM_UI; in reload()
|
H A D | CarlaPluginLV2.cpp | 3197 pData->hints |= PLUGIN_HAS_CUSTOM_UI; in reload()
|
/dports/audio/carla/Carla-2.4.1/source/backend/ |
H A D | CarlaBackend.h | 148 static const uint PLUGIN_HAS_CUSTOM_UI = 0x008; variable
|
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/src/plugins/carla/ |
H A D | carla_discovery.c | 495 info->hints & PLUGIN_HAS_CUSTOM_UI; in z_carla_discovery_create_au_descriptor_from_info()
|
/dports/audio/carla/Carla-2.4.1/source/discovery/ |
H A D | carla-discovery.cpp | 574 hints |= PLUGIN_HAS_CUSTOM_UI; in do_dssi_check() 1212 hints |= PLUGIN_HAS_CUSTOM_UI; in do_vst_check() 1523 hints |= PLUGIN_HAS_CUSTOM_UI; in do_juce_check()
|
/dports/audio/carla/Carla-2.4.1/source/tests.old/ |
H A D | CachedPlugins.cpp | 68 info.hints |= CB::PLUGIN_HAS_CUSTOM_UI; in main()
|
/dports/audio/carla/Carla-2.4.1/source/bridges-plugin/ |
H A D | CarlaBridgePlugin.cpp | 695 else if (pluginInfo->hints & CarlaBackend::PLUGIN_HAS_CUSTOM_UI) in main()
|
/dports/audio/carla/Carla-2.4.1/source/frontend/ |
H A D | carla_skin.py | 388 self.b_gui.setEnabled(bool(self.fPluginInfo['hints'] & PLUGIN_HAS_CUSTOM_UI)) 903 self.b_gui.setEnabled(bool(hints & PLUGIN_HAS_CUSTOM_UI)) 1549 if self.fPluginInfo['hints'] & PLUGIN_HAS_CUSTOM_UI: 1596 if hints & PLUGIN_HAS_CUSTOM_UI:
|
H A D | carla_host_control.py | 304 hints &= ~PLUGIN_HAS_CUSTOM_UI
|
H A D | carla_database.py | 1628 … self.ui.l_gui.setText(self.fTrYes if plugin['hints'] & PLUGIN_HAS_CUSTOM_UI else self.fTrNo) 1940 hasGui = bool(phints & PLUGIN_HAS_CUSTOM_UI)
|
H A D | carla_host.py | 1763 hasCustomUI = bool(hints & PLUGIN_HAS_CUSTOM_UI) 1807 hasCustomUI = bool(hints & PLUGIN_HAS_CUSTOM_UI)
|
H A D | carla_backend.py | 213 PLUGIN_HAS_CUSTOM_UI = 0x008 variable
|
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/src/plugins/ |
H A D | carla_native_plugin.c | 441 info->hints & PLUGIN_HAS_CUSTOM_UI; in carla_native_plugin_has_custom_ui() 809 info->hints & PLUGIN_HAS_CUSTOM_UI; in carla_native_plugin_get_descriptor_from_cached()
|
/dports/audio/carla/Carla-2.4.1/source/rest/ |
H A D | carla-host.cpp | 478 const uint hints = info->hints & ~(PLUGIN_HAS_CUSTOM_UI|PLUGIN_HAS_INLINE_DISPLAY); in handle_carla_get_plugin_info()
|
/dports/audio/cadence/Cadence-0.9.1/src/ |
H A D | claudia_launcher.py | 838 if (plugin["hints"] & PLUGIN_HAS_CUSTOM_UI) == 0:
|