Add a status entry showing loaded python extensions & debugger status

This commit is contained in:
baldurk
2026-08-13 17:46:40 +01:00
parent 3c6dfd23b4
commit 02ead51303
8 changed files with 92 additions and 0 deletions
+10
View File
@@ -453,11 +453,21 @@ rdcarray<ExtensionMetadata> CaptureContext::GetInstalledExtensions()
return ret;
}
rdcarray<rdcstr> CaptureContext::GetLoadedExtensions()
{
return m_ExtensionObjects.keys();
}
bool CaptureContext::IsExtensionLoaded(rdcstr name)
{
return m_ExtensionObjects.contains(name);
}
bool CaptureContext::IsPythonDebuggerConnected()
{
return PythonContext::IsDebuggingEnabled() && PythonContext::IsDebuggerConnected();
}
rdcstr CaptureContext::LoadExtension(rdcstr name)
{
QString ret;