summaryrefslogtreecommitdiff
path: root/src/fltk_binding/fltk-widget-group-text_display.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-group-text_display.ads
parented6fcd873aad9e574de0b2c6311d1c4404cb76dc (diff)
The Great Package Naming Style Change(tm)
Diffstat (limited to 'src/fltk_binding/fltk-widget-group-text_display.ads')
-rw-r--r--src/fltk_binding/fltk-widget-group-text_display.ads58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/fltk_binding/fltk-widget-group-text_display.ads b/src/fltk_binding/fltk-widget-group-text_display.ads
deleted file mode 100644
index adbbeb4..0000000
--- a/src/fltk_binding/fltk-widget-group-text_display.ads
+++ /dev/null
@@ -1,58 +0,0 @@
-
-
-with FLTK.Enums; use FLTK.Enums;
-
-
-package FLTK.Widget.Group.Text_Display is
-
-
- type Text_Display_Type is new Group_Type with private;
-
-
- function Create
- (X, Y, W, H : in Integer;
- Label : in String)
- return Text_Display_Type;
-
-
- function Get_Text_Color
- (TD : in Text_Display_Type)
- return Color;
-
-
- procedure Set_Text_Color
- (TD : in Text_Display_Type;
- C : in Color);
-
-
- function Get_Text_Font
- (TD : in Text_Display_Type)
- return Font_Kind;
-
-
- procedure Set_Text_Font
- (TD : in Text_Display_Type;
- F : in Font_Kind);
-
-
- function Get_Text_Size
- (TD : in Text_Display_Type)
- return Font_Size;
-
-
- procedure Set_Text_Size
- (TD : in Text_Display_Type;
- S : in Font_Size);
-
-
-private
-
-
- type Text_Display_Type is new Group_Type with null record;
-
-
- overriding procedure Finalize (This : in out Text_Display_Type);
-
-
-end FLTK.Widget.Group.Text_Display;
-