Functions and Procedures |
Fl_Double_Window(int W, int H, const char *L=0);
|
function Create
(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;
|
|
procedure Draw
(This : in out Double_Window);
|
void flush();
|
procedure Flush
(This : in out Double_Window);
|
|
function Handle
(This : in out Double_Window;
Event : in Event_Kind)
return Event_Outcome;
|
void hide();
|
procedure Hide
(This : in out Double_Window);
|
void resize(int,int,int,int);
|
|
void show();
|
procedure Show
(This : in out Double_Window);
|
void show(int a, char **b);
|
|