Writing DDD Themes

Next:   [Contents][Index]

Writing DDD Themes

DDD is a graphical front-end for GDB and other command-line debuggers. This manual describes how to write themes, that is, modifiers that change the visual appearance of data.

This is the First Edition of Writing DDD Themes, 2001-02-01, for DDD Version 3.4.0.

Copyright © 2023 Michael J. Eager and Stefan Eickeler.

Copyright © 2001 Universität Passau
Lehrstuhl für Software-Systeme
Innstraße 33
D-94032 Passau
GERMANY

Distributed by
Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor
Boston, MA 02110
USA

DDD and this manual are available via the DDD WWW page.

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts and no Back-Cover Texts. A copy of the license is included in the section entitled “GNU Free Documentation License”; See GNU Free Documentation License, for details.

Send questions, comments, suggestions, etc. to ddd@gnu.org.
Send bug reports to bug-ddd@gnu.org.

Table of Contents


Welcome

Welcome to Writing DDD Themes! In this manual, we will sketch how data visualization in DDD works. (DDD, the Data Display Debugger, is a debugger front-end with data visualization. For details, see Summary of DDD in Debugging with DDD.)


1 Creating Displays

We begin with a short discussion of how DDD actually creates displays from data.


1.1 Handling Boxes

All data displayed in the DDD data window is maintained by the inferior debugger. GDB, for instance, provides a display list, holding symbolic expressions to be evaluated and printed on standard output at each program stop. The GDB command ‘display tree’ adds ‘tree’ to the display list and makes GDB print the value of ‘tree’ as, say, ‘tree = (Tree *)0x20e98’, at each program stop. This GDB output is processed by DDD and displayed in the data window.

Each element of the display list, as transmitted by the inferior debugger, is read by DDD and translated into a box. Boxes are rectangular entities with a specific content that can be displayed in the data window. We distinguish atomic boxes and composite boxes. An atomic box holds white or black space, a line, or a string. Composite boxes are horizontal or vertical alignments of other boxes. Each box has a size and an extent that determines how it fits into a larger surrounding space.

Through construction of larger and larger boxes, DDD constructs a graph node from the GDB data structure in a similar way a typesetting system like TeX builds words from letters and pages from paragraphs.

Such constructions are easily expressed by means of functions mapping boxes onto boxes. These display functions can be specified by the user and interpreted by DDD, using an applicative language called VSL for visual structure language. VSL functions can be specified by the DDD user, leaving much room for extensions and customization. A VSL display function putting a frame around its argument looks like this:

// Put a frame around TEXT
frame(text) = hrule() 
  | vrule() & text & vrule() 
  | hrule();

Here, hrule() and vrule() are primitive functions returning horizontal and vertical lines, respectively. The ‘&’ and ‘|’ operators construct horizontal and vertical alignments from their arguments.

VSL provides basic facilities like pattern matching and variable numbers of function arguments. The halign() function, for instance, builds a horizontal alignment from an arbitrary number of arguments, matched by three dots (‘’):

// Horizontal alignment
halign(x) = x;
halign(x, …) = x & halign(…);

Frequently needed functions like halign() are grouped into a standard VSL library.


1.2 Building Boxes from Data

To visualize data structures, each atomic type and each type constructor from the programming language is assigned a VSL display function. Atomic values like numbers, characters, enumerations, or character strings are displayed using string boxes holding their value; the VSL function to display them leaves them unchanged:

// Atomic Values
simple_value(value) = value;

Composite values require more attention. An array, for instance, may be displayed using a horizontal alignment:

// Array
array(…) = frame(halign(…));

When GDB sends DDD the value of an array, the VSL function ‘array()’ is invoked with array elements as values. A GDB array expression ‘{1, 2, 3}’ is thus evaluated in VSL as

array(simple_value("1"), simple_value("2"), simple_value("3"))

which equals

"1" & "2" & "3"

a composite box holding a horizontal alignment of three string boxes. The actual VSL function used in DDD also puts delimiters between the elements and comes in a vertical variant as well.

Nested structures like multi-dimensional arrays are displayed by applying the array() function in a bottom-up fashion. First, array() is applied to the innermost structures; the resulting boxes are then passed as arguments to another array() invocation. The GDB output

{{"A", "B", "C"}, {"D", "E", "F"}}

representing a 2 * 3 array of character strings, is evaluated in VSL as

array(array("A", "B", "C"), array("A", "B", "C"))

resulting in a horizontal alignment of two more alignments representing the inner arrays.

Record structures are built in a similar manner, using a display function struct\_member rendering the record members. Names and values are separated by an equality sign:

// Member of a record structure
struct_member (name, value) = 
  name & " = " & value;

The display function struct renders the record itself, using the valign() function.1

// Record structure
struct(…) = frame(valign(…));

This is a simple example; the actual VSL function used in DDD takes additional effort to align the equality signs; also, it ensures that language-specific delimiters are used, that collapsed structs are rendered properly, and so on.


2 Writing Themes

The basic idea of a theme is to customize one or more aspects of the visual appearance of data. This is done by modifying specific VSL definitions.


2.1 Example: Changing the Display Title Color

As a simple example, consider the following task: You want to display display titles in blue instead of black. The VSL function which handles the colors of display titles is called ‘title_color’ (see Displaying Colors). It is defined as

title_color(box) = color(box, "black");

All you’d have to do to change the color is to provide a new definition:

title_color(box) = color(box, "blue");

How do you do this? You create a data theme which modifies the definition.

Using your favourite text editor, you create a file named, say, blue-title.vsl in the directory ~/.ddd/themes/.

The file blue-title.vsl has the following content:

#pragma replace title_color
title_color(box) = color(box, "blue");

In DDD, select ‘Data ⇒ Themes’. You will find ‘blue-title.vsl’ in a line on its own. Set the checkbox next to ‘blue-title.vsl’ in order to activate it. Whoa! All display titles will now appear in blue.


2.2 The General Scheme

The general scheme for writing a theme is:

  • Find the appropriate VSL function.

    Find out which VSL function function is responsible for a specific task. See DDD VSL Functions, for details on the VSL functions used by DDD.

  • Replace it by your own definition.

    Write a theme (a text file) with the following content:

    #pragma replace function
    function(args) = definition;
    

    This will replace the existing definition of function by your new definition definition. It is composed of two parts:

    • - The ‘#pragma replace’ declaration removes the original definition of function. See Redefining Functions, for details.
    • - The following line provides a new definition for function.

    Please note: If the function function is marked as ‘Global VSL Function’, it must be (re-)defined using ‘->’ instead of ‘=’; See Function Definitions, for details. You may also want to consider ‘#pragma override’ instead; See Overriding vs. Replacing, for details.

  • Install the theme in a place where DDD can find it.

    For your personal use, this is normally the directory ~/.ddd/themes/.

    Besides your personal directory, DDD also searches for themes in its theme directory, typically /usr/local/share/ddd-3.4.0/themes/.

    The DDDvslPath’ resource controls the actual path where DDD looks for themes. See VSL Resources in Debugging with DDD, for details.

  • In DDD, invoke ‘Data ⇒ Themes’ to apply the theme.

    You’re done!


2.3 Overriding vs. Replacing

In certain cases, you may not want to replace the original definition by your own, but rather extend the original definition.

As an example, consider the ‘value_box’ function (see Displaying Data Displays). It is applied to every single value displayed. By default, it does nothing. So we could write a theme that leaves a little white space around values:

#pragma replace value_box
value_box(box) -> whiteframe(box);

or another theme that changes the color to black on yellow:

#pragma replace value_box
value_box(box) -> color(box, "black", "yellow");

However, we cannot apply both themes at once (say, to create a green-on-yellow scheme). This is because each of the two themes replaces the previous definition—the theme that comes last wins.

The solution to this problem is to set up the theme in such a way that it extends the original definition rather than to replace it. To do so, VSL provides an alternative to ‘#pragma replace’, namely ‘#pragma override’ (see Overriding Functions).

Like ‘#pragma replace’, the ‘#pragma override’ declaration allows for a new definition of a function. In contrast to ‘#pragma replace’, though, uses of the function prior to ‘#pragma override’ are not affected—they still refer to the old definition.

Here’s a better theme that changes the color to black on yellow. First, it makes the old definition of ‘value_box’ accessible as ‘old_value_box’. Then, it provides a new definition for ‘value_box’ which refers to the old definition, saved in ‘old_value_box’.

#pragma override old_value_box
old_value_box(...) = value_box(...);

#pragma override value_box
value_box(value) -> color(old_value_box(value), 
                          "black", "yellow");

Why do we need a ‘#pragma override’ for ‘old_value_box’, too? Simple: to avoid name clashes between multiple themes. VSL has no scopes or name spaces for definitions, so we must resort to this crude, but effective scheme.


2.4 A Complex Example

As a more complex example, we define a theme that highlights all null pointers. First, we need a predicate ‘is_null’ that tells us whether a pointer value is null:

// True if S1 ends in S2
ends_in(s1, s2) = 
    let s1c = chars(s1), 
        s2c = chars(s2) in suffix(s2c, s1c);

// True if null value
is_null(value) = 
    (ends_in(value, "0x0") or ends_in(value, "nil"));

The ‘null_pointer’ function tells us how we actually want to render null values:

// Rendering of null values
null_pointer(value) -> color(value, "red");

Now we go and redefine the ‘pointer_value’ function such that ‘null_pointer’ is applied only to null values:

#pragma override old_pointer_value
old_pointer_value(...) -> pointer_value(...);

#pragma override pointer_value

// Ordinary pointers
pointer_value (value) -> 
    old_pointer_value(v)
    where v = (if (is_null(value)) then 
                   null_pointer(value)
               else 
                   value
               fi);

