| Constructors | 
|---|
  
| 
Fl_Value_Output(int x, int y, int w, int h, const char *l=0);
 | 
function Create
       (X, Y, W, H : in Integer;
        Text       : in String := "")
    return Value_Output;
 | 
  
| Rely on the automatic use of begin when a group is created, or use begin/end
explicitly, or add each widget to its intended parent group manually. | 
function Create
       (Parent     : in out FLTK.Widgets.Groups.Group'Class;
        X, Y, W, H : in     Integer;
        Text       : in     String := "")
    return Value_Output;
 | 
  | Functions and Procedures | 
|---|
  
| 
int handle(int);
 | 
function Handle
       (This  : in out Value_Output;
        Event : in     Event_Kind)
    return Event_Outcome;
 | 
  
| 
char soft() const;
 | 
function Is_Soft
       (This : in Value_Output)
    return Boolean;
 | 
  
| 
void soft(char s);
 | 
procedure Set_Soft
       (This : in out Value_Output;
        To   : in     Boolean);
 | 
  
| 
Fl_Color textcolor() const;
 | 
function Get_Text_Color
       (This : in Value_Output)
    return Color;
 | 
  
| 
void textcolor(Fl_Color n);
 | 
procedure Set_Text_Color
       (This : in out Value_Output;
        Col  : in     Color);
 | 
  
| 
Fl_Font textfont() const;
 | 
function Get_Text_Font
       (This : in Value_Output)
    return Font_Kind;
 | 
  
| 
void textfont(Fl_Font s);
 | 
procedure Set_Text_Font
       (This : in out Value_Output;
        Font : in     Font_Kind);
 | 
  
| 
Fl_Fontsize textsize() const;
 | 
function Get_Text_Size
       (This : in Value_Output)
    return Font_Size;
 | 
  
| 
void textsize(Fl_Fontsize s);
 | 
procedure Set_Text_Size
       (This : in out Value_Output;
        Size : in     Font_Size);
 |