Move from Viewers

git-svn-id: https://subversion.xor.aps.anl.gov/synApps/areaDetector/trunk@10508 dc6c5ff5-0b8b-c028-a01f-ffb33f00fc8b
This commit is contained in:
hammonds
2010-04-01 00:08:09 +00:00
parent 4ccde3f5fa
commit 01fcdf5d22
39 changed files with 46154 additions and 0 deletions
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>
@@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>gov.anl.aps.synApps.areaDetector</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.ManifestBuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>org.eclipse.pde.SchemaBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.pde.PluginNature</nature>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>
@@ -0,0 +1,8 @@
#Tue Feb 09 19:06:46 CST 2010
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6
org.eclipse.jdt.core.compiler.compliance=1.6
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.source=1.6
@@ -0,0 +1,12 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: AreaDetector
Bundle-SymbolicName: gov.anl.aps.synApps.areaDetector;singleton:=true
Bundle-Version: 1.0.0.qualifier
Bundle-Activator: gov.anl.aps.synApps.areaDetector.Activator
Bundle-Vendor: John Hammonds
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ui;bundle-version="3.5.1",
org.eclipse.core.resources;bundle-version="3.5.1"
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Bundle-ActivationPolicy: lazy
@@ -0,0 +1,5 @@
source.. = src/
output.. = bin/
bin.includes = plugin.xml,\
META-INF/,\
.
@@ -0,0 +1,70 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
<extension
id="application"
point="org.eclipse.core.runtime.applications">
<application>
<run
class="gov.anl.aps.synApps.areaDetector.Application">
</run>
</application>
</extension>
<extension
point="org.eclipse.ui.actionSets">
<actionSet
id="gov.aps.anl.gov.synApps.synAppsActionSet"
label="synApps"
visible="true">
<menu
id="gov.anl.aps.synApps.synAppsMenu"
label="synApps"
path="menu:org.eclipse.ui.main.menu?before=window">
<separator
name="gov.aps.anl.gov.synApps.areaDetector.separator1">
</separator>
<groupMarker
name="areaDetectorMarker">
</groupMarker>
</menu>
</actionSet>
<actionSet
id="gov.aps.anl.gov.synApps.areaDetectorActionSet"
label="synApps"
visible="true">
<action
class="gov.anl.aps.synApps.areaDetector.InstallAreaOPITemplates"
id="gov.anl.aps.gov.synApps.installADTemplateActions"
label="Install areaDetector Template files"
menubarPath="gov.anl.aps.synApps.synAppsMenu/gov.anl.aps.synApps.areaDetectorMenu/additions"
style="push">
</action>
<menu
id="gov.anl.aps.gov.synApps.areaDetectorMenu"
label="areaDetector"
path="gov.anl.aps.synApps.synAppsMenu/areaDetectorMarker">
<groupMarker
name="additions">
</groupMarker>
</menu>
</actionSet>
</extension>
<extension
point="org.eclipse.ui.menus">
<menuContribution
locationURI="menu:org.eclipse.ui.main.menu">
<menu
id="gov.anl.aps.synApps.synAppsMenu"
label="&amp;synApps"
tooltip="synApps addons">
<menu
id="gov.anl.aps.synApps.areaDetectorMenu"
label="areaDetector"
tooltip="areaDetector addons">
</menu>
</menu>
</menuContribution>
</extension>
</plugin>
@@ -0,0 +1,50 @@
package gov.anl.aps.synApps.areaDetector;
import org.eclipse.core.runtime.Plugin;
import org.osgi.framework.BundleContext;
/**
* The activator class controls the plug-in life cycle
*/
public class Activator extends Plugin {
// The plug-in ID
public static final String PLUGIN_ID = "gov.aps.anl.gov.synApps.areaDetector";
// The shared instance
private static Activator plugin;
/**
* The constructor
*/
public Activator() {
}
/*
* (non-Javadoc)
* @see org.eclipse.core.runtime.Plugins#start(org.osgi.framework.BundleContext)
*/
public void start(BundleContext context) throws Exception {
super.start(context);
plugin = this;
}
/*
* (non-Javadoc)
* @see org.eclipse.core.runtime.Plugin#stop(org.osgi.framework.BundleContext)
*/
public void stop(BundleContext context) throws Exception {
plugin = null;
super.stop(context);
}
/**
* Returns the shared instance
*
* @return the shared instance
*/
public static Activator getDefault() {
return plugin;
}
}
@@ -0,0 +1,25 @@
package gov.anl.aps.synApps.areaDetector;
import org.eclipse.equinox.app.IApplication;
import org.eclipse.equinox.app.IApplicationContext;
/**
* This class controls all aspects of the application's execution
*/
public class Application implements IApplication {
/* (non-Javadoc)
* @see org.eclipse.equinox.app.IApplication#start(org.eclipse.equinox.app.IApplicationContext)
*/
public Object start(IApplicationContext context) throws Exception {
System.out.println("Hello RCP World!");
return IApplication.EXIT_OK;
}
/* (non-Javadoc)
* @see org.eclipse.equinox.app.IApplication#stop()
*/
public void stop() {
// nothing to do
}
}
@@ -0,0 +1,155 @@
package gov.anl.aps.synApps.areaDetector;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.net.URL;
import org.eclipse.core.resources.IContainer;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IWorkspaceRoot;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.FileLocator;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Path;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.jface.action.Action;
import org.eclipse.jface.action.IAction;
import org.eclipse.jface.resource.ImageDescriptor;
import org.eclipse.jface.viewers.ISelection;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.IWorkbenchWindowActionDelegate;
public class InstallAreaOPITemplates extends Action implements
IWorkbenchWindowActionDelegate {
public InstallAreaOPITemplates() {
// TODO Auto-generated constructor stub
}
public InstallAreaOPITemplates(String text) {
super(text);
// TODO Auto-generated constructor stub
}
public InstallAreaOPITemplates(String text, ImageDescriptor image) {
super(text, image);
// TODO Auto-generated constructor stub
}
public InstallAreaOPITemplates(String text, int style) {
super(text, style);
// TODO Auto-generated constructor stub
}
@Override
public void dispose() {
// TODO Auto-generated method stub
}
@Override
public void init(IWorkbenchWindow window) {
// TODO Auto-generated method stub
}
@Override
public void run(IAction action) {
// TODO Auto-generated method stub
System.out.println("Running action");
final IWorkspaceRoot root = ResourcesPlugin.getWorkspace().getRoot();
Job job = new Job("Install AreaDetector templates") {
protected IStatus run(IProgressMonitor monitor) {
try {
IProject project = root.getProject("gov.anl.aps.synApps.areaDetector");
if (!project.exists()) {
// create root project for synApps if it does not exist
// in our workspace
project.create(new NullProgressMonitor());
}
project.open(new NullProgressMonitor());
String folderToCopy = new String("templates");
URL url = FileLocator.find(Activator.getDefault()
.getBundle(), new Path(folderToCopy),
null);
try {
File directory = new File(FileLocator.toFileURL(url)
.getPath());
if (directory.isDirectory()) {
File[] files = directory.listFiles();
IFolder folder = project.getFolder(folderToCopy);
if (!folder.exists()){
folder.create(true, true, monitor);
}
monitor
.beginTask("Copying Templates",
count(files));
copy(files, folder, monitor);
}
} catch (IOException ex) {
}
}
catch (CoreException ex) {
ex.printStackTrace();
}
return Status.OK_STATUS;
}
};
job.schedule();
}
private void copy (File[] files, IContainer container, IProgressMonitor monitor){
try {
for (File file: files) {
monitor.subTask("Copying" + file.getName());
if (file.isDirectory()) {
IFolder folder = container.getFolder(new Path(file.getName()));
if (!folder.exists()){
folder.create(true, true, null);
}
copy(file.listFiles(), folder, monitor);
}
else {
IFile pFile = container.getFile(new Path(file.getName()));
if (!pFile.exists()){
pFile.create(new FileInputStream(file), true, new NullProgressMonitor());
}
monitor.internalWorked(1);
}
}
}
catch (Exception ex){
}
}
private int count (File[] files){
int result = 0;
for (File file : files){
if (file.isDirectory()){
result += count(file.listFiles());
}
else {
result++;
}
}
return result;
}
@Override
public void selectionChanged(IAction action, ISelection selection) {
// TODO Auto-generated method stub
}
}
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,130 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>350</width>
<scripts />
<show_ruler>true</show_ruler>
<height>60</height>
<show_edit_range>true</show_edit_range>
<name>Display</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Attributes</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>100</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>false</transparent>
<y>2</y>
<actions hook="false" />
<tooltip />
<x>125</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}AcquireTime</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<width>280</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>30</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>58</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>File</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>40</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_2</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>29</y>
<actions hook="false" />
<tooltip />
<x>13</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
</display>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,624 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>335</width>
<scripts />
<show_ruler>true</show_ruler>
<height>250</height>
<show_edit_range>true</show_edit_range>
<name>Display</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Setup</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="8" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>107</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>21</height>
<border_width>1</border_width>
<name>Label</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>false</transparent>
<y>2</y>
<actions hook="false" />
<tooltip />
<x>114</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>EPICS name</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>100</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_1</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>59</y>
<actions hook="false" />
<tooltip />
<x>58</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>${P}${R}</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>160</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<border_width>1</border_width>
<name>Label_2</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<transparent>true</transparent>
<y>60</y>
<actions hook="false" />
<tooltip />
<x>166</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>asyn port</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>100</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_3</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>34</y>
<actions hook="false" />
<tooltip />
<x>58</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}PortName_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>160</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>35</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Manufacturer</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>120</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_4</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>84</y>
<actions hook="false" />
<tooltip />
<x>38</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_1</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}Manufacturer_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>160</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>85</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Model</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>50</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_5</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>109</y>
<actions hook="false" />
<tooltip />
<x>108</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_2</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}Model_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>160</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>110</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_3</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}AsynIO.CNCT</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="255" blue="64" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>120</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>132</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>182</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Connection</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>100</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_6</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>159</y>
<actions hook="false" />
<tooltip />
<x>58</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.ActionButton" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Action Button</name>
<pv_name>${P}${R}AsynIO.CNCT</pv_name>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Action Button</widget_type>
<enabled>true</enabled>
<text>Connect</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="8" style="0" />
</font>
<width>80</width>
<push_action_index>0</push_action_index>
<border_style>0</border_style>
<image />
<toggle_button>false</toggle_button>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>159</y>
<actions hook="false">
<action type="WRITE_PV">
<pv_name>$(pv_name)</pv_name>
<value>1</value>
</action>
</actions>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.ActionButton" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Action Button_1</name>
<pv_name>${P}${R}AsynIO.CNCT</pv_name>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Action Button</widget_type>
<enabled>true</enabled>
<text>Disconnect</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="8" style="0" />
</font>
<width>80</width>
<push_action_index>0</push_action_index>
<border_style>0</border_style>
<image />
<toggle_button>false</toggle_button>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>159</y>
<actions hook="false">
<action type="WRITE_PV">
<pv_name>$(pv_name)</pv_name>
<value>1</value>
</action>
</actions>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>251</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>More</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>90</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_7</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>206</y>
<actions hook="false" />
<tooltip />
<x>68</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.MenuButton" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<actions_from_pv>false</actions_from_pv>
<scripts />
<height>20</height>
<name>Menu Button</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<enabled>true</enabled>
<widget_type>Menu Button</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="8" style="0" />
</font>
<width>70</width>
<border_style>6</border_style>
<label />
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>206</y>
<actions hook="false">
<action type="OPEN_DISPLAY">
<path>NDStdArray.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
</action>
<action type="OPEN_DISPLAY">
<path />
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
</action>
<action type="OPEN_DISPLAY">
<path />
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
</action>
<action type="OPEN_DISPLAY">
<path />
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
</action>
<action type="OPEN_DISPLAY">
<path />
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
</action>
<action type="OPEN_DISPLAY">
<path />
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
</action>
<action type="OPEN_DISPLAY">
<path />
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
</action>
<action type="OPEN_DISPLAY">
<path />
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
</action>
<action type="OPEN_DISPLAY">
<path />
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
</action>
</actions>
<x>167</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
</display>
@@ -0,0 +1,602 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>350</width>
<scripts />
<show_ruler>true</show_ruler>
<height>165</height>
<show_edit_range>true</show_edit_range>
<name>Display</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Shutter</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>105</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>21</height>
<border_width>1</border_width>
<name>Label</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>false</transparent>
<y>0</y>
<actions hook="false" />
<tooltip />
<x>114</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.combo" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>23</height>
<name>Combo Box_1</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<pv_name>${P}${R}ShutterMode</pv_name>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<enabled>true</enabled>
<widget_type>Combo Box</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>120</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<items_from_pv>true</items_from_pv>
<actions hook="false" />
<y>34</y>
<x>173</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Shutter Mode</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>150</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_8</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>34</y>
<actions hook="false" />
<tooltip />
<x>16</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Status: Det</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>120</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_12</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>58</y>
<actions hook="false" />
<tooltip />
<x>6</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_11</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}ShutterStatus_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>60</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>59</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>132</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>EPICS</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>50</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_3</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>58</y>
<actions hook="false" />
<tooltip />
<x>215</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_1</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}ShutterStatusEPICS_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>60</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>59</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>272</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.ActionButton" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Action Button</name>
<pv_name>${P}${R}ShutterControl</pv_name>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Action Button</widget_type>
<enabled>false</enabled>
<text>Open</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>59</width>
<push_action_index>0</push_action_index>
<border_style>0</border_style>
<image />
<toggle_button>false</toggle_button>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>77</y>
<actions hook="false">
<action type="WRITE_PV">
<pv_name>$(pv_name)</pv_name>
<value>Open</value>
</action>
</actions>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>149</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.ActionButton" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Action Button_1</name>
<pv_name>${P}${R}ShutterControl</pv_name>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Action Button</widget_type>
<enabled>true</enabled>
<text>Close</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>59</width>
<push_action_index>0</push_action_index>
<border_style>0</border_style>
<image />
<toggle_button>false</toggle_button>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>83</y>
<actions hook="false">
<action type="WRITE_PV">
<pv_name>$(pv_name)</pv_name>
<value>Close</value>
</action>
</actions>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>240</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Open/Close</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>100</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_1</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>83</y>
<actions hook="false" />
<tooltip />
<x>66</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Delay: Open</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>110</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_11</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>108</y>
<actions hook="false" />
<tooltip />
<x>15</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_4</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}ShutterOpenDelay</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>60</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>108</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>132</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Close</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>50</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_6</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>108</y>
<actions hook="false" />
<tooltip />
<x>215</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_1</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}ShutterCloseDelay</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>60</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>108</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>272</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.combo" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>23</height>
<name>Combo Box_1</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<pv_name>${P}${R}TriggerMode</pv_name>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<enabled>true</enabled>
<widget_type>Combo Box</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>70</width>
<border_style>0</border_style>
<items />
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<items_from_pv>false</items_from_pv>
<actions hook="false">
<action type="OPEN_DISPLAY">
<path>ADEpicsShutter.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
</action>
</actions>
<y>136</y>
<x>205</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>EPICS Shutter Setup</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>190</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_7</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>136</y>
<actions hook="false" />
<tooltip />
<x>6</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
</display>
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,695 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>400</width>
<scripts />
<show_ruler>true</show_ruler>
<height>600</height>
<show_edit_range>true</show_edit_range>
<name>ADTop</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>AreaDetector</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="18" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>331</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>49</height>
<border_width>1</border_width>
<name>Label</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>false</transparent>
<y>0</y>
<actions hook="false" />
<tooltip />
<x>30</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Simulator Drivers</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_1</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>-65</y>
<actions hook="false" />
<tooltip />
<x>-143</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Simulator Drivers</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_2</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>66</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Simulator Plug-ins</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_3</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>96</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Prosilica Drivers</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_4</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>126</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Prosilica Plug-ins</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_5</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>156</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>ADSC Drivers</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_6</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>186</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>ADSC Plug-ins</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_7</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>216</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Pilatus Drivers</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_8</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>246</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Pilatus Plug-ins</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_9</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>276</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>MarCCD Drivers</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_10</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>306</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>MarCCD Plug-ins</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_11</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>336</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Roper Drivers</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_12</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>366</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Roper Plug-ins</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_13</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>396</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Firewire Drivers</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_14</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>426</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Firewire Plug-ins</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_15</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>456</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Mar345 Drivers</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_16</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>486</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Mar345 Plug-ins</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="12" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>199</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label_17</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>false</transparent>
<y>516</y>
<actions hook="false" />
<tooltip />
<x>18</x>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.MenuButton" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<actions_from_pv>false</actions_from_pv>
<scripts />
<height>25</height>
<name>Menu Button</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<enabled>true</enabled>
<widget_type>Menu Button</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="8" style="0" />
</font>
<width>127</width>
<border_style>6</border_style>
<label>Simulator Drivers</label>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>66</y>
<actions hook="false">
<action type="OPEN_DISPLAY">
<path>/gov.aps.anl.gov.synApps.areaDetector/templates/ADBase.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>13SIM1:</P>
<CC>CC1:</CC>
<JPEG>JPEG1:</JPEG>
<R>cam1:</R>
<TIFF>TIFF1:</TIFF>
<NEXUS>Nexus1:</NEXUS>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
<action type="OPEN_DISPLAY">
<path>/gov.aps.anl.gov.synApps.areaDetector/templates/simDetector.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>13SIM1:</P>
<CC>CC1:</CC>
<JPEG>JPEG1:</JPEG>
<R>cam1:</R>
<TIFF>TIFF1:</TIFF>
<NEXUS>Nexus1:</NEXUS>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
<action type="OPEN_DISPLAY">
<path>/gov.aps.anl.gov.synApps.areaDetector/templates/simDetector.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>13SIM2:</P>
<CC>CC1:</CC>
<R>cam1:</R>
<JPEG>JPEG1:</JPEG>
<NEXUS>Nexus1:</NEXUS>
<TIFF>TIFF1:</TIFF>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
<action type="OPEN_DISPLAY">
<path>/gov.aps.anl.gov.synApps.areaDetector/templates/simDetector.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>13SIM2:</P>
<CC>CC1:</CC>
<R>cam1:</R>
<JPEG>JPEG1:</JPEG>
<NEXUS>Nexus1:</NEXUS>
<TIFF>TIFF1:</TIFF>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
</actions>
<x>234</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
</display>
@@ -0,0 +1,180 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>500</width>
<scripts />
<show_ruler>true</show_ruler>
<height>150</height>
<show_edit_range>true</show_edit_range>
<name>Display</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Controls for ${P}${R}</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>331</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<border_width>1</border_width>
<name>Label</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>6</y>
<actions hook="false" />
<tooltip />
<x>48</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.ActionButton" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>43</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Action Button</name>
<pv_name>${P}${R}Acquire</pv_name>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Action Button</widget_type>
<enabled>true</enabled>
<text>Start</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>145</width>
<push_action_index>0</push_action_index>
<border_style>0</border_style>
<image />
<toggle_button>false</toggle_button>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>66</y>
<actions hook="false">
<action type="WRITE_PV">
<pv_name>$(pv_name)</pv_name>
<value>1</value>
</action>
</actions>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>36</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.ActionButton" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>43</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Action Button_1</name>
<pv_name>${P}${R}Acquire</pv_name>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Action Button</widget_type>
<enabled>true</enabled>
<text>Stop</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>145</width>
<push_action_index>0</push_action_index>
<border_style>0</border_style>
<image />
<toggle_button>false</toggle_button>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>66</y>
<actions hook="false">
<action type="WRITE_PV">
<pv_name>$(pv_name)</pv_name>
<value>1</value>
</action>
</actions>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>192</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>25</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}Acquire</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>157</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>36</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>132</x>
</widget>
</display>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,775 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>675</width>
<scripts />
<show_ruler>true</show_ruler>
<height>120</height>
<show_edit_range>true</show_edit_range>
<name>NDFile_Control ${P}${R}</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.ActionButton" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Action Button</name>
<pv_name>${P}${R}WriteFile</pv_name>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Action Button</widget_type>
<enabled>true</enabled>
<text>Save</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>60</width>
<push_action_index>0</push_action_index>
<border_style>0</border_style>
<image />
<toggle_button>false</toggle_button>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>25</y>
<actions hook="false">
<action type="WRITE_PV">
<pv_name>$(pv_name)</pv_name>
<value>Save</value>
</action>
</actions>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Save File</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>90</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_1</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>25</y>
<actions hook="false" />
<tooltip />
<x>67</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.ActionButton" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Action Button_1</name>
<pv_name>${P}${R}ReadFile</pv_name>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Action Button</widget_type>
<enabled>true</enabled>
<text>Read</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>60</width>
<push_action_index>0</push_action_index>
<border_style>0</border_style>
<image />
<toggle_button>false</toggle_button>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>25</y>
<actions hook="false">
<action type="WRITE_PV">
<pv_name>$(pv_name)</pv_name>
<value>Read</value>
</action>
</actions>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>341</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Read File</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>90</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_1</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>25</y>
<actions hook="false" />
<tooltip />
<x>246</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.ActionButton" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Action Button_2</name>
<pv_name>${P}${R}Capture</pv_name>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Action Button</widget_type>
<enabled>true</enabled>
<text>Start</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>59</width>
<push_action_index>0</push_action_index>
<border_style>0</border_style>
<image />
<toggle_button>false</toggle_button>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>95</y>
<actions hook="false">
<action type="WRITE_PV">
<pv_name>$(pv_name)</pv_name>
<value>Acquire</value>
</action>
</actions>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.ActionButton" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Action Button_3</name>
<pv_name>${P}${R}Capture</pv_name>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Action Button</widget_type>
<enabled>true</enabled>
<text>Stop</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>59</width>
<push_action_index>0</push_action_index>
<border_style>0</border_style>
<image />
<toggle_button>false</toggle_button>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>95</y>
<actions hook="false">
<action type="WRITE_PV">
<pv_name>$(pv_name)</pv_name>
<value>Done</value>
</action>
</actions>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>233</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Capture</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>70</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_2</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>95</y>
<actions hook="false" />
<tooltip />
<x>86</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}Capture_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="128" blue="0" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>100</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>73</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.combo" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>23</height>
<name>Combo Box</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<pv_name>${P}${R}FileWriteMode</pv_name>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<enabled>true</enabled>
<widget_type>Combo Box</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>80</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<items_from_pv>true</items_from_pv>
<actions hook="false" />
<y>51</y>
<x>166</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Write Mode</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>140</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_7</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>51</y>
<actions hook="false" />
<tooltip />
<x>17</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_7</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}FileWriteMode_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>70</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>52</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>254</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>#Capture</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>90</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_5</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>51</y>
<actions hook="false" />
<tooltip />
<x>329</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_3</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}NumCapture</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>59</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>50</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>428</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_5</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}NumCapture_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>79</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>52</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>493</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_3</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}NumCaptured_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>79</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>52</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>588</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_4</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}WriteFile_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="128" blue="0" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>100</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_5</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}ReadFile_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="128" blue="0" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>100</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>341</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.combo" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>23</height>
<name>Combo Box_1</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<pv_name>${P}${R}AutoSave</pv_name>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<enabled>true</enabled>
<widget_type>Combo Box</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>64</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<items_from_pv>true</items_from_pv>
<actions hook="false" />
<y>25</y>
<x>511</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Auto Save</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>90</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_5</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>25</y>
<actions hook="false" />
<tooltip />
<x>417</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_6</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}AutoSave_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>80</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>25</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>580</x>
</widget>
</display>
@@ -0,0 +1,660 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>675</width>
<scripts />
<show_ruler>true</show_ruler>
<height>230</height>
<show_edit_range>true</show_edit_range>
<name>NDFile_NameSetup ${P}${R}</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input</name>
<format_type>4</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}FilePath</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>500</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>31</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Array Port</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>90</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_2</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>31</y>
<actions hook="false" />
<tooltip />
<x>67</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_2</name>
<format_type>4</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}FilePath_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>500</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>8</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_1</name>
<format_type>4</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}FilePath</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>500</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>79</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>File Name</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>90</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_1</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>79</y>
<actions hook="false" />
<tooltip />
<x>67</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_1</name>
<format_type>4</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}FileName_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>500</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>56</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_2</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}FileNumber</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>60</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>104</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Next File #</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>90</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_2</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>105</y>
<actions hook="false" />
<tooltip />
<x>67</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_2</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}FileNumber_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>80</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>104</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>231</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.combo" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>23</height>
<name>Combo Box_1</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<pv_name>${P}${R}AutoIncrement</pv_name>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<enabled>true</enabled>
<widget_type>Combo Box</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>64</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<items_from_pv>true</items_from_pv>
<actions hook="false" />
<y>131</y>
<x>166</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Auto Increment</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>140</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_6</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>131</y>
<actions hook="false" />
<tooltip />
<x>17</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_6</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}AutoIncrement_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>80</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>132</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>235</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_3</name>
<format_type>4</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}FileTemplate</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>160</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>179</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Filename Format</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>150</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_4</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>179</y>
<actions hook="false" />
<tooltip />
<x>7</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_4</name>
<format_type>4</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}FileTemplate_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>160</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>156</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Last Filename</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>150</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_5</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>204</y>
<actions hook="false" />
<tooltip />
<x>7</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_5</name>
<format_type>4</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}FullFileName_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>500</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>205</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>166</x>
</widget>
</display>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,579 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>230</width>
<scripts />
<show_ruler>true</show_ruler>
<height>230</height>
<show_edit_range>true</show_edit_range>
<name>Display</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Histogram</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>100</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>false</transparent>
<y>2</y>
<actions hook="false" />
<tooltip />
<x>65</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.combo" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>23</height>
<name>Combo Box_1</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<pv_name>${P}${R}${N}ComputeHistogram</pv_name>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<enabled>true</enabled>
<widget_type>Combo Box</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>62</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<items_from_pv>true</items_from_pv>
<actions hook="false" />
<y>52</y>
<x>132</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Compute &#xD;
Statistics?</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>110</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>31</height>
<border_width>1</border_width>
<name>Label_6</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>48</y>
<actions hook="false" />
<tooltip />
<x>6</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_6</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}ComputeHistogram_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>63</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>30</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>130</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_2</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}HistSize_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>61</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>73</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>132</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Size</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>70</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_4</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>93</y>
<actions hook="false" />
<tooltip />
<x>49</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}${N}HistSize</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>60</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>93</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>132</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_4</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}HistMin_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>61</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>118</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>132</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Minimum</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>82</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_5</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>138</y>
<actions hook="false" />
<tooltip />
<x>37</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_2</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}${N}HistMin</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>60</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>138</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>132</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_3</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}HistMax_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>61</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>163</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>132</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Maximum</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>82</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_4</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>183</y>
<actions hook="false" />
<tooltip />
<x>37</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_4</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}${N}HistMax</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>60</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>183</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>132</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Entropy</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>82</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_5</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>208</y>
<actions hook="false" />
<tooltip />
<x>37</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_4</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}HistEntropy_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>61</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>209</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>132</x>
</widget>
</display>
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,528 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>360</width>
<scripts />
<show_ruler>true</show_ruler>
<height>160</height>
<show_edit_range>true</show_edit_range>
<name>Display</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Statistics</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>107</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>false</transparent>
<y>6</y>
<actions hook="false" />
<tooltip />
<x>126</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.combo" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>23</height>
<name>Combo Box_1</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<pv_name>${P}${R}${N}ComputeStatistics</pv_name>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<enabled>true</enabled>
<widget_type>Combo Box</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>62</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<items_from_pv>true</items_from_pv>
<actions hook="false" />
<y>38</y>
<x>208</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Compute Statistics</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>185</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_6</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>37</y>
<actions hook="false" />
<tooltip />
<x>8</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_6</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}ComputeStatistics_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>63</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>38</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>277</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Minimum</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>72</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_12</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>69</y>
<actions hook="false" />
<tooltip />
<x>10</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_12</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}MinValue_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>82</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>70</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>94</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Maximum</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>72</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_3</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>94</y>
<actions hook="false" />
<tooltip />
<x>10</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_2</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}MaxValue_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>82</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>95</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>94</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Mean</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>45</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_4</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>69</y>
<actions hook="false" />
<tooltip />
<x>190</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_3</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}MeanValue_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>79</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>69</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>245</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Total</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>45</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_5</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>94</y>
<actions hook="false" />
<tooltip />
<x>190</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_4</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}Total_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>79</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>94</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>245</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Net</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>45</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_6</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>2</horizontal_alignment>
<transparent>true</transparent>
<y>120</y>
<actions hook="false" />
<tooltip />
<x>190</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_5</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}Net_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>79</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>0</horizontal_alignment>
<y>120</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>245</x>
</widget>
</display>
@@ -0,0 +1,591 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>995</width>
<scripts />
<show_ruler>true</show_ruler>
<height>25</height>
<show_edit_range>true</show_edit_range>
<name>Display</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.MenuButton" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<actions_from_pv>false</actions_from_pv>
<scripts />
<height>20</height>
<name>Menu Button</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<enabled>true</enabled>
<widget_type>Menu Button</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="8" style="0" />
</font>
<width>70</width>
<border_style>6</border_style>
<label />
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>3</y>
<actions hook="false">
<action type="OPEN_DISPLAY">
<path>mca.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
<description />
</action>
<action type="OPEN_DISPLAY">
<path>mca.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
<description />
</action>
<action type="OPEN_DISPLAY">
<path>NDROIN.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<replace>true</replace>
<description />
</action>
</actions>
<x>918</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_3</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}Total_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>75</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>832</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_1</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}Total_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>75</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>750</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_2</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}Total_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>75</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>666</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>18</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update_11</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>true</transparent>
<pv_name>${P}${R}${N}Total_RBV</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="255" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>75</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>582</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_5</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}${N}BgdWidth</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>54</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>522</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_4</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}${N}SizeY</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>54</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>462</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_3</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}${N}MinY</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>54</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>402</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_2</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}${N}SizeX</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>54</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>342</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input_1</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}${N}MinX</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>54</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>282</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.TextInput" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Input</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}${N}${A}Name</pv_name>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Input</widget_type>
<enabled>true</enabled>
<text />
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>73</width>
<border_style>3</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>3</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>204</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.combo" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>23</height>
<name>Combo Box_1</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<pv_name>${P}${R}${N}ComputeStatistics</pv_name>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<enabled>true</enabled>
<widget_type>Combo Box</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>62</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<items_from_pv>true</items_from_pv>
<actions hook="false" />
<y>3</y>
<x>138</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.combo" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<scripts />
<height>23</height>
<name>Combo Box_1</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<pv_name>${P}${R}${N}Use</pv_name>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="0" green="255" blue="255" />
</background_color>
<enabled>true</enabled>
<widget_type>Combo Box</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>62</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<items_from_pv>true</items_from_pv>
<actions hook="false" />
<y>3</y>
<x>73</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>${R}${N}</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="8" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>74</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>20</height>
<border_width>1</border_width>
<name>Label_12</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>3</y>
<actions hook="false" />
<tooltip />
<x>0</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
</display>
@@ -0,0 +1,545 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>995</width>
<scripts />
<show_ruler>true</show_ruler>
<height>50</height>
<show_edit_range>true</show_edit_range>
<name>Display</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>ROI</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>3</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Use</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_2</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>72</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Compute&#xD;
Stats</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>58</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>31</height>
<border_width>1</border_width>
<name>Label_3</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>12</y>
<actions hook="false" />
<tooltip />
<x>137</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Name</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_4</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>209</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Min X</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_5</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>277</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Size X</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_6</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>337</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Min Y</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_7</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>397</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Size Y</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_8</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>457</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Bkgd&#xD;
Width</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>58</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>31</height>
<border_width>1</border_width>
<name>Label_9</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>12</y>
<actions hook="false" />
<tooltip />
<x>515</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Total</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_10</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>588</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Net</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_11</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>672</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Min</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_12</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>756</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Max</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_13</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>838</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>More</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_14</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>24</y>
<actions hook="false" />
<tooltip />
<x>921</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Rectangle" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<fill_level>0.0</fill_level>
<line_color>
<color red="128" green="0" blue="255" />
</line_color>
<scripts />
<height>1</height>
<anti_alias>true</anti_alias>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Rectangle</name>
<transparent>false</transparent>
<pv_name />
<background_color>
<color red="0" green="0" blue="0" />
</background_color>
<foreground_color>
<color red="255" green="0" blue="0" />
</foreground_color>
<widget_type>Rectangle</widget_type>
<enabled>true</enabled>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<line_style>0</line_style>
<width>305</width>
<border_style>0</border_style>
<border_width>1</border_width>
<line_width>0</line_width>
<horizontal_fill>false</horizontal_fill>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>20</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>586</x>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Counts</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="9" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>53</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>19</height>
<border_width>1</border_width>
<name>Label_15</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>true</transparent>
<y>-1</y>
<actions hook="false" />
<tooltip />
<x>693</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
</display>
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,187 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>800</width>
<scripts />
<show_ruler>true</show_ruler>
<height>600</height>
<show_edit_range>true</show_edit_range>
<name>johnTop</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.MenuButton" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<actions_from_pv>false</actions_from_pv>
<scripts />
<height>25</height>
<name>Menu Button</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<enabled>true</enabled>
<widget_type>Menu Button</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="8" style="0" />
</font>
<width>127</width>
<border_style>6</border_style>
<label>Simulator Drivers</label>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>66</y>
<actions hook="false">
<action type="OPEN_DISPLAY">
<path>/gov.anl.aps.synApps.areaDetector/templates/ADBase.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>simTest:</P>
<CC>CC1:</CC>
<JPEG>JPEG1:</JPEG>
<R>cam1:</R>
<TIFF>TIFF1:</TIFF>
<NEXUS>Nexus1:</NEXUS>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
<description />
</action>
<action type="OPEN_DISPLAY">
<path>/gov.anl.aps.synApps.areaDetector/templates/simDetector.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>simTest:</P>
<CC>CC1:</CC>
<JPEG>JPEG1:</JPEG>
<R>cam1:</R>
<TIFF>TIFF1:</TIFF>
<NEXUS>Nexus1:</NEXUS>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
<description />
</action>
<action type="OPEN_DISPLAY">
<path>/gov.anl.aps.synApps.areaDetector/templates/ADBase.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>13SIM2:</P>
<CC>CC1:</CC>
<JPEG>JPEG1:</JPEG>
<R>cam1:</R>
<TIFF>TIFF1:</TIFF>
<NEXUS>Nexus1:</NEXUS>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
<description />
</action>
<action type="OPEN_DISPLAY">
<path>/gov.anl.aps.synApps.areaDetector/templates/simDetector.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>13SIM2:</P>
<CC>CC1:</CC>
<JPEG>JPEG1:</JPEG>
<R>cam1:</R>
<TIFF>TIFF1:</TIFF>
<NEXUS>Nexus1:</NEXUS>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
<description />
</action>
</actions>
<x>126</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.MenuButton" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<actions_from_pv>false</actions_from_pv>
<scripts />
<height>25</height>
<name>Menu Button_1</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<enabled>true</enabled>
<widget_type>Menu Button</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="8" style="0" />
</font>
<width>187</width>
<border_style>6</border_style>
<label>Plugins</label>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>66</y>
<actions hook="false">
<action type="OPEN_DISPLAY">
<path>NDStdArray.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>simTest:</P>
<R>image1:</R>
</macros>
<replace>false</replace>
<description>Image1</description>
</action>
<action type="OPEN_DISPLAY">
<path>NDROI.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>simTest:</P>
<R>ROI1:</R>
</macros>
<replace>false</replace>
<description>ROI1</description>
</action>
<action type="OPEN_DISPLAY">
<path>NDFileNexus.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>simTest:</P>
<R>Nexus1:</R>
</macros>
<replace>false</replace>
<description>Nexus1</description>
</action>
</actions>
<x>342</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
</display>
@@ -0,0 +1,213 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>800</width>
<scripts />
<show_ruler>true</show_ruler>
<height>600</height>
<show_edit_range>true</show_edit_range>
<name>Display</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.MenuButton" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<actions_from_pv>false</actions_from_pv>
<scripts />
<height>25</height>
<name>Menu Button</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<enabled>true</enabled>
<widget_type>Menu Button</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="8" style="0" />
</font>
<width>127</width>
<border_style>6</border_style>
<label>Simulator Drivers</label>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>66</y>
<actions hook="false">
<action type="OPEN_DISPLAY">
<path>/AreaDetector/widgets/ADBase.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>FCCD1:</P>
<CC>CC1:</CC>
<R>cam1:</R>
<JPEG>JPEG1:</JPEG>
<NEXUS>Nexus1:</NEXUS>
<TIFF>TIFF1:</TIFF>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
<action type="OPEN_DISPLAY">
<path>/AreaDetector/widgets/simDetector.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>simTest:</P>
<CC>CC1:</CC>
<JPEG>JPEG1:</JPEG>
<R>cam1:</R>
<TIFF>TIFF1:</TIFF>
<NEXUS>Nexus1:</NEXUS>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
<action type="OPEN_DISPLAY">
<path>/AreaDetector/widgets/ADBase.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>13SIM2:</P>
<CC>CC1:</CC>
<JPEG>JPEG1:</JPEG>
<R>cam1:</R>
<TIFF>TIFF1:</TIFF>
<NEXUS>Nexus1:</NEXUS>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
<action type="OPEN_DISPLAY">
<path>/AreaDetector/widgets/simDetector.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>13SIM2:</P>
<CC>CC1:</CC>
<JPEG>JPEG1:</JPEG>
<R>cam1:</R>
<TIFF>TIFF1:</TIFF>
<NEXUS>Nexus1:</NEXUS>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
</actions>
<x>126</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
<widget typeId="org.csstudio.opibuilder.widgets.MenuButton" version="1.0">
<border_alarm_sensitive>false</border_alarm_sensitive>
<visible>true</visible>
<actions_from_pv>false</actions_from_pv>
<scripts />
<height>25</height>
<name>Menu Button_1</name>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<enabled>true</enabled>
<widget_type>Menu Button</widget_type>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<font>
<fontdata fontName="Arial" height="8" style="0" />
</font>
<width>127</width>
<border_style>6</border_style>
<label>Simulator Plugins</label>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<y>66</y>
<actions hook="false">
<action type="OPEN_DISPLAY">
<path>/AreaDetector/widgets/ADImage.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>FCCD1:</P>
<CC>CC1:</CC>
<JPEG>JPEG1:</JPEG>
<R>cam1:</R>
<TIFF>TIFF1:</TIFF>
<NEXUS>Nexus1:</NEXUS>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
<action type="OPEN_DISPLAY">
<path>/AreaDetector/widgets/simDetector.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>simTest:</P>
<CC>CC1:</CC>
<R>cam1:</R>
<JPEG>JPEG1:</JPEG>
<NEXUS>Nexus1:</NEXUS>
<TIFF>TIFF1:</TIFF>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
<action type="OPEN_DISPLAY">
<path>/AreaDetector/widgets/ADBase.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>13SIM2:</P>
<CC>CC1:</CC>
<R>cam1:</R>
<JPEG>JPEG1:</JPEG>
<NEXUS>Nexus1:</NEXUS>
<TIFF>TIFF1:</TIFF>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
<action type="OPEN_DISPLAY">
<path>/AreaDetector/widgets/simDetector.opi</path>
<macros>
<include_parent_macros>true</include_parent_macros>
<P>13SIM2:</P>
<CC>CC1:</CC>
<R>cam1:</R>
<JPEG>JPEG1:</JPEG>
<NEXUS>Nexus1:</NEXUS>
<TIFF>TIFF1:</TIFF>
<I>image1:</I>
<ROI>ROI1:</ROI>
</macros>
<replace>false</replace>
</action>
</actions>
<x>294</x>
<tooltip>$(pv_name)
$(pv_value)</tooltip>
</widget>
</display>
@@ -0,0 +1,57 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>800</width>
<scripts />
<show_ruler>true</show_ruler>
<height>600</height>
<show_edit_range>true</show_edit_range>
<name>simDetector</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.Label" version="1.0">
<widget_type>Label</widget_type>
<enabled>true</enabled>
<text>Simulation Detector - ${P}${R}</text>
<visible>true</visible>
<font>
<fontdata fontName="Arial" height="16" style="1" />
</font>
<vertical_alignment>1</vertical_alignment>
<width>715</width>
<border_style>0</border_style>
<auto_size>false</auto_size>
<scripts />
<height>37</height>
<border_width>1</border_width>
<name>Label</name>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<transparent>false</transparent>
<y>12</y>
<actions hook="false" />
<tooltip />
<x>36</x>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
</widget>
</display>
@@ -0,0 +1,66 @@
<?xml version="1.0" encoding="UTF-8"?>
<display typeId="org.csstudio.opibuilder.Display" version="1.0">
<widget_type>Display</widget_type>
<macros>
<include_parent_macros>true</include_parent_macros>
</macros>
<width>800</width>
<scripts />
<show_ruler>true</show_ruler>
<height>600</height>
<show_edit_range>true</show_edit_range>
<name>Display</name>
<grid_space>6</grid_space>
<snap_to_geometry>true</snap_to_geometry>
<show_grid>true</show_grid>
<y>0</y>
<actions hook="false" />
<foreground_color>
<color red="192" green="192" blue="192" />
</foreground_color>
<background_color>
<color red="240" green="240" blue="240" />
</background_color>
<x>0</x>
<widget typeId="org.csstudio.opibuilder.widgets.TextUpdate" version="1.0">
<border_alarm_sensitive>true</border_alarm_sensitive>
<visible>true</visible>
<vertical_alignment>1</vertical_alignment>
<show_units>true</show_units>
<auto_size>false</auto_size>
<scripts />
<height>55</height>
<forecolor_alarm_sensitive>false</forecolor_alarm_sensitive>
<name>Text Update</name>
<format_type>0</format_type>
<precision_from_pv>true</precision_from_pv>
<transparent>false</transparent>
<pv_name>${P}${R}</pv_name>
<background_color>
<color red="255" green="255" blue="255" />
</background_color>
<foreground_color>
<color red="0" green="0" blue="0" />
</foreground_color>
<widget_type>Text Update</widget_type>
<enabled>true</enabled>
<text>######</text>
<backcolor_alarm_sensitive>false</backcolor_alarm_sensitive>
<precision>0</precision>
<font>
<fontdata fontName="Arial" height="9" style="0" />
</font>
<width>313</width>
<border_style>0</border_style>
<border_width>1</border_width>
<border_color>
<color red="0" green="128" blue="255" />
</border_color>
<horizontal_alignment>1</horizontal_alignment>
<y>36</y>
<actions hook="false" />
<tooltip>$(pv_name)
$(pv_value)</tooltip>
<x>246</x>
</widget>
</display>