All we need now is the same definition for dereferenced pointers (that is, overriding the ‘dereferenced_pointer_value’ function), and here we go!


2.5 Future Work

With the information in this manual, you should be able to set up your own themes. If you miss anything, please let us know: simply write to ddd@gnu.org.

If there is sufficient interest, DDD’s data themes will be further extended. Among the most wanted features is the ability to access and parse debuggee data from within VSL functions; this would allow user-defined processing of debuggee data. Let us know if you’re interested—and keep in touch!


Appendix A DDD VSL Functions

This appendix describes how DDD invokes VSL functions to create data displays.

The functions in this section are predefined in the library ddd.vsl. They can be used and replaced by DDD themes.

Please note: Functions marked as ‘Global VSL Function’ must be (re-)defined using ‘->’ instead of ‘=’. See Function Definitions, for details.


A.1 Displaying Fonts

These are the function DDD uses for rendering boxes in different fonts:

VSL Function: small_rm (box)
VSL Function: small_bf (box)
VSL Function: small_it (box)
VSL Function: small_bi (box)

Returns box in small roman / bold face / italic / bold italic font.

VSL Function: small_size ()

Default size for small fonts.2

VSL Function: tiny_rm (box)
VSL Function: tiny_bf (box)
VSL Function: tiny_it (box)
VSL Function: tiny_bi (box)

Returns box in tiny roman / bold face / italic / bold italic font.

VSL Function: tiny_size ()

Default size for tiny fonts.3

VSL Function: title_rm (box)
VSL Function: title_bf (box)
VSL Function: title_it (box)
VSL Function: title_bi (box)

Returns box (a display title) in roman / bold face / italic / bold italic font.

VSL Function: value_rm (box)
VSL Function: value_bf (box)
VSL Function: value_it (box)
VSL Function: value_bi (box)

Returns box (a display value) in roman / bold face / italic / bold italic font.


A.2 Displaying Colors

VSL Function: display_color (box)

Returns box in the color used for displays. Default definition is

display_color(box) = color(box, "black", "white");
VSL Function: title_color (box)

Returns box in the color used for display titles. Default definition is

title_color(box) = color(box, "black");
VSL Function: disabled_color (box)

Returns box in the color used for disabled displays. Default definition is

disabled_color(box) = color(box, "white", "grey50");
VSL Function: simple_color (box)

Returns box in the color used for simple values. Default definition is

simple_color(box) = color(box, "black");
VSL Function: text_color (box)

Returns box in the color used for multi-line texts. Default definition is

text_color(box) = color(box, "black");
VSL Function: pointer_color (box)

Returns box in the color used for pointers. Default definition is

pointer_color(box) = color(box, "blue4");
VSL Function: struct_color (box)

Returns box in the color used for structs. Default definition is

struct_color(box) = color(box, "black");
VSL Function: list_color (box)

Returns box in the color used for lists. Default definition is

list_color(box) = color(box, "black");
VSL Function: array_color (box)

Returns box in the color used for arrays. Default definition is

array_color(box) = color(box, "blue4");
VSL Function: reference_color (box)

Returns box in the color used for references. Default definition is

reference_color(box) = color(box, "blue4");
VSL Function: changed_color (box)

Returns box in the color used for changed values. Default definition is

changed_color(box) = color(box, "black", "#ffffcc");
VSL Function: shadow_color (box)

Returns box in the color used for display shadows. Default definition is

shadow_color(box) = color(box, "grey");

A.3 Displaying Shadows

VSL Function: shadow (box)

Return box with a shadow around it.


A.4 Displaying Data Displays

DDD uses these functions to create data displays.

Global VSL Function: title (display_number, name)
Global VSL Function: title (name)

Returns a box for the display title. If display_number (a string) is given, this is prepended to the title.

Global VSL Function: annotation (name)

Returns a box for an edge annotation. This typically uses a tiny font.

Global VSL Function: disabled ()

Returns a box to be used as value for disabled displays.

Global VSL Function: none ()

Returns a box for “no value” (i.e. undefined values). Default: an empty string.

Global VSL Function: value_box (value)

Returns value in a display box. Default: leave unchanged.

Global VSL Function: display_box (title, value)
Global VSL Function: display_box (value)

Returns the entire display box. title comes from title(), value from value_box().


A.5 Displaying Simple Values

DDD uses these functions to display simple values.

Global VSL Function: simple_value (value)

Returns a box for a simple non-numeric value (characters, strings, constants, …). This is typically aligned to the left.

Global VSL Function: numeric_value (value)

Returns a box for a simple numeric value. This is typically aligned to the right.

Global VSL Function: collapsed_simple_value ()

Returns a box for a collapsed simple value.


A.6 Displaying Pointers

DDD uses these functions to display pointers.

Global VSL Function: pointer_value (value)

Returns a box for a pointer value.

Global VSL Function: dereferenced_pointer_value (value)

Returns a box for a dereferenced pointer value.

Global VSL Function: collapsed_pointer_value ()

Returns a box for a collapsed pointer.


A.7 Displaying References

DDD uses these functions to display references.

Global VSL Function: reference_value (value)

Returns a box for a reference value.

Global VSL Function: collapsed_reference_value ()

Returns a box for a collapsed reference.


A.8 Displaying Arrays

DDD uses these functions to display arrays.

Global VSL Function: horizontal_array (values…)

Returns a box for a horizontal array containing values.

Global VSL Function: vertical_array (values…)

Returns a box for a vertical array containing values.

Global VSL Function: empty_array ()

Returns a box for an empty array.

Global VSL Function: collapsed_array ()

Returns a box for a collapsed array.

Global VSL Function: twodim_array (rows…)

Returns a box for a two-dimensional array. Argument is a list of rows, suitable for use with tab() or dtab().

Global VSL Function: twodim_array_elem (value)

Returns a box for an element in a two-dimensional array.


A.9 Displaying Structs

A struct is a set of (name, value) pairs, and is also called “record” or “object”. DDD uses these functions to display structs.

Global VSL Function: struct_value (members…)

Returns a box for a struct containing members.

Global VSL Function: collapsed_struct_value ()

Returns a box for a collapsed struct.

Global VSL Function: empty_struct_value ()

Returns a box for an empty struct.

Global VSL Function: struct_member_name (name)

Returns a box for a member name.

Global VSL Function: struct_member (name, sep, value, name_width)

Returns a box for a struct member. name is the member name, typeset with struct_member_name(), sep is the separator (as determined by the current programming language), value is the typeset member value, and name_width is the maximum width of all member names.

Global VSL Function: horizontal_unnamed_struct ()
Global VSL Function: vertical_unnamed_struct ()

Returns a box for a horizontal / vertical unnamed struct, where member names are suppressed.

Global VSL Function: struct_member (value)

Returns a box for a struct member in a struct where member names are suppressed.


A.10 Displaying Lists

A list is a set of (name, value) pairs not defined by the specific programming language. DDD uses this format to display variable lists.

Global VSL Function: list_value (members…)

Returns a box for a list containing members.

Global VSL Function: collapsed_list_value ()

Returns a box for a collapsed list.

Global VSL Function: empty_list_value ()

Returns a box for an empty list.

Global VSL Function: list_member_name (name)

Returns a box for a member name.

Global VSL Function: list_member (name, sep, value, name_width)

Returns a box for a list member. name is the member name, typeset with list_member_name(), sep is the separator (as determined by the current programming language), value is the typeset member value, and name_width is the maximum width of all member names.

Global VSL Function: horizontal_unnamed_list ()
Global VSL Function: vertical_unnamed_list ()

Returns a box for a horizontal / vertical unnamed list, where member names are suppressed.

Global VSL Function: list_member (value)

Returns a box for a list member in a list where member names are suppressed.


A.11 Displaying Sequences

Sequences are lists of arbitrary, unstructured values.

Global VSL Function: sequence_value (values…)

Returns a box for a list of values.

Global VSL Function: collapsed_sequence_value ()

Returns a box for a collapsed sequence.


A.12 Displaying Multi-Line Texts

DDD uses these functions to display multi-line texts, such as status displays.

Global VSL Function: text_value (lines…)

Returns a box for a list of lines (typically in a vertical alignment).

Global VSL Function: collapsed_text_value ()

Returns a box for a collapsed text.


A.13 Displaying Extra Properties

DDD uses these functions to display additional properties.

Global VSL Function: repeated_value (value, n)

Returns a box for a value that is repeated n times. Note: n is a number, not a string.

Global VSL Function: changed_value (value)

Returns a box for a value that has changed since the last display. Typically, this invokes changed_color(value).


Appendix B VSL Library

This appendix describes the VSL functions available in the standard VSL library.

Unless otherwise stated, all following functions are defined in std.vsl.

For DDD themes, std.vsl need not be included explicitly.


B.1 Conventions

Throughout this document, we write a = (a1, a2) to refer to individual box sizes. a1 stands for the horizontal size of a, and a2 stands for the vertical size of a.


B.2 Space Functions


B.2.1 Empty Space

VSL Function: fill ()

Returns an empty box of width 0 and height 0 which stretches in both horizontal and vertical directions.

VSL Function: hfill ()

Returns a box of height 0 which stretches horizontally.

VSL Function: vfill ()

Returns a box of width 0 which stretches vertically.


Next: , Previous: , Up: Space Functions   [Contents][Index]

B.2.2 Black Lines

VSL Function: rule ()

Returns a black box of width 0 and height 0 which stretches in both horizontal and vertical directions.

VSL Function: hrule ([thickness])

Returns a black box of width 0 and height thickness which stretches horizontally. thickness defaults to rulethickness() (typically 1 pixel).

VSL Function: vrule ([thickness])

Returns a black box of width thickness and height 0 which stretches vertically. thickness defaults to rulethickness() (typically 1 pixel).

VSL Function: rulethickness ()

