Constructors |
Fl_Double_Window(int W, int H, const char *L=0);
|
function Create
(W, H : in Integer;
Text : in String := "")
return Double_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 Double_Window;
|
Fl_Double_Window(int X, int Y, int W, int H, const char *L=0);
|
function Create
(X, Y, W, H : in Integer;
Text : in String := "")
return Double_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 Double_Window;
|
Functions and Procedures |
void flush();
|
procedure Flush
(This : in out Double_Window);
|
void hide();
|
procedure Hide
(This : in out Double_Window);
|
void resize(int,int,int,int);
|
procedure Resize
(This : in out Double_Window;
X, Y, W, H : in Integer);
|
void show();
|
procedure Show
(This : in out Double_Window);
|
void show(int a, char **b);
|
procedure Show_With_Args
(This : in out Double_Window);
|