diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-09-21 17:20:32 +1000 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-09-21 17:20:32 +1000 |
commit | f372ad18e2ba1fe0660cfd93e64c17162a52a5f7 (patch) | |
tree | 54a03b6379727bbf009cc4071d7eb0fa1fd9afcd /fltk-widgets.ads | |
parent | d12fdd75d1c131bbe4bd49413c3da51131cd1e73 (diff) |
Started constructing Find/Replace/About windows
Diffstat (limited to 'fltk-widgets.ads')
-rw-r--r-- | fltk-widgets.ads | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fltk-widgets.ads b/fltk-widgets.ads index 0a123bf..c0f89c1 100644 --- a/fltk-widgets.ads +++ b/fltk-widgets.ads @@ -96,6 +96,15 @@ package FLTK.Widgets is Func : not null access Widget_Callback'Class); + function Get_X (This : in Widget) return Integer; + function Get_Y (This : in Widget) return Integer; + function Get_W (This : in Widget) return Integer; + function Get_H (This : in Widget) return Integer; + + + procedure Resize (This : in out Widget; W, H : in Integer); + procedure Reposition (This : in out Widget; X, Y : in Integer); + private |