Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The scada display shows one or more scada panels, which can be selected in turn from the list on the left hand side. It is also possible to have multiple scada displays, each one with different panels. In that case there would be one configuration file for each different scada display, each one with a different filename. The filename of each scada display should be registered in the DisplayInstanceDescriptors.xml configuration file. When available on the file system, the name of the xml file for configuring a scada display is for example "ScadaTwentekanalen.xml". This To register a scada display would be registered in the DisplayInstanceDescriptors configuration file with use e.g. the following xml code:

Code Block
xml
xml
<displayInstanceDescriptor id="ScadaTwentekanalen">
    <description>Scada Display Twentekanalen</description>
    <displayId>ScadaDisplay</displayId>
</displayInstanceDescriptor>

To be able to open a scada display from the user interface, there should be an explorer task for it in the Explorer.xml configuration file. The xml code for a scada display explorer task is for example:

Code Block
xml
xml

<explorerTask name="Twentekanalen">
    <arguments>ScadaTwentekanalen</arguments>
    <taskClass>nl.wldelft.fews.gui.plugin.scada.ScadaDisplay</taskClass>
    <toolbarTask>true</toolbarTask>
    <menubarTask>true</menubarTask>
</explorerTask>

Scada Display Configuration

...