Class ReportingDesignerHook
java.lang.Object
com.inductiveautomation.ignition.designer.model.AbstractDesignerModuleHook
com.inductiveautomation.reporting.designer.ReportingDesignerHook
- All Implemented Interfaces:
Locatable
,LocationRenderingUpdater
,DesignerModuleHook
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
configureSerializer
(XMLSerializer serializer) Provides the module a chance to add serialization delegates to the serializer custom for classes that might be encountered when serializing objects provided by this moduleList<com.jidesoft.docking.DockableFrame>
A list of DockableFrames that this module provides, that should be available to all workspaces.Return an appropriate icon to display for this module.Returns a menu merge for any global menu additions.List<com.jidesoft.action.CommandBar>
Returns the toolbars for the module.getResourceCategoryKey
(ResourcePath resource) Used by modules that add project resources to an Ignition project.getResourceDisplayName
(ResourcePath resourcePath) Allows a module to give an appropriate display name for the resource.getResourceIcon
(ResourcePath resourcePath) Allows a module to give an appropriate icon for a resource.void
initializeScriptManager
(ScriptManager manager) Initialize a newly-instantiated script manager.void
void
Notifies the module that the user has requested that the project is saved.protected void
void
shutdown()
Called when the module is shut down.void
startup
(DesignerContext context, LicenseState activationState) The main entrypoint for the module hook.void
updateLocationRenderer
(LocationRenderingInfo builder, Location location) Provides an opportunity for a module to enrich tag reference locations with extra context.Methods inherited from class com.inductiveautomation.ignition.designer.model.AbstractDesignerModuleHook
configureDeserializer, configureFunctionFactory, createPermissionKeys, getResourceCategoryKey, getResourceDisplayName, getResourceIcon, notifyActivationStateChanged, notifyProjectSaveDone
-
Constructor Details
-
ReportingDesignerHook
public ReportingDesignerHook()
-
-
Method Details
-
startup
Description copied from interface:DesignerModuleHook
The main entrypoint for the module hook. This will only be called once for a given project. If another project is ever opened,DesignerModuleHook.shutdown()
will be called and a new hook will be instantiated- Specified by:
startup
in interfaceDesignerModuleHook
- Overrides:
startup
in classAbstractDesignerModuleHook
- Throws:
Exception
- if the module was not able to be initialized for the given project.
-
shutdown
public void shutdown()Description copied from interface:DesignerModuleHook
Called when the module is shut down. This will happen if the user opens a different project within the same designer session - the existing modules will be shut down, and new module hooks will be instantiated and started up.- Specified by:
shutdown
in interfaceDesignerModuleHook
- Overrides:
shutdown
in classAbstractDesignerModuleHook
-
initializeScriptManager
Description copied from interface:DesignerModuleHook
Initialize a newly-instantiated script manager. This will be called exactly once for any given ScriptManager instance. Usually this will involve callingScriptManager.addScriptModule(String, Object)
, which reflectively loads the public (instance and static) java functions from the given object into the scripting environment, at the provided path.- Specified by:
initializeScriptManager
in interfaceDesignerModuleHook
- Overrides:
initializeScriptManager
in classAbstractDesignerModuleHook
-
setupRM14
protected void setupRM14() -
getDataSourceRegistry
-
getShapeRegistry
-
getResourceCategoryKey
Description copied from interface:DesignerModuleHook
Used by modules that add project resources to an Ignition project. This will be called when the platform needs to render your resource type in first-party UI. Only project resources that match this module's ID will passed to this function.
- Specified by:
getResourceCategoryKey
in interfaceDesignerModuleHook
- Parameters:
resource
- A resource path within this module's resources.- Returns:
- A bundle resource key for the category of this resource.
-
configureSerializer
Description copied from interface:DesignerModuleHook
Provides the module a chance to add serialization delegates to the serializer custom for classes that might be encountered when serializing objects provided by this module- Specified by:
configureSerializer
in interfaceDesignerModuleHook
- Overrides:
configureSerializer
in classAbstractDesignerModuleHook
-
notifyProjectSaveStart
Description copied from interface:DesignerModuleHook
Notifies the module that the user has requested that the project is saved. The module must check-in any checked-out resources that it is holding.- Specified by:
notifyProjectSaveStart
in interfaceDesignerModuleHook
- Overrides:
notifyProjectSaveStart
in classAbstractDesignerModuleHook
-
getFrames
Description copied from interface:DesignerModuleHook
A list of DockableFrames that this module provides, that should be available to all workspaces.- Specified by:
getFrames
in interfaceDesignerModuleHook
- Overrides:
getFrames
in classAbstractDesignerModuleHook
-
getModuleMenu
Description copied from interface:DesignerModuleHook
Returns a menu merge for any global menu additions. May be null.- Specified by:
getModuleMenu
in interfaceDesignerModuleHook
- Overrides:
getModuleMenu
in classAbstractDesignerModuleHook
- See Also:
-
getModuleToolbars
Description copied from interface:DesignerModuleHook
Returns the toolbars for the module. May be empty but not null.- Specified by:
getModuleToolbars
in interfaceDesignerModuleHook
- Overrides:
getModuleToolbars
in classAbstractDesignerModuleHook
-
getModuleIcon
Description copied from interface:DesignerModuleHook
Return an appropriate icon to display for this module. Ideally, anInteractiveIcon
of some kind.- Specified by:
getModuleIcon
in interfaceDesignerModuleHook
- See Also:
-
getResourceIcon
Description copied from interface:DesignerModuleHook
Allows a module to give an appropriate icon for a resource.
- Specified by:
getResourceIcon
in interfaceDesignerModuleHook
- See Also:
-
getResourceDisplayName
Description copied from interface:DesignerModuleHook
Allows a module to give an appropriate display name for the resource. For most resources this won't be necessary (the resource's name itself should be used), but for some resources whose name is null, this may be appropriate.
- Specified by:
getResourceDisplayName
in interfaceDesignerModuleHook
- Returns:
- the name for a resource, or null to use the resource's folder path/name.
-
updateLocationRenderer
public void updateLocationRenderer(@Nonnull LocationRenderingInfo builder, @Nonnull Location location) Description copied from interface:DesignerModuleHook
Provides an opportunity for a module to enrich tag reference locations with extra context. Thelocation
provided is guaranteed to reside within your module. Call methods onLocationRenderingInfo
to enrich the rendering.- Specified by:
updateLocationRenderer
in interfaceDesignerModuleHook
- Specified by:
updateLocationRenderer
in interfaceLocationRenderingUpdater
- See Also:
-
locate
-