Returns the default thickness for black rules (default: 1).


B.2.3 White Space

VSL Function: hwhite ([thickness])

Returns a black box of width 0 and height thickness which stretches horizontally. thickness defaults to whitethickness() (typically 2 pixels).

VSL Function: vwhite ([thickness])

Returns a black box of width thickness and height 0 which stretches vertically. thickness defaults to whitethickness() (typically 2 pixels).

VSL Function: whitethickness ()

Returns the default thickness for white rules (default: 2).


B.2.4 Controlling Stretch

VSL Function: hfix (a)

Returns a box containing a, but not stretchable horizontally.

VSL Function: vfix (a)

Returns a box containing a, but not stretchable vertically.

VSL Function: fix (a)

Returns a box containing a, but not stretchable in either direction.


B.2.5 Box Dimensions

VSL Function: hspace (a)

If a = (a1, a2), create a square empty box with a size of (a1, a1).

VSL Function: vspace (a)

If a = (a1, a2), create a square empty box with a size of (a2, a2).

VSL Function: square (a)

If a = (a1, a2), create a square empty box with a size of max(a1, a2).

VSL Function: box (n, m)

Returns a box of size (n, m).


B.3 Composition Functions


B.3.1 Horizontal Composition

VSL Function: (&) (a, b)
VSL Function: (&) (boxes…)
VSL Function: halign (boxes…)

Returns a horizontal alignment of a and b; a is placed left of b. Typically written in inline form ‘a & b’.

The alternative forms (available in function-call form only) return a horizontal left-to-right alignment of their arguments.

VSL Function: hralign (boxes…)

Returns a right-to-left alignment of its arguments.


B.3.2 Vertical Composition

VSL Function: (|) (a, b)
VSL Function: (|) (boxes…)
VSL Function: valign (boxes…)

Returns a vertical alignment of a and b; a is placed above b. Typically written in inline form ‘a | b’.

The alternative forms (available in function-call form only) return a vertical top-to-bottom alignment of their arguments.

VSL Function: vralign (boxes…)

Returns a bottom-to-top alignment of its arguments.

VSL Function: vlist (sep, boxes…)

Returns a top-to-bottom alignment of boxes, where any two boxes are separated by sep.


B.3.3 Textual Composition

VSL Function: (~) (a, b)
VSL Function: (~) (boxes…)
VSL Function: talign (boxes…)

Returns a textual concatenation of a and b. b is placed in the lower right unused corner of a. Typically written in inline form ‘a ~ b’.

The alternative forms (available in function-call form only) return a textual concatenation of their arguments.

VSL Function: tralign (boxes…)

Returns a textual right-to-left concatenation of its arguments.

VSL Function: tlist (sep, boxes…)

Returns a textual left-to-right alignment of boxes, where any two boxes are separated by sep.

VSL Function: commalist (boxes…)

Shorthand for ‘tlist(", ", boxes…)’.

VSL Function: semicolonlist (boxes…)

Shorthand for ‘tlist("; ", boxes…)’.


B.3.4 Overlays

VSL Function: (^) (a, b)
VSL Function: (^) (boxes…)

Returns an overlay of a and b. a and b are placed in the same rectangular area, which is the maximum size of a and b; first, a is drawn, then b. Typically written in inline form ‘a ^ b’.

The second form (available in function-call form only) returns an overlay of its arguments.


B.4 Arithmetic Functions

VSL Function: (+) (a, b)
VSL Function: (+) (boxes…)

Returns the sum of a and b. If a = (a1, a2) and b = (b1, b2), then a + b = (a1 + a2, b1 + b2). Typically written in inline form ‘a + b’.

The second form (available in function-call form only) returns the sum of its arguments.

The special form ‘+a’ is equivalent to ‘a’.

VSL Function: (-) (a, b)

Returns the difference of a and b. If a = (a1, a2) and b = (b1, b2), then a - b = (a1 - a2, b1 - b2). Typically written in inline form ‘a - b’.

The special form ‘-a’ is equivalent to ‘0-a’.

VSL Function: (*) (a, b)
VSL Function: (*) (boxes…)

Returns the product of a and b. If a = (a1, a2) and b = (b1, b2), then a * b = (a1 * a2, b1 * b2). Typically written in inline form ‘a * b’.

The second form (available in function-call form only) returns the product of its arguments.

VSL Function: (/) (a, b)

Returns the quotient of a and b. If a = (a1, a2) and b = (b1, b2), then a / b = (a1 / a2, b1 / b2). Typically written in inline form ‘a / b’.

VSL Function: (%) (a, b)

Returns the remainder of a and b. If a = (a1, a2) and b = (b1, b2), then a % b = (a1 % a2, b1 % b2). Typically written in inline form ‘a % b’.


B.5 Comparison Functions

VSL Function: (=) (a, b)

Returns true (‘1’) if a = b, and false (‘0’), otherwise. a = b holds if a and b have the same size, the same structure, and the same content. Typically written in inline form ‘a / b’.

VSL Function: (<>) (a, b)

Returns false (‘0’) if a = b, and true (‘1’), otherwise. a = b holds if a and b have the same size, the same structure, and the same content. Typically written in inline form ‘a / b’.

VSL Function: (<) (a, b)

If a = (a1, a2) and b = (b1, b2), then this function returns true (‘1’) if a1 < b1 or a2 < b2 holds; false (‘0’), otherwise. Typically written in inline form ‘a < b’.

VSL Function: (<=) (a, b)

If a = (a1, a2) and b = (b1, b2), then this function returns true (‘1’) if a1 <= b1 or a2 <= b2 holds; false (‘0’), otherwise. Typically written in inline form ‘a <= b’.

VSL Function: (>) (a, b)

If a = (a1, a2) and b = (b1, b2), then this function returns true (‘1’) if a1 > b1 or a2 > b2 holds; false (‘0’), otherwise. Typically written in inline form ‘a > b’.

VSL Function: (>=) (a, b)

If a = (a1, a2) and b = (b1, b2), then this function returns true (‘1’) if a1 >= b1 or a2 >= b2 holds; false (‘0’), otherwise. Typically written in inline form ‘a >= b’.


B.5.1 Maximum and Minimum Functions

VSL Function: max (b1, b2, …)

Returns the maximum of its arguments; that is, the one box b in its arguments for which b > b1, b > b2, … holds.

VSL Function: min (b1, b2, …)

Returns the maximum of its arguments; that is, the one box b in its arguments for which b < b1, b < b2, … holds.


B.6 Negation Functions

VSL Function: (not) (a)

Returns true (‘1’) if a is false, and false (‘0’), otherwise. Typically written in inline form ‘not a’.

See Boolean Operators, for and and or.


B.7 Frame Functions

VSL Function: ruleframe (a[, thickness])

Returns a within a black rectangular frame of thickness thickness. thickness defaults to rulethickness() (typically 1 pixel).

VSL Function: whiteframe (a[, thickness])

Returns a within a white rectangular frame of thickness thickness. thickness defaults to whitethickness() (typically 2 pixels).

VSL Function: frame (a)

Returns a within a rectangular frame. Equivalent to ‘ruleframe(whiteframe(a)’.

VSL Function: doubleframe (a)

Shortcut for ‘frame(frame(a))’.

VSL Function: thickframe (a)

Shortcut for ‘ruleframe(frame(a))’.


B.8 Alignment Functions


B.8.1 Centering Functions

VSL Function: hcenter (a)

Returns box a centered horizontally within a (vertical) alignment.

Example: In ‘a | hcenter(b) | c’, b is centered relatively to a and c.

VSL Function: vcenter (a)

Returns box a centered vertically within a (horizontal) alignment.

Example: In ‘a & vcenter(b) & c’, b is centered relatively to a and c.

VSL Function: center (a)

Returns box a centered vertically and horizontally within an alignment.

Example: In ‘100 ^ center(b)’, b is centered within a square of size 100.


B.8.2 Flushing Functions

VSL Function: n_flush (box)
VSL Function: s_flush (box)
VSL Function: w_flush (box)
VSL Function: e_flush (box)

Within an alignment, Flushes box to the center of a side.

Example: In ‘100 ^ s_flush(b)’, b is centered on the bottom side of a square of size 100.

VSL Function: nw_flush (box)
VSL Function: sw_flush (box)
VSL Function: ne_flush (box)
VSL Function: se_flush (box)

Within an alignment, Flushes box to a corner.

Example: In ‘100 ^ se_flush(b)’, b is placed in the lower right corner of a square of size 100.


B.9 Emphasis Functions

VSL Function: underline (a)

Returns a with a line underneath.

VSL Function: overline (a)

Returns a with a line above it.

VSL Function: crossline (a)

Returns a with a horizontal line across it.

VSL Function: doublestrike (a)

Returns a in “poor man’s bold”: it is drawn two times, displaced horizontally by one pixel.


B.10 Indentation Functions

VSL Function: indent (box)

Return a box where white space of width indentamount() is placed left of box.

VSL Function: indentamount ()

Indent amount to be used in indent(); defaults to ‘" "’ (two spaces).


B.11 String Functions

To retrieve the string from a composite box, use string():

VSL Function: string (box)

Return the string (in left-to-right, top-to-bottom order) within box.

To convert numbers to strings, use num():

VSL Function: num (a [, \varbase])

For a square box a = (a1, a1), returns a string containing a textual representation of a1. base must be between 2 and 16; it defaults to ‘10’. Example: num(25) ⇒ "25")

VSL Function: dec (a)
VSL Function: oct (a)
VSL Function: bin (a)
VSL Function: hex (a)

Shortcut for ‘num(a, 10)’, ‘num(a, 8)’, ‘num(a, 2)’, ‘num(a, 16)’, respectively.


B.12 List Functions

The functions in this section require inclusion of the library list.vsl.

