Class DesignerContextProxy
java.lang.Object
com.inductiveautomation.ignition.designer.DesignerContextProxy
- All Implemented Interfaces:
ClientContext
,CommonContext
,DesignerContext
This is used for parts of the designer that hold onto a DesignerContext, even though every time you load a project a
new designer context is made. So, this context can be permanent, and we just switch out the inner context delegate.
-
Field Summary
Fields inherited from interface com.inductiveautomation.ignition.designer.model.DesignerContext
SCRIPT_MANAGER_PROPERTY
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
addBeanInfoSearchPath
(String packageName) Adds the given fully-qualified path name to the Introspector's BeanInfo search path.void
void
addPropertyChangeListener
(String property, PropertyChangeListener pcl) void
addPropertyEditor
(Class<? extends AbstractPropertyEditorPanel> pageClass) Adds a property editor page that will be incorporated into the Designer's project property editing system.boolean
Checks whether or not the current logged in user can edit the protection bits of project resources.Returns an instance of the XMLDeserializer that can be used to deserialize project resources.Creates a new XML serializer that has been configured by all installed modules for custom serialization delegatesdeserialize
(byte[] data, org.apache.log4j.Logger log) Convenience function to deserialize a gzipped byte array into a single object.void
editResourceDocs
(ProjectResource resource) Opens up the resource notes editor for the given project resourcesvoid
exportResources
(Collection<ResourcePath> resourceIds) Shows the project export window (after doing a commit) with the given resource IDs checked.Returns the current project's user sourceReturns the current project's default datasource nameReturns the current project's default Tag providerReturns a PersistentProperties file that will be stored on a per-user basis for "persistent" but not project-encapsulated preferencescom.jidesoft.docking.DockingManager
Returns the JIDE DockingManager for the DesignerReturns a list of currently available Edge editions (either licensed or in trial).com.google.common.eventbus.EventBus
This is a generic event bus that can be used by any part of Ignition within a single scope (jvm)Returns the shared task execution manager for this clientReturns the core function factory used by expressions.getFrame()
Returns the owning frame of the designer.getLicenseState
(String moduleId) Returns the license state for the given moduleReturns the hook class for another module, used for modules that deal with each other's models.Retrieve the list of all modules currently loaded in this contextReturns the appropriate named query rpc for the context.Returns the OPCBrowserPanel that can be used to browse and import OPC itemsReturns the progress manager, which allows the execution of long running or async tasks.Returns the project that this client is running.Returns the root node of the project browser tree, so that modules may add their own nodes.The name of the project this client will be / is runningReturns the DB query browser toolResource edit managerReturns the RootPaneContainer that is currently the owner of the clientReturns the ScriptManager that can be used to execute Python scripts.Get the registered SearchProviders.The StatusBar at the bottom of the Designer can be used to display temporary messages and for adding always-present little components that appear in the bottom-rightcom.inductiveautomation.ignition.designer.tags.frame.TagBrowserFrame
Returns the TagBrowserPanel that can be used to select TagsReturns the TagEditorPanel that can be used to edit/add TagsReturns the manager that provides access to Ignition's tag system.int
Returns the rate at which Tags should be polled for updatescom.jidesoft.action.DockableBarManager
Returns the JIDE dockable toolbar managercom.google.common.eventbus.EventBus
This event bus schedules event notification on the swing EDT.void
registerClientPermissions
(Map<String, String> bundleMap) Register id-bundlekey pairs to limit client permissionsvoid
registerResourceWorkspace
(ResourceWorkspace workspace) Registers a newResourceWorkspace
, which is a main editing area for the designer.void
registerSearchProvider
(SearchProvider provider) Registers a search provider that will be exposed through the find/replace system.void
void
removePropertyChangeListener
(String property, PropertyChangeListener pcl) void
setContext
(DesignerContext context)
-
Constructor Details
-
DesignerContextProxy
public DesignerContextProxy()
-
-
Method Details
-
getContext
-
setContext
-
getProjectName
Description copied from interface:ClientContext
The name of the project this client will be / is running- Specified by:
getProjectName
in interfaceClientContext
-
getLoggingManager
- Specified by:
getLoggingManager
in interfaceCommonContext
-
getEventBus
public com.google.common.eventbus.EventBus getEventBus()Description copied from interface:CommonContext
This is a generic event bus that can be used by any part of Ignition within a single scope (jvm)- Specified by:
getEventBus
in interfaceCommonContext
-
getUIEventBus
public com.google.common.eventbus.EventBus getUIEventBus()Description copied from interface:ClientContext
This event bus schedules event notification on the swing EDT. This is opposed to the event bus found onCommonContext.getEventBus()
, which schedules event notification on a background thread.- Specified by:
getUIEventBus
in interfaceClientContext
-
getNamedQueryManager
Description copied from interface:ClientContext
Returns the appropriate named query rpc for the context. In the gateway and client, we only want to use named queries that have been saved. In the designer, we want to use the current version so that reports and bindings can be seen and used for testing before the project is saved.- Specified by:
getNamedQueryManager
in interfaceClientContext
- Returns:
- The correct NamedQueryManager implementation for the scope.
-
getExpressionFunctionFactory
Description copied from interface:CommonContext
Returns the core function factory used by expressions. Includes extension functions registered by modules.- Specified by:
getExpressionFunctionFactory
in interfaceCommonContext
-
getLocalizationManager
- Specified by:
getLocalizationManager
in interfaceClientContext
- Specified by:
getLocalizationManager
in interfaceDesignerContext
-
getLaunchContext
- Specified by:
getLaunchContext
in interfaceClientContext
-
addBeanInfoSearchPath
Description copied from interface:DesignerContext
Adds the given fully-qualified path name to the Introspector's BeanInfo search path. BeanInfos can be important for not only visual beans, but for controlling serialization.- Specified by:
addBeanInfoSearchPath
in interfaceDesignerContext
- Parameters:
packageName
- fully-qualified path name. Not null.
-
addPropertyChangeListener
- Specified by:
addPropertyChangeListener
in interfaceClientContext
-
addPropertyChangeListener
- Specified by:
addPropertyChangeListener
in interfaceClientContext
-
removePropertyChangeListener
- Specified by:
removePropertyChangeListener
in interfaceClientContext
-
removePropertyChangeListener
- Specified by:
removePropertyChangeListener
in interfaceClientContext
-
exportResources
Description copied from interface:DesignerContext
Shows the project export window (after doing a commit) with the given resource IDs checked.- Specified by:
exportResources
in interfaceDesignerContext
- Parameters:
resourceIds
- Collection of ProjectResourceIds. Not null, but may be empty.
-
getExecutionManager
Description copied from interface:ClientContext
Returns the shared task execution manager for this client- Specified by:
getExecutionManager
in interfaceClientContext
-
getProgressManager
Description copied from interface:ClientContext
Returns the progress manager, which allows the execution of long running or async tasks.- Specified by:
getProgressManager
in interfaceClientContext
-
createSerializer
Description copied from interface:DesignerContext
Creates a new XML serializer that has been configured by all installed modules for custom serialization delegates- Specified by:
createSerializer
in interfaceDesignerContext
- Returns:
- Not null.
-
getDesignerPrefs
Description copied from interface:DesignerContext
Returns a PersistentProperties file that will be stored on a per-user basis for "persistent" but not project-encapsulated preferences- Specified by:
getDesignerPrefs
in interfaceDesignerContext
-
getDefaultDatasourceName
Description copied from interface:ClientContext
Returns the current project's default datasource name- Specified by:
getDefaultDatasourceName
in interfaceClientContext
-
getDefaultTagProviderName
Description copied from interface:ClientContext
Returns the current project's default Tag provider- Specified by:
getDefaultTagProviderName
in interfaceClientContext
-
getAuthProfileName
Description copied from interface:ClientContext
Returns the current project's user source- Specified by:
getAuthProfileName
in interfaceClientContext
-
getSearchProviders
Description copied from interface:DesignerContext
Get the registered SearchProviders.- Specified by:
getSearchProviders
in interfaceDesignerContext
- Returns:
- Not null.
-
getSearchProvider
- Specified by:
getSearchProvider
in interfaceDesignerContext
-
registerClientPermissions
Description copied from interface:DesignerContext
Register id-bundlekey pairs to limit client permissions- Specified by:
registerClientPermissions
in interfaceDesignerContext
- Parameters:
bundleMap
- Map of ids to bundlekeys. Not null.
-
getClientPermissionBundleKeys
- Specified by:
getClientPermissionBundleKeys
in interfaceDesignerContext
-
canEditResourceProtection
public boolean canEditResourceProtection()Description copied from interface:DesignerContext
Checks whether or not the current logged in user can edit the protection bits of project resources.- Specified by:
canEditResourceProtection
in interfaceDesignerContext
-
registerSearchProvider
Description copied from interface:DesignerContext
Registers a search provider that will be exposed through the find/replace system.- Specified by:
registerSearchProvider
in interfaceDesignerContext
-
getFrame
Description copied from interface:DesignerContext
Returns the owning frame of the designer. Handy for dialog parents- Specified by:
getFrame
in interfaceDesignerContext
-
getCopyAction
- Specified by:
getCopyAction
in interfaceDesignerContext
-
getCutAction
- Specified by:
getCutAction
in interfaceDesignerContext
-
getDeleteAction
- Specified by:
getDeleteAction
in interfaceDesignerContext
-
getPasteAction
- Specified by:
getPasteAction
in interfaceDesignerContext
-
getRenameAction
- Specified by:
getRenameAction
in interfaceDesignerContext
-
getRootPaneContainer
Description copied from interface:ClientContext
Returns the RootPaneContainer that is currently the owner of the client- Specified by:
getRootPaneContainer
in interfaceClientContext
-
getTagPollRate
public int getTagPollRate()Description copied from interface:ClientContext
Returns the rate at which Tags should be polled for updates- Specified by:
getTagPollRate
in interfaceClientContext
-
getStatusBar
Description copied from interface:DesignerContext
The StatusBar at the bottom of the Designer can be used to display temporary messages and for adding always-present little components that appear in the bottom-right- Specified by:
getStatusBar
in interfaceDesignerContext
- Returns:
- Not null.
-
getResourceEditManager
Description copied from interface:DesignerContext
Resource edit manager- Specified by:
getResourceEditManager
in interfaceDesignerContext
-
getTagManager
Description copied from interface:CommonContext
Returns the manager that provides access to Ignition's tag system.- Specified by:
getTagManager
in interfaceClientContext
- Specified by:
getTagManager
in interfaceCommonContext
-
registerResourceWorkspace
Description copied from interface:DesignerContext
Registers a newResourceWorkspace
, which is a main editing area for the designer. The workspace has menus and toolbars associated with it that become visible when the workspace is focused.- Specified by:
registerResourceWorkspace
in interfaceDesignerContext
- Parameters:
workspace
- TheResourceWorkspace
to register with the designer
-
createDeserializer
Description copied from interface:CommonContext
Returns an instance of the XMLDeserializer that can be used to deserialize project resources. Note that this is the only safe way to obtain an instance of XMLDeserializer, because the context will pass the new deserializer around to all loaded modules, giving them a chance to initialize any custom deserialization deletes on it first.- Specified by:
createDeserializer
in interfaceCommonContext
-
getProjectBrowserRoot
Description copied from interface:DesignerContext
Returns the root node of the project browser tree, so that modules may add their own nodes.- Specified by:
getProjectBrowserRoot
in interfaceDesignerContext
- See Also:
-
deserialize
Description copied from interface:ClientContext
Convenience function to deserialize a gzipped byte array into a single object. If multiple objects are found, they will be discarded. Warnings are logged to the given logger. If data is null or empty, null is returned.- Specified by:
deserialize
in interfaceClientContext
- Throws:
SerializationException
-
addPropertyEditor
Description copied from interface:DesignerContext
Adds a property editor page that will be incorporated into the Designer's project property editing system. This class will be instantiated the first time that the property editor is displayed, and must have either a nullary constructor or a constructor that takes a DesignerContext.
The Property Editing framework is designed around the idea that modules will store properties in opaquely xml-serialized project resources which can be uniquely identified by their module ID and resource type. The property editing UI will handle the de/serialization and project syncing tasks so that the property editor pages can simply focus on UI.
- Specified by:
addPropertyEditor
in interfaceDesignerContext
-
getScriptManager
Description copied from interface:CommonContext
Returns the ScriptManager that can be used to execute Python scripts.- Specified by:
getScriptManager
in interfaceCommonContext
-
getDockingManager
@Nonnull public com.jidesoft.docking.DockingManager getDockingManager()Description copied from interface:DesignerContext
Returns the JIDE DockingManager for the Designer- Specified by:
getDockingManager
in interfaceDesignerContext
-
getToolbarManager
@Nonnull public com.jidesoft.action.DockableBarManager getToolbarManager()Description copied from interface:DesignerContext
Returns the JIDE dockable toolbar manager- Specified by:
getToolbarManager
in interfaceDesignerContext
-
getTagBrowser
@Nonnull public com.inductiveautomation.ignition.designer.tags.frame.TagBrowserFrame getTagBrowser()Description copied from interface:DesignerContext
Returns the TagBrowserPanel that can be used to select Tags- Specified by:
getTagBrowser
in interfaceDesignerContext
-
getOPCBrowser
Description copied from interface:DesignerContext
Returns the OPCBrowserPanel that can be used to browse and import OPC items- Specified by:
getOPCBrowser
in interfaceDesignerContext
-
getTagEditor
Description copied from interface:DesignerContext
Returns the TagEditorPanel that can be used to edit/add Tags- Specified by:
getTagEditor
in interfaceDesignerContext
-
getQueryBrowserPanel
Description copied from interface:DesignerContext
Returns the DB query browser tool- Specified by:
getQueryBrowserPanel
in interfaceDesignerContext
-
getProject
Description copied from interface:ClientContext
Returns the project that this client is running. Note that this may be null before the client is fully logged in and started, because the context is created before the project is downloaded.- Specified by:
getProject
in interfaceClientContext
- Specified by:
getProject
in interfaceDesignerContext
-
getModule
Description copied from interface:CommonContext
Returns the hook class for another module, used for modules that deal with each other's models. Example: The reporting plugin's designer hook uses this to get FactoryPMI's palette.- Specified by:
getModule
in interfaceCommonContext
- Specified by:
getModule
in interfaceDesignerContext
-
getModules
Description copied from interface:ClientContext
Retrieve the list of all modules currently loaded in this context- Specified by:
getModules
in interfaceClientContext
-
editResourceDocs
Description copied from interface:DesignerContext
Opens up the resource notes editor for the given project resources- Specified by:
editResourceDocs
in interfaceDesignerContext
-
getLicenseState
Description copied from interface:CommonContext
Returns the license state for the given module- Specified by:
getLicenseState
in interfaceCommonContext
-
getEdgeEditions
Description copied from interface:CommonContext
Returns a list of currently available Edge editions (either licensed or in trial). Does not check if any required modules are installed and running.- Specified by:
getEdgeEditions
in interfaceCommonContext
-