Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Large diffs are not rendered by default.

Large diffs are not rendered by default.

9,819 changes: 8,156 additions & 1,663 deletions example-synoptic/b23-services/synoptic/techui-support/bob/ADAravis/NDFileHDF5.pvi.bob

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--Saved on 2025-12-04 10:35:46 by uns32131-->
<!--Saved on 2025-12-12 12:01:56 by sfx44126-->
<display version="2.0.0">
<name>Profile Cursor</name>
<y use_class="true">0</y>
<width>620</width>
<height>594</height>
<background_color>
<background_color use_class="true">
<color name="Read_Background" red="240" green="240" blue="240">
</color>
</background_color>
Expand All @@ -16,6 +17,10 @@
<name>X/Y Plot</name>
<width>620</width>
<height>295</height>
<foreground_color use_class="true">
<color red="29" green="41" blue="69">
</color>
</foreground_color>
<x_axis>
<title>Pixels</title>
<autoscale>false</autoscale>
Expand Down Expand Up @@ -82,6 +87,10 @@
<y>299</y>
<width>620</width>
<height>295</height>
<foreground_color use_class="true">
<color red="29" green="41" blue="69">
</color>
</foreground_color>
<x_axis>
<title>Pixels</title>
<autoscale>false</autoscale>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# Named colors
#
# Format:
# NameOfColor = red, green, blue [, alpha ] | PreviouslyDefinedNameOfColor
# with values in 0..255 range.
#
# Whenever possible, use named colors in displays
# instead of arbitrary red/green/blue values.

# ------- Predefined colors ----------------
# May be overridden in here

# Alarm related
OK = 0, 255, 0
MINOR = 255, 128, 0
MAJOR = 255, 0, 0
INVALID = 255, 0, 255
DISCONNECTED = 200, 0, 200, 200

# Default color for text
Text=0,0,0

# Default color for 'active' text that's being edited
#ActiveText=184, 195, 223
ActiveText=255, 255, 255

# Display background
Background = 255, 255, 255

# .. for widgets that read/write a value
Read_Background = 240, 240, 240
Write_Background = 128, 255, 255

# .. for buttons
Button_Background = 210, 210, 210

# ------- Examples for additional colors ----------------
# Also show ideas for site-specific guidelines that
# are required to make sense of the color names.

# Styling
Header_Background=77,77,77
Header_ForeGround=255,255,255

# Use alarm colors only when you mean to indicate an alarm.
# Avoid using 'Red' which might suggest an alarm
# just because you like the look of red.
# STOP looks similar to red=MAJOR alarm, and is allowed
# for 'STOP' type of buttons
STOP = MAJOR

# Attention looks similar to a MINOR alarm.
# It is meant to draw attention
Attention = 255,160,0

# The colors for On/Off, Open/Close etc,.
# "On" does not necessarily mean 'device is turned on', but
# stands for 'indicator is on, active, illuminated'.
# For a 'motor is at target' type indicator, the motor would
# actually be 'off' while the indicator uses the 'On' color.
#
# If one of the states represents an alarm, the corresponding alarm color may be used.
# For example, a limit switch indicator could use colors "Off" and "MAJOR":
# Off when idle, MAJOR when the limit switch was hit and this is an abnormal situation
# that requires attention.
On = OK
Off = 237,237,237
Loading