From ca9cca53a19145216cb0e00462db239e1194696d Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sun, 29 Apr 2018 00:39:36 +1000 Subject: FLTK.Event done, a whole bunch more polishing --- doc/fl_tabs.html | 156 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 156 insertions(+) create mode 100644 doc/fl_tabs.html (limited to 'doc/fl_tabs.html') diff --git a/doc/fl_tabs.html b/doc/fl_tabs.html new file mode 100644 index 0000000..048c356 --- /dev/null +++ b/doc/fl_tabs.html @@ -0,0 +1,156 @@ + + + + + + + Fl_Tabs Binding Map + + + + + + +

Fl_Tabs Binding Map

+ + + + + + + + + + +
Package name
Fl_TabsFLTK.Widgets.Groups.Tabbed
+ + + + + + + + + + + + + + + + +
Types
Fl_TabsTabbed_Group
 Tabbed_Group_Reference
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+Fl_Tabs(int, int, int, int, const char *=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String)
+    return Tabbed_Group;
+
+void client_area(int &rx, int &ry, int &rw, int &rh, int tabh=0);
+
+procedure Get_Client_Area
+       (This       : in     Tabbed_Group;
+        Tab_Height : in     Natural;
+        X, Y, W, H :    out Integer);
+
+void draw();
+
+procedure Draw
+       (This : in out Tabbed_Group);
+
+int handle(int);
+
+function Handle
+       (This  : in out Tabbed_Group;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+Fl_Widget * push() const;
+
+function Get_Push
+       (This : in Tabbed_Group)
+    return access Widget'Class;
+
+int push(Fl_WIdget *);
+
+procedure Set_Push
+       (This : in out Tabbed_Group;
+        Item : in out Widget'Class);
+
+Fl_Widget * value();
+
+function Get_Visible
+       (This : in Tabbed_Group)
+    return access Widget'Class;
+
+int value(Fl_Widget *);
+
+procedure Set_Visible
+       (This : in out Tabbed_Group;
+        Item : in out Widget'Class);
+
+Fl_Widget * which(int event_x, int event_y);
+
+function Get_Which
+       (This             : in Tabbed_Group;
+        Event_X, Event_Y : in Integer)
+    return access Widget'Class;
+
+ + + + + -- cgit