Name

Popup::LongText — Show a long text that might need scrolling.

Synopsis

Import Popup;
void Popup::LongText ( string  headline ,
  term  richtext ,
  integer  hdim ,
  integer  vdim );

Parameters

string headline

short headline

term richtext

text input is `Richtext()

integer hdim

initial horizontal dimension of the popup

integer vdim

initial vertical dimension of the popup

Return Value

void

Description

Pass a RichText widget with the parameters appropriate for your text - i.e. without special parameters for HTML-like text or with `opt(`plainText) for plain ASCII text without HTML tags.

Examples

  Popup::LongText ( "Package description", `Richtext("<p>Hello, this is a long description .....</p>"), 50, 20 );

Screenshot