From 43913b53865a86986c1944b13f9ab9fd32fa71e2 Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Fri, 13 Dec 2024 14:37:42 +1300 Subject: Fl_Check_Browser added --- doc/fl_check_browser.html | 427 ++++++++++++++++++++++++++++++++++++++++++++++ doc/index.html | 3 +- 2 files changed, 429 insertions(+), 1 deletion(-) create mode 100644 doc/fl_check_browser.html (limited to 'doc') diff --git a/doc/fl_check_browser.html b/doc/fl_check_browser.html new file mode 100644 index 0000000..016d86b --- /dev/null +++ b/doc/fl_check_browser.html @@ -0,0 +1,427 @@ + + + + + + Fl_Check_Browser Binding Map + + + + + + +

Fl_Check_Browser Binding Map

+ + +Back to Index + + + + + + + + + + +
Package name
Fl_Check_BrowserFLTK.Widgets.Groups.Browsers.Check
+ + + + + + + + + + + + + + + + +
Types
Fl_Check_BrowserCheck_Browser
 Check_Browser_Reference
+ + + + + + + + + + + +
Constructors
+Fl_Check_Browser(int x, int y, int w, int h, const char *l=0);
+
+function Create
+       (X, Y, W, H : in Integer;
+        Text       : in String := "")
+    return Check_Browser;
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Functions and Procedures
+int add(char *s);
+
+int add(char *s, int b);
+
+int add(const char *s);
+
+int add(const char *s, int b);
+
+procedure Add
+       (This    : in out Check_Browser;
+        Text    : in     String;
+        Checked : in     Boolean := False);
+
+void check_all();
+
+procedure Check_All
+       (This : in out Check_Browser);
+
+void check_none();
+
+procedure Check_None
+       (This : in out Check_Browser);
+
+int checked(int item) const;
+
+function Is_Checked
+       (This  : in Check_Browser;
+        Index : in Positive)
+    return Boolean;
+
+void checked(int item, int b);
+
+procedure Set_Checked
+       (This  : in out Check_Browser;
+        Index : in     Positive;
+        State : in     Boolean);
+
+void clear();
+
+procedure Clear
+       (This : in out Check_Browser);
+
+int nchecked() const;
+
+function Number_Checked
+       (This : in Check_Browser)
+    return Natural;
+
+int nitems() const;
+
+function Number_Of_Items
+       (This : in Check_Browser)
+    return Natural;
+
+int remove(int item);
+
+procedure Remove
+       (This  : in out Check_Browser;
+        Index : in     Positive);
+
+void set_checked(int item);
+
See checked(int item, int b);
+char * text(int item) const;
+
+function Item_Text
+       (This  : in Check_Browser;
+        Index : in Positive)
+    return String;
+
+int value() const;
+
+function Selected_Index
+       (This : in Check_Browser)
+    return Positive;
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Protected Functions and Procedures
+void bbox(int &X, int &Y, int &W, int &H) const;
+
(Inherited from Fl_Browser_)
+procedure Bounding_Box
+       (This       : in     Check_Browser;
+        X, Y, W, H :    out Integer);
+
+void deleting(void *item);
+
(Inherited from Fl_Browser_)
+procedure Deleting
+       (This : in out Check_Browser;
+        Item : in     Item_Cursor);
+
+int displayed(void *item) const;
+
(Inherited from Fl_Browser_)
+function Is_Displayed
+       (This : in Check_Browser;
+        Item : in Item_Cursor)
+    return Boolean;
+
+void draw();
+
(Inherited from Fl_Browser_)
+procedure Draw
+       (This : in out Check_Browser);
+
+void * find_item(int ypos);
+
(Inherited from Fl_Browser_)
+function Find_Item
+       (This  : in Check_Browser;
+        Y_Pos : in Integer)
+    return Item_Cursor;
+
+virtual int full_height() const;
+
(Inherited from Fl_Browser_)
+function Full_List_Height
+       (This : in Check_Browser)
+    return Integer;
+
+virtual int full_width() const;
+
(Inherited from Fl_Browser_)
+function Full_List_Width
+       (This : in Check_Browser)
+    return Integer;
+
+int handle(int);
+
+function Handle
+       (This  : in out Check_Browser;
+        Event : in     Event_Kind)
+    return Event_Outcome;
+
+virtual int incr_height() const;
+
(Inherited from Fl_Browser_)
+function Average_Item_Height
+       (This : in Check_Browser)
+    return Integer;
+
+void inserting(void *a, void *b);
+
(Inherited from Fl_Browser_)
+procedure Inserting
+       (This : in out Check_Browser;
+        A, B : in     Item_Cursor);
+
+virtual int item_quick_height(void *item) const;
+
(Inherited from Fl_Browser_)
+function Item_Quick_Height
+       (This : in Check_Browser;
+        Item : in Item_Cursor)
+    return Integer;
+
+int leftedge() const;
+
(Inherited from Fl_Browser_)
+function Left_Edge
+       (This : in Check_Browser)
+    return Integer;
+
+void new_list();
+
(Inherited from Fl_Browser_)
+procedure New_List
+       (This : in out Check_Browser);
+
+void redraw_line(void *item);
+
(Inherited from Fl_Browser_)
+procedure Redraw_Line
+       (This : in out Check_Browser;
+        Item : in     Item_Cursor);
+
+void redraw_lines();
+
(Inherited from Fl_Browser_)
+procedure Redraw_List
+       (This : in out Check_Browser);
+
+void replacing(void *a, void *b);
+
(Inherited from Fl_Browser_)
+procedure Replacing
+       (This : in out Check_Browser;
+        A, B : in     Item_Cursor);
+
+void * selection() const;
+
(Inherited from Fl_Browser_)
+function Current_Selection
+       (This : in Check_Browser)
+    return Item_Cursor;
+
+void swapping(void *a, void *b);
+
(Inherited from Fl_Browser_)
+procedure Swapping
+       (This : in out Check_Browser;
+        A, B : in     Item_Cursor);
+
+void * top() const;
+
(Inherited from Fl_Browser_)
+function Top_Item
+       (This : in Check_Browser)
+    return Item_Cursor;
+
+ + + + + diff --git a/doc/index.html b/doc/index.html index d58e2da..d5a7183 100644 --- a/doc/index.html +++ b/doc/index.html @@ -29,7 +29,7 @@
  • Fl_Button
  • Fl_Cairo_Window
  • Fl_Chart
  • -
  • Fl_Check_Browser
  • +
  • Fl_Check_Browser
  • Fl_Check_Button
  • Fl_Choice
  • Fl_Clock
  • @@ -188,6 +188,7 @@
  • FLTK.Widgets.Clocks.Updated.Round
  • FLTK.Widgets.Groups
  • FLTK.Widgets.Groups.Browsers
  • +
  • FLTK.Widgets.Groups.Browsers.Check
  • FLTK.Widgets.Groups.Color_Choosers
  • FLTK.Widgets.Groups.Help_Views
  • FLTK.Widgets.Groups.Input_Choices
  • -- cgit