diff options
author | Jedidiah Barber <contact@jedbarber.id.au> | 2025-02-06 19:28:33 +1300 |
---|---|---|
committer | Jedidiah Barber <contact@jedbarber.id.au> | 2025-02-06 19:28:33 +1300 |
commit | 547e538476a788dfeb5974f9b8ad29441d18980b (patch) | |
tree | 00a3c7d80ee403969971bc4b814876b4399f3ada /spec/fltk-widgets-groups-windows.ads | |
parent | befe66a0a98a58e0bdb31bb8c2db4a975a744072 (diff) |
Slightly better / more consistent comments
Diffstat (limited to 'spec/fltk-widgets-groups-windows.ads')
-rw-r--r-- | spec/fltk-widgets-groups-windows.ads | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/spec/fltk-widgets-groups-windows.ads b/spec/fltk-widgets-groups-windows.ads index 57b128b..dfa51d6 100644 --- a/spec/fltk-widgets-groups-windows.ads +++ b/spec/fltk-widgets-groups-windows.ads @@ -55,6 +55,8 @@ package FLTK.Widgets.Groups.Windows is + -- Visibility -- + procedure Show (This : in out Window); @@ -83,6 +85,8 @@ package FLTK.Widgets.Groups.Windows is + -- Fullscreen -- + function Is_Fullscreen (This : in Window) return Boolean; @@ -104,6 +108,8 @@ package FLTK.Widgets.Groups.Windows is + -- Icons, Cursors -- + procedure Set_Icon (This : in out Window; Pic : in FLTK.Images.RGB.RGB_Image'Class); @@ -147,6 +153,8 @@ package FLTK.Widgets.Groups.Windows is + -- Settings -- + function Has_Border (This : in Window) return Boolean; @@ -193,6 +201,8 @@ package FLTK.Widgets.Groups.Windows is + -- Labels, Hotspot, Shape -- + function Get_Label (This : in Window) return String; @@ -222,6 +232,8 @@ package FLTK.Widgets.Groups.Windows is + -- Dimensions -- + procedure Set_Size_Range (This : in out Window; Min_W, Min_H : in Integer; @@ -240,9 +252,6 @@ package FLTK.Widgets.Groups.Windows is (This : in out Window; State : in Boolean := True); - - - function Get_X_Root (This : in Window) return Integer; @@ -262,6 +271,8 @@ package FLTK.Widgets.Groups.Windows is + -- Class Info -- + function Get_X_Class (This : in Window) return String; @@ -287,6 +298,8 @@ package FLTK.Widgets.Groups.Windows is + -- Drawing, Events -- + procedure Draw (This : in out Window); @@ -369,7 +382,6 @@ private pragma Inline (Resize); pragma Inline (Is_Position_Forced); pragma Inline (Force_Position); - pragma Inline (Get_X_Root); pragma Inline (Get_Y_Root); pragma Inline (Get_Decorated_W); |