For themes, list.vsl need not be included explicitly.


B.12.1 Creating Lists

VSL Function: (::) (list1, list2, …)

Return the concatenation of the given lists. Typically written in inline form: [1] :: [2] :: [3] ⇒ [1, 2, 3].

VSL Function: append (list, elem)

Returns list with elem appended at the end: append([1, 2, 3], 4) ⇒ [1, 2, 3, 4]


B.12.2 List Properties

VSL Function: isatom (x)

Returns True (1) if x is an atom; False (0) if x is a list.

VSL Function: islist (x)

Returns True (1) if x is a list; False (0) if x is an atom.

VSL Function: member (x, list)

Returns True (1) if x is an element of list; False (0) if not: member(1, [1, 2, 3]) ⇒ true

VSL Function: prefix (sublist, list)
VSL Function: suffix (sublist, list)
VSL Function: sublist (sublist, list)

Returns True (1) if sublist is a prefix / suffix / sublist of list; False (0) if not: prefix([1], [1, 2]) ⇒ true, suffix([3], [1, 2]) ⇒ false, sublist([2, 2], [1, 2, 2, 3]) ⇒ true,

VSL Functions: length (list)

Returns the number of elements in list: length([1, 2, 3]) ⇒ 3


B.12.3 Accessing List Elements

VSL Function: car (list)
VSL Function: head (list)

Returns the first element of list: car([1, 2, 3]) ⇒ 1

VSL Function: cdr (list)
VSL Function: tail (list)

Returns list without its first element: cdr([1, 2, 3]) ⇒ [2, 3]

VSL Function: elem (list, n)

Returns the n-th element (starting with 0) of list: elem([4, 5, 6], 0) ⇒ 4

VSL Function: pos (elem, list)

Returns the position of elem in list (starting with 0): pos(4, [1, 2, 4]) ⇒ 2

VSL Function: last (list)

Returns the last element of list: last([4, 5, 6]) ⇒ 6


B.12.4 Manipulating Lists

VSL Function: reverse (list)

Returns a reversed list: reverse([3, 4, 5]) ⇒ [5, 4, 3]

VSL Function: delete (list, elem)

Returns list, with all elements elem removed: delete([4, 5, 5, 6], 5) ⇒ [4, 6]

VSL Function: select (list, elem)

Returns list, with the first element elem removed: select([4, 5, 5, 6], 5) ⇒ [4, 5, 6]

VSL Function: flat (list)

Returns flattened list: flat([[3, 4], [[5], [6]]]) ⇒ [3, 4, 5, 6]

VSL Function: sort (list)

Returns sortened list (according to box size): sort([7, 4, 9]) ⇒ [4, 7, 9]


B.12.5 Lists and Strings

VSL Function: chars (s)

Returns a list of all characters in the box s: chars("abc") ⇒ ["a", "b", "c"]

VSL Function: list (list)

Returns a string, pretty-printing the list: list([4, 5, 6]) ⇒ "[4, 5, 6]"


B.13 Table Functions

The functions in this section require inclusion of the library tab.vsl.

For themes, tab.vsl need not be included explicitly.

VSL Function: tab (table)

Return table (a list of lists) aligned in a table: tab([[1, 2, 3], [4, 5, 6], [7, 8]]) ⇒

1 2 3
4 5 6
7 8
VSL Function: dtab (table)

Like tab, but place delimiters (horizontal and vertical rules) around table elements.

VSL Function: tab_elem (x)

Returns padded table element x. Its default definition is:

tab_elem([]) = tab_elem(0);     // empty table 
tab_elem(x)  = whiteframe(x);   // padding

B.14 Font Functions

The functions in this section require inclusion of the library fonts.vsl.

For themes, fonts.vsl need not be included explicitly.


B.14.1 Font Basics

VSL Function: font (box, font)

Returns box, with all strings set in font (a valid X11 font description)


Next: , Previous: , Up: Font Functions   [Contents][Index]

B.14.2 Font Name Selection

VSL Function: weight_bold ()
VSL Function: weight_medium ()

Font weight specifier in fontname() (see below).

VSL Function: slant_unslanted ()
VSL Function: slant_italic ()

Font slant Specifier in fontname() (see below).

VSL Function: family_times ()
VSL Function: family_courier ()
VSL Function: family_helvetica ()
VSL Function: family_new_century ()
VSL Function: family_typewriter ()

Font family specifier in fontname() (see below).

VSL Function: fontname ([weight, [slant, [family, [size]]]])

Returns a fontname, suitable for use with font().

  • weight defaults to stdfontweight() (see below).
  • slant defaults to stdfontslant() (see below).
  • family defaults to stdfontfamily() (see below).
  • size is a pair (pixels, points) where pixels being zero means to use points instead and vice versa. defaults to stdfontsize() (see below).

B.14.3 Font Defaults

VSL Function: stdfontweight ()

Default font weight: weight_medium().

VSL Function: stdfontslant ()

Default font slant: slant_unslanted().

VSL Function: stdfontfamily ()

Default font family: family_times().

DDD replaces this as set in the DDD font preferences. Use ‘ddd --fonts’ to see the actual definitions.

VSL Function: stdfontsize ()

Default font size: (stdfontpixels(), stdfontpoints()).

DDD replaces this as set in the DDD font preferences. Use ‘ddd --fonts’ to see the actual definitions.

VSL Function: stdfontpixels ()

Default font size (in pixels): 0, meaning to use stdfontpoints() instead.

VSL Function: stdfontpoints ()

Default font size (in 1/10 points): 120.


B.14.4 Font Selection

VSL Function: rm (box [, family [, size]])
VSL Function: bf (box [, family [, size]])
VSL Function: it (box [, family [, size]])
VSL Function: bi (box [, family [, size]])

Returns box in roman / bold face / italic / bold italic. family specifies one of the font families; it defaults to stdfontfamily() (see above). size specifies a font size; it defaults to stdfontsize() (see above).


Next: , Previous: , Up: VSL Library   [Contents][Index]

B.15 Color Functions

The functions in this section require inclusion of the library colors.vsl.

For themes, colors.vsl need not be included explicitly.

VSL Function: color (box, foreground [, background]])

Returns box, where the foreground color will be drawn using the foreground color. If background is specified as well, it will be used for drawing the background. Both foreground and background are strings specifying a valid X11 color.


B.16 Arc Functions

The functions in this section require inclusion of the library arcs.vsl.

For themes, arcs.vsl must be included explicitly, using a line

#include <arcs.vsl>

at the beginning of the theme.


B.16.1 Arc Basics

VSL Function: arc (start, length [, thickness])

Returns a stretchable box with an arc of length, starting at angle start. start and length must be multiples of 90 (degrees). The angle of start is specified clockwise relative to the 9 o’clock position. thickness defaults to arcthickness() (see below).

VSL Function: arcthickness ()

Default width of arcs. Defaults to rulethickness().


Previous: , Up: Arc Functions   [Contents][Index]

B.16.2 Custom Arc Functions

VSL Function: oval (box)

Returns an oval containing box. Example: oval("33").

VSL Function: ellipse (box)
VSL Function: ellipse ()

Returns an ellipse containing box. Example: ellipse("START"). If box is omitted, the ellipse is stretchable and expands to the available space.

VSL Function: circle (box)

Returns a circle containing box. Example: circle(10).


Previous: , Up: VSL Library   [Contents][Index]

B.17 Slope Functions

The functions in this section require inclusion of the library slopes.vsl.

For themes, slopes.vsl must be included explicitly, using a line

#include <slopes.vsl>

at the beginning of the theme.


B.17.1 Slope Basics

VSL Function: rise ([thickness])

Create a stretchable box with a line from the lower left to the upper right corner. thickness defaults to slopethickness() (see below).

VSL Function: fall ([thickness])

Create a stretchable box with a line from the upper left to the lower right corner. thickness defaults to slopethickness() (see below).

VSL Function: slopethickness ()

Default thickness of slopes. Defaults to rulethickness().


B.17.2 Arrow Functions

VSL Function: n_arrow ()
VSL Function: w_arrow ()
VSL Function: s_arrow ()
VSL Function: e_arrow ()

Returns a box with an arrow pointing to the upper, left, lower, or right side, respectively.

VSL Function: nw_arrow ()
VSL Function: ne_arrow ()
VSL Function: sw_arrow ()
VSL Function: se_arrow ()

Returns a box with an arrow pointing to the upper left, upper right, lower left, or lower right side, respectively.


B.17.3 Custom Slope Functions

VSL Function: punchcard (box)

Returns a punchcard containing box.

VSL Function: rhomb (box)

Returns a rhomb containing box.

VSL Function: octogon (box)

Returns an octogon containing box.


Appendix C VSL Reference

This appendix describes the VSL language.


Next: , Up: VSL Reference   [Contents][Index]

C.1 Boxes

VSL knows two data types. The most common data type is the box. A box is a rectangular area with a content, a size, and a stretchability.

Boxes are either atomic or composite. A composite box is built from two or more other boxes. These boxes can be aligned horizontally, vertically, or otherwise.

Boxes have a specific minimum size, depending on their content. We say ‘minimum’ size here, because some boxes are stretchable—that is, they can fill up the available space.

If you have a vertical alignment of three boxes A, B, and C, like this:

AAAAAA
AAAAAA
  B
  B
CCCCCC
CCCCCC

and B is stretchable horizontally, then B will fill up the available horizontal space:

AAAAAA
AAAAAA
BBBBBB
BBBBBB
CCCCCC
CCCCCC

If two or more boxes compete for the same space, the space will be distributed in proportion to their stretchability.

An atomic stretchable box has a stretchability of 1. An alignment of multiple boxes stretchable in the direction of the alignment boxes will have a stretchability which is the sum of all stretchabilities.

