API version 1.5.2
SystemObject
VSignal.ExternalBaseTExternalBase
VSignal.ExternalBaseTExternalViewer
Assembly: vsmExternalBase (in vsmExternalBase.dll) Version: 1.6.0.0
Top
Top
Top
Top
[This is preliminary documentation and is subject to change.]
ExternalViewer - Base viewer class inherited from TExternalBase, and also
implementing the IExternalViewer interface . Any C# external user viewer DLL
must inherit this class and override implementation for Init and DoCompute,
and optionally UpdateViewerProperty.
Inheritance Hierarchy
VSignal.ExternalBaseTExternalBase
VSignal.ExternalBaseTExternalViewer
Namespace: VSignal.ExternalBase
Assembly: vsmExternalBase (in vsmExternalBase.dll) Version: 1.6.0.0
Syntax
The TExternalViewer type exposes the following members.
Constructors
| Name | Description | |
|---|---|---|
| TExternalViewer | Initializes a new instance of the TExternalViewer class |
Methods
| Name | Description | |
|---|---|---|
| AcceptInput(TExternalBaseInputDataTypes) |
Protected function "AcceptInput", proved to the user DLL for registering
input types acceptable by the DLL for computation. This function should be invoked in
Init, and the registered acceptable input types will be passed to Visual
Signal's ExternalDll module via getDllInfo. Visual Signal will use this information
to determine whether an input connection is valid or not.
(Inherited from TExternalBase.) | |
| AcceptInput(TExternalBaseInputDataTypes, Int32, TExternalBaseInputCoordinateTypes, TExternalBaseInputChannelTypes, TExternalBaseInputValueTypes) |
Protected function "AcceptInput", proved to the user DLL for registering
input types acceptable by the DLL for computation. This function should be invoked in
Init, and the registered acceptable input types will be passed to Visual
Signal's ExternalDll module via getDllInfo. Visual Signal will use this information
to determine whether an input connection is valid or not.
(Inherited from TExternalBase.) | |
| compute |
Interface for exported function "compute", used by Visual Signal's
ExternalDll module to execute the actual computation provided by the user DLL.
This function just calls the protected function DoCompute, which
the user DLL must override with own implementation. External properties, input
and output data are processed by Visual Signal before and after the execution
of this function. User should expect _inputData to contain the
input data and update _outputData to sent to Visual Signal. User
should also expect _properties to contain properties from Visual
Signal and use UpdateProperty(String, Object) to update properties to Visual Signal.
(Inherited from TExternalBase.) | |
| DoCompute |
Protected virtual function "DoCompute", intended to be overridden by the inherited
user DLL class to provide the actual computation. This function is called by
the exported function compute which is in turn used by Visual Signal's
ExternalDll module to start computation.
(Inherited from TExternalBase.) | |
| doubleClick |
Interface for exported function "doubleClick", used by Visual Signal's
ExternalDll module to handle the callback when user double-clicks
the corresponding Visual Signal component. This function just calls the
protected function OnDoubleClick, which the user DLL can
override with own implementation. Like compute, external
properties are processed by Visual Signal before and after the execution
of this function; however, input and output data are not processed. User
should expect _properties to contain properties from Visual
Signal and use UpdateProperty(String, Object) to update properties to Visual
Signal.
(Inherited from TExternalBase.) | |
| Equals | (Inherited from Object.) | |
| Finalize | (Inherited from Object.) | |
| getDllInfo |
Exported function "getDllInfo()", used by Visual Signal's
ExternalDll module to obtain DLL info such as name, version,
API version, language, license control and properties.
(Inherited from TExternalBase.) | |
| GetHashCode | (Inherited from Object.) | |
| GetInputCoords |
Protected function "GetInputCoords", provided to the user DLL to obtain the input
coordinates.
(Inherited from TExternalBase.) | |
| GetInputDataExtension |
Protected function "GetInputDataExtensionKeys", provided to the user DLL to obtain
the input data extension.
(Inherited from TExternalBase.) | |
| GetInputDataExtensionKeys |
Protected function "GetInputDataExtensionKeys", provided to the user DLL to obtain
the available input data extension keys.
(Inherited from TExternalBase.) | |
| GetInputDataIm |
Protected function "GetInputDataRe", provided to the user DLL to obtain
the imaginary part of the input data.
(Inherited from TExternalBase.) | |
| GetInputDataRe |
Protected function "GetInputDataRe", provided to the user DLL to obtain
the real part of the input data.
(Inherited from TExternalBase.) | |
| getOutputCoordinates |
Exported function "getOutputCoordinates", used by Visual Signal's
ExternalDll module to obtain the output data coordinates from the user DLL.
(Inherited from TExternalBase.) | |
| getOutputDataIm |
Interface for exported function "getOutputDataIm", used by Visual Signal's
ExternalDll module to obtain the output data (imaginary part) from the user DLL.
(Inherited from TExternalBase.) | |
| getOutputDataRe |
Exported function "getOutputDataRe", used by Visual Signal's
ExternalDll module to obtain the output data (real part) from the user DLL.
(Inherited from TExternalBase.) | |
| getOutputDescriptor |
Exported function "getOutputDescriptor", used by Visual Signal's ExternalDll module to
obtain output descriptor from the user DLL.
(Inherited from TExternalBase.) | |
| getProperties |
Exported function "getProperties", used by Visual Signal's ExternalDll module to
obtain property values from the user DLL.
(Inherited from TExternalBase.) | |
| GetPropertyValue |
(Deprecated) Protected function "GetPropertyValue", provided to the user DLL for retrieving the
current property values. This function is usually invoked in the
DoCompute function after the computation stage.
This is deprecated. Property values can now be accessed like regular C# public properties.
(Inherited from TExternalBase.) | |
| GetType | (Inherited from Object.) | |
| getViewerPanel |
Exported function "getViewerPanel()", used by Visual Signal's
ExternalViewer module to obtain external viewer object created by
the user Dll
| |
| Init |
Protected virtual function "Init", intended to be overridden by the inherited
user DLL class to provide the initialization function. This function is called by
the exported function getDllInfo.
(Inherited from TExternalBase.) | |
| MemberwiseClone | (Inherited from Object.) | |
| OnDoubleClick |
Protected virtual function "OnDoubleClick", intended to be overridden by the inherited
user DLL class to provide the actual computation. This function is called by
the exported function doubleClick which is in turn used by Visual Signal's
ExternalDll module to handle callback when user double-clicked on the module.
(Inherited from TExternalBase.) | |
| RegisterProperty |
(Deprecated) Protected function "RegisterProperty", proved to the user DLL for registering
properties used by the DLL computation. This function should be invoked in
Init, and the registered properties will be passed to Visual
Signal's ExternalDll module via getDllInfo and become available in
the module's property dialog for editing. The current values will be communicated
back and forth between ExternalDll module and the user DLL via setProperties(String)
and getProperties exported functions.
This is deprecated. Property values can now be defined like regular C# properties, with
appropriate attributes attached to the properties to define their categories, display names,
descriptions, etc. Properties must be public and browsable.
(Inherited from TExternalBase.) | |
| setBackColor |
Exported function "setBackColor()", used by Visual Signal's
ExternalViewer module to set external viewer background color
| |
| SetExtendedInfo |
Override protected function SetExtendedInfo(XmlDocument) to set additional viewer-specific root attributes.
This function is called by the exported function getDllInfo.
(Overrides TExternalBaseSetExtendedInfo(XmlDocument).) | |
| setInputCoordinates |
Exported function "setInputCoordinates", used by Visual Signal's ExternalDll
module to set input coordinates in the user DLL.
(Inherited from TExternalBase.) | |
| setInputDataIm |
Exported function "setInputDataIm", used by Visual Signal's
ExternalDll module to set the input data (imaginary part) in the user DLL.
(Inherited from TExternalBase.) | |
| setInputDataRe |
Exported function "setInputDataRe", used by Visual Signal's
ExternalDll module to set the input data (real part) in the user DLL.
(Inherited from TExternalBase.) | |
| setInputDescriptors |
Exported function "setInputDescriptors", used by Visual Signal's
ExternalDll module to set input descriptors in the user DLL.
(Inherited from TExternalBase.) | |
| SetOutputCoords |
Protected function "SetOutputCoords", provided to the user DLL to set the output
coordinates.
(Inherited from TExternalBase.) | |
| SetOutputDataExtension |
Protected function "SetOutputDataExtension", provided to the user DLL to set
the output data extension info.
(Inherited from TExternalBase.) | |
| SetOutputDataIm |
Protected function "SetOutputDataIm", provided to the user DLL to set
the imaginary part of the output data.
(Inherited from TExternalBase.) | |
| SetOutputDataRe |
Protected function "SetOutputDataRe", provided to the user DLL to set
the real part of the output data.
(Inherited from TExternalBase.) | |
| setProperties |
Exported function "setProperties", used by Visual Signal's ExternalDll module to
set property values in the user DLL.
(Inherited from TExternalBase.) | |
| setTitle |
Exported function "setTitle()", used by Visual Signal's
ExternalViewer module to set external viewer title
| |
| ToString | (Inherited from Object.) | |
| UpdateProperty |
(Deprecated) Protected function "UpdateProperty", provided to the user DLL for updating the
current property values. This function is usually invoked in the
DoCompute function after the computation stage.
This is deprecated. Property values can now be updated like regular C# public properties.
(Inherited from TExternalBase.) | |
| UpdateViewerProperty |
Virtual hook function "UpdateViewerProperty()". This function can be
overridden in user's code to provide custom behaviour for updating
viewer properties.
|
Fields
| Name | Description | |
|---|---|---|
| _autoResizeViewer |
This protected member contains persistent AutoResizeViewer state which
should be initialized in Init.
| |
| _backColor | ||
| _inputData |
This protected member will be initialized and updated by Visual Signal's ExternalDll
module via setInputDescriptors(String), setInputCoordinates(Int32, Int32, Object),
setInputDataRe(Int32, Int32, Double), and setInputDataIm(Int32, Int32, Double). The user DLL can
directly access the DllData objects to obtain the data descriptor information.
(Inherited from TExternalBase.) | |
| _inputTypes |
This protected member contains a table of TExternalBaseDllInputType objects
which stores the parameters used by the DLL. The table (in the form of a List)
should be initialized in Init using AcceptInput().
(Inherited from TExternalBase.) | |
| _outputData |
This protected member should be initialized and updated in the user DLL's
DoCompute function to contain the output data (only one allowed).
(Inherited from TExternalBase.) | |
| _properties |
(Deprecated) This protected member contains a table of TExternalBaseDllProperty objects
which stores the parameters used by the DLL. The table (in the form of a Dictionary)
should be initialized in Init using RegisterProperty().
This is deprecated. It is no longer necessary to access property object directly. Define and
access the properties like any other C# property using appropriate attributes. Properties
must be public and browsable.
(Inherited from TExternalBase.) | |
| _props |
This protected member contains a table of ExtensionProperty objects which
stores the parameters used by the use's DLL, it is not necessary to access this object
directly. Use RegisterProperty(String, Type, Object, String, String, String, String, Int32), GetPropertyValue(String), and
UpdateProperty(String, Object) functions instead to initialize, get, and set properties.
(Inherited from TExternalBase.) | |
| _showTitle | ||
| _title | ||
| _viewerPanel |
This protected member contains the System.Windows.Forms.Panel-derived object which
should be initialized in Init. This member can be accessed via
the ViewerPanel proeprty.
|
Properties
| Name | Description | |
|---|---|---|
| AutoResizeViewer |
If this property is set to "True", instruct the Visual Signal viewer to resize itself base on the control's size
If set to "False", Visual Signal will try to resize the control based on the viewer's size.
This property should be set in Init.
| |
| BackColor |
Get the viewer background color
The value will be updated from Visual Signal viewer properties before DoCompute is executed.
| |
| InfoText |
Set this property in Init to register the infoText of the user module.
This will appear in Visual Signal as a tooltip for the DLL.
(Inherited from TExternalBase.) | |
| LicenseManagerID |
Set this property in Init to register the license manager ID. If a license manager matching
the ID were found, Visual Signal will attempt to use license control for the user module. If the property is
not set or set to an empty string, license control will not be used for the user module.
(Inherited from TExternalBase.) | |
| LicenseName |
Set this property in Init to register the license name. Visual Signal will attempt to match
the license name against any license files loaded by the license manager. If no valid license file matches
the license name, then the user module will not be available for use in Visual Signal. For security reasons,
the module will also not be available if a license manager matching LicenseManagerID were *not* found.
(Inherited from TExternalBase.) | |
| MinInputCount |
Set this property in Init to register the minimum number of inputs acceptable by the user DmoduleLL.
(Inherited from TExternalBase.) | |
| Name |
Set this property in Init to register the name of the user module.
(Inherited from TExternalBase.) | |
| ShowTitle |
Get whether to show the title in the viewer.
The value will be updated from Visual Signal viewer properties before DoCompute is executed.
| |
| Title |
Get the viewer title string
The value will be updated from Visual Signal viewer properties before DoCompute is executed.
| |
| Version |
Set this property in Init to register the version of the user module.
(Inherited from TExternalBase.) | |
| ViewerPanel |
Set the external vewer System.Windows.Forms.Panel object.
This property should be set in Init.
|
See Also