|
Computer Assited Medical Intervention Tool Kit
version 5.0
|
|
Go to the documentation of this file.
27 #ifndef PROPERTYEXPLOREREXTENSION_H
28 #define PROPERTYEXPLOREREXTENSION_H
44 Q_PLUGIN_METADATA(IID
"fr.imag.camitk.sdk.viewer.propertyexplorerextension")
54 virtual QString
getName()
override {
55 return "Property Explorer Extension";
60 return "The property explorer shows the properties of the currently selected component";
64 virtual void init()
override;
68 #endif // PROPERTYEXPLOREREXTENSION_H
virtual QString getDescription()=0
returns the viewer extension small description (to be overriden in the derived class)
#define registerDefaultViewer(className)
register a new viewer and create a default instance using the name of the class (note that the regula...
Definition: ViewerExtension.h:66
virtual void init() override
initialize all the viewers
Definition: PropertyExplorerExtension.cpp:32
virtual void init()=0
this method should just call registerNewViewer(MyViewer) for any MyViewer class you need to register ...
virtual QString getName()=0
returns the viewer extension name (to be overriden in the derived class)
The property explorer.
Definition: PropertyExplorer.h:81
#define PROPERTYEXPLORER_API
Definition: PropertyExplorerAPI.h:54
This class describes what is a generic Action extension. To add a ActionExtension to CamiTK core,...
Definition: ViewerExtension.h:108
Manage the PropertyExplorer viewer, instanciates and register the default "Property Explorer" instanc...
Definition: PropertyExplorerExtension.h:41