Skip to content

Commit 72c0434

Browse files
authored
Regenerate pvi screens with dls_class (#184)
2 parents 71da887 + 59476bd commit 72c0434

20 files changed

+34849
-5846
lines changed

example-synoptic/b23-services/synoptic/techui-support/bob/ADAravis/ADAravis_detail.bob

Lines changed: 3594 additions & 246 deletions
Large diffs are not rendered by default.

example-synoptic/b23-services/synoptic/techui-support/bob/ADAravis/ADAravis_summary.bob

Lines changed: 252 additions & 110 deletions
Large diffs are not rendered by default.

example-synoptic/b23-services/synoptic/techui-support/bob/ADAravis/NDFileHDF5.pvi.bob

Lines changed: 8156 additions & 1663 deletions
Large diffs are not rendered by default.

example-synoptic/b23-services/synoptic/techui-support/bob/ADAravis/NDPluginPva.pvi.bob

Lines changed: 2564 additions & 529 deletions
Large diffs are not rendered by default.

example-synoptic/b23-services/synoptic/techui-support/bob/ADAravis/NDPluginROI.pvi.bob

Lines changed: 3746 additions & 677 deletions
Large diffs are not rendered by default.

example-synoptic/b23-services/synoptic/techui-support/bob/ADAravis/NDPluginROIStat.pvi.bob

Lines changed: 3758 additions & 0 deletions
Large diffs are not rendered by default.

example-synoptic/b23-services/synoptic/techui-support/bob/ADAravis/NDPluginStats.pvi.bob

Lines changed: 5780 additions & 1207 deletions
Large diffs are not rendered by default.

example-synoptic/b23-services/synoptic/techui-support/bob/ADAravis/ProfileCursorGraphs.bob

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<!--Saved on 2025-12-04 10:35:46 by uns32131-->
2+
<!--Saved on 2025-12-12 12:01:56 by sfx44126-->
33
<display version="2.0.0">
44
<name>Profile Cursor</name>
5+
<y use_class="true">0</y>
56
<width>620</width>
67
<height>594</height>
7-
<background_color>
8+
<background_color use_class="true">
89
<color name="Read_Background" red="240" green="240" blue="240">
910
</color>
1011
</background_color>
@@ -16,6 +17,10 @@
1617
<name>X/Y Plot</name>
1718
<width>620</width>
1819
<height>295</height>
20+
<foreground_color use_class="true">
21+
<color red="29" green="41" blue="69">
22+
</color>
23+
</foreground_color>
1924
<x_axis>
2025
<title>Pixels</title>
2126
<autoscale>false</autoscale>
@@ -82,6 +87,10 @@
8287
<y>299</y>
8388
<width>620</width>
8489
<height>295</height>
90+
<foreground_color use_class="true">
91+
<color red="29" green="41" blue="69">
92+
</color>
93+
</foreground_color>
8594
<x_axis>
8695
<title>Pixels</title>
8796
<autoscale>false</autoscale>
Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Named colors
2+
#
3+
# Format:
4+
# NameOfColor = red, green, blue [, alpha ] | PreviouslyDefinedNameOfColor
5+
# with values in 0..255 range.
6+
#
7+
# Whenever possible, use named colors in displays
8+
# instead of arbitrary red/green/blue values.
9+
10+
# ------- Predefined colors ----------------
11+
# May be overridden in here
12+
13+
# Alarm related
14+
OK = 0, 255, 0
15+
MINOR = 255, 128, 0
16+
MAJOR = 255, 0, 0
17+
INVALID = 255, 0, 255
18+
DISCONNECTED = 200, 0, 200, 200
19+
20+
# Default color for text
21+
Text=0,0,0
22+
23+
# Default color for 'active' text that's being edited
24+
#ActiveText=184, 195, 223
25+
ActiveText=255, 255, 255
26+
27+
# Display background
28+
Background = 255, 255, 255
29+
30+
# .. for widgets that read/write a value
31+
Read_Background = 240, 240, 240
32+
Write_Background = 128, 255, 255
33+
34+
# .. for buttons
35+
Button_Background = 210, 210, 210
36+
37+
# ------- Examples for additional colors ----------------
38+
# Also show ideas for site-specific guidelines that
39+
# are required to make sense of the color names.
40+
41+
# Styling
42+
Header_Background=77,77,77
43+
Header_ForeGround=255,255,255
44+
45+
# Use alarm colors only when you mean to indicate an alarm.
46+
# Avoid using 'Red' which might suggest an alarm
47+
# just because you like the look of red.
48+
# STOP looks similar to red=MAJOR alarm, and is allowed
49+
# for 'STOP' type of buttons
50+
STOP = MAJOR
51+
52+
# Attention looks similar to a MINOR alarm.
53+
# It is meant to draw attention
54+
Attention = 255,160,0
55+
56+
# The colors for On/Off, Open/Close etc,.
57+
# "On" does not necessarily mean 'device is turned on', but
58+
# stands for 'indicator is on, active, illuminated'.
59+
# For a 'motor is at target' type indicator, the motor would
60+
# actually be 'off' while the indicator uses the 'On' color.
61+
#
62+
# If one of the states represents an alarm, the corresponding alarm color may be used.
63+
# For example, a limit switch indicator could use colors "Off" and "MAJOR":
64+
# Off when idle, MAJOR when the limit switch was hit and this is an abnormal situation
65+
# that requires attention.
66+
On = OK
67+
Off = 237,237,237

0 commit comments

Comments
 (0)