summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widget.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2016-05-26 00:38:43 +1000
committerJed Barber <jjbarber@y7mail.com>2016-05-26 00:38:43 +1000
commit524edbb4463b66d61e92c92a7020d9d09b82e744 (patch)
treeb2ec49fdcc88a34c4c2f80ead9548358a382da77 /src/fltk_binding/fltk-widget.ads
parented6fcd873aad9e574de0b2c6311d1c4404cb76dc (diff)
The Great Package Naming Style Change(tm)
Diffstat (limited to 'src/fltk_binding/fltk-widget.ads')
-rw-r--r--src/fltk_binding/fltk-widget.ads80
1 files changed, 0 insertions, 80 deletions
diff --git a/src/fltk_binding/fltk-widget.ads b/src/fltk_binding/fltk-widget.ads
deleted file mode 100644
index ef4650e..0000000
--- a/src/fltk_binding/fltk-widget.ads
+++ /dev/null
@@ -1,80 +0,0 @@
-
-
-with FLTK.Enums; use FLTK.Enums;
-with Ada.Finalization;
-private with System;
-
-
-package FLTK.Widget is
-
-
- type Widget_Type is abstract new Ada.Finalization.Limited_Controlled with private;
-
-
- type Font_Size is new Natural;
- Normal_Size : constant Font_Size := 14;
-
-
- type Color is new Natural;
-
-
- function Create
- (X, Y, W, H : in Integer;
- Label : in String)
- return Widget_Type is abstract;
-
-
- function Get_Box
- (W : in Widget_Type'Class)
- return Box_Kind;
-
-
- procedure Set_Box
- (W : in Widget_Type'Class;
- B : in Box_Kind);
-
-
- function Get_Label_Font
- (W : in Widget_Type'Class)
- return Font_Kind;
-
-
- procedure Set_Label_Font
- (W : in Widget_Type'Class;
- F : in Font_Kind);
-
-
- function Get_Label_Size
- (W : in Widget_Type'Class)
- return Font_Size;
-
-
- procedure Set_Label_Size
- (W : in Widget_Type'Class;
- S : in Font_Size);
-
-
- function Get_Label_Type
- (W : in Widget_Type'Class)
- return Label_Kind;
-
-
- procedure Set_Label_Type
- (W : in Widget_Type'Class;
- L : in Label_Kind);
-
-
-private
-
-
- type Widget_Type is abstract new Ada.Finalization.Limited_Controlled with
- record
- Void_Ptr : System.Address;
- end record;
-
-
- overriding procedure Initialize (This : in out Widget_Type);
-
-
-end FLTK.Widget;
-