Constructors |
Fl_Box(Fl_Boxtype b, int X, int Y, int W, int H, const char *l);
|
function Create
(Kind : in Box_Kind;
X, Y, W, H : in Integer;
Text : in String := "")
return Box;
|
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;
Kind : in Box_Kind;
X, Y, W, H : in Integer;
Text : in String := "")
return Box;
|
Fl_Box(int X, int Y, int W, int H, const char *l=0);
|
function Create
(X, Y, W, H : in Integer;
Text : in String := "")
return Box;
|
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 Box;
|