summaryrefslogtreecommitdiff
path: root/src/fltk-widgets.ads
diff options
context:
space:
mode:
authorJed Barber <jjbarber@y7mail.com>2017-06-17 11:28:39 +1000
committerJed Barber <jjbarber@y7mail.com>2017-06-17 11:28:39 +1000
commitfb37523537cdb69a31dede401a604981ce8b7b9d (patch)
tree9d8f8dc3a00ce27b69aa4b7d7696b49d659fcbe1 /src/fltk-widgets.ads
parent33c3691b571ce4b6a2aa6997b70c3bc5d991ca9d (diff)
Updated coding style, added progress log
Diffstat (limited to 'src/fltk-widgets.ads')
-rw-r--r--src/fltk-widgets.ads76
1 files changed, 36 insertions, 40 deletions
diff --git a/src/fltk-widgets.ads b/src/fltk-widgets.ads
index f4d0280..895ffc3 100644
--- a/src/fltk-widgets.ads
+++ b/src/fltk-widgets.ads
@@ -1,11 +1,18 @@
-with FLTK.Images;
-limited with FLTK.Widgets.Groups;
-private with System;
-private with System.Address_To_Access_Conversions;
-private with Ada.Unchecked_Conversion;
-private with Interfaces.C;
+with
+
+ FLTK.Images;
+
+limited with
+
+ FLTK.Widgets.Groups;
+
+private with
+
+ System.Address_To_Access_Conversions,
+ Ada.Unchecked_Conversion,
+ Interfaces.C;
package FLTK.Widgets is
@@ -13,180 +20,167 @@ package FLTK.Widgets is
type Widget is new Wrapper with private;
-
type Widget_Callback is access procedure
(Item : in out Widget'Class);
-
type Font_Size is new Natural;
Normal_Size : constant Font_Size := 14;
-
type Event_Outcome is (Not_Handled, Handled);
+
+
function Create
(X, Y, W, H : in Integer;
Text : in String)
return Widget;
+
+
procedure Activate
(This : in out Widget);
-
procedure Deactivate
(This : in out Widget);
-
function Is_Active
(This : in Widget)
return Boolean;
-
function Is_Tree_Active
(This : in Widget)
return Boolean;
-
procedure Clear_Active
(This : in out Widget);
+
+
function Has_Changed
(This : in Widget)
return Boolean;
-
procedure Clear_Changed
(This : in out Widget);
+
+
function Parent
(This : in Widget)
return access FLTK.Widgets.Groups.Group'Class;
-
function Contains
(This : in Widget;
Item : in Widget'Class)
return Boolean;
+
+
function Get_Alignment
(This : in Widget)
return Alignment;
-
procedure Set_Alignment
(This : in out Widget;
New_Align : in Alignment);
-
function Get_Box
(This : in Widget)
return Box_Kind;
-
procedure Set_Box
(This : in out Widget;
Box : in Box_Kind);
-
function Get_Label
(This : in out Widget)
return String;
-
procedure Set_Label
(This : in out Widget;
Text : in String);
-
function Get_Label_Font
(This : in Widget)
return Font_Kind;
-
procedure Set_Label_Font
(This : in out Widget;
Font : in Font_Kind);
-
function Get_Label_Size
(This : in Widget)
return Font_Size;
-
procedure Set_Label_Size
(This : in out Widget;
Size : in Font_Size);
-
function Get_Label_Type
(This : in Widget)
return Label_Kind;
-
procedure Set_Label_Type
(This : in out Widget;
Label : in Label_Kind);
-
function Get_Callback
(This : in Widget)
return Widget_Callback;
-
procedure Set_Callback
(This : in out Widget;
Func : in Widget_Callback);
+
+
function Get_X
(This : in Widget)
return Integer;
-
function Get_Y
(This : in Widget)
return Integer;
-
function Get_W
(This : in Widget)
return Integer;
-
function Get_H
(This : in Widget)
return Integer;
-
procedure Resize
(This : in out Widget;
W, H : in Integer);
-
procedure Reposition
(This : in out Widget;
X, Y : in Integer);
+
+
function Get_Image
(This : in Widget)
return access FLTK.Images.Image'Class;
-
procedure Set_Image
(This : in out Widget;
Pic : in out FLTK.Images.Image'Class);
+
+
procedure Draw
(This : in out Widget) is null;
-
function Handle
(This : in out Widget;
Event : in Event_Kind)
@@ -202,18 +196,21 @@ private
Current_Image : access FLTK.Images.Image'Class;
end record;
+ overriding procedure Finalize
+ (This : in out Widget);
+
+
+
-- the user data portion should always be a reference back to the Ada binding
procedure Callback_Hook
(W, U : in System.Address);
pragma Convention (C, Callback_Hook);
-
procedure Draw_Hook
(U : in System.Address);
pragma Convention (C, Draw_Hook);
-
function Handle_Hook
(U : in System.Address;
E : in Interfaces.C.int)
@@ -221,8 +218,6 @@ private
pragma Convention (C, Handle_Hook);
- overriding procedure Finalize
- (This : in out Widget);
package Widget_Convert is new System.Address_To_Access_Conversions (Widget'Class);
@@ -232,12 +227,13 @@ private
end Callback_Convert;
+
+
function fl_widget_get_user_data
(W : in System.Address)
return System.Address;
pragma Import (C, fl_widget_get_user_data, "fl_widget_get_user_data");
-
procedure fl_widget_set_user_data
(W, D : in System.Address);
pragma Import (C, fl_widget_set_user_data, "fl_widget_set_user_data");