Interface WsjtxHighlightCallsign

The server may send this message at any time. The message specifies the background and foreground color that will be used to highlight the specified callsign in the decoded messages printed in the Band Activity panel.

See WSJT-X source.

interface WsjtxHighlightCallsign {
    backgroundColor: string;
    callsign: string;
    foregroundColor: string;
    highlightLast: boolean;
    id: string;
    reset: boolean;
}

Properties

backgroundColor: string

Background color. All CSS Color Module Level 4 formats should be valid. See https://www.w3.org/TR/css-color-4/

callsign: string

Which callsign to highlight

foregroundColor: string

Foreground color. All CSS Color Module Level 4 formats should be valid. See https://www.w3.org/TR/css-color-4/

highlightLast: boolean

The "Highlight last" field allows the sender to request that all instances of "Callsign" in the last period only, instead of all instances in all periods, be highlighted.

id: string

WSJT-X client name

reset: boolean

Whether to reset the highlighting to default (overrides background and foreground colors)