diff options
author | Jed Barber <jjbarber@y7mail.com> | 2016-11-09 09:12:26 +1100 |
---|---|---|
committer | Jed Barber <jjbarber@y7mail.com> | 2016-11-09 09:12:26 +1100 |
commit | e0ee146d740146cd4c80de22d6bf6e204efadfa0 (patch) | |
tree | 5549e0b0057e9be10e88a439f40dc8d197f26505 /fltk-widgets.ads | |
parent | c3592231733f3f52aa9fdfd83ac93eb9ee1865e1 (diff) |
Removed superfluous use clauses, styling now more standardised
Diffstat (limited to 'fltk-widgets.ads')
-rw-r--r-- | fltk-widgets.ads | 32 |
1 files changed, 26 insertions, 6 deletions
diff --git a/fltk-widgets.ads b/fltk-widgets.ads index e692a65..7af5e2b 100644 --- a/fltk-widgets.ads +++ b/fltk-widgets.ads @@ -90,14 +90,34 @@ 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; + function Get_X + (This : in Widget) + return Integer; + + + function Get_Y + (This : in Widget) + return Integer; + + + function Get_W + (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); + 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); function Get_Image |