summaryrefslogtreecommitdiff
path: root/fltk-images.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-10-05 15:44:17 +1100
committerJed Barber <jjbarber@y7mail.com>2016-10-05 15:44:17 +1100
commitf28f819c721fa5a317e23b3cc1eefb938115b47a (patch)
tree6c5ba8cc390f88d2ec326503ebd5fc30d4b4b99b /fltk-images.ads
parent8d0d41649b6b4699cfb2c6c05dda09c29b4c3d15 (diff)
Added logo, made find/replace/about windows attention grabbing
Diffstat (limited to 'fltk-images.ads')
-rw-r--r--fltk-images.ads30
1 files changed, 30 insertions, 0 deletions
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;
+