Skip to content

Configurable Proxy Categories

The ParaView Filters menu presents filters through a list of categories. Those submenus can now be configured and can be nested

Go to the Tools / Configure Categories dialog to create your own tree of categories. Also, filters that are not part of a category are automatically added to a Miscellaneous section.

Added data

Content of ConfigureCategories.xml
<ServerManagerConfiguration>
  <ProxyGroup name="filters">
    <!-- for testing purpose, we need to be the first in the alphabetical list -->
    <SourceProxy name="0000MyGlyph" 
      label="0000 My Glyph"
      class="vtkPVGlyphFilter"
      base_proxygroup="filters"
      base_proxyname="Glyph" >
  </SourceProxy>
 </ProxyGroup>

 <!-- add this filter into its own hierarchical category -->
 <ParaViewFilters>
   <Category name="Plugins">
     <Category name="Testing">
       <Proxy group="filters" name="0000MyGlyph" />
     </Category>
   </Category>
 </ParaViewFilters>
</ServerManagerConfiguration>

Screenshots

The `Configure categories` window image
Custom subcategories in `Filters` menu custom_cat
Edited by Nicolas Vuaille

Merge request reports