summaryrefslogtreecommitdiff
path: root/src/displays.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-08-06 22:17:54 +1000
committerJed Barber <jjbarber@y7mail.com>2017-08-06 22:17:54 +1000
commit7cef684e71b64f00b41da66ba7bc581568d78f51 (patch)
treec187a50b13961b0cd8227dd0d54ec7958f131bbf /src/displays.ads
parent051ddb2a265dda897bce72edc318beadd111eba2 (diff)
Factored out some trivial bits into Misc, made coding style more consistent
Diffstat (limited to 'src/displays.ads')
-rw-r--r--src/displays.ads8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/displays.ads b/src/displays.ads
index c52a058..89e4542 100644
--- a/src/displays.ads
+++ b/src/displays.ads
@@ -7,7 +7,9 @@ with
private with
- FLTK.Widgets.Boxes;
+ FLTK.Widgets.Boxes,
+ FLTK.Images.RGB.PNG,
+ Misc;
package Displays is
@@ -106,6 +108,10 @@ private
end record;
+ Logo : FLTK.Images.RGB.PNG.PNG_Image :=
+ FLTK.Images.RGB.PNG.Create (Misc.Origin & "/../share/sokoban/img/man.png");
+
+
Text_Size : constant FLTK.Font_Size := 12;
Message_Box_Width : constant Integer := 440;
Message_Box_Height : constant Integer := 80;