If you have a vertical alignment of three boxes A, B, C, D, and E, like this:

AAAAAA
AAAAAA
BC   D
BC   D
EEEEEE
EEEEEE

and B, C, and D are stretchable horizontally (with a stretchability of 1), then the horizontal alignment of B and C will have a stretchability of 2. Thus, the alignment of B and C gets two thirds of the available space; D gets the remaining third.

AAAAAA
AAAAAA
BBCCDD
BBCCDD
EEEEEE
EEEEEE

Next: , Previous: , Up: VSL Reference   [Contents][Index]

C.2 Lists

Besides boxes, VSL knows lists. A list is not a box—it has no size or stretchability. A list is a simple means to structure data.

VSL lists are very much like lists in functional languages like Lisp or Scheme. They consist of a head (typically a list element) and a tail (which is either a list remainder or the empty list).


Next: , Previous: , Up: VSL Reference   [Contents][Index]

C.3 Expressions


C.3.1 String Literals

The expression ‘"text"’ returns a box containing text. text is parsed according to C syntax rules.

Multiple string expressions may follow each other to form a larger constant, as in C++. ‘"text1" "text2"’ is equivalent to ‘"text1text2"

Strings are not stretchable.


C.3.2 Number Literals

Any constant integer n evaluates to a number—that is, a non-stretchable empty square box with size (n, n).


Next: , Previous: , Up: Expressions   [Contents][Index]

C.3.3 List Literals

The expression ‘[a, b, …]’ evaluates to a list containing the element a, b, …. ‘[]’ is the empty list.

The expression ‘[head : tail]’ evaluates to a list whose first element is head and whose remainder (typically a list) is tail.

In most contexts, round parentheses can be used as alternatives to square brackets. Thus, ‘(a, b)’ is a list with two elements, and ‘()’ is the empty list.

Within an expression, though, square parentheses must be used to create a list with one element. In an expression, the form ‘(a)’ is not a list, but an alternative notation for a.


C.3.4 Conditionals

A box a = (a1, a2) is called true if a1 or a2 is non-zero. It is called false if both a1 or a2 are zero.

The special form

if a then b else c fi

returns b if a is true, and c otherwise. Only one of b or c is evaluated.

The special form

elsif a2 then b2 else c fi

is equivalent to

else if a2 then b2 else c fi fi

Next: , Previous: , Up: Expressions   [Contents][Index]

C.3.5 Boolean Operators

The special form

a and b

is equivalent to

if a then b else 0 fi

The special form

a or b

is equivalent to

if a then 1 else b fi

The special form

not a

is equivalent to

if a then 0 else 1 fi

Actually, ‘not’ is realized as a function; See Negation Functions, for details.


C.3.6 Local Variables

You can introduce local variables using ‘let’ and ‘where’:

let v1 = e1 in e

makes v1 available as replacement for e1 in the expression e.

Example:

let pi = 3.1415 in 2 * pi ⇒ 6.2830

The special form

let v1 = e1, v2 = e2, … in e

is equivalent to

let v1 = e1 in let v2 = e2 in let … in e

As an alternative, you can also use the where form:

e where v1 = e1

is equivalent to

let v1 = e1 in e

Example:

("here lies" | name) where 
    name = ("one whose name" | "was writ in water")

The special form

e where v1 = e1, v2 = e2, …

is equivalent to

let v1 = e1, v2 = e2, … in e

Previous: , Up: Expressions   [Contents][Index]

C.3.7 Let Patterns

You can access the individual elements of a list or some composite box by giving an appropriate pattern:

let (left, right) = pair in expr

If pair has the value, say, (3, 4), then left will be available as a replacement for 3, and right will be available as a replacement for 4 in expr.

A special pattern is available for accessing the head and the tail of a list:

let [head : tail] = list in expr

If expr has the value, say, [3, 4, 5], then head will be 3, and tail will be [4, 5] in expr.


C.4 Function Calls

A function call takes the form

name list

which invokes the (previously declared or defined) function with an argument of list. Normally, list is a list literal (see List Literals) written with round brackets.


C.5 Constant Definitions

A VSL file consists of a list of definitions.

A constant definition takes the form

name = expression;

Any later definitions can use name as a replacement for expression.

Example:

true = 1;
false = 0;

C.6 Function Definitions

In VSL, all functions either map a list to a box or a list to a list. A function definition takes the form

name list = expression;

where list is a list literal (see List Literals).

The list literal is typically written in round parentheses, making the above form look like this:

name(param1, param2, …) = expression;

The ‘=’ is replaced by ‘->’ if name is a global definition—that is, name can be called from a library client such as DDD. A local definition (with ‘=’) can be called only from other VSL functions.4


C.6.1 Function Parameters

The parameter list list may contain names of formal parameters. Upon a function call, these are bound to the actual arguments.

If the function

sum(a, b) = a + b;

is called as

sum(2. 3)

then a will be bound to 2 and b will be bound to 3, evaluating to 5.


C.6.1.1 VSL Unused Parameters

Unused parameters cause a warning, as in this example:

first_arg(a, dummy) = a;        // Warning

If a parameter has the name ‘_’, it will not be bound to the actual argument (and can thus not be used). Use ‘_’ as parameter name for unused arguments:

first_arg(a, _) = a;            // No warning

_’ can be used multiple times in a parameter list.


C.6.2 Function Patterns

A VSL function may have multiple definitions, each with a specific pattern. The first definition whose pattern matches the actual argument is used.

What does ‘matching’ mean? Within a pattern,

  • An ordinary formal parameter matches any single value
  • A formal parameter whose name is ‘’ or ends in ‘’ matches a single value or a list or a list remainder
  • A constant matches exactly the same value
  • A composite box or list matches a composite box or list if
    • - the composites have the same type
    • - the composites have the same number of elements
    • - the elements match each other.

Here are some examples. The num() function (see String Functions) can take either one or two arguments. The one-argument definition simply invokes the two-argument definition:

num(a, base) = …;
num(a) = num(a, 10);

Here’s another example: The digit function returns a string representation for a single number. It has multiple definitions, all dependent on the actual argument:

digit(0) = "0";
digit(1) = "1";
digit(2) = "2";
digit(3) = "3";
digit(4) = "4";
digit(5) = "5";
digit(6) = "6";
digit(7) = "7";
digit(8) = "8";
digit(9) = "9";
digit(10) = "a";
digit(11) = "b";
digit(12) = "c";
digit(13) = "d";
digit(14) = "e";
digit(15) = "f";
digit(_) = fail("invalid digit() argument");

Formal parameters ending in ‘’ are useful for defining aliases of functions. The definition

roman(…) = rm(…);

makes roman an alias of rm—any parameters (regardless how many) passed to roman will be passed to rm.

Here’s an example of how formal parameters ending in ‘’ can be used to realize variadic functions, taking any number of arguments (see Maximum and Minimum Functions):

max(a) = a;
max(a, b, …) = if a > b then max(a, …) else max(b, …) fi;
min(a) = a;
min(a, b, …) = if a < b then min(a, …) else min(b, …) fi;

C.6.3 Declaring Functions

If you want to use a function before it has been defined, just write down its signature without specifying a body. Here’s an example:

num(a, base);                   // declaration
num(a) = num(a, 10);

Remember to give a definition later on, though.


C.6.4 Redefining Functions

You can redefine a VSL function even after its original definition. You can

  • replace the original definition, thus making all previous definitions refer to your new definition;
  • override the original definition, thus making only later definitions refer to your new definition.

C.6.5 Replacing Functions

To remove an original definition, use

#pragma replace name

This removes all previous definitions of name. Be sure to provide your own definitions, though.

#pragma replace’ is typically used to change defaults:

#include "fonts.vsl"            // defines stdfontsize()

#pragma replace stdfontsize()   // replace def
stdfontsize() = 20;

All existing function calls will now refer to the new definition.


C.6.6 Overriding Functions

To override an original definition, use

#pragma override name

This makes all later definitions use your new definition of name. Earlier definitions, however, still refer to the old definition.

#pragma override’ is typically used if you want to redefine a function while still refering to the old definition:

#include "fonts.vsl"            // defines stdfontsize()

// Save old definition
old_stdfontsize() = stdfontsize();

#pragma override stdfontsize()

// Refer to old definition
stdfontsize() = old_stdfontsize() * 2;

Since we used ‘#pragma override’, we can use old_stdfontsize() to refer to the original definition of stdfontsize().


C.7 Includes

In a VSL file, you can include at any part the contents of another VSL file, using one of the special forms

#include "file"
#include <file>

The form ‘<file>’ looks for VSL files in a number of standard directories; the form ‘"file"’ first looks in the directory where the current file resides.

Any included file is included only once.

In DDD, you can set these places using the ‘vslPath’ resource. See Customizing Display Appearance in Debugging with DDD, for details.


Next: , Previous: , Up: VSL Reference   [Contents][Index]

C.8 Operators

VSL comes with a number of inline operators, which can be used to compose boxes. With raising precedence, these are:

or
and
= <>
<= < >= >
::
|
^
~
&
+ -
* / %
not

Except for or and and, these operators are mapped to function calls. Each invocation of an operator ‘@’ in the form ‘a @ b’ gets translated to a call of the VSL function with the special name ‘(@)’. This VSL function can be defined just like any other VSL function.

For instance, the expression a + b gets translated to a function call (+)(a, b); a & b invokes (&)(a, b).

In the file builtin.vsl, you can actually find definitions of these functions:

(&)(…) = __op_halign(…);
(+)(…) = __op_plus(…);

The functions __op_halign and __op_plus are the names by which the ‘(&)’ and ‘(+)’ functions are implemented. In this document, though, we will not look further at these internals.

Here are the places where the operator functions are described:


