summaryrefslogtreecommitdiff
path: root/src/windows.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-07-28 00:03:19 +1000
committerJed Barber <jjbarber@y7mail.com>2017-07-28 00:03:19 +1000
commitede7482f170d498d0a2129da6e81ff4764e366e2 (patch)
tree793de3ccbc1e2045e52ce6bb7402e08dfe1ec14f /src/windows.ads
parentbfa8e44514a6d0e597123aa701dbe29a461c1ed6 (diff)
Logo file now better integrated
Diffstat (limited to 'src/windows.ads')
-rw-r--r--src/windows.ads12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/windows.ads b/src/windows.ads
index b187b7b..64a8823 100644
--- a/src/windows.ads
+++ b/src/windows.ads
@@ -1,18 +1,26 @@
+with FLTK.Widgets.Groups.Windows.Double;
with FLTK.Images.RGB.PNG;
-private with FLTK.Widgets;
package Windows is
- Logo : FLTK.Images.RGB.PNG.PNG_Image := FLTK.Images.RGB.PNG.Create ("logo.png");
+ type Window is new FLTK.Widgets.Groups.Windows.Double.Double_Window with private;
+
+
+ procedure Set_Logo
+ (This : in out Window;
+ Logo : in out FLTK.Images.RGB.PNG.PNG_Image);
private
+ type Window is new FLTK.Widgets.Groups.Windows.Double.Double_Window with null record;
+
+
procedure Hide_CB
(Item : in out FLTK.Widgets.Widget'Class);