Constructors |
Fl_Cairo_Window(int w, int h);
|
function Create
(W, H : in Integer)
return Cairo_Window;
|
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 Groups.Group'Class;
W, H : in Integer)
return Cairo_Window;
|
Create a Fl_Cairo_Window and set the label manually. |
function Create
(W, H : in Integer;
Text : in String)
return Cairo_Window;
|
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 Groups.Group'Class;
W, H : in Integer;
Text : in String)
return Cairo_Window;
|
Create a Fl_Cairo_Window and set the label and X,Y coords manually. |
function Create
(X, Y, W, H : in Integer;
Text : in String := "")
return Cairo_Window;
|
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 Groups.Group'Class;
X, Y, W, H : in Integer;
Text : in String := "")
return Cairo_Window;
|