Constructors |
Fl_Scroll(int X, int Y, int W, int H, const char *L=0);
|
function Create
(X, Y, W, H : in Integer;
Text : in String := "")
return Scroll;
|
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 Scroll;
|
Functions and Procedures |
void clear();
|
procedure Clear
(This : in out Scroll);
|
int handle(int);
|
function Handle
(This : in out Scroll;
Event : in Event_Kind)
return Event_Outcome;
|
void resize(int X, int Y, int W, int H);
|
|
void scroll_to(int, int);
|
procedure Scroll_To
(This : in out Scroll;
X, Y : in Integer);
|
int scrollbar_size() const;
|
function Get_Scrollbar_Size
(This : in Scroll)
return Integer;
|
void scrollbar_size(int newSize);
|
procedure Set_Scrollbar_Size
(This : in out Scroll;
To : in Integer);
|
int xposition() const;
|
function Get_Scroll_X
(This : in Scroll)
return Integer;
|
int yposition() const;
|
function Get_Scroll_Y
(This : in Scroll)
return Integer;
|
See type method in Fl_Widget. |
function Get_Kind
(This : in Scroll)
return Scroll_Kind;
|
See type method in Fl_Widget. |
procedure Set_Kind
(This : in out Scroll;
Mode : in Scroll_Kind);
|