From f28f819c721fa5a317e23b3cc1eefb938115b47a Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Wed, 5 Oct 2016 15:44:17 +1100 Subject: Added logo, made find/replace/about windows attention grabbing --- fltk-images.ads | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 fltk-images.ads (limited to 'fltk-images.ads') diff --git a/fltk-images.ads b/fltk-images.ads new file mode 100644 index 0000000..88d7658 --- /dev/null +++ b/fltk-images.ads @@ -0,0 +1,30 @@ + + +package FLTK.Images is + + + type Image is new Wrapper with private; + + + function Create + (Width, Height, Depth : in Natural) + return Image; + + + function Get_W (This : in Image) return Natural; + function Get_H (This : in Image) return Natural; + function Get_D (This : in Image) return Natural; + + +private + + + type Image is new Wrapper with null record; + + + overriding procedure Finalize + (This : in out Image); + + +end FLTK.Images; + -- cgit