summaryrefslogtreecommitdiff
path: root/src/fltk-event.ads
diff options
context:
space:
mode:
Diffstat (limited to 'src/fltk-event.ads')
-rw-r--r--src/fltk-event.ads181
1 files changed, 179 insertions, 2 deletions
diff --git a/src/fltk-event.ads b/src/fltk-event.ads
index fc6fafb..62f106a 100644
--- a/src/fltk-event.ads
+++ b/src/fltk-event.ads
@@ -1,10 +1,103 @@
+with
+
+ FLTK.Widgets.Groups.Windows;
+
+private with
+
+ Ada.Containers.Vectors,
+ System.Address_To_Access_Conversions;
+
+
package FLTK.Event is
- function Last_Keypress
- return Shortcut_Key;
+ type Event_Handler is access function
+ (Event : in Event_Kind)
+ return Event_Outcome;
+
+ type Event_Dispatch is access function
+ (Event : in Event_Kind;
+ Win : in out FLTK.Widgets.Groups.Windows.Window'Class)
+ return Event_Outcome;
+
+
+
+
+ procedure Add_Handler
+ (Func : in Event_Handler);
+
+ procedure Remove_Handler
+ (Func : in Event_Handler);
+
+ function Get_Dispatch
+ return Event_Dispatch;
+
+ procedure Set_Dispatch
+ (Func : in Event_Dispatch);
+
+ function Default_Dispatch
+ (Event : in Event_Kind;
+ Win : in out FLTK.Widgets.Groups.Windows.Window'Class)
+ return Event_Outcome;
+
+
+
+
+ function Get_Grab
+ return access FLTK.Widgets.Groups.Windows.Window'Class;
+
+ procedure Set_Grab
+ (To : in FLTK.Widgets.Groups.Windows.Window'Class);
+
+ procedure Release_Grab;
+
+ function Get_Pushed
+ return access FLTK.Widgets.Widget'Class;
+
+ procedure Set_Pushed
+ (To : in FLTK.Widgets.Widget'Class);
+
+ function Get_Below_Mouse
+ return access FLTK.Widgets.Widget'Class;
+
+ procedure Set_Below_Mouse
+ (To : in FLTK.Widgets.Widget'Class);
+
+ function Get_Focus
+ return access FLTK.Widgets.Widget'Class;
+
+ procedure Set_Focus
+ (To : in FLTK.Widgets.Widget'Class);
+
+
+
+
+ function Compose
+ (Del : out Natural)
+ return Boolean;
+
+ procedure Compose_Reset;
+
+ function Text
+ return String;
+
+ function Text_Length
+ return Natural;
+
+
+
+
+ function Last
+ return Event_Kind;
+
+ function Last_Modifier
+ return Modifier;
+
+ function Last_Modifier
+ (Had : in Modifier)
+ return Boolean;
@@ -21,9 +114,93 @@ package FLTK.Event is
function Mouse_Y_Root
return Integer;
+ function Mouse_DX
+ return Integer;
+
+ function Mouse_DY
+ return Integer;
+
+ procedure Get_Mouse
+ (X, Y : out Integer);
+
function Is_Click
return Boolean;
+ function Is_Multi_Click
+ return Boolean;
+
+ procedure Set_Clicks
+ (To : in Natural);
+
+ function Last_Button
+ return Mouse_Button;
+
+ function Mouse_Left
+ return Boolean;
+
+ function Mouse_Middle
+ return Boolean;
+
+ function Mouse_Right
+ return Boolean;
+
+ function Is_Inside
+ (X, Y, W, H : in Integer)
+ return Boolean;
+
+
+
+
+ function Last_Key
+ return Keypress;
+
+ function Original_Last_Key
+ return Keypress;
+
+ function Pressed_During
+ (Key : in Keypress)
+ return Boolean;
+
+ function Key_Now
+ (Key : in Keypress)
+ return Boolean;
+
+ function Key_Ctrl
+ return Boolean;
+
+ function Key_Alt
+ return Boolean;
+
+ function Key_Command
+ return Boolean;
+
+ function Key_Shift
+ return Boolean;
+
+
+private
+
+
+ package Widget_Convert is new System.Address_To_Access_Conversions
+ (FLTK.Widgets.Widget'Class);
+ package Window_Convert is new System.Address_To_Access_Conversions
+ (FLTK.Widgets.Groups.Windows.Window'Class);
+
+
+ package Handler_Vectors is new Ada.Containers.Vectors
+ (Index_Type => Positive, Element_Type => Event_Handler);
+
+
+ Handlers : Handler_Vectors.Vector := Handler_Vectors.Empty_Vector;
+ Current_Dispatch : Event_Dispatch := null;
+
+
+ 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");
+ pragma Inline (fl_widget_get_user_data);
+
end FLTK.Event;