Previous: , Up: VSL Reference   [Contents][Index]

C.9 Syntax Summary

The following file summarizes the syntax of VSL files.

/*** VSL file ***/

file                    :       item_list

item_list               :       /* empty */
                        |       item_list item

item                    :       function_declaration ';'
                        |       function_definition ';'
                        |       override_declaration
                        |       replace_declaration
                        |       include_declaration
                        |       line_declaration
                        |       ';'
                        |       error ';'

/*** functions ***/

function_declaration    :       function_header

function_header         :       function_identifier function_argument
                        |       function_identifier

function_identifier     :       identifier
                        |       '(' '==' ')'
                        |       '(' '<>' ')'
                        |       '(' '>' ')'
                        |       '(' '>=' ')'
                        |       '(' '<' ')'
                        |       '(' '<=' ')'
                        |       '(' '&' ')'
                        |       '(' '|' ')'
                        |       '(' '^' ')'
                        |       '(' '~' ')'
                        |       '(' '+' ')'
                        |       '(' '-' ')'
                        |       '(' '*' ')'
                        |       '(' '/' ')'
                        |       '(' '%' ')'
                        |       '(' '::' ')'
                        |       '(' 'not' ')'

identifier              :       IDENTIFIER

function_definition     :       local_definition
                        |       global_definition

local_definition        :       local_header function_body

local_header            :       function_header '='

global_definition       :       global_header function_body

global_header           :       function_header '->'

function_body           :       box_expression_with_defs



/*** expressions ***/

/*** let, where ***/

box_expression_with_defs:       box_expression_with_wheres
                        |       'let' var_definition in_box_expression

in_box_expression       :       'in' box_expression_with_defs
                        |       ',' var_definition in_box_expression

box_expression_with_wheres:     box_expression
                        |       box_expression_with_where

box_expression_with_where:      box_expression_with_wheres 
                                'where' var_definition
                        |       box_expression_with_where 
                                ',' var_definition

var_definition          :       box_expression '=' box_expression


/*** basic expressions ***/

box_expression          :       '(' box_expression_with_defs ')'
                        |       list_expression
                        |       const_expression
                        |       binary_expression
                        |       unary_expression
                        |       cond_expression
                        |       function_call
                        |       argument_or_function

list_expression         :       '[' ']'
                        |       '[' box_expression_list ']'
                        |       '(' ')'
                        |       '(' multiple_box_expression_list ')'

box_expression_list     :       box_expression_with_defs
                        |       multiple_box_expression_list

multiple_box_expression_list:   box_expression ':' box_expression
                        |       box_expression ',' box_expression_list
                        |       box_expression '…'
                        |       '…'

const_expression        :       string_constant
                        |       numeric_constant

string_constant         :       STRING
                        |       string_constant STRING

numeric_constant        :       INTEGER

function_call           :       function_identifier function_argument

unary_expression        :       'not' box_expression
                        |       '+' box_expression
                        |       '-' box_expression


/*** operators ***/

binary_expression       :       box_expression '=' box_expression
                        |       box_expression '<>' box_expression
                        |       box_expression '>' box_expression
                        |       box_expression '>=' box_expression
                        |       box_expression '<' box_expression
                        |       box_expression '<=' box_expression
                        |       box_expression '&' box_expression
                        |       box_expression '|' box_expression
                        |       box_expression '^' box_expression
                        |       box_expression '~' box_expression
                        |       box_expression '+' box_expression
                        |       box_expression '-' box_expression
                        |       box_expression '*' box_expression
                        |       box_expression '/' box_expression
                        |       box_expression '%' box_expression
                        |       box_expression '::' box_expression
                        |       box_expression 'or' box_expression
                        |       box_expression 'and' box_expression

cond_expression         :       'if' box_expression
                                'then' box_expression_with_defs
                                else_expression
                                'fi'

else_expression         :       'elsif' box_expression
                                'then' box_expression_with_defs
                                else_expression
                        |       'else' box_expression_with_defs

function_argument       :       list_expression
                        |       '(' box_expression_with_defs ')'

argument_or_function    :       identifier


/*** directives ***/

override_declaration    :       '#pragma' 'override' override_list

override_list           :       override_identifier
                        |       override_list ',' override_identifier

override_identifier     :       function_identifier

replace_declaration     :       '#pragma' 'replace' replace_list

replace_list            :       replace_identifier
                        |       replace_list ',' replace_identifier

replace_identifier      :       function_identifier

include_declaration     :       '#include' '"' SIMPLE_STRING '"'
                        |       '#include' '<' SIMPLE_STRING '>'

line_declaration        :       '#line' INTEGER
                        |       '#line' INTEGER STRING

Next: , Previous: , Up: Writing DDD Themes   [Contents][Index]

Appendix D GNU Free Documentation License

