CI Server publishes no file-format documentation, so real .qli exports and a
real HMI deployment are the only specification the .qli and display generators
were written against. Kept the parts that carry that knowledge:
ciserver-qli-exports/ 10 exports - the .qli format
ciserver-hmi-deployment/ components, layouts, thresholds, locales
+ 6 of 84 displays
Dropped symbols/ (107 MB - CI Server's own installed library, already on
cicore1), the colour-variant displays, editor lock/autosave artefacts, and the
stock OpenPLC sample projects.
63 lines
No EOL
3.1 KiB
XML
63 lines
No EOL
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!--
|
|
* @(#)graphicSet.xml
|
|
*
|
|
* Copyright: Yokogawa, All rights reserved.
|
|
* YOKOGAWA PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
* Author: C. Horevoorts
|
|
*
|
|
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
* Changes ....
|
|
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
* Who When Change What
|
|
* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
* HVS Jun-16 e11544 Add support of drag and drop for GraphicSet
|
|
* BNL May-17 i11764 Correct "isVisible" for empty components to solve view miscalculation
|
|
* BNL May-17 i11764 Correct previous change: getter on 'visible' property, not 'transparency' property
|
|
* BNL Jul-18 e11986 Edit Module HTML Mode
|
|
* BNL Feb-19 e11986 Disallow connection to positional properties in HTML mode
|
|
* VNU Mar-20 i12247 CIX-Pre-TT-H0056-Disable drag and drop for HTML mode
|
|
* HVS Jun-20 e12272 Port to JViews 2017.2
|
|
*
|
|
-->
|
|
<componentType name="graphicSet"
|
|
icon="stock_group-16.png"
|
|
description="Group"
|
|
class="fasttools.jwui.runtime.jviews.GraphicSet">
|
|
|
|
<category name="General">
|
|
<property name="name" type="java.lang.String" defaultAllowed="no" connectAllowed="no" advanced="yes"/>
|
|
<property name="toolTipText" type="java.lang.String" defaultAllowed="no" localized="yes" description="This is the tooltip text"/>
|
|
<property name="cardinal" type="int" writeAllowed="no" save="no" defaultAllowed="no" connectAllowed="no" advanced="yes"/>
|
|
</category>
|
|
|
|
<category name="Transformation">
|
|
<property name="x" type="double" defaultAllowed="no" advanced="yes" html="noConnect"/>
|
|
<property name="y" type="double" defaultAllowed="no" advanced="yes" html="noConnect"/>
|
|
<property name="top" type="double" defaultAllowed="no" advanced="yes" html="noConnect"/>
|
|
<property name="bottom" type="double" defaultAllowed="no" advanced="yes" html="noConnect"/>
|
|
<property name="left" type="double" defaultAllowed="no" advanced="yes" html="noConnect"/>
|
|
<property name="right" type="double" defaultAllowed="no" advanced="yes" html="noConnect"/>
|
|
<property name="rotation" type="double" defaultAllowed="no"/>
|
|
<property name="shear" type="double" defaultAllowed="no" advanced="yes"/>
|
|
</category>
|
|
|
|
<category name="Visibility">
|
|
<property name="transparency" type="float"/>
|
|
<property name="visible" type="boolean" getter="isComponentVisible"/>
|
|
</category>
|
|
|
|
<category name="Misc">
|
|
<property name="linkPins" type="fasttools.jwui.common.property.linkpins.LinkPinsSet" defaultAllowed="no" connectAllowed="no" advanced="yes" html="no"/>
|
|
<property name="blinking" type="boolean"/>
|
|
</category>
|
|
|
|
<category name="DragAndDrop">
|
|
<property name="enabledDrop" type="boolean" advanced="yes" html="no"/>
|
|
<property name="enabledDrag" type="boolean" advanced="yes" html="no"/>
|
|
<property name="dragValue" type="java.lang.String" advanced="yes" html="no"/>
|
|
<property name="dropValue" type="java.lang.String" bound="yes" save="no" writeAllowed="no" defaultAllowed="no" advanced="yes" html="no"/>
|
|
</category>
|
|
|
|
</componentType> |