ui.Dialog.setArrayAttributes
Define cell decoration attributes array for the specified list (singular or multiple dialogs).
Syntax
setArrayAttributes(
name STRING,
attributes dynamic-array-type )
- name is the name of the screen record, see Identifying screen-arrays in ui.Dialog methods.
- attributes is a program array defining the cell attributes.
- dynamic-array-type is a
DYNAMIC ARRAY OF ...
type, which can be:- A
DYNAMIC ARRAY OF RECORD ... END RECORD
(with the same structure as the data array) - A
DYNAMIC ARRAY WITH DIMENSION 2 OF STRING
(to define attributes in dynamic dialog when the row structure is defined at runtime) - A
DYNAMIC ARRAY OF STRING
(to define attributes for complete lines instead of individual cells)
- A
Usage
In an INPUT ARRAY
or DISPLAY ARRAY
dialog, the
setArrayAttributes()
method can be used to specify display attributes for each
cell, or for the complete row.
The setArrayAttributes()
is typically used in a DIALOG
block
where several screen arrays are defined. The method takes the name of the screen array as first
parameter, to identify the list to be decorated with colors. An equivalent method called setCellAttributes()
can be
used, for dialogs where only one screen array is defined.
Cell attributes are equivalent to TTY attributes defined at the form item level, such as the
COLOR
attribute, except that
cell attribute can change dynamically.
Possible values for cell attributes are a combination of the following values:
- One of the supported color names, or an #RRGGBB value.
- The
blink
attribute: The text in the cell blinks. - The
bold
attribute: The text in the cell renders with a bold font. - The
underline
attribute: The text in the cell is underlined. - The
reverse
attribute: When a color is specified, it is used as background color instead of foreground text color.
The cell attributes must be specified in lowercase, the color names must be in camelCase, and the separator is a blank space, for example:
blue
, red
, yellow
), the actual
rendering color used by the front-ends is adapted to the reverse or normal mode: In normal mode,
colors like "yellow"
must be darker, to make the foreground text easily readable on
an white background. In reverse mode (where the color specification applies to the background), the
actual background color must be lighter, so that the black foreground text can be read more
easily."green"
: Foreground text color is green."lightRed reverse"
: Background cell color is light red."blue underline"
: Foreground text color is blue and the text font is underlined."red bold reverse"
: Background cell color is red and the text font is bold.
- A
DYNAMIC ARRAY OF RECORD
, with the same structure as the data array - A
DYNAMIC ARRAY WITH DIMENSION 2 OF STRING
, to define a flexible set of cell attributes (for dynamic dialogs) - A
DYNAMIC ARRAY OF STRING
, to define attributes for complete lines
STRING
data
type:DEFINE data DYNAMIC ARRAY OF RECORD
pkey INTEGER,
name VARCHAR(50)
END RECORD
DEFINE attributes DYNAMIC ARRAY OF RECORD
pkey STRING,
name STRING
END RECORD
DEFINE attributes DYNAMIC ARRAY WITH DIMENSION 2 OF STRING
The advantage of a two-dimensional array is the flexibility, as it can define an unlimited number of cells for each row. This solution is typically used when implementing a dynamic dialog.
DEFINE attributes DYNAMIC ARRAY OF STRING
FOR i=1 TO data.getLength() -- length from data array!
LET attributes[i].name = "blue reverse"
END FOR
setArrayAttributes()
method, in a
BEFORE DIALOG
, BEFORE INPUT
or BEFORE DISPLAY
block:BEFORE DIALOG
CALL DIALOG.setArrayAttributes( "sr", attributes )
UNBUFFERED
mode is
used.ON ACTION modify_cell_attribute
LET attributes[arr_curr()].name = "red reverse"
NULL
to an element, the default TTY attributes will be
reset:ON ACTION clean_cell_attribute
LET attributes[arr_curr()].name = NULL