Version 1.3, 3 November 2008
Copyright © 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
https://fsf.org/

Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
  1. PREAMBLE

    The purpose of this License is to make a manual, textbook, or other functional and useful document free in the sense of freedom: to assure everyone the effective freedom to copy and redistribute it, with or without modifying it, either commercially or noncommercially. Secondarily, this License preserves for the author and publisher a way to get credit for their work, while not being considered responsible for modifications made by others.

    This License is a kind of “copyleft”, which means that derivative works of the document must themselves be free in the same sense. It complements the GNU General Public License, which is a copyleft license designed for free software.

    We have designed this License in order to use it for manuals for free software, because free software needs free documentation: a free program should come with manuals providing the same freedoms that the software does. But this License is not limited to software manuals; it can be used for any textual work, regardless of subject matter or whether it is published as a printed book. We recommend this License principally for works whose purpose is instruction or reference.

  2. APPLICABILITY AND DEFINITIONS

    This License applies to any manual or other work, in any medium, that contains a notice placed by the copyright holder saying it can be distributed under the terms of this License. Such a notice grants a world-wide, royalty-free license, unlimited in duration, to use that work under the conditions stated herein. The “Document”, below, refers to any such manual or work. Any member of the public is a licensee, and is addressed as “you”. You accept the license if you copy, modify or distribute the work in a way requiring permission under copyright law.

    A “Modified Version” of the Document means any work containing the Document or a portion of it, either copied verbatim, or with modifications and/or translated into another language.

    A “Secondary Section” is a named appendix or a front-matter section of the Document that deals exclusively with the relationship of the publishers or authors of the Document to the Document’s overall subject (or to related matters) and contains nothing that could fall directly within that overall subject. (Thus, if the Document is in part a textbook of mathematics, a Secondary Section may not explain any mathematics.) The relationship could be a matter of historical connection with the subject or with related matters, or of legal, commercial, philosophical, ethical or political position regarding them.

    The “Invariant Sections” are certain Secondary Sections whose titles are designated, as being those of Invariant Sections, in the notice that says that the Document is released under this License. If a section does not fit the above definition of Secondary then it is not allowed to be designated as Invariant. The Document may contain zero Invariant Sections. If the Document does not identify any Invariant Sections then there are none.

    The “Cover Texts” are certain short passages of text that are listed, as Front-Cover Texts or Back-Cover Texts, in the notice that says that the Document is released under this License. A Front-Cover Text may be at most 5 words, and a Back-Cover Text may be at most 25 words.

    A “Transparent” copy of the Document means a machine-readable copy, represented in a format whose specification is available to the general public, that is suitable for revising the document straightforwardly with generic text editors or (for images composed of pixels) generic paint programs or (for drawings) some widely available drawing editor, and that is suitable for input to text formatters or for automatic translation to a variety of formats suitable for input to text formatters. A copy made in an otherwise Transparent file format whose markup, or absence of markup, has been arranged to thwart or discourage subsequent modification by readers is not Transparent. An image format is not Transparent if used for any substantial amount of text. A copy that is not “Transparent” is called “Opaque”.

    Examples of suitable formats for Transparent copies include plain ASCII without markup, Texinfo input format, LaTeX input format, SGML or XML using a publicly available DTD, and standard-conforming simple HTML, PostScript or PDF designed for human modification. Examples of transparent image formats include PNG, XCF and JPG. Opaque formats include proprietary formats that can be read and edited only by proprietary word processors, SGML or XML for which the DTD and/or processing tools are not generally available, and the machine-generated HTML, PostScript or PDF produced by some word processors for output purposes only.

    The “Title Page” means, for a printed book, the title page itself, plus such following pages as are needed to hold, legibly, the material this License requires to appear in the title page. For works in formats which do not have any title page as such, “Title Page” means the text near the most prominent appearance of the work’s title, preceding the beginning of the body of the text.

    The “publisher” means any person or entity that distributes copies of the Document to the public.

    A section “Entitled XYZ” means a named subunit of the Document whose title either is precisely XYZ or contains XYZ in parentheses following text that translates XYZ in another language. (Here XYZ stands for a specific section name mentioned below, such as “Acknowledgements”, “Dedications”, “Endorsements”, or “History”.) To “Preserve the Title” of such a section when you modify the Document means that it remains a section “Entitled XYZ” according to this definition.

    The Document may include Warranty Disclaimers next to the notice which states that this License applies to the Document. These Warranty Disclaimers are considered to be included by reference in this License, but only as regards disclaiming warranties: any other implication that these Warranty Disclaimers may have is void and has no effect on the meaning of this License.

  3. VERBATIM COPYING

    You may copy and distribute the Document in any medium, either commercially or noncommercially, provided that this License, the copyright notices, and the license notice saying this License applies to the Document are reproduced in all copies, and that you add no other conditions whatsoever to those of this License. You may not use technical measures to obstruct or control the reading or further copying of the copies you make or distribute. However, you may accept compensation in exchange for copies. If you distribute a large enough number of copies you must also follow the conditions in section 3.

    You may also lend copies, under the same conditions stated above, and you may publicly display copies.

  4. COPYING IN QUANTITY

    If you publish printed copies (or copies in media that commonly have printed covers) of the Document, numbering more than 100, and the Document’s license notice requires Cover Texts, you must enclose the copies in covers that carry, clearly and legibly, all these Cover Texts: Front-Cover Texts on the front cover, and Back-Cover Texts on the back cover. Both covers must also clearly and legibly identify you as the publisher of these copies. The front cover must present the full title with all words of the title equally prominent and visible. You may add other material on the covers in addition. Copying with changes limited to the covers, as long as they preserve the title of the Document and satisfy these conditions, can be treated as verbatim copying in other respects.

    If the required texts for either cover are too voluminous to fit legibly, you should put the first ones listed (as many as fit reasonably) on the actual cover, and continue the rest onto adjacent pages.

    If you publish or distribute Opaque copies of the Document numbering more than 100, you must either include a machine-readable Transparent copy along with each Opaque copy, or state in or with each Opaque copy a computer-network location from which the general network-using public has access to download using public-standard network protocols a complete Transparent copy of the Document, free of added material. If you use the latter option, you must take reasonably prudent steps, when you begin distribution of Opaque copies in quantity, to ensure that this Transparent copy will remain thus accessible at the stated location until at least one year after the last time you distribute an Opaque copy (directly or through your agents or retailers) of that edition to the public.

    It is requested, but not required, that you contact the authors of the Document well before redistributing any large number of copies, to give them a chance to provide you with an updated version of the Document.

  5. MODIFICATIONS

    You may copy and distribute a Modified Version of the Document under the conditions of sections 2 and 3 above, provided that you release the Modified Version under precisely this License, with the Modified Version filling the role of the Document, thus licensing distribution and modification of the Modified Version to whoever possesses a copy of it. In addition, you must do these things in the Modified Version:

    1. Use in the Title Page (and on the covers, if any) a title distinct from that of the Document, and from those of previous versions (which should, if there were any, be listed in the History section of the Document). You may use the same title as a previous version if the original publisher of that version gives permission.
    2. List on the Title Page, as authors, one or more persons or entities responsible for authorship of the modifications in the Modified Version, together with at least five of the principal authors of the Document (all of its principal authors, if it has fewer than five), unless they release you from this requirement.
    3. State on the Title page the name of the publisher of the Modified Version, as the publisher.
    4. Preserve all the copyright notices of the Document.
    5. Add an appropriate copyright notice for your modifications adjacent to the other copyright notices.
    6. Include, immediately after the copyright notices, a license notice giving the public permission to use the Modified Version under the terms of this License, in the form shown in the Addendum below.
    7. Preserve in that license notice the full lists of Invariant Sections and required Cover Texts given in the Document’s license notice.
    8. Include an unaltered copy of this License.
    9. Preserve the section Entitled “History”, Preserve its Title, and add to it an item stating at least the title, year, new authors, and publisher of the Modified Version as given on the Title Page. If there is no section Entitled “History” in the Document, create one stating the title, year, authors, and publisher of the Document as given on its Title Page, then add an item describing the Modified Version as stated in the previous sentence.
    10. Preserve the network location, if any, given in the Document for public access to a Transparent copy of the Document, and likewise the network locations given in the Document for previous versions it was based on. These may be placed in the “History” section. You may omit a network location for a work that was published at least four years before the Document itself, or if the original publisher of the version it refers to gives permission.
    11. For any section Entitled “Acknowledgements” or “Dedications”, Preserve the Title of the section, and preserve in the section all the substance and tone of each of the contributor acknowledgements and/or dedications given therein.
    12. Preserve all the Invariant Sections of the Document, unaltered in their text and in their titles. Section numbers or the equivalent are not considered part of the section titles.
    13. Delete any section Entitled “Endorsements”. Such a section may not be included in the Modified Version.
    14. Do not retitle any existing section to be Entitled “Endorsements” or to conflict in title with any Invariant Section.
    15. Preserve any Warranty Disclaimers.

    If the Modified Version includes new front-matter sections or appendices that qualify as Secondary Sections and contain no material copied from the Document, you may at your option designate some or all of these sections as invariant. To do this, add their titles to the list of Invariant Sections in the Modified Version’s license notice. These titles must be distinct from any other section titles.

    You may add a section Entitled “Endorsements”, provided it contains nothing but endorsements of your Modified Version by various parties—for example, statements of peer review or that the text has been approved by an organization as the authoritative definition of a standard.

    You may add a passage of up to five words as a Front-Cover Text, and a passage of up to 25 words as a Back-Cover Text, to the end of the list of Cover Texts in the Modified Version. Only one passage of Front-Cover Text and one of Back-Cover Text may be added by (or through arrangements made by) any one entity. If the Document already includes a cover text for the same cover, previously added by you or by arrangement made by the same entity you are acting on behalf of, you may not add another; but you may replace the old one, on explicit permission from the previous publisher that added the old one.

    The author(s) and publisher(s) of the Document do not by this License give permission to use their names for publicity for or to assert or imply endorsement of any Modified Version.

  6. COMBINING DOCUMENTS

    You may combine the Document with other documents released under this License, under the terms defined in section 4 above for modified versions, provided that you include in the combination all of the Invariant Sections of all of the original documents, unmodified, and list them all as Invariant Sections of your combined work in its license notice, and that you preserve all their Warranty Disclaimers.

    The combined work need only contain one copy of this License, and multiple identical Invariant Sections may be replaced with a single copy. If there are multiple Invariant Sections with the same name but different contents, make the title of each such section unique by adding at the end of it, in parentheses, the name of the original author or publisher of that section if known, or else a unique number. Make the same adjustment to the section titles in the list of Invariant Sections in the license notice of the combined work.

    In the combination, you must combine any sections Entitled “History” in the various original documents, forming one section Entitled “History”; likewise combine any sections Entitled “Acknowledgements”, and any sections Entitled “Dedications”. You must delete all sections Entitled “Endorsements.”

  7. COLLECTIONS OF DOCUMENTS

    You may make a collection consisting of the Document and other documents released under this License, and replace the individual copies of this License in the various documents with a single copy that is included in the collection, provided that you follow the rules of this License for verbatim copying of each of the documents in all other respects.

    You may extract a single document from such a collection, and distribute it individually under this License, provided you insert a copy of this License into the extracted document, and follow this License in all other respects regarding verbatim copying of that document.

  8. AGGREGATION WITH INDEPENDENT WORKS

    A compilation of the Document or its derivatives with other separate and independent documents or works, in or on a volume of a storage or distribution medium, is called an “aggregate” if the copyright resulting from the compilation is not used to limit the legal rights of the compilation’s users beyond what the individual works permit. When the Document is included in an aggregate, this License does not apply to the other works in the aggregate which are not themselves derivative works of the Document.

    If the Cover Text requirement of section 3 is applicable to these copies of the Document, then if the Document is less than one half of the entire aggregate, the Document’s Cover Texts may be placed on covers that bracket the Document within the aggregate, or the electronic equivalent of covers if the Document is in electronic form. Otherwise they must appear on printed covers that bracket the whole aggregate.

  9. TRANSLATION

    Translation is considered a kind of modification, so you may distribute translations of the Document under the terms of section 4. Replacing Invariant Sections with translations requires special permission from their copyright holders, but you may include translations of some or all Invariant Sections in addition to the original versions of these Invariant Sections. You may include a translation of this License, and all the license notices in the Document, and any Warranty Disclaimers, provided that you also include the original English version of this License and the original versions of those notices and disclaimers. In case of a disagreement between the translation and the original version of this License or a notice or disclaimer, the original version will prevail.

    If a section in the Document is Entitled “Acknowledgements”, “Dedications”, or “History”, the requirement (section 4) to Preserve its Title (section 1) will typically require changing the actual title.

  10. TERMINATION

    You may not copy, modify, sublicense, or distribute the Document except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense, or distribute it is void, and will automatically terminate your rights under this License.

    However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation.

    Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice.

    Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, receipt of a copy of some or all of the same material does not give you any rights to use it.

  11. FUTURE REVISIONS OF THIS LICENSE

    The Free Software Foundation may publish new, revised versions of the GNU Free Documentation License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. See https://www.gnu.org/licenses/.

    Each version of the License is given a distinguishing version number. If the Document specifies that a particular numbered version of this License “or any later version” applies to it, you have the option of following the terms and conditions either of that specified version or of any later version that has been published (not as a draft) by the Free Software Foundation. If the Document does not specify a version number of this License, you may choose any version ever published (not as a draft) by the Free Software Foundation. If the Document specifies that a proxy can decide which future versions of this License can be used, that proxy’s public statement of acceptance of a version permanently authorizes you to choose that version for the Document.

  12. RELICENSING

    “Massive Multiauthor Collaboration Site” (or “MMC Site”) means any World Wide Web server that publishes copyrightable works and also provides prominent facilities for anybody to edit those works. A public wiki that anybody can edit is an example of such a server. A “Massive Multiauthor Collaboration” (or “MMC”) contained in the site means any set of copyrightable works thus published on the MMC site.

    “CC-BY-SA” means the Creative Commons Attribution-Share Alike 3.0 license published by Creative Commons Corporation, a not-for-profit corporation with a principal place of business in San Francisco, California, as well as future copyleft versions of that license published by that same organization.

    “Incorporate” means to publish or republish a Document, in whole or in part, as part of another Document.

    An MMC is “eligible for relicensing” if it is licensed under this License, and if all works that were first published under this License somewhere other than this MMC, and subsequently incorporated in whole or in part into the MMC, (1) had no cover texts or invariant sections, and (2) were thus incorporated prior to November 1, 2008.

    The operator of an MMC Site may republish an MMC contained in the site under CC-BY-SA on the same site at any time before August 1, 2009, provided the MMC is eligible for relicensing.

