class Fl_Output : public Fl_Input_

This object displays a piece of text. When you set the value(), Fl_Output does a strcpy() to it's own storage, which is useful for program-generated values. The user may select portions of the text using the mouse and paste the contents into other fields or programs.

There is a single subclass, Fl_Multiline_Output.

The text may contain any characters except \0, and will correctly display anything, using ^X notation for unprintable control characters and \nnn notation for unprintable characters with the high bit set (it assummes the font can draw any characters in the ISO-Latin1 character set).

Fl_Output(int,int,int,int,const char * = 0);

int value(const char *);

const char *value() const;

char index(int) const;

int size() const;

uchar textfont() const;
void textfont(uchar);
uchar textsize() const;
void textsize(uchar);
uchar textcolor() const;
void textcolor(uchar);