Class VisionDesignerImpl
java.lang.Object
com.inductiveautomation.ignition.designer.model.AbstractDesignerModuleHook
com.inductiveautomation.factorypmi.designer.model.VisionDesignerImpl
- All Implemented Interfaces:
- LocationRenderingUpdater,- DesignerModuleHook,- VisionClientInterface,- VisionDesignerInterface
public class VisionDesignerImpl
extends AbstractDesignerModuleHook
implements VisionDesignerInterface
This is the core of the Vision module, implementing both 
DesignerModuleHook and
 VisionDesignerInterface. Most of the heavy lifting is actually done in the WindowWorkspace class.- 
Nested Class SummaryNested Classes
- 
Field SummaryFieldsFields inherited from interface com.inductiveautomation.vision.api.client.VisionClientInterfaceVISION_MODULE_ID
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidvoidaddExtensibleBindingType(BindingType binding) Adds a new binding type to be used in the extensible binding systemvoidaddNewTemplate(ResourcePath parentFolder, int width, int height) voidaddNewTemplate(ResourcePath parentFolder, int width, int height, Consumer<ResourcePath> onAfter) voidaddNewTemplate(ResourcePath parentFolder, VisionTemplate template) voidaddNewTemplate(ResourcePath parentFolder, VisionTemplate template, Consumer<ResourcePath> onFinished) voidaddNewWindow(ResourcePath parentFolder, int width, int height, Consumer<ResourcePath> onAfter) Adds a new window to theFPMIAppbeing designedvoidaddNewWindow(ResourcePath parentFolder, FPMIWindow newWindow) voidaddNewWindow(ResourcePath parentFolder, FPMIWindow newWindow, Consumer<ResourcePath> onFinished) Adds a new window to theFHMIAppbeing designedvoidaddWindowDropHandler(WindowDropHandler handler) Add a new drop handler for custom drop types onto windows and templatesvoidaddWindowListener(VisionWindowListener listener) Adds a listener to be notified when windows are opened and closed.cloneComponent(Component comp) booleanconfigureBinding(Component component, String property, BindingConfiguration configuration) Configures a new property binding for the component.property using the given configuration.voidconfigureDeserializer(XMLDeserializer deserializer) voidProvides the module a chance to add serialization delegates to the serializer custom for classes that might be encountered when serializing objects provided by this modulecreateNewDockedWindow(int width, int height, int side) getBindingType(String bindingTypeKey) List<com.jidesoft.docking.DockableFrame>A list of DockableFrames that this module provides, that should be available to all workspaces.getGuiUtil(String desktopHandle) Gets the WindowUtilities for a secondary desktop, by handlegetMenu()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.Gets the NavUtilities (for the primary desktopgetNavUtil(String desktopHandle) Gets the NavUtilities for a secondary desktop, by handlegetResourceCategoryKey(ProjectResourceId resource) getResourceDisplayName(ProjectResourceId resource) getResourceIcon(ProjectResourceId resource) String[]getRoot()Returns the id of the currently selected window folder in the project browser tree.protected voidvoidnewDockedWindow(ResourcePath parentFolder) voidnewDockedWindow(ResourcePath parentFolder, Consumer<ResourcePath> onFinished) voidnewMainWindow(ResourcePath folder) voidnewMainWindow(ResourcePath folder, Consumer<ResourcePath> onFinished) voidnewPopupWindow(ResourcePath parentFolder) voidnewPopupWindow(ResourcePath parentFolder, Consumer<ResourcePath> onFinished) voidnotifyActivationStateChanged(LicenseState licenseState) Notifies this designer module that its license state has changed.voidvoidNotifies the module that the save operation has finished.voidNotifies the module that the user has requested that the project is saved.voidopenBindingDialog(Component component, String propertyName) Opens the binding dialog for a given component.voidvoidremoveWindowDropHandler(WindowDropHandler handler) Removes a drop handler for custom drop types onto windows and templatesvoidremoveWindowListener(VisionWindowListener listiner) Removes window listenerbyte[]Serializes an object to be stored in a ProjectResource.byte[]serializeProjectResource(Object obj, SerializationEncoding encoding) Serializes an object to be stored in a ProjectResource.voidsetContext(DesignerContext context) voidsetWorkspace(WindowWorkspace workspace) voidshutdown()Called when the module is shut down.voidstartup(DesignerContext designerContext, LicenseState activationState) The main entrypoint for the module hook.windowResourceBuilder(FPMIWindow newWindow, boolean openOnStartIfFirst) Methods inherited from class com.inductiveautomation.ignition.designer.model.AbstractDesignerModuleHookconfigureFunctionFactory, createPermissionKeys, initializeScriptManagerMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.inductiveautomation.ignition.designer.model.DesignerModuleHookgetResourceCategoryKey, getResourceDisplayName, getResourceIcon, updateLocationRenderer
- 
Field Details- 
MODULE_ID- See Also:
 
 
- 
- 
Constructor Details- 
VisionDesignerImplpublic VisionDesignerImpl()
 
- 
- 
Method Details- 
startupDescription copied from interface:DesignerModuleHookThe 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:
- startupin interface- DesignerModuleHook
- Overrides:
- startupin class- AbstractDesignerModuleHook
- Throws:
- Exception- if the module was not able to be initialized for the given project.
 
- 
shutdownpublic void shutdown()Description copied from interface:DesignerModuleHookCalled 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:
- shutdownin interface- DesignerModuleHook
- Overrides:
- shutdownin class- AbstractDesignerModuleHook
 
- 
addDesignableProjectListenerpublic void addDesignableProjectListener()
- 
removeDesignableProjectListenerpublic void removeDesignableProjectListener()
- 
addWindowDropHandlerDescription copied from interface:VisionDesignerInterfaceAdd a new drop handler for custom drop types onto windows and templates- Specified by:
- addWindowDropHandlerin interface- VisionDesignerInterface
 
- 
removeWindowDropHandlerDescription copied from interface:VisionDesignerInterfaceRemoves a drop handler for custom drop types onto windows and templates- Specified by:
- removeWindowDropHandlerin interface- VisionDesignerInterface
 
- 
getWindowDropHandlers
- 
getResourceCategoryKey- Specified by:
- getResourceCategoryKeyin interface- DesignerModuleHook
- Overrides:
- getResourceCategoryKeyin class- AbstractDesignerModuleHook
 
- 
getResourceDisplayName- Specified by:
- getResourceDisplayNamein interface- DesignerModuleHook
- Overrides:
- getResourceDisplayNamein class- AbstractDesignerModuleHook
 
- 
getResourceIcon- Specified by:
- getResourceIconin interface- DesignerModuleHook
- Overrides:
- getResourceIconin class- AbstractDesignerModuleHook
 
- 
getModuleMenuDescription copied from interface:DesignerModuleHookReturns a menu merge for any global menu additions. May be null.- Specified by:
- getModuleMenuin interface- DesignerModuleHook
- Overrides:
- getModuleMenuin class- AbstractDesignerModuleHook
- See Also:
 
- 
getMenu- Returns:
- the MenuBarMergespecific to the vision workspace
 
- 
getModuleToolbarsDescription copied from interface:DesignerModuleHookReturns the toolbars for the module. May be empty but not null.- Specified by:
- getModuleToolbarsin interface- DesignerModuleHook
- Overrides:
- getModuleToolbarsin class- AbstractDesignerModuleHook
 
- 
getFramesDescription copied from interface:DesignerModuleHookA list of DockableFrames that this module provides, that should be available to all workspaces.- Specified by:
- getFramesin interface- DesignerModuleHook
- Overrides:
- getFramesin class- AbstractDesignerModuleHook
 
- 
notifyActivationStateChangedDescription copied from interface:DesignerModuleHookNotifies this designer module that its license state has changed. This could mean that the trial mode has expired (or been reset), the module has been activated, etc.- Specified by:
- notifyActivationStateChangedin interface- DesignerModuleHook
- Overrides:
- notifyActivationStateChangedin class- AbstractDesignerModuleHook
 
- 
addWindowListenerDescription copied from interface:VisionClientInterfaceAdds a listener to be notified when windows are opened and closed. Only works during runtime, not designer- Specified by:
- addWindowListenerin interface- VisionClientInterface
 
- 
removeWindowListenerDescription copied from interface:VisionClientInterfaceRemoves window listener- Specified by:
- removeWindowListenerin interface- VisionClientInterface
 
- 
configureSerializerDescription copied from interface:DesignerModuleHookProvides 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:
- configureSerializerin interface- DesignerModuleHook
- Overrides:
- configureSerializerin class- AbstractDesignerModuleHook
 
- 
configureDeserializer- Specified by:
- configureDeserializerin interface- DesignerModuleHook
- Overrides:
- configureDeserializerin class- AbstractDesignerModuleHook
 
- 
notifyProjectSaveStartDescription copied from interface:DesignerModuleHookNotifies 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:
- notifyProjectSaveStartin interface- DesignerModuleHook
- Overrides:
- notifyProjectSaveStartin class- AbstractDesignerModuleHook
 
- 
notifyProjectSaveDonepublic void notifyProjectSaveDone()Description copied from interface:DesignerModuleHookNotifies the module that the save operation has finished. This is the cue to check-out any previously checked-out resources that it was forced to check-in before the save.- Specified by:
- notifyProjectSaveDonein interface- DesignerModuleHook
- Overrides:
- notifyProjectSaveDonein class- AbstractDesignerModuleHook
 
- 
initSearchProvidersprotected void initSearchProviders()
- 
getModuleIconDescription copied from interface:DesignerModuleHookReturn an appropriate icon to display for this module. Ideally, anInteractiveIconof some kind.- Specified by:
- getModuleIconin interface- DesignerModuleHook
- See Also:
 
- 
notifyDesignableContainerClosed
- 
setContext
- 
getProject
- 
getRoot
- 
getHandler
- 
getClientEventScriptEditor
- 
addNewTemplate
- 
addNewTemplatepublic void addNewTemplate(ResourcePath parentFolder, int width, int height, Consumer<ResourcePath> onAfter) 
- 
addNewTemplate
- 
addNewTemplatepublic void addNewTemplate(ResourcePath parentFolder, VisionTemplate template, Consumer<ResourcePath> onFinished) 
- 
newMainWindow
- 
newMainWindow
- 
createNewMainWindow
- 
createNewDockedWindow
- 
newDockedWindow
- 
newDockedWindow
- 
createNewPopupWindow
- 
newPopupWindow
- 
newPopupWindow
- 
addNewWindow
- 
windowResourceBuilderpublic Consumer<ProjectResourceBuilder> windowResourceBuilder(FPMIWindow newWindow, boolean openOnStartIfFirst) 
- 
addNewWindowpublic void addNewWindow(ResourcePath parentFolder, FPMIWindow newWindow, Consumer<ResourcePath> onFinished) Adds a new window to theFHMIAppbeing designed
- 
getSelectedWindowFolderReturns the id of the currently selected window folder in the project browser tree.
- 
getSelectedTemplateFolder
- 
getRootFolderNode
- 
getResourceEncoding
- 
serializeProjectResourceSerializes an object to be stored in a ProjectResource. Serialized code is stored usingSerializationEncoding.BINARY. It is usually preferable to useserializeProjectResource(Object, SerializationEncoding)if the resource supports more than the binary format.- Throws:
- SerializationException
 
- 
serializeProjectResourcepublic byte[] serializeProjectResource(Object obj, SerializationEncoding encoding) throws SerializationException Serializes an object to be stored in a ProjectResource. Serialized code is stored based on the currentSerializationEncodingfor the vision project.- Throws:
- SerializationException
 
- 
addExtensibleBindingTypeDescription copied from interface:VisionClientInterfaceAdds a new binding type to be used in the extensible binding system- Specified by:
- addExtensibleBindingTypein interface- VisionClientInterface
 
- 
getBindingType- Specified by:
- getBindingTypein interface- VisionClientInterface
 
- 
getGuiUtil- Specified by:
- getGuiUtilin interface- VisionClientInterface
 
- 
getGuiUtilDescription copied from interface:VisionClientInterfaceGets the WindowUtilities for a secondary desktop, by handle- Specified by:
- getGuiUtilin interface- VisionClientInterface
 
- 
getExtensibleBindings
- 
getPalette- Specified by:
- getPalettein interface- VisionDesignerInterface
 
- 
addNewWindowpublic void addNewWindow(ResourcePath parentFolder, int width, int height, Consumer<ResourcePath> onAfter) Description copied from interface:VisionDesignerInterfaceAdds a new window to theFPMIAppbeing designed- Specified by:
- addNewWindowin interface- VisionDesignerInterface
 
- 
cloneComponent- Specified by:
- cloneComponentin interface- VisionDesignerInterface
 
- 
getCurrentPrefs- Specified by:
- getCurrentPrefsin interface- VisionDesignerInterface
 
- 
getWorkspace- Specified by:
- getWorkspacein interface- VisionDesignerInterface
 
- 
setWorkspace
- 
getDesignerContext- Specified by:
- getDesignerContextin interface- VisionDesignerInterface
 
- 
openBindingDialogDescription copied from interface:VisionDesignerInterfaceOpens the binding dialog for a given component. The component should be on a window that is currently open for design- Specified by:
- openBindingDialogin interface- VisionDesignerInterface
- Throws:
- NotBindableException
 
- 
configureBindingpublic boolean configureBinding(Component component, String property, BindingConfiguration configuration) throws Exception Description copied from interface:VisionDesignerInterfaceConfigures a new property binding for the component.property using the given configuration. The binding type is defined by the configuration'sBindingConfiguration.getBindingType()- Specified by:
- configureBindingin interface- VisionDesignerInterface
- Throws:
- Exception
 
- 
getRoles- Throws:
- GatewayException
 
- 
getWindowResourceDescriptor
- 
getTemplateResourceDescriptor
 
-