ADDENDUM: How to use this License for your documents

To use this License in a document you have written, include a copy of the License in the document and put the following copyright and license notices just after the title page:

  Copyright (C)  year  your name.
  Permission is granted to copy, distribute and/or modify this document
  under the terms of the GNU Free Documentation License, Version 1.3
  or any later version published by the Free Software Foundation;
  with no Invariant Sections, no Front-Cover Texts, and no Back-Cover
  Texts.  A copy of the license is included in the section entitled ``GNU
  Free Documentation License''.

If you have Invariant Sections, Front-Cover Texts and Back-Cover Texts, replace the “with…Texts.” line with this:

    with the Invariant Sections being list their titles, with
    the Front-Cover Texts being list, and with the Back-Cover Texts
    being list.

If you have Invariant Sections without Cover Texts, or some other combination of the three, merge those two alternatives to suit the situation.

If your document contains nontrivial examples of program code, we recommend releasing these examples in parallel under your choice of free software license, such as the GNU General Public License, to permit their use in free software.


Index

Jump to:   (  
A   B   C   D   E   F   H   I   L   M   N   O   P   R   S   T   U   V   W  
Index Entry  Section

(
(%): Arithmetic Functions
(&): Horizontal Composition
(&): Horizontal Composition
(*): Arithmetic Functions
(*): Arithmetic Functions
(+): Arithmetic Functions
(+): Arithmetic Functions
(-): Arithmetic Functions
(/): Arithmetic Functions
(::): Creating Lists
(<): Comparison Functions
(<=): Comparison Functions
(<>): Comparison Functions
(=): Comparison Functions
(>): Comparison Functions
(>=): Comparison Functions
(not): Negation Functions
(^): Overlays
(^): Overlays
(|): Vertical Composition
(|): Vertical Composition
(~): Textual Composition
(~): Textual Composition

A
and: VSL Boolean Operators
annotation: Displaying Data Displays
append: Creating Lists
arc: Arc Basics
arcs.vsl: Arc Functions
arcthickness: Arc Basics
array_color: Displaying Colors

B
bf: Font Selection
bi: Font Selection
bin: String Functions
box: Box Dimensions
builtin.vsl: VSL Operators

C
car: Accessing List Elements
cdr: Accessing List Elements
center: Centering Functions
changed_color: Displaying Colors
changed_value: Displaying Extra Properties
chars: Lists and Strings
circle: Custom Arc Functions
collapsed_array: Displaying Arrays
collapsed_list_value: Displaying Lists
collapsed_pointer_value: Displaying Pointers
collapsed_reference_value: Displaying References
collapsed_sequence_value: Displaying Sequences
collapsed_simple_value: Displaying Simple Values
collapsed_struct_value: Displaying Structs
collapsed_text_value: Displaying Multi-Line Texts
color: Color Functions
colors.vsl: Color Functions
commalist: Textual Composition
crossline: Emphasis Functions

D
ddd.vsl: DDD VSL Functions
dec: String Functions
delete: Manipulating Lists
dereferenced_pointer_value: Displaying Pointers
disabled: Displaying Data Displays
disabled_color: Displaying Colors
display_box: Displaying Data Displays
display_box: Displaying Data Displays
display_color: Displaying Colors
doubleframe: Frame Functions
doublestrike: Emphasis Functions
dtab: Table Functions

E
elem: Accessing List Elements
ellipse: Custom Arc Functions
ellipse: Custom Arc Functions
else: VSL Conditionals
elsif: VSL Conditionals
empty_array: Displaying Arrays
empty_list_value: Displaying Lists
empty_struct_value: Displaying Structs
e_arrow: Arrow Functions
e_flush: Flushing Functions

F
fall: Slope Basics
family_courier: Font Name Selection
family_helvetica: Font Name Selection
family_new_century: Font Name Selection
family_times: Font Name Selection
family_typewriter: Font Name Selection
fi: VSL Conditionals
fill: Empty Space
fix: Controlling Stretch
flat: Manipulating Lists
font: Font Basics
fontname: Font Name Selection
fonts.vsl: Font Functions
frame: Frame Functions
Functions, in VSL: DDD VSL Functions
Functions, in VSL: VSL Library

H
halign: Horizontal Composition
hcenter: Centering Functions
head: Accessing List Elements
hex: String Functions
hfill: Empty Space
hfix: Controlling Stretch
horizontal_array: Displaying Arrays
horizontal_unnamed_list: Displaying Lists
horizontal_unnamed_struct: Displaying Structs
hralign: Horizontal Composition
hrule: Black Lines
hspace: Box Dimensions
hwhite: White Space

I
if: VSL Conditionals
indent: Indentation Functions
indentamount: Indentation Functions
isatom: List Properties
islist: List Properties
it: Font Selection

L
last: Accessing List Elements
length: List Properties
let: VSL Local Variables
Library, VSL: VSL Library
License, Documentation: Documentation License
list: Lists and Strings
list.vsl: List Functions
list_color: Displaying Colors
list_member: Displaying Lists
list_member: Displaying Lists
list_member_name: Displaying Lists
list_value: Displaying Lists

M
max: Maximum and Minimum Functions
member: List Properties
min: Maximum and Minimum Functions

N
ne_arrow: Arrow Functions
ne_flush: Flushing Functions
none: Displaying Data Displays
not: VSL Boolean Operators
num: String Functions
numeric_value: Displaying Simple Values
nw_arrow: Arrow Functions
nw_flush: Flushing Functions
n_arrow: Arrow Functions
n_flush: Flushing Functions

O
oct: String Functions
octogon: Custom Slope Functions
or: VSL Boolean Operators
oval: Custom Arc Functions
overline: Emphasis Functions

P
pointer_color: Displaying Colors
pointer_value: Displaying Pointers
pos: Accessing List Elements
prefix: List Properties
punchcard: Custom Slope Functions

R
reference_color: Displaying Colors
reference_value: Displaying References
repeated_value: Displaying Extra Properties
reverse: Manipulating Lists
rhomb: Custom Slope Functions
rise: Slope Basics
rm: Font Selection
rule: Black Lines
ruleframe: Frame Functions
rulethickness: Black Lines

S
select: Manipulating Lists
semicolonlist: Textual Composition
sequence_value: Displaying Sequences
se_arrow: Arrow Functions
se_flush: Flushing Functions
shadow: Displaying Shadows
shadow_color: Displaying Colors
simple_color: Displaying Colors
simple_value: Displaying Simple Values
slant_italic: Font Name Selection
slant_unslanted: Font Name Selection
slopes.vsl: Slope Functions
slopethickness: Slope Basics
small_bf: Displaying Fonts
small_bi: Displaying Fonts
small_it: Displaying Fonts
small_rm: Displaying Fonts
small_size: Displaying Fonts
sort: Manipulating Lists
square: Box Dimensions
std.vsl: VSL Library
stdfontfamily: Font Defaults
stdfontpixels: Font Defaults
stdfontpoints: Font Defaults
stdfontsize: Font Defaults
stdfontslant: Font Defaults
stdfontweight: Font Defaults
string: String Functions
struct_color: Displaying Colors
struct_member: Displaying Structs
struct_member: Displaying Structs
struct_member_name: Displaying Structs
struct_value: Displaying Structs
sublist: List Properties
suffix: List Properties
sw_arrow: Arrow Functions
sw_flush: Flushing Functions
s_arrow: Arrow Functions
s_flush: Flushing Functions

T
tab: Table Functions
tab.vsl: Table Functions
tab_elem: Table Functions
tail: Accessing List Elements
talign: Textual Composition
text_color: Displaying Colors
text_value: Displaying Multi-Line Texts
then: VSL Conditionals
thickframe: Frame Functions
tiny_bf: Displaying Fonts
tiny_bi: Displaying Fonts
tiny_it: Displaying Fonts
tiny_rm: Displaying Fonts
tiny_size: Displaying Fonts
title: Displaying Data Displays
title: Displaying Data Displays
title_bf: Displaying Fonts
title_bi: Displaying Fonts
title_color: Displaying Colors
title_it: Displaying Fonts
title_rm: Displaying Fonts
tlist: Textual Composition
tralign: Textual Composition
twodim_array: Displaying Arrays
twodim_array_elem: Displaying Arrays

U
underline: Emphasis Functions

V
valign: Vertical Composition
value_bf: Displaying Fonts
value_bi: Displaying Fonts
value_box: Displaying Data Displays
value_it: Displaying Fonts
value_rm: Displaying Fonts
vcenter: Centering Functions
vertical_array: Displaying Arrays
vertical_unnamed_list: Displaying Lists
vertical_unnamed_struct: Displaying Structs
vfill: Empty Space
vfix: Controlling Stretch
vlist: Vertical Composition
vralign: Vertical Composition
vrule: Black Lines
VSL: VSL Reference
VSL Functions: DDD VSL Functions
VSL Functions: VSL Library
VSL Library: VSL Library
vspace: Box Dimensions
vwhite: White Space

W
weight_bold: Font Name Selection
weight_medium: Font Name Selection
where: VSL Local Variables
whiteframe: Frame Functions
whitethickness: White Space
w_arrow: Arrow Functions
w_flush: Flushing Functions

Jump to:   (  
A   B   C   D   E   F   H   I   L   M   N   O   P   R   S   T   U   V   W  

Footnotes

(1)

valign() is similar to halign(), but builds a vertical alignment.

(2)

DDD replaces this as set in the DDD font preferences. Use ‘ddd --fonts’ to see the actual definitions.

(3)

DDD replaces this as set in the DDD font preferences. Use ‘ddd --fonts’ to see the actual definitions.

(4)

The distinction into global and local definitions is useful when optimizing the library: local definitions that are unused within the library can be removed, while global definitions cannot.