Hi!
I want to the add Transform filter to the pipeline browser using my C++ plugin.
My code statement pqPipelineSource* transformFilterLeft = builder->createFilter("filters", "Transform", source_left, 0);
is giving a runtime error: No proxy that matches: group=filters and proxy=Transform were found.
You want the “TransformFilter” in group “filters”, not “Transform”. You have to use the proxy name attribute, not label attribute, in the proxy definition file. In this case, you want the name defined here.
You can find the group name in the name attribute of the parent ProxyGroup XML element. In this case, it is “filters”.
This the type of transform applied by the Transform Filter. It defines a different proxy that you might create and set as the proxy property of the “TransformFilter” also named